diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4019be2de9a..f2381d2b10b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -84,7 +84,7 @@ build_cross: - docker:dind variables: ROS_DISTRO: kinetic - AUTOWARE_DOCKER_DATE: 20190102 + AUTOWARE_DOCKER_DATE: 20190211 AUTOWARE_HOME: $CI_PROJECT_DIR AUTOWARE_TARGET_ARCH: aarch64 AUTOWARE_TARGET_PLATFORM: generic-aarch64 @@ -115,7 +115,7 @@ build_cross: " ' retry: 1 - + pages: stage: deploy image: alpine diff --git a/.gitmodules b/.gitmodules index 249982cca6a..683df903742 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,7 @@ [submodule "ros/src/sensing/drivers/lidar/packages/robosense"] path = ros/src/sensing/drivers/lidar/packages/robosense url = https://github.com/CPFL/robosense + branch = develop-curves-function [submodule "ros/src/msgs/lgsvl_msgs"] path = ros/src/msgs/lgsvl_msgs url = https://github.com/lgsvl/lgsvl_msgs.git @@ -8,3 +9,9 @@ path = ros/src/sensing/drivers/lidar/packages/ouster url = https://github.com/CPFL/ouster branch = autoware_branch +[submodule "ros/src/simulation/gazebo_simulator/worlds/external/osrf_citysim"] + path = ros/src/simulation/gazebo_simulator/worlds/external/osrf_citysim + url = https://github.com/CPFL/osrf_citysim.git +[submodule "ros/src/simulation/gazebo_simulator/worlds/external/car_demo"] + path = ros/src/simulation/gazebo_simulator/worlds/external/car_demo + url = https://github.com/CPFL/car_demo.git diff --git a/docker/crossbuild/Dockerfile.kinetic-crossbuild b/docker/crossbuild/Dockerfile.kinetic-crossbuild index f90dc4c717f..7f45bd33c44 100644 --- a/docker/crossbuild/Dockerfile.kinetic-crossbuild +++ b/docker/crossbuild/Dockerfile.kinetic-crossbuild @@ -100,7 +100,19 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ ros-kinetic-tf2-ros \ ros-kinetic-visualization-msgs \ ros-kinetic-xacro \ - ros-kinetic-rosbridge-server + ros-kinetic-rosbridge-server \ + ros-kinetic-gazebo-ros \ + ros-kinetic-gazebo-msgs \ + ros-kinetic-gazebo-ros-control \ + ros-kinetic-urdf \ + ros-kinetic-xacro \ + ros-kinetic-position-controllers \ + ros-kinetic-transmission-interface \ + ros-kinetic-velocity-controllers \ + ros-kinetic-effort-controllers \ + ros-kinetic-controller-manager \ + ros-kinetic-robot-state-publisher \ + ros-kinetic-joint-state-controller RUN find / -depth -xdev -type l -lname '/*' -exec sh -c 'linkpath="$(readlink {})" && rm -f {} && ln -frsv "$linkpath" "{}"' \; diff --git a/docker/generic/Dockerfile b/docker/generic/Dockerfile index ceb25b55ca7..8f6632e38d4 100644 --- a/docker/generic/Dockerfile +++ b/docker/generic/Dockerfile @@ -9,7 +9,7 @@ COPY --chown=autoware ./ /home/$USERNAME/Autoware RUN su -c "bash -c 'source /opt/ros/$ROS_DISTRO/setup.bash; \ cd /home/$USERNAME/Autoware/ros; \ ./colcon_release'" $USERNAME -RUN echo "source /home/$USERNAME/Autoware/ros/devel/setup.bash" >> \ +RUN echo "source /home/$USERNAME/Autoware/ros/install/local_setup.bash" >> \ /home/$USERNAME/.bashrc COPY ./docker/generic/entrypoint.sh /tmp diff --git a/docker/generic/Dockerfile.cuda b/docker/generic/Dockerfile.cuda index 8500dd7a440..b063acc9358 100644 --- a/docker/generic/Dockerfile.cuda +++ b/docker/generic/Dockerfile.cuda @@ -77,10 +77,8 @@ COPY --from=nvidia/opengl:1.0-glvnd-runtime-ubuntu16.04 \ /usr/local/share/glvnd/egl_vendor.d/10_nvidia.json \ /usr/local/share/glvnd/egl_vendor.d/10_nvidia.json RUN echo '/usr/local/lib/x86_64-linux-gnu' >> /etc/ld.so.conf.d/glvnd.conf && \ - ldconfig && \ - echo '/usr/$LIB/libGL.so.1' >> /etc/ld.so.preload && \ - echo '/usr/$LIB/libEGL.so.1' >> /etc/ld.so.preload -RUN apt update + ldconfig +RUN apt-get update # nvidia-container-runtime ENV NVIDIA_VISIBLE_DEVICES \ ${NVIDIA_VISIBLE_DEVICES:-all} diff --git a/docker/generic/build.sh b/docker/generic/build.sh index 6f7ffdd5894..0e24d1dcf02 100755 --- a/docker/generic/build.sh +++ b/docker/generic/build.sh @@ -76,6 +76,7 @@ echo -e "\tBase only: $BASE_ONLY" BASE=$IMAGE_NAME:$TAG_PREFIX-$ROS_DISTRO-base docker build \ + --rm \ --tag $BASE \ --build-arg ROS_DISTRO=$ROS_DISTRO \ --file Dockerfile.base ./../.. @@ -84,6 +85,7 @@ CUDA_SUFFIX="" if [ $CUDA == "on" ]; then CUDA_SUFFIX="-cuda" docker build \ + --rm \ --tag $BASE$CUDA_SUFFIX \ --build-arg FROM_ARG=$BASE \ --file Dockerfile.cuda . @@ -95,6 +97,7 @@ if [ "$BASE_ONLY" == "true" ]; then fi docker build \ + --rm \ --tag $IMAGE_NAME:$TAG_PREFIX-$ROS_DISTRO$CUDA_SUFFIX \ --build-arg FROM_ARG=$BASE$CUDA_SUFFIX \ --build-arg ROS_DISTRO=$ROS_DISTRO \ diff --git a/ros/catkin_make_release b/ros/catkin_make_release index e925aeeb2e5..1f8393a5d78 100755 --- a/ros/catkin_make_release +++ b/ros/catkin_make_release @@ -12,10 +12,15 @@ if [[ -d devel ]]; then rm -rf devel fi -CATKIN_OPTS="-DCMAKE_BUILD_TYPE=Release -DCMAKE_LIBRARY_PATH=/usr/local/cuda/lib64/stubs" +if [[ -d install ]]; then + rm -rf install +fi + +if [[ -d log ]]; then + rm -rf log +fi -catkin_make clean $CATKIN_OPTS -source devel/setup.bash +CATKIN_OPTS="-DCMAKE_BUILD_TYPE=Release -DCMAKE_LIBRARY_PATH=/usr/local/cuda/lib64/stubs install" export LIBRARY_PATH=/usr/lib/OpenNI2/Drivers:$LIBRARY_PATH catkin_make $CATKIN_OPTS $@ diff --git a/ros/colcon_release b/ros/colcon_release index ea2352744fc..c40dfb4af7a 100755 --- a/ros/colcon_release +++ b/ros/colcon_release @@ -1,6 +1,10 @@ #!/usr/bin/env bash set -e +if [[ -d devel ]]; then + rm -rf devel +fi + if [[ -d build ]]; then rm -rf build fi @@ -9,6 +13,10 @@ if [[ -d install ]]; then rm -rf install fi +if [[ -d log ]]; then + rm -rf log +fi + if [ -f src/CMakeLists.txt ]; then rm -r src/CMakeLists.txt fi diff --git a/ros/run b/ros/run index cb98434cfd1..5502e81fb9b 100755 --- a/ros/run +++ b/ros/run @@ -42,8 +42,8 @@ if [ "$?" == "0" ]; then export ROS_IP=$ADDR fi -# boot ros-master -${TERMINAL} ${MASTER_DISPLAY_OPTION} ${OPTION_WORKING_DIR}=${MY_PATH} ${OPTION_COMMAND}="bash -c 'source ./devel/setup.bash; roscore'"& +# boot ros-master & health_checker +${TERMINAL} ${MASTER_DISPLAY_OPTION} ${OPTION_WORKING_DIR}=${MY_PATH} ${OPTION_COMMAND}="bash -c 'source ./devel/setup.bash; roslaunch autoware_health_checker health_checker.launch'"& # boot runtime_manager ${TERMINAL} ${RUNMGR_DISPLAY_OPTION} ${OPTION_WORKING_DIR}=${MY_PATH} ${OPTION_COMMAND}="bash -c 'source ./devel/setup.bash; rosrun runtime_manager runtime_manager_dialog.py'" diff --git a/ros/src/.config/rviz/default.rviz b/ros/src/.config/rviz/default.rviz index dba3124f5bf..87ad3fc1e05 100644 --- a/ros/src/.config/rviz/default.rviz +++ b/ros/src/.config/rviz/default.rviz @@ -6,14 +6,20 @@ Panels: Expanded: - /Global Options1 - /Camera1/Visibility1 + - /Points Raw1 - /Points Raw1/Status1 - /Local Waypoints1/Status1 - /Vector Map CenterLines1/Namespaces1 - /Global Path1/Namespaces1 - /Local Rollouts1/Namespaces1 - /GlobalPathAnimation1/Status1 + - /OverlayImage1 + - /OK1 + - /WARN1 + - /ERROR1 + - /FATAL1 Splitter Ratio: 0.695804 - Tree Height: 667 + Tree Height: 1903 - Class: rviz/Selection Name: Selection - Class: rviz/Tool Properties @@ -22,7 +28,7 @@ Panels: - /2D Nav Goal1 - /Publish Point1 Name: Tool Properties - Splitter Ratio: 0.588679 + Splitter Ratio: 0.588679016 - Class: rviz/Views Expanded: - /Current View1 @@ -42,7 +48,7 @@ Visualization Manager: Color: 160; 160; 164 Enabled: false Line Style: - Line Width: 0.03 + Line Width: 0.0299999993 Value: Lines Name: Grid Normal Cell Count: 0 @@ -65,30 +71,23 @@ Visualization Manager: Value: true map: Value: true - mobility: - Value: true velodyne: Value: true - world: - Value: true Marker Scale: 5 Name: TF Show Arrows: true Show Axes: true Show Names: true Tree: - world: - map: - base_link: - velodyne: - {} - gps: - {} - mobility: + map: + base_link: + velodyne: {} + gps: + {} Update Interval: 0 Value: true - - Alpha: 0.05 + - Alpha: 0.0500000007 Autocompute Intensity Bounds: true Autocompute Value Bounds: Max Value: 10 @@ -111,7 +110,7 @@ Visualization Manager: Queue Size: 10 Selectable: true Size (Pixels): 2 - Size (m): 0.01 + Size (m): 0.00999999978 Style: Points Topic: /points_map Unreliable: false @@ -123,19 +122,9 @@ Visualization Manager: Marker Topic: /vector_map Name: Vector Map Namespaces: - cross_walk: true - curb: true - gutter: true - road_edge: true - road_mark: true - road_pole: true - road_sign: true signal: true stop_line: true - street_light: true - utility_pole: true white_line: true - zebra_zone: true Queue Size: 100 Value: true - Class: rviz/Camera @@ -143,26 +132,32 @@ Visualization Manager: Image Rendering: overlay Image Topic: /image_raw Name: Camera - Overlay Alpha: 0.4 + Overlay Alpha: 0.400000006 Queue Size: 10 Transport Hint: raw Unreliable: false Value: false Visibility: - "": true A* Sim Obstacle: true Behavior State: true Control Pose: true Current Pose: true Detection Range: true + ERROR: true + FATAL: true Global Path: true Global Waypoints: true GlobalPathAnimation: true Grid: true + Image: true Local Rollouts: true Local Waypoints: true + MarkerArray: true Next Waypoint Mark: true + OK: true Occupancy Grid Map: true + OverlayImage: true + OverlayText: true PP Trajectory Mark: true Points Cluster: true Points Map: true @@ -178,19 +173,20 @@ Visualization Manager: Vehicle Model: true Velocity (km/h): true Vscan Points: true + WARN: true Waypoint Guide: true Zoom Factor: 1 - - Alpha: 0.5 + - Alpha: 0.300000012 Autocompute Intensity Bounds: true Autocompute Value Bounds: - Max Value: 10 - Min Value: -10 + Max Value: 11.8534737 + Min Value: 9.73868942 Value: true Axis: Z Channel Name: intensity Class: rviz/PointCloud2 Color: 255; 255; 255 - Color Transformer: Intensity + Color Transformer: AxisColor Decay Time: 0 Enabled: true Invert Rainbow: false @@ -202,8 +198,8 @@ Visualization Manager: Position Transformer: XYZ Queue Size: 10 Selectable: true - Size (Pixels): 1 - Size (m): 0.01 + Size (Pixels): 5 + Size (m): 0.00999999978 Style: Points Topic: /points_raw Unreliable: false @@ -233,7 +229,7 @@ Visualization Manager: Queue Size: 10 Selectable: true Size (Pixels): 3 - Size (m): 0.01 + Size (m): 0.00999999978 Style: Points Topic: /vscan_points Unreliable: false @@ -242,7 +238,7 @@ Visualization Manager: Value: false - Alpha: 1 Axes Length: 1 - Axes Radius: 0.1 + Axes Radius: 0.100000001 Class: rviz/Pose Color: 255; 25; 0 Enabled: false @@ -257,7 +253,7 @@ Visualization Manager: Value: false - Alpha: 1 Axes Length: 1 - Axes Radius: 0.1 + Axes Radius: 0.100000001 Class: rviz/Pose Color: 255; 170; 255 Enabled: false @@ -275,7 +271,10 @@ Visualization Manager: Marker Topic: /detection_range Name: Detection Range Namespaces: - {} + Crosswalk Detection: true + Decelerate Detection: true + Stop Detection: true + Stop Line: true Queue Size: 100 Value: true - Class: rviz/Marker @@ -283,7 +282,7 @@ Visualization Manager: Marker Topic: /next_target_mark Name: Next Waypoint Mark Namespaces: - {} + next_target_marker: true Queue Size: 100 Value: true - Class: rviz/Marker @@ -291,7 +290,7 @@ Visualization Manager: Marker Topic: /trajectory_circle_mark Name: PP Trajectory Mark Namespaces: - {} + trajectory_circle_marker: true Queue Size: 100 Value: true - Class: rviz/Marker @@ -312,6 +311,11 @@ Visualization Manager: 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 Name: Vehicle Model Robot Description: robot_description TF Prefix: "" @@ -341,7 +345,7 @@ Visualization Manager: Queue Size: 10 Selectable: true Size (Pixels): 5 - Size (m): 0.01 + Size (m): 0.00999999978 Style: Points Topic: /points_cluster Unreliable: false @@ -353,7 +357,9 @@ Visualization Manager: Marker Topic: /local_waypoints_mark Name: Local Waypoints Namespaces: - {} + local_path_marker: true + local_point_marker: true + local_waypoint_velocity: true Queue Size: 100 Value: true - Class: rviz/MarkerArray @@ -361,7 +367,9 @@ Visualization Manager: Marker Topic: /global_waypoints_mark Name: Global Waypoints Namespaces: - {} + global_change_flag_lane_1: true + global_lane_waypoint_orientation_marker_1: true + global_velocity_lane_1: true Queue Size: 100 Value: true - Class: rviz/Marker @@ -380,7 +388,7 @@ Visualization Manager: {} Queue Size: 100 Value: true - - Alpha: 0.7 + - Alpha: 0.699999988 Class: rviz/Map Color Scheme: map Draw Behind: true @@ -388,6 +396,7 @@ Visualization Manager: Name: Occupancy Grid Map Topic: /grid_map_visualization/distance_transform Unreliable: false + Use Timestamp: false Value: true - Class: rviz/MarkerArray Enabled: true @@ -451,10 +460,10 @@ Visualization Manager: Topic: /dp_planner_tracked_boxes Unreliable: false Value: true - alpha: 0.8 + alpha: 0.800000012 color: 25; 255; 0 coloring: Value - line width: 0.01 + line width: 0.00999999978 only edge: false show coords: false - Buffer length: 100 @@ -469,7 +478,7 @@ Visualization Manager: background color: 0; 0; 0 backround alpha: 0 border: true - foreground alpha: 0.7 + foreground alpha: 0.699999988 foreground color: 85; 255; 0 height: 80 left: 40 @@ -480,13 +489,13 @@ Visualization Manager: show caption: true text size: 8 top: 30 - update interval: 0.04 + update interval: 0.0399999991 width: 80 - - Background Alpha: 0.8 + - Background Alpha: 0.800000012 Background Color: 0; 0; 0 Class: jsk_rviz_plugin/OverlayText Enabled: true - Foreground Alpha: 0.8 + Foreground Alpha: 0.800000012 Foreground Color: 25; 255; 240 Name: OverlayText Overtake Color Properties: false @@ -500,10 +509,114 @@ Visualization Manager: text size: 12 top: 0 width: 128 + - Class: rviz/Image + Enabled: false + Image Topic: /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: false + - Class: jsk_rviz_plugin/OverlayImage + Enabled: false + Name: OverlayImage + Topic: /image_raw + Value: false + alpha: 0.800000012 + height: 128 + keep aspect ratio: true + left: 128 + top: 128 + width: 640 + - Background Alpha: 0.800000012 + Background Color: 0; 0; 0 + Class: jsk_rviz_plugin/OverlayText + Enabled: true + Foreground Alpha: 0.800000012 + Foreground Color: 25; 255; 240 + Name: OK + Overtake Color Properties: false + Overtake Position Properties: false + Topic: /health_aggregator/ok_text + Value: true + font: DejaVu Sans Mono + height: 128 + left: 0 + line width: 2 + text size: 12 + top: 0 + width: 128 + - Background Alpha: 0.800000012 + Background Color: 0; 0; 0 + Class: jsk_rviz_plugin/OverlayText + Enabled: true + Foreground Alpha: 0.800000012 + Foreground Color: 25; 255; 240 + Name: WARN + Overtake Color Properties: false + Overtake Position Properties: false + Topic: /health_aggregator/warn_text + Value: true + font: DejaVu Sans Mono + height: 128 + left: 0 + line width: 2 + text size: 12 + top: 0 + width: 128 + - Background Alpha: 0.800000012 + Background Color: 0; 0; 0 + Class: jsk_rviz_plugin/OverlayText + Enabled: true + Foreground Alpha: 0.800000012 + Foreground Color: 25; 255; 240 + Name: ERROR + Overtake Color Properties: false + Overtake Position Properties: false + Topic: /health_aggregator/error_text + Value: true + font: DejaVu Sans Mono + height: 128 + left: 0 + line width: 2 + text size: 12 + top: 0 + width: 128 + - Background Alpha: 0.800000012 + Background Color: 0; 0; 0 + Class: jsk_rviz_plugin/OverlayText + Enabled: true + Foreground Alpha: 0.800000012 + Foreground Color: 25; 255; 240 + Name: FATAL + Overtake Color Properties: false + Overtake Position Properties: false + Topic: /health_aggregator/fatal_text + Value: true + font: DejaVu Sans Mono + height: 128 + left: 0 + line width: 2 + text size: 12 + top: 0 + width: 128 + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /waypoint_saver_marker + Name: MarkerArray + Namespaces: + {} + Queue Size: 100 + Value: true Enabled: true Global Options: Background Color: 48; 48; 48 - Fixed Frame: world + Default Light: true + Fixed Frame: map Frame Rate: 30 Name: root Tools: @@ -526,27 +639,30 @@ Visualization Manager: Angle: 0 Class: rviz/TopDownOrtho Enable Stereo Rendering: - Stereo Eye Separation: 0.06 + 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.01 - Scale: 3.97317 - Target Frame: + Near Clip Distance: 0.00999999978 + Scale: 19.7382278 + Target Frame: base_link Value: TopDownOrtho (rviz) - X: -27.0383 - Y: 47.1504 + X: 0 + Y: 0 Saved: ~ Window Geometry: Camera: collapsed: false Displays: - collapsed: false - Height: 900 - Hide Left Dock: false + collapsed: true + Height: 2136 + Hide Left Dock: true Hide Right Dock: false - QMainWindow State: 000000ff00000000fd00000004000000000000016a000002dcfc020000000dfb0000001200530065006c0065006300740069006f006e00000001e10000009b0000006400fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afc00000028000002dc000000dd00fffffffa000000020100000003fb0000000a0049006d0061006700650000000000ffffffff0000000000000000fb0000000c00430061006d0065007200610000000000ffffffff0000006500fffffffb000000100044006900730070006c0061007900730100000000000001360000016a00fffffffb0000000a0049006d006100670065010000028e000000d20000000000000000fb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261fb000000120049006d006100670065005f0072006100770000000000ffffffff0000000000000000fb0000000c00430061006d006500720061000000024e000001710000000000000000fb000000120049006d00610067006500200052006100770100000421000000160000000000000000fb0000000a0049006d00610067006501000002f4000000cb00000000000000000000000100000163000002dcfc0200000003fb0000000a005600690065007700730100000028000002dc000000b000fffffffb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000001200530065006c0065006300740069006f006e010000025a000000b20000000000000000000000020000073f000000a8fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000006400000005cfc0100000002fb0000000800540069006d0065010000000000000640000002f600fffffffb0000000800540069006d0065010000000000000450000000000000000000000367000002dc00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Image: + collapsed: false + QMainWindow State: 000000ff00000000fd000000040000000000000454000007b0fc020000000efb0000001200530065006c0065006300740069006f006e00000001e10000009b0000006100fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afc00000028000007b00000000000fffffffaffffffff0100000003fb0000000a0049006d0061006700650000000000ffffffff0000005c00fffffffb0000000c00430061006d0065007200610000000000ffffffff0000006700fffffffb000000100044006900730070006c0061007900730000000000000001360000016a00fffffffb0000000a0049006d006100670065010000028e000000d20000000000000000fb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261fb000000120049006d006100670065005f0072006100770000000000ffffffff0000000000000000fb0000000c00430061006d006500720061000000024e000001710000000000000000fb000000120049006d00610067006500200052006100770100000421000000160000000000000000fb0000000a0049006d00610067006501000002f4000000cb0000000000000000fb0000000a0049006d006100670065010000056c0000026c00000000000000000000000100000163000007b0fc0200000003fb0000000a005600690065007700730100000028000007b0000000ad00fffffffb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000001200530065006c0065006300740069006f006e010000025a000000b20000000000000000000000020000073f000000a8fc0100000001fb0000000a00560069006500770073030000004e00000080000002e1000001970000000300000ebf0000005cfc0100000002fb0000000800540069006d0065010000000000000ebf0000030000fffffffb0000000800540069006d0065010000000000000450000000000000000000000d56000007b000000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 Selection: collapsed: false Time: @@ -555,6 +671,6 @@ Window Geometry: collapsed: false Views: collapsed: false - Width: 1600 - X: 43 - Y: 174 + Width: 3775 + X: 65 + Y: 24 diff --git a/ros/src/actuation/vehicles/packages/as/CMakeLists.txt b/ros/src/actuation/vehicles/packages/as/CMakeLists.txt index e5c65ada3af..ba6c7b0f534 100644 --- a/ros/src/actuation/vehicles/packages/as/CMakeLists.txt +++ b/ros/src/actuation/vehicles/packages/as/CMakeLists.txt @@ -2,42 +2,50 @@ cmake_minimum_required(VERSION 2.8.3) project(as) find_package( - catkin REQUIRED COMPONENTS - roscpp - std_msgs - geometry_msgs - automotive_platform_msgs - dbw_mkz_msgs + catkin REQUIRED COMPONENTS + autoware_build_flags + roscpp + message_filters + std_msgs + geometry_msgs + automotive_platform_msgs + automotive_navigation_msgs + pacmod_msgs + autoware_msgs ) catkin_package( - CATKIN_DEPENDS - roscpp - std_msgs - geometry_msgs - automotive_platform_msgs - dbw_mkz_msgs + CATKIN_DEPENDS + roscpp + message_filters + std_msgs + geometry_msgs + automotive_platform_msgs + automotive_navigation_msgs + pacmod_msgs + autoware_msgs ) -SET(CMAKE_CXX_FLAGS "-O2 -g -Wall ${CMAKE_CXX_FLAGS}") - include_directories( - ${catkin_INCLUDE_DIRS} + ${catkin_INCLUDE_DIRS} +) + +add_executable(ssc_interface + nodes/ssc_interface/ssc_interface_node.cpp + nodes/ssc_interface/ssc_interface.cpp ) -add_executable(pacmod_interface - nodes/pacmod_interface/pacmod_interface_node.cpp - nodes/pacmod_interface/pacmod_interface.cpp - ) -target_link_libraries(pacmod_interface ${catkin_LIBRARIES}) -add_dependencies(pacmod_interface ${catkin_EXPORTED_TARGETS}) +target_link_libraries(ssc_interface ${catkin_LIBRARIES}) -install(TARGETS pacmod_interface - ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} - ) +add_dependencies(ssc_interface ${catkin_EXPORTED_TARGETS}) + +install(TARGETS ssc_interface + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) install(DIRECTORY launch/ - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch - PATTERN ".svn" EXCLUDE) + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE +) diff --git a/ros/src/actuation/vehicles/packages/as/README.md b/ros/src/actuation/vehicles/packages/as/README.md index c24fad903c9..95e0cb201a8 100644 --- a/ros/src/actuation/vehicles/packages/as/README.md +++ b/ros/src/actuation/vehicles/packages/as/README.md @@ -7,5 +7,5 @@ git submodule update --init --recursive 3. Build the workspace 4. Ther is no GUI interface to launch this node. Hence use, ``` -roslaunch as pacmod_interface.launch +roslaunch as ssc_interface.launch ``` diff --git a/ros/src/actuation/vehicles/packages/as/launch/pacmod_interface.launch b/ros/src/actuation/vehicles/packages/as/launch/pacmod_interface.launch deleted file mode 100644 index 57659406848..00000000000 --- a/ros/src/actuation/vehicles/packages/as/launch/pacmod_interface.launch +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/ros/src/actuation/vehicles/packages/as/launch/ssc_interface.launch b/ros/src/actuation/vehicles/packages/as/launch/ssc_interface.launch new file mode 100644 index 00000000000..d7ce24eddfe --- /dev/null +++ b/ros/src/actuation/vehicles/packages/as/launch/ssc_interface.launch @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ros/src/actuation/vehicles/packages/as/nodes/pacmod_interface/pacmod_interface.cpp b/ros/src/actuation/vehicles/packages/as/nodes/pacmod_interface/pacmod_interface.cpp deleted file mode 100644 index 8202fabb177..00000000000 --- a/ros/src/actuation/vehicles/packages/as/nodes/pacmod_interface/pacmod_interface.cpp +++ /dev/null @@ -1,109 +0,0 @@ -/* - * Copyright 2017-2019 Autoware Foundation. All rights reserved. - * - * 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 "pacmod_interface.h" - -namespace pacmod -{ -// Constructor -PacmodInterface::PacmodInterface() : - private_nh_("~"), - control_mode_(false) -{ - initForROS(); -} - -// Destructor -PacmodInterface::~PacmodInterface() -{ -} - -void PacmodInterface::initForROS() -{ - // ros parameter settings - private_nh_.param("acceleration_limit", acceleration_limit_, 3.0); - private_nh_.param("deceleration_limit", deceleration_limit_, 3.0); - private_nh_.param("max_curvature_rate", max_curvature_rate_, 0.75); - - // setup subscriber - twist_cmd_sub_ = nh_.subscribe("twist_cmd", 10, &PacmodInterface::callbackFromTwistCmd, this); - control_mode_sub_ = nh_.subscribe("/as/control_mode", 10, &PacmodInterface::callbackFromControlMode, this); - speed_sub_ = nh_.subscribe("/vehicle/steering_report", 10, &PacmodInterface::callbackFromSteeringReport, this); - - // setup publisher - steer_mode_pub_ = nh_.advertise("/as/arbitrated_steering_commands", 10); - speed_mode_pub_ = nh_.advertise("/as/arbitrated_speed_commands", 10); - current_twist_pub_ = nh_.advertise("as_current_twist", 10); -} - -void PacmodInterface::run() -{ - ros::spin(); -} - - -void PacmodInterface::callbackFromTwistCmd(const geometry_msgs::TwistStampedConstPtr &msg) -{ - int mode; - if (control_mode_) - { - mode = 1; - } - else - { - mode = 0; - } - - automotive_platform_msgs::SpeedMode speed_mode; - speed_mode.header = msg->header; - speed_mode.mode = mode; - speed_mode.speed = msg->twist.linear.x; - speed_mode.acceleration_limit = 3.0; - speed_mode.deceleration_limit = 3.0; - - automotive_platform_msgs::SteerMode steer_mode; - steer_mode.header = msg->header; - steer_mode.mode = mode; - double curvature = msg->twist.angular.z / msg->twist.linear.x; - steer_mode.curvature = msg->twist.linear.x <= 0 ? 0 : curvature; - steer_mode.max_curvature_rate = 0.75; - - std::cout << "mode: " << mode << std::endl; - std::cout << "speed: " << speed_mode.speed << std::endl; - std::cout << "steer: " << steer_mode.curvature << std::endl; - - speed_mode_pub_.publish(speed_mode); - steer_mode_pub_.publish(steer_mode); -} - -void PacmodInterface::callbackFromControlMode(const std_msgs::BoolConstPtr &msg) -{ - control_mode_ = msg->data; -} - -void PacmodInterface::callbackFromSteeringReport(const dbw_mkz_msgs::SteeringReportConstPtr &msg) -{ - geometry_msgs::TwistStamped ts; - std_msgs::Header header; - header.stamp = ros::Time::now(); - ts.header = header; - ts.twist.linear.x = msg->speed; // [m/sec] - // Can we get angular velocity? - - current_twist_pub_.publish(ts); -} - -} // pacmod diff --git a/ros/src/actuation/vehicles/packages/as/nodes/pacmod_interface/pacmod_interface.h b/ros/src/actuation/vehicles/packages/as/nodes/pacmod_interface/pacmod_interface.h deleted file mode 100644 index 9b759b52fd7..00000000000 --- a/ros/src/actuation/vehicles/packages/as/nodes/pacmod_interface/pacmod_interface.h +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Copyright 2017-2019 Autoware Foundation. All rights reserved. - * - * 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. - */ - -#ifndef PACMOD_INTERFACE_H -#define PACMOD_INTERFACE_H - -// ROS includes -#include -#include -#include -#include -#include -#include - -namespace pacmod -{ -class PacmodInterface -{ -public: - PacmodInterface(); - ~PacmodInterface(); - - void run(); - -private: - // handle - ros::NodeHandle nh_; - ros::NodeHandle private_nh_; - - // publisher - ros::Publisher steer_mode_pub_; - ros::Publisher speed_mode_pub_; - ros::Publisher current_twist_pub_; - - // subscriber - ros::Subscriber twist_cmd_sub_; - ros::Subscriber control_mode_sub_; - ros::Subscriber speed_sub_; - - // ros param - double acceleration_limit_; - double deceleration_limit_; - double max_curvature_rate_; - - // variables - bool control_mode_; - - // callbacks - void callbackFromTwistCmd(const geometry_msgs::TwistStampedConstPtr &msg); - void callbackFromControlMode(const std_msgs::BoolConstPtr &msg); - void callbackFromSteeringReport(const dbw_mkz_msgs::SteeringReportConstPtr &msg); - - // initializer - void initForROS(); -}; -} // pacmod -#endif // PACMOD_INTERFACE_H diff --git a/ros/src/actuation/vehicles/packages/as/nodes/ssc_interface/ssc_interface.cpp b/ros/src/actuation/vehicles/packages/as/nodes/ssc_interface/ssc_interface.cpp new file mode 100644 index 00000000000..1c7f9109ac5 --- /dev/null +++ b/ros/src/actuation/vehicles/packages/as/nodes/ssc_interface/ssc_interface.cpp @@ -0,0 +1,287 @@ +/* + * Copyright 2017-2019 Autoware Foundation. All rights reserved. + * + * 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 "ssc_interface.h" + +SSCInterface::SSCInterface() : nh_(), private_nh_("~"), engage_(false), command_initialized_(false) +{ + // setup parameters + private_nh_.param("use_rear_wheel_speed", use_rear_wheel_speed_, true); + private_nh_.param("use_adaptive_gear_ratio", use_adaptive_gear_ratio_, true); + private_nh_.param("command_timeout", command_timeout_, 1000); + private_nh_.param("loop_rate", loop_rate_, 30.0); + private_nh_.param("wheel_base", wheel_base_, 2.79); + private_nh_.param("tire_radius", tire_radius_, 0.39); + private_nh_.param("ssc_gear_ratio", ssc_gear_ratio_, 16.135); + private_nh_.param("acceleration_limit", acceleration_limit_, 3.0); + private_nh_.param("deceleration_limit", deceleration_limit_, 3.0); + private_nh_.param("max_curvature_rate", max_curvature_rate_, 0.15); + private_nh_.param("agr_coef_a", agr_coef_a_, 15.713); + private_nh_.param("agr_coef_b", agr_coef_b_, 0.053); + private_nh_.param("agr_coef_c", agr_coef_c_, 0.042); + + rate_ = new ros::Rate(loop_rate_); + + // subscribers from autoware + vehicle_cmd_sub_ = nh_.subscribe("vehicle_cmd", 1, &SSCInterface::callbackFromVehicleCmd, this); + engage_sub_ = nh_.subscribe("vehicle/engage", 1, &SSCInterface::callbackFromEngage, this); + + // subscribers from SSC + module_states_sub_ = nh_.subscribe("as/module_states", 1, &SSCInterface::callbackFromSSCModuleStates, this); + curvature_feedback_sub_ = + new message_filters::Subscriber(nh_, "as/curvature_feedback", 10); + throttle_feedback_sub_ = + new message_filters::Subscriber(nh_, "as/throttle_feedback", 10); + brake_feedback_sub_ = + new message_filters::Subscriber(nh_, "as/brake_feedback", 10); + gear_feedback_sub_ = + new message_filters::Subscriber(nh_, "as/gear_feedback", 10); + velocity_accel_sub_ = + new message_filters::Subscriber(nh_, "as/velocity_accel", 10); + // subscribers from PACMod + wheel_speed_sub_ = + new message_filters::Subscriber(nh_, "pacmod/parsed_tx/wheel_speed_rpt", 10); + steering_wheel_sub_ = + new message_filters::Subscriber(nh_, "pacmod/parsed_tx/steer_rpt", 10); + ssc_feedbacks_sync_ = new message_filters::Synchronizer( + SSCFeedbacksSyncPolicy(10), *velocity_accel_sub_, *curvature_feedback_sub_, *throttle_feedback_sub_, + *brake_feedback_sub_, *gear_feedback_sub_, *wheel_speed_sub_, *steering_wheel_sub_); + ssc_feedbacks_sync_->registerCallback( + boost::bind(&SSCInterface::callbackFromSSCFeedbacks, this, _1, _2, _3, _4, _5, _6, _7)); + + // publishers to autoware + vehicle_status_pub_ = nh_.advertise("vehicle_status", 10); + current_twist_pub_ = nh_.advertise("vehicle/twist", 10); + + // publishers to SSC + steer_mode_pub_ = nh_.advertise("as/arbitrated_steering_commands", 10); + speed_mode_pub_ = nh_.advertise("as/arbitrated_speed_commands", 10); + turn_signal_pub_ = nh_.advertise("as/turn_signal_command", 10); + gear_pub_ = nh_.advertise("as/gear_select", 1, true); +} + +SSCInterface::~SSCInterface() +{ +} + +void SSCInterface::run() +{ + while (ros::ok()) + { + ros::spinOnce(); + publishCommand(); + rate_->sleep(); + } +} + +void SSCInterface::callbackFromVehicleCmd(const autoware_msgs::VehicleCmdConstPtr& msg) +{ + command_time_ = ros::Time::now(); + vehicle_cmd_ = *msg; + command_initialized_ = true; +} + +void SSCInterface::callbackFromEngage(const std_msgs::BoolConstPtr& msg) +{ + engage_ = msg->data; +} + +void SSCInterface::callbackFromSSCModuleStates(const automotive_navigation_msgs::ModuleStateConstPtr& msg) +{ + if (msg->name.find("veh_controller") != std::string::npos) + { + module_states_ = *msg; // *_veh_controller status is used for 'drive/steeringmode' + } +} + +void SSCInterface::callbackFromSSCFeedbacks(const automotive_platform_msgs::VelocityAccelConstPtr& msg_velocity, + const automotive_platform_msgs::CurvatureFeedbackConstPtr& msg_curvature, + const automotive_platform_msgs::ThrottleFeedbackConstPtr& msg_throttle, + const automotive_platform_msgs::BrakeFeedbackConstPtr& msg_brake, + const automotive_platform_msgs::GearFeedbackConstPtr& msg_gear, + const pacmod_msgs::WheelSpeedRptConstPtr& msg_wheel_speed, + const pacmod_msgs::SystemRptFloatConstPtr& msg_steering_wheel) +{ + ros::Time stamp = msg_velocity->header.stamp; + + // current speed + double speed = + !use_rear_wheel_speed_ ? + (msg_velocity->velocity) : + (msg_wheel_speed->rear_left_wheel_speed + msg_wheel_speed->rear_right_wheel_speed) * tire_radius_ / 2.; + + // update adaptive gear ratio (avoiding zero divizion) + adaptive_gear_ratio_ = + std::max(1e-5, agr_coef_a_ + agr_coef_b_ * speed * speed - agr_coef_c_ * msg_steering_wheel->output); + // current steering curvature + double curvature = !use_adaptive_gear_ratio_ ? + (msg_curvature->curvature) : + std::tan(msg_steering_wheel->output / adaptive_gear_ratio_) / wheel_base_; + + // as_current_velocity (geometry_msgs::TwistStamped) + geometry_msgs::TwistStamped twist; + twist.header.frame_id = BASE_FRAME_ID; + twist.header.stamp = stamp; + twist.twist.linear.x = speed; // [m/s] + twist.twist.angular.z = curvature * speed; // [rad/s] + current_twist_pub_.publish(twist); + + // vehicle_status (autoware_msgs::VehicleStatus) + autoware_msgs::VehicleStatus vehicle_status; + vehicle_status.header.frame_id = BASE_FRAME_ID; + vehicle_status.header.stamp = stamp; + + // drive/steeringmode + vehicle_status.drivemode = (module_states_.state == "active") ? autoware_msgs::VehicleStatus::MODE_AUTO : + autoware_msgs::VehicleStatus::MODE_MANUAL; + vehicle_status.steeringmode = vehicle_status.drivemode; + + // speed [km/h] + vehicle_status.speed = speed * 3.6; + + // drive/brake pedal [0,1000] (TODO: Scaling) + vehicle_status.drivepedal = (int)(1000 * msg_throttle->throttle_pedal); + vehicle_status.brakepedal = (int)(1000 * msg_brake->brake_pedal); + + // steering angle [rad] + vehicle_status.angle = std::atan(curvature * wheel_base_); + + // gearshift + if (msg_gear->current_gear.gear == automotive_platform_msgs::Gear::NONE) + { + vehicle_status.gearshift = 0; + } + else if (msg_gear->current_gear.gear == automotive_platform_msgs::Gear::PARK) + { + vehicle_status.gearshift = 3; + } + else if (msg_gear->current_gear.gear == automotive_platform_msgs::Gear::REVERSE) + { + vehicle_status.gearshift = 2; + } + else if (msg_gear->current_gear.gear == automotive_platform_msgs::Gear::NEUTRAL) + { + vehicle_status.gearshift = 4; + } + else if (msg_gear->current_gear.gear == automotive_platform_msgs::Gear::DRIVE) + { + vehicle_status.gearshift = 1; + } + + // lamp/light cannot be obtain from SSC + // vehicle_status.lamp + // vehicle_status.light + + vehicle_status_pub_.publish(vehicle_status); +} + +void SSCInterface::publishCommand() +{ + if (!command_initialized_) + { + return; + } + + ros::Time stamp = ros::Time::now(); + + // Desired values + // Driving mode (If autonomy mode should be active, mode = 1) + unsigned char desired_mode = engage_ ? 1 : 0; + + // Speed for SSC speed_model + double desired_speed = vehicle_cmd_.ctrl_cmd.linear_velocity; + + // Curvature for SSC steer_model + double desired_steering_angle = !use_adaptive_gear_ratio_ ? + vehicle_cmd_.ctrl_cmd.steering_angle : + vehicle_cmd_.ctrl_cmd.steering_angle * ssc_gear_ratio_ / adaptive_gear_ratio_; + double desired_curvature = std::tan(desired_steering_angle) / wheel_base_; + + // Gear (TODO: Use vehicle_cmd.gear) + unsigned char desired_gear = engage_ ? automotive_platform_msgs::Gear::DRIVE : automotive_platform_msgs::Gear::NONE; + + // Turn signal + unsigned char desired_turn_signal = automotive_platform_msgs::TurnSignalCommand::NONE; + + if (vehicle_cmd_.lamp_cmd.l == 0 && vehicle_cmd_.lamp_cmd.r == 0) + { + desired_turn_signal = automotive_platform_msgs::TurnSignalCommand::NONE; + } + else if (vehicle_cmd_.lamp_cmd.l == 1 && vehicle_cmd_.lamp_cmd.r == 0) + { + desired_turn_signal = automotive_platform_msgs::TurnSignalCommand::LEFT; + } + else if (vehicle_cmd_.lamp_cmd.l == 0 && vehicle_cmd_.lamp_cmd.r == 1) + { + desired_turn_signal = automotive_platform_msgs::TurnSignalCommand::RIGHT; + } + else if (vehicle_cmd_.lamp_cmd.l == 1 && vehicle_cmd_.lamp_cmd.r == 1) + { + // NOTE: HAZARD signal cannot be used in automotive_platform_msgs::TurnSignalCommand + } + + // Override desired speed to ZERO by emergency/timeout + bool emergency = (vehicle_cmd_.emergency == 1); + bool timeouted = (((ros::Time::now() - command_time_).toSec() * 1000) > command_timeout_); + + if (emergency || timeouted) + { + ROS_ERROR("Emergency Stopping, emergency = %d, timeouted = %d", emergency, timeouted); + desired_speed = 0.0; + } + + // speed command + automotive_platform_msgs::SpeedMode speed_mode; + speed_mode.header.frame_id = BASE_FRAME_ID; + speed_mode.header.stamp = stamp; + speed_mode.mode = desired_mode; + speed_mode.speed = desired_speed; + speed_mode.acceleration_limit = acceleration_limit_; + speed_mode.deceleration_limit = deceleration_limit_; + + // steer command + automotive_platform_msgs::SteerMode steer_mode; + steer_mode.header.frame_id = BASE_FRAME_ID; + steer_mode.header.stamp = stamp; + steer_mode.mode = desired_mode; + steer_mode.curvature = desired_curvature; + steer_mode.max_curvature_rate = max_curvature_rate_; + + // turn signal command + automotive_platform_msgs::TurnSignalCommand turn_signal; + turn_signal.header.frame_id = BASE_FRAME_ID; + turn_signal.header.stamp = stamp; + turn_signal.mode = desired_mode; + turn_signal.turn_signal = desired_turn_signal; + + // gear command + automotive_platform_msgs::GearCommand gear_cmd; + gear_cmd.header.frame_id = BASE_FRAME_ID; + gear_cmd.header.stamp = stamp; + gear_cmd.command.gear = desired_gear; + + // publish + speed_mode_pub_.publish(speed_mode); + steer_mode_pub_.publish(steer_mode); + turn_signal_pub_.publish(turn_signal); + gear_pub_.publish(gear_cmd); + + ROS_INFO_STREAM("Mode: " << (int)desired_mode << ", " + << "Speed: " << speed_mode.speed << ", " + << "Curvature: " << steer_mode.curvature << ", " + << "Gear: " << (int)gear_cmd.command.gear << ", " + << "TurnSignal: " << (int)turn_signal.turn_signal); +} diff --git a/ros/src/actuation/vehicles/packages/as/nodes/ssc_interface/ssc_interface.h b/ros/src/actuation/vehicles/packages/as/nodes/ssc_interface/ssc_interface.h new file mode 100644 index 00000000000..0843d5939ef --- /dev/null +++ b/ros/src/actuation/vehicles/packages/as/nodes/ssc_interface/ssc_interface.h @@ -0,0 +1,132 @@ +/* + * Copyright 2017-2019 Autoware Foundation. All rights reserved. + * + * 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. + */ + +#ifndef SSC_INTERFACE_H +#define SSC_INTERFACE_H + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +static const std::string BASE_FRAME_ID = "base_link"; + +class SSCInterface +{ +public: + SSCInterface(); + ~SSCInterface(); + + void run(); + +private: + typedef message_filters::sync_policies::ApproximateTime< + automotive_platform_msgs::VelocityAccel, automotive_platform_msgs::CurvatureFeedback, + automotive_platform_msgs::ThrottleFeedback, automotive_platform_msgs::BrakeFeedback, + automotive_platform_msgs::GearFeedback, pacmod_msgs::WheelSpeedRpt, pacmod_msgs::SystemRptFloat> + SSCFeedbacksSyncPolicy; + + // handle + ros::NodeHandle nh_; + ros::NodeHandle private_nh_; + + // subscribers + ros::Subscriber vehicle_cmd_sub_; + ros::Subscriber engage_sub_; + ros::Subscriber module_states_sub_; + message_filters::Subscriber* velocity_accel_sub_; + message_filters::Subscriber* curvature_feedback_sub_; + message_filters::Subscriber* throttle_feedback_sub_; + message_filters::Subscriber* brake_feedback_sub_; + message_filters::Subscriber* gear_feedback_sub_; + message_filters::Subscriber* wheel_speed_sub_; + message_filters::Subscriber* steering_wheel_sub_; + message_filters::Synchronizer* ssc_feedbacks_sync_; + + // publishers + ros::Publisher steer_mode_pub_; + ros::Publisher speed_mode_pub_; + ros::Publisher turn_signal_pub_; + ros::Publisher gear_pub_; + ros::Publisher vehicle_status_pub_; + ros::Publisher current_twist_pub_; + + // ros param + int command_timeout_; // vehicle_cmd timeout [ms] + double loop_rate_; // [Hz] + double wheel_base_; // [m] + double acceleration_limit_; // [m/s^2] + double deceleration_limit_; // [m/s^2] + double max_curvature_rate_; // [rad/m/s] + + bool use_rear_wheel_speed_; // instead of 'as/velocity_accel' + bool use_adaptive_gear_ratio_; // for more accurate steering angle (gr = theta_sw / theta_s) + double tire_radius_; // [m] (NOTE: used by 'use_rear_wheel_speed' mode) + double ssc_gear_ratio_; // gr = const (NOTE: used by 'use_adaptive_gear_ratio' mode) + double agr_coef_a_, agr_coef_b_, agr_coef_c_; // gr = a + b * speed^2 + c * theta_sw + + // NOTE: default parameters in SSC + // tire radius = 0.39 [m] + // max steering angle = 0.533 [rad] + // max steering wheel angle = 8.3 [rad] + // -> ssc_gear_ratio = 16.135 [-] + // max steering wheel rotation rate = 6.28 [rad/s] + + // variables + bool engage_; + bool command_initialized_; + double adaptive_gear_ratio_; + ros::Time command_time_; + autoware_msgs::VehicleCmd vehicle_cmd_; + automotive_navigation_msgs::ModuleState module_states_; + ros::Rate* rate_; + + // callbacks + void callbackFromVehicleCmd(const autoware_msgs::VehicleCmdConstPtr& msg); + void callbackFromEngage(const std_msgs::BoolConstPtr& msg); + void callbackFromSSCModuleStates(const automotive_navigation_msgs::ModuleStateConstPtr& msg); + void callbackFromSSCFeedbacks(const automotive_platform_msgs::VelocityAccelConstPtr& msg_velocity, + const automotive_platform_msgs::CurvatureFeedbackConstPtr& msg_curvature, + const automotive_platform_msgs::ThrottleFeedbackConstPtr& msg_throttle, + const automotive_platform_msgs::BrakeFeedbackConstPtr& msg_brake, + const automotive_platform_msgs::GearFeedbackConstPtr& msg_gear, + const pacmod_msgs::WheelSpeedRptConstPtr& msg_wheel_speed, + const pacmod_msgs::SystemRptFloatConstPtr& msg_steering_wheel); + // functions + void publishCommand(); +}; + +#endif // SSC_INTERFACE_H diff --git a/ros/src/actuation/vehicles/packages/as/nodes/pacmod_interface/pacmod_interface_node.cpp b/ros/src/actuation/vehicles/packages/as/nodes/ssc_interface/ssc_interface_node.cpp similarity index 77% rename from ros/src/actuation/vehicles/packages/as/nodes/pacmod_interface/pacmod_interface_node.cpp rename to ros/src/actuation/vehicles/packages/as/nodes/ssc_interface/ssc_interface_node.cpp index e1561920eaa..57e6f69339d 100644 --- a/ros/src/actuation/vehicles/packages/as/nodes/pacmod_interface/pacmod_interface_node.cpp +++ b/ros/src/actuation/vehicles/packages/as/nodes/ssc_interface/ssc_interface_node.cpp @@ -14,17 +14,15 @@ * limitations under the License. */ -// ROS Includes #include -#include "pacmod_interface.h" +#include "ssc_interface.h" -int main(int argc, char **argv) +int main(int argc, char** argv) { - ros::init(argc, argv, "pacmod_interface"); - pacmod::PacmodInterface pacmod_interface; - - pacmod_interface.run(); + ros::init(argc, argv, "ssc_interface"); + SSCInterface node; + node.run(); return 0; } diff --git a/ros/src/actuation/vehicles/packages/as/package.xml b/ros/src/actuation/vehicles/packages/as/package.xml index 5fb65f741b2..614575990c6 100644 --- a/ros/src/actuation/vehicles/packages/as/package.xml +++ b/ros/src/actuation/vehicles/packages/as/package.xml @@ -3,22 +3,31 @@ as 1.10.0 The pacmod interface package - T.Ando + Akihito Ohsato Apache 2 + Akihito Ohsato + T.Ando + catkin autoware_build_flags roscpp + message_filters std_msgs geometry_msgs automotive_platform_msgs - dbw_mkz_msgs + automotive_navigation_msgs + pacmod_msgs + autoware_msgs roscpp + message_filters std_msgs geometry_msgs automotive_platform_msgs - dbw_mkz_msgs + automotive_navigation_msgs + pacmod_msgs + autoware_msgs diff --git a/ros/src/actuation/vehicles/packages/ymc/CMakeLists.txt b/ros/src/actuation/vehicles/packages/ymc/CMakeLists.txt index 2e650759f23..aa722bc17f6 100755 --- a/ros/src/actuation/vehicles/packages/ymc/CMakeLists.txt +++ b/ros/src/actuation/vehicles/packages/ymc/CMakeLists.txt @@ -53,3 +53,12 @@ target_link_libraries(g30esli_interface ${catkin_LIBRARIES} ${CMAKE_CURRENT_SOURCE_DIR}/lib/libymc_can_${LIB_VERSION}${LIB_ARCH}.a ) + +install(TARGETS g30esli_interface + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/README.md b/ros/src/common/libs/diagnostics_lib/README.md deleted file mode 100644 index e155dc0a384..00000000000 --- a/ros/src/common/libs/diagnostics_lib/README.md +++ /dev/null @@ -1,146 +0,0 @@ -# diagnostic_lib - -## diagnostic packages for Autoware. - -### packages -1. diag_lib -packages contain diag_manager. - -1. diag_msgs -original messages for diagnostic - -1. fake_autoware_nodes -test fake nodes and samples - -### How to test -``` -roslaunch fake_autoware_nodes diag_sample.launch -``` - -### How to use -1. add diag_lib,diag_msgs to your package dependency. - -1. #include to your source code. - -1. create diag_manager class instance in your source code. - -1. define error code to yaml file (sample: /config/error_code_sample_config.yaml) - -### Compile options -1. -DSTRICT_ERROR_CODE_CHECK=(ON or OFF) -if you set this option ON, check error code infomation and when it was wrong, error message was shown and the wrong node was killed. - -### How it works -diag_manager instance which attatched to your C++ ROS node publish /diag topic (type:diag_msgs/diag_error). -You can define errors in .yaml setting file. -Each diag_manager and watchdog node read .yaml setting file and load error codes. -The watchdog node check allive or dead all the nodes in the .yaml setting file and aggregate /diag topic which comes from diag_managers. - -![rosgraph](rosgraph.png "rosgraph") - -### How to attach diag_manager class -Please read source codes in fake_autoware_nodes - -### required parameters(rosparam) -error_code_config_path (type:String) : full path of error code config file path. - -#### public member functions -#### constructer and destructer - -1. constructer -``` -diag_manager::diag_manager(); -``` - -2. destructor -``` -diag_manager::diag_manager(); -``` - -#### diag functions -Note : argument num is the error number you defined in the error code setting yaml file. -1. DIAG_ASSERT_VALUE_RANGE -``` -template -void DIAG_ASSERT_VALUE_RANGE(T min, T max, T value, int num) -``` -If value is not in the range, send diag message. -When you use this function , you expected the value satisfy the conditional expression "min < value < max". -num is the error number you defined in the error code setting yaml file. - -2. DIAG_ASSERT_VALUE_MIN -``` -template -void DIAG_ASSERT_VALUE_MIN(T min, T value, int num) -``` -If value is not in the range, send diag message. -When you use this function , you expected the value satisfy the conditional expression "min < value". -num is the error number you defined in the error code setting yaml file. - -3. DIAG_ASSERT_VALUE_MAX -``` -template -void DIAG_ASSERT_VALUE_MIN(T max, T value, int num) -``` -If value is not in the range, send diag message. -When you use this function , you expected the value satisfy the conditional expression "max < value". -num is the error number you defined in the error code setting yaml file. - -4. DIAG_ASSERT_EXCEPTION -``` -template -void DIAG_ASSERT_EXCEPTION(T exception,int num) -``` -You shold call this function in catch block in your source code. -When this function was called, diag_manager send a EXCEPTION diag message. - -5. DIAG_RESOURCE -``` -void DIAG_RESOURCE(std::string target_resource_path, int num); -``` -When the function was called, diag_manager check the target resource file exist. -If diag_manager failed to find the file, diag_manager kill the target ROS node. -I strongly recommend that you should call this function in the initialize function. -num is the error number you defined in the error code setting yaml file. - -6. DIAG_RATE_CHECK -``` -void DIAG_RATE_CHECK(int num); -``` -Put this function where you want to know operation cycle. -num is the error number you defined in the error code setting yaml file. - -7. DIAG_LOW_RELIABILITY -``` -void DIAG_LOW_RELIABILITY(int num); -``` -You call this function when your node output is low reliability. -num is the error number you defined in the error code setting yaml file. - -#### logging function -1. WRITE_LOG -Write log file to /tmp/Autoware/Diag/Log//log.txt -The log remains in such format. -``` -[2018-09-13T03:25:25.340543] : in /ndt_matching: topic /nft_matching/data subscribe rate was low (Warn) -[2018-09-13T03:25:25.341312] : in /ndt_matching: The input value hogehoge is out of range. -[2018-09-13T03:25:25.441295] : in /ndt_matching: The input value hogehoge is out of range. -[2018-09-13T03:25:25.541326] : in /ndt_matching: The input value hogehoge is out of range. -[2018-09-13T03:25:25.641427] : in /ndt_matching: The input value hogehoge is out of range. -[2018-09-13T03:25:25.741318] : in /ndt_matching: The input value hogehoge is out of range. -[2018-09-13T03:25:25.841311] : in /ndt_matching: The input value hogehoge is out of range. -[2018-09-13T03:25:25.941436] : in /ndt_matching: The input value hogehoge is out of range. -[2018-09-13T03:25:26.041322] : in /ndt_matching: The input value hogehoge is out of range. -[2018-09-13T03:25:26.141353] : in /ndt_matching: The input value hogehoge is out of range. -[2018-09-13T03:25:26.340464] : in /ndt_matching: topic /nft_matching/data subscribe rate was low (Warn) -[2018-09-13T03:25:27.340491] : in /ndt_matching: topic /nft_matching/data subscribe rate was low (Warn) -[2018-09-13T03:25:28.241331] : in /ndt_matching: exception was catched -[2018-09-13T03:25:28.241375] : in /ndt_matching: Divided by zero. -[2018-09-13T03:25:28.340549] : in /ndt_matching: topic /nft_matching/data subscribe rate was low (Warn) -[2018-09-13T03:25:29.340556] : in /ndt_matching: topic /nft_matching/data subscribe rate was low (Warn) -[2018-09-13T03:25:30.340551] : in /ndt_matching: topic /nft_matching/data subscribe rate was low (Warn) -[2018-09-13T03:25:30.341377] : in /ndt_matching: The input value hogehoge is out of range. -[2018-09-13T03:25:30.441393] : in /ndt_matching: The input value hogehoge is out of range. -[2018-09-13T03:25:30.541348] : in /ndt_matching: The input value hogehoge is out of range. -[2018-09-13T03:25:30.641382] : in /ndt_matching: The input value hogehoge is out of range. -``` \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/CHANGELOG.rst b/ros/src/common/libs/diagnostics_lib/diag_lib/CHANGELOG.rst deleted file mode 100644 index 122fa7d6e89..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/CHANGELOG.rst +++ /dev/null @@ -1,28 +0,0 @@ -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Changelog for package diag_lib -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -1.10.0 (2019-01-17) -------------------- - -1.9.1 (2018-11-06) ------------------- - -1.9.0 (2018-10-31) ------------------- -* add filter to the fake_autoware_node -* add filter function by using node number -* dd diag_filter to the fake_subscriber -* add disable mode for diag_manager -* add diag_lib - add csv writer - remove unused comment - fix maintainer names - fix email address - fix dependency - fix buildtool_depend, remove unused lines from find_package -* Contributors: Masaya Kataoka - -* add csv writer -* add diag_lib -* Contributors: Masaya Kataoka diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/CMakeLists.txt b/ros/src/common/libs/diagnostics_lib/diag_lib/CMakeLists.txt deleted file mode 100644 index dbffd972061..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/CMakeLists.txt +++ /dev/null @@ -1,71 +0,0 @@ -cmake_minimum_required(VERSION 2.8.3) -project(diag_lib) - -add_compile_options(-std=c++11) - -find_package(catkin REQUIRED COMPONENTS - diag_msgs - roscpp -) - -find_package(Boost REQUIRED COMPONENTS filesystem) - -find_package(PkgConfig REQUIRED) -pkg_check_modules(YAML_CPP REQUIRED yaml-cpp) - -option(STRICT_ERROR_CODE_CHECK "enables strict error code check" OFF) -if(STRICT_ERROR_CODE_CHECK) - add_definitions(-DSTRICT_ERROR_CODE_CHECK) -endif() - -catkin_package( - INCLUDE_DIRS include - LIBRARIES diag_manager diag_filter - CATKIN_DEPENDS diag_msgs roscpp -) - -include_directories( - include - ${catkin_INCLUDE_DIRS} -) - -set(watchdog_node_src src/watchdog_node.cpp src/watchdog.cpp src/diag_manager.cpp src/rate_checker.cpp src/diag_subscriber.cpp) -add_executable(watchdog_node ${watchdog_node_src}) -target_link_libraries(watchdog_node ${catkin_LIBRARIES} ${YAML_CPP_LIBRARIES}) -add_dependencies(watchdog_node ${catkin_EXPORTED_TARGETS}) - -set(diag_manager_src src/diag_manager.cpp src/rate_checker.cpp src/diag_subscriber.cpp) -add_library(diag_manager SHARED ${diag_manager_src}) -target_link_libraries(diag_manager ${catkin_LIBRARIES} ${YAML_CPP_LIBRARIES}) -add_dependencies(diag_manager ${catkin_EXPORTED_TARGETS}) - -set(diag_filter_src src/diag_filter.cpp) -add_library(diag_filter SHARED ${diag_filter_src}) -target_link_libraries(diag_filter ${catkin_LIBRARIES} ${YAML_CPP_LIBRARIES}) -add_dependencies(diag_filter ${catkin_EXPORTED_TARGETS}) - -# CPP Execution programs -set(CPP_EXEC_NAMES watchdog_node) -foreach(cpp_exec_names ${CPP_EXEC_NAMES}) - install(TARGETS ${cpp_exec_names} - RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} - ) -endforeach(cpp_exec_names) - -# include header files -install(DIRECTORY include/${PROJECT_NAME}/ - DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} -) - -# Install all files -foreach(dir config launch) - install(DIRECTORY ${dir}/ - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/${dir}) -endforeach(dir) - -# Install library -install(TARGETS diag_manager diag_filter - ARCHIVE DESTINATION lib - LIBRARY DESTINATION lib - RUNTIME DESTINATION bin -) \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/config/error_code_sample_config.yaml b/ros/src/common/libs/diagnostics_lib/diag_lib/config/error_code_sample_config.yaml deleted file mode 100644 index 7a7989b3cf3..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/config/error_code_sample_config.yaml +++ /dev/null @@ -1,49 +0,0 @@ -/watchdog_node: - node_number: 0 - errors: - - num: 0 - name: required file does not exist - category: 7 - description: required file does not exist -/pure_pursuit: - node_number: 0 - errors: - - num: 0 - name: out of range - category: 8 - description: The input value hogehoge is out of range. - - num: 1 - name: node is ded - category: 3 - description: /pure_pursuit node is dead -/ndt_matching: - node_number: 1 - errors: - - num: 0 - name: out of range - category: 8 - description: The input value hogehoge is out of range. - - num: 1 - name: exception - category: 2 - description: exception was catched - - num: 2 - name: low subscribe rate - category: 4 - description: topic /nft_matching/data subscribe rate was low (Warn) - threshold: 10.0 - level: warn - - num: 3 - name: low subscribe rate - category: 4 - description: topic /nft_matching/data subscribe rate was low (Error) - threshold: 5.0 - level: error - - num: 4 - name: low reliability - category: 12 - description: low reliability - - num: 5 - name: node is ded - category: 3 - description: /ndt_matching node is dead \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_filter.h b/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_filter.h deleted file mode 100644 index 4312f929d5e..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_filter.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef DIAG_FILTER_H_INCLUDED -#define DIAG_FILTER_H_INCLUDED - -//headers in diag_msgs -#include -#include -#include - -//headers in ROS -#include - -//headers in Boost -#include - -//headers in STL -#include - -class diag_filter -{ -public: - diag_filter(); - ~diag_filter(); - boost::optional filter(diag_msgs::diag diag, std::string target_node); - boost::optional filter(diag_msgs::diag diag, int target_node_number); -private: - std::map node_number_data_; - ros::NodeHandle nh_; - bool check_resource_(std::string target_resource_path); - volatile bool enable_; - std::string error_code_config_path_; -}; -#endif //DIAG_FILTER_H_INCLUDED \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_info.h b/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_info.h deleted file mode 100644 index e535ca57995..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_info.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef DIAG_INFO_H_INCLUDED -#define DIAG_INFO_H_INCLUDED - -//headers in diag_lib -#include - -//headers in STL -#include - -//headers in boost -#include - -struct diag_info -{ - const int num; - const std::string name; - const int category; - const std::string description; - const boost::optional threshold; - const boost::optional level; - diag_info(int num_, std::string name_, int category_, std::string description_) - : num(num_), name(name_), category(category_) ,description(description_) , threshold(boost::none), level(boost::none) - {}; - diag_info(int num_, std::string name_, int category_, std::string description_, double threshold_, int level_) - : num(num_), name(name_), category(category_) ,description(description_) , threshold(threshold_), level(level_) - { - - } -}; -#endif //DIAG_INFO_H_INCLUDED \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_macros.h b/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_macros.h deleted file mode 100644 index 8ec29cfc134..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_macros.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef DIAG_MACROS_H_INCLUDED -#define DIAG_MACROS_H_INCLUDED - -#define GET_VARIABLE_NAME(Variable) - -#endif //DIAG_MACROS_H_INCLUDED \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_manager.h b/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_manager.h deleted file mode 100644 index c5c099fd19e..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_manager.h +++ /dev/null @@ -1,137 +0,0 @@ -#ifndef DIAG_MANAGER_H_INCLUDED -#define DIAG_MANAGER_H_INCLUDED - -//headers in diag_lib -#include -#include -#include -#include -#include -#include - -//headers in ROS -#include - -//headers in STL -#include -#include -#include -#include - -//headers in diag_msgs -#include - -//headers in boost -#include -#include -#include -#include -#include -#include - -// headers in YAML-CPP -#include - -class diag_manager -{ -public: - diag_manager(); - ~diag_manager(); - template - void DIAG_ASSERT_VALUE_RANGE(T min, T max, T value, int num) - { - if(enable_diag_ == false) - return; - std::vector required_error_code = {INVALID_INITIAL_VALUE, INVALID_VALUE}; - if(check_error_code(num, required_error_code)) - { - if(value < min) - { - ADD_DIAG_LOG_WARN(query_diag_info(num)->description); - publish_diag_(query_diag_info(num).get()); - return; - } - if(value > max) - { - ADD_DIAG_LOG_WARN(query_diag_info(num)->description); - publish_diag_(query_diag_info(num).get()); - return; - } - } - return; - } - template - void DIAG_ASSERT_VALUE_MIN(T min, T value, int num) - { - if(enable_diag_ == false) - return; - std::vector required_error_code = {INVALID_INITIAL_VALUE, INVALID_VALUE}; - if(check_error_code(num, required_error_code)) - { - if(value < min) - { - ADD_DIAG_LOG_WARN(query_diag_info(num)->description); - publish_diag_(query_diag_info(num).get()); - return; - } - } - return; - } - template - void DIAG_ASSERT_VALUE_MAX(T max, T value, int num) - { - if(enable_diag_ == false) - return; - std::vector required_error_code = {INVALID_INITIAL_VALUE, INVALID_VALUE}; - if(check_error_code(num, required_error_code)) - { - if(value > max) - { - ADD_DIAG_LOG_WARN(query_diag_info(num)->description); - publish_diag_(query_diag_info(num).get()); - return; - } - } - return; - } - template - void DIAG_ASSERT_EXCEPTION(T exception,int num) - { - if(enable_diag_ == false) - return; - std::vector required_error_code = {EXCEPTION}; - if(check_error_code(num, required_error_code)) - { - ADD_DIAG_LOG_WARN(query_diag_info(num)->description); - ADD_DIAG_LOG_WARN(exception.what()); - publish_diag_(query_diag_info(num).get()); - } - return; - } - void DIAG_RESOURCE(std::string target_resource_path, int num); - void DIAG_RATE_CHECK(int num); - void DIAG_LOW_RELIABILITY(int num); - std::vector get_diag_info(){return diag_info_;} - boost::optional query_diag_info(int num); - void WRITE_LOG(); -private: - void ADD_DIAG_LOG_WARN(std::string log_text); - void ADD_DIAG_LOG_ERROR(std::string log_text); - void check_rate_(); - bool check_error_code(int requested_error_code, std::vector right_categories); - void publish_diag_(diag_info info); - // check resource for diag_manager - bool diag_resource(std::string target_resource_path); - volatile bool enable_diag_; - std::vector diag_info_; - std::vector diag_log_; - ros::Publisher diag_pub_; - ros::NodeHandle nh_; - ros::Time timer_; - //config - std::string error_code_config_path_; - YAML::Node error_code_config_; - //rate checker - std::map > checkers_; -}; -#endif //DIAG_MANAGER_H_INCLUDED \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_manager_config.h b/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_manager_config.h deleted file mode 100644 index 26e3234e491..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_manager_config.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef DIAG_MANGER_CONFIG_H_INCLUDED -#define DIAG_MANGER_CONFIG_H_INCLUDED - -/* -define values for rate checker -*/ -#define RATE_CHECKER_BUFFER_LENGTH 1 -#define RATE_CHECK_FREQUENCY 1.0 - -/* -define for Pub/Sub Operation cycle critical LEVEL -*/ -//#define LEVEL_NORMAL 0 -#define LEVEL_WARN 1 -#define LEVEL_ERROR 2 - -#endif //DIAGMANAGER_CONFIG_H_INCULDED \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_subscriber.h b/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_subscriber.h deleted file mode 100644 index c138ce8dd39..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/diag_subscriber.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef DIAG_SUBSCRIBER_H_INCLUDED -#define DIAG_SUBSCRIBER_H_INCLUDED - -//headers in STL -#include -#include -#include - -//headers in ROS -#include - -//headers in diag_msgs -#include -#include - -class diag_subscriber -{ - public: - diag_subscriber(std::string target_node,int target_node_number); - ~diag_subscriber(); - diag_msgs::diag_node_errors get_diag_node_errors(); - private: - std::mutex mtx_; - std::vector buffer_; - ros::Subscriber diag_sub_; - ros::NodeHandle nh_; - void callback_(diag_msgs::diag_error msg); - const std::string target_node_; - const int target_node_number_; -}; - -#endif //DIAG_SUBSCRIBER_H_INCLUDED \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/error_category.h b/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/error_category.h deleted file mode 100644 index 38f0c5ea891..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/error_category.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef ERROR_CATEGORY_H_INCLUDED -#define ERROR_CATEGORY_H_INCLUDED - -//#define MEMORY_ERROR 0 -//#define SEGMENTATION_FAULT 2 -#define EXCEPTION 2 -#define NODE_IS_DEAD 3 -#define LOW_SUBSCRIBE_RATE 4 -#define LOW_PUBLISH_RATE 5 -#define LOW_OPERATION_CYCLE 6 -#define RESOURCE_NOT_FOUND 7 -#define INVALID_INITIAL_VALUE 8 -#define INVALID_VALUE 9 -#define LOW_RELIABILITY 12 -#define DEVICE_CONNECTION_LOST 13 - -#endif //ERROR_CATEGORY_H_INCLUDED \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/rate_checker.h b/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/rate_checker.h deleted file mode 100644 index fb65459a07d..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/rate_checker.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef RATE_CHECKER_H_INCLUDED -#define RATE_CHECKER_H_INCLUDED - -//headers in ROS -#include - -//headers in STL -#include -#include - -//headers in Boost -#include - -class rate_checker -{ - public: - rate_checker(double buffer_length); - ~rate_checker(); - void check(); - boost::optional get_rate(); - private: - ros::Time start_time_; - void update_(); - std::vector data_; - const double buffer_length_; - std::mutex mtx_; -}; -#endif //RATE_CHECKER_H_INCLUDED \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/watchdog.h b/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/watchdog.h deleted file mode 100644 index a2f50e9388e..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/include/diag_lib/watchdog.h +++ /dev/null @@ -1,50 +0,0 @@ -#ifndef WATCHDOG_H_INCLUDED -#define WATCHDOG_H_INCLUDED - -//headers in diag_lib -#include -#include -#include - -//headers in diag_msgs -#include -#include -#include - -//headers in STL -#include -#include - -//headers in YAML-CPP -#include - -//headers in Boost -#include -#include -#include -#include - -class watchdog -{ -public: - watchdog(); - ~watchdog(); - void run(); -private: - ros::NodeHandle nh_; - // parameters - std::string config_filepath_; - double publish_rate_; - // diagnostic manager - diag_manager diag_; - std::map > > watchdog_diag_info_; - std::vector diag_target_nodes_; - std::vector watchdog_target_nodes_; - std::map connection_status_; - std::map > diag_sub_; - ros::Publisher diag_pub_; - void update_connection_status_(); - void publish_diag_(); - void write_error_code_csv_(YAML::Node config); -}; -#endif //WATCHDOG_H_INCLUDED \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/launch/watchdog_sample.launch b/ros/src/common/libs/diagnostics_lib/diag_lib/launch/watchdog_sample.launch deleted file mode 100644 index c0f0d0d941b..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/launch/watchdog_sample.launch +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/package.xml b/ros/src/common/libs/diagnostics_lib/diag_lib/package.xml deleted file mode 100644 index 7f12f177f7a..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/package.xml +++ /dev/null @@ -1,24 +0,0 @@ - - diag_lib - 1.10.0 - The diag_lib package - - Masaya Kataoka - - Apache 2 - - Masaya Kataoka - - catkin - autoware_build_flags - diag_msgs - roscpp - yaml-cpp - diag_msgs - roscpp - diag_msgs - roscpp - - - - diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/src/diag_filter.cpp b/ros/src/common/libs/diagnostics_lib/diag_lib/src/diag_filter.cpp deleted file mode 100644 index e26efc02685..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/src/diag_filter.cpp +++ /dev/null @@ -1,66 +0,0 @@ -// headers in diag_lib -#include - -// headers in YAML-CPP -#include - -//headers in boost -#include - -diag_filter::diag_filter() -{ - nh_.param("/error_code_config_path", error_code_config_path_, std::string("")); - if(check_resource_(error_code_config_path_)) - { - enable_ = true; - } - else - { - enable_ = false; - return; - } - YAML::Node config = YAML::LoadFile(error_code_config_path_.c_str()); - try - { - for(YAML::const_iterator it=config.begin();it != config.end();++it) - { - YAML::Node single_node_data = config[it->first.as()]; - node_number_data_[it->first.as()] = single_node_data["node_number"].as(); - } - } - catch(...) - { - ROS_ERROR_STREAM("Failed to parse error code yaml file."); - } -} - -diag_filter::~diag_filter() -{ - -} - -bool diag_filter::check_resource_(std::string target_resource_path) -{ - namespace fs = boost::filesystem; - fs::path path(target_resource_path); - boost::system::error_code error; - const bool result = fs::exists(path, error); - if (!result || error) - return false; - return true; -} - -boost::optional diag_filter::filter(diag_msgs::diag diag, std::string target_node) -{ - return filter(diag,node_number_data_[target_node]); -} - -boost::optional diag_filter::filter(diag_msgs::diag diag, int target_node_number) -{ - for(int i=0; i - -diag_manager::diag_manager() -{ - enable_diag_ = false; - nh_.param("/error_code_config_path", error_code_config_path_, std::string("")); - if(!diag_resource(error_code_config_path_)) - { - return; - } - YAML::Node config = YAML::LoadFile(error_code_config_path_.c_str()); - error_code_config_ = config[ros::this_node::getName()]; - try - { - for(const YAML::Node &error : error_code_config_["errors"]) - { - diag_info info(error["num"].as(), error["name"].as(), error["category"].as(), error["description"].as()); - if((info.category == LOW_SUBSCRIBE_RATE) || (info.category == LOW_PUBLISH_RATE) || (info.category == LOW_OPERATION_CYCLE)) - { - if(error["level"].as() == "warn") - { - diag_info detail_info(error["num"].as(), error["name"].as(), error["category"].as(), error["description"].as() ,error["threshold"].as(), LEVEL_WARN); - boost::shared_ptr rate_checker_ptr = boost::make_shared(RATE_CHECKER_BUFFER_LENGTH); - checkers_[info.num] = rate_checker_ptr; - diag_info_.push_back(detail_info); - } - if(error["level"].as() == "error") - { - diag_info detail_info(error["num"].as(), error["name"].as(), error["category"].as(), error["description"].as() ,error["threshold"].as(), LEVEL_ERROR); - boost::shared_ptr rate_checker_ptr = boost::make_shared(RATE_CHECKER_BUFFER_LENGTH); - checkers_[info.num] = rate_checker_ptr; - diag_info_.push_back(detail_info); - } - continue; - } - diag_info_.push_back(info); - } - } - catch(...) - { -#ifdef STRICT_ERROR_CODE_CHECK - ROS_ERROR_STREAM("diag config file format was wrong. kill " + ros::this_node::getName() + ". Please check " << error_code_config_path_); - WRITE_LOG(); - std::exit(-1); -#else - ROS_WARN_STREAM("diag config file format was wrong in " + ros::this_node::getName() + ". Please check " << error_code_config_path_); -#endif - } - diag_pub_ = nh_.advertise(ros::this_node::getName() + "/diag", 10); - boost::thread rate_check_thread(boost::bind(&diag_manager::check_rate_, this));; - enable_diag_ = true; -} - -diag_manager::~diag_manager() -{ - -} - -void diag_manager::check_rate_() -{ - ros::Rate rate(RATE_CHECK_FREQUENCY); - while(ros::ok()) - { - for (auto const& checker : checkers_) - { - boost::optional rate = checker.second->get_rate(); - boost::optional info = query_diag_info(checker.first); - if(rate && info && info.get().threshold) - { - if(*rate required_error_code = {LOW_RELIABILITY}; - if(check_error_code(num, required_error_code)) - { - boost::optional info = query_diag_info(num); - ADD_DIAG_LOG_WARN(info.get().description); - publish_diag_(query_diag_info(info.get().num).get()); - } - return; -} - -void diag_manager::DIAG_RATE_CHECK(int num) -{ - if(enable_diag_ == false) - return; - std::vector required_error_code = {LOW_SUBSCRIBE_RATE, LOW_PUBLISH_RATE, LOW_OPERATION_CYCLE}; - if(check_error_code(num, required_error_code)) - { - try - { - checkers_.at(num)->check(); - } - catch(std::out_of_range&) - { -#ifdef STRICT_ERROR_CODE_CHECK - ROS_ERROR_STREAM("rate checker object cannot found. Please check " << error_code_config_path_); - WRITE_LOG(); - std::exit(-1); -#else - ROS_WARN_STREAM("rate checker object cannot found. Please check " << error_code_config_path_); -#endif - } - } - return; -} - -boost::optional diag_manager::query_diag_info(int num) -{ - for(auto diag_info_itr = diag_info_.begin(); diag_info_itr != diag_info_.end(); diag_info_itr++) - { - if(diag_info_itr->num == num) - { - if(diag_info_itr->threshold && diag_info_itr->level) - { - diag_info ret(diag_info_itr->num, diag_info_itr->name, diag_info_itr->category, diag_info_itr->description, diag_info_itr->threshold.get(), diag_info_itr->level.get()); - return ret; - } - else - { - diag_info ret(diag_info_itr->num, diag_info_itr->name, diag_info_itr->category, diag_info_itr->description); - return ret; - } - } - } - return boost::none; -} - -void diag_manager::WRITE_LOG() -{ - namespace fs = boost::filesystem; - const fs::path path("/tmp/Autoware/Diag/Log/" + ros::this_node::getName()); - boost::system::error_code error; - const bool result = fs::create_directories(path, error); - std::vector::iterator it = diag_log_.begin(); - std::string write_string = ""; - while( it != diag_log_.end() ) { - write_string = write_string + *it + "\n"; - ++it; - } - std::ofstream outputfile(std::string("/tmp/Autoware/Diag/Log/" + ros::this_node::getName() + "/log.txt").c_str()); - outputfile << write_string; - outputfile.close(); - return; -} - -void diag_manager::ADD_DIAG_LOG_ERROR(std::string log_text) -{ - log_text = "in " + ros::this_node::getName() + ": " + log_text; - boost::posix_time::ptime my_posix_time = ros::Time::now().toBoost(); - std::string iso_time_str = boost::posix_time::to_iso_extended_string(my_posix_time); - std::string text = "[" + iso_time_str + "] : " + log_text; - ROS_ERROR_STREAM(log_text); - diag_log_.push_back(text); - return; -} - -void diag_manager::ADD_DIAG_LOG_WARN(std::string log_text) -{ - log_text = "in " + ros::this_node::getName() + ": " + log_text; - boost::posix_time::ptime my_posix_time = ros::Time::now().toBoost(); - std::string iso_time_str = boost::posix_time::to_iso_extended_string(my_posix_time); - std::string text = "[" + iso_time_str + "] : " + log_text; - ROS_WARN_STREAM(log_text); - diag_log_.push_back(text); - return; -} - -void diag_manager::DIAG_RESOURCE(std::string target_resource_path, int num) -{ - if(enable_diag_ == false) - return; - std::vector required_error_code = {RESOURCE_NOT_FOUND}; - if(check_error_code(num, required_error_code)) - { - if(query_diag_info(num)) - { - namespace fs = boost::filesystem; - fs::path path(target_resource_path); - boost::system::error_code error; - const bool result = fs::exists(path, error); - if (!result || error) - { - //ROS_ERROR_STREAM("required resource " << path << " does not found."); - ADD_DIAG_LOG_ERROR("required resource " + target_resource_path + " does not found."); - publish_diag_(query_diag_info(num).get()); - ROS_ERROR_STREAM("shutdonw " << ros::this_node::getName()); - WRITE_LOG(); - std::exit(-1); - } - return; - } - else - { - ADD_DIAG_LOG_WARN(query_diag_info(num)->description); - publish_diag_(query_diag_info(num).get()); - return; - } - } -} - -bool diag_manager::diag_resource(std::string target_resource_path) -{ - namespace fs = boost::filesystem; - fs::path path(target_resource_path); - boost::system::error_code error; - const bool result = fs::exists(path, error); - if (!result || error) - { - ADD_DIAG_LOG_ERROR("required resource " + target_resource_path + " does not found."); - ADD_DIAG_LOG_ERROR("disable diag module in " + ros::this_node::getName()); - return false; - } - return true; -} - -bool diag_manager::check_error_code(int requested_error_number, std::vector right_categories) -{ - if(query_diag_info(requested_error_number)) - { - for(auto category_itr = right_categories.begin(); category_itr != right_categories.end(); category_itr++) - { - if(*category_itr == query_diag_info(requested_error_number)->category) - { - return true; - } - } -#ifdef STRICT_ERROR_CODE_CHECK - ROS_ERROR_STREAM("error category : " << query_diag_info(requested_error_number)->category << " in " << ros::this_node::getName() << " does not match. Please check " << error_code_config_path_); - WRITE_LOG(); - std::exit(-1); -#else - ROS_WARN_STREAM("error category : " << query_diag_info(requested_error_number)->category << " in " << ros::this_node::getName() << " does not match. Please check " << error_code_config_path_); -#endif - return false; - } - else - { - ROS_WARN_STREAM("error number : " << requested_error_number << " in " << ros::this_node::getName() << " does not exist. Check " << error_code_config_path_); - return false; - } -} - -void diag_manager::publish_diag_(diag_info info) -{ - diag_msgs::diag_error msg; - msg.num = info.num; - msg.name = info.name; - msg.category = info.category; - msg.description = info.description; - diag_pub_.publish(msg); - return; -} \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/src/diag_subscriber.cpp b/ros/src/common/libs/diagnostics_lib/diag_lib/src/diag_subscriber.cpp deleted file mode 100644 index 01e68ae551a..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/src/diag_subscriber.cpp +++ /dev/null @@ -1,32 +0,0 @@ -#include - -diag_subscriber::diag_subscriber(std::string target_node,int target_node_number) : target_node_(target_node), target_node_number_(target_node_number) -{ - diag_sub_ = nh_.subscribe(target_node+"/diag", 1, &diag_subscriber::callback_, this); -} - -diag_subscriber::~diag_subscriber() -{ - -} - -void diag_subscriber::callback_(diag_msgs::diag_error msg) -{ - mtx_.lock(); - buffer_.push_back(msg); - //ROS_ERROR_STREAM(msg); - mtx_.unlock(); - return; -} - -diag_msgs::diag_node_errors diag_subscriber::get_diag_node_errors() -{ - diag_msgs::diag_node_errors ret; - mtx_.lock(); - std::copy(buffer_.begin(), buffer_.end(), back_inserter(ret.errors)); - buffer_.clear(); - mtx_.unlock(); - ret.header.stamp = ros::Time::now(); - ret.node_number = target_node_number_; - return ret; -} \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/src/rate_checker.cpp b/ros/src/common/libs/diagnostics_lib/diag_lib/src/rate_checker.cpp deleted file mode 100644 index 55025fd0896..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/src/rate_checker.cpp +++ /dev/null @@ -1,49 +0,0 @@ -#include - -rate_checker::rate_checker(double buffer_length) : buffer_length_(buffer_length) -{ - start_time_ = ros::Time::now(); -} - -rate_checker::~rate_checker() -{ - -} - -void rate_checker::check() -{ - update_(); - mtx_.lock(); - data_.push_back(ros::Time::now()); - mtx_.unlock(); -} - -void rate_checker::update_() -{ - std::vector buffer; - for(auto data_itr = data_.begin(); data_itr != data_.end(); data_itr++) - { - if(*data_itr > ros::Time::now()-ros::Duration(buffer_length_)) - { - buffer.push_back(*data_itr); - } - } - mtx_.lock(); - data_ = buffer; - mtx_.unlock(); - return; -} - -boost::optional rate_checker::get_rate() -{ - boost::optional rate; - if(ros::Time::now() - start_time_ < ros::Duration(buffer_length_)) - { - return boost::none; - } - update_(); - mtx_.lock(); - rate = data_.size()/buffer_length_; - mtx_.unlock(); - return rate; -} \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/src/watchdog.cpp b/ros/src/common/libs/diagnostics_lib/diag_lib/src/watchdog.cpp deleted file mode 100644 index 9f59279d432..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/src/watchdog.cpp +++ /dev/null @@ -1,144 +0,0 @@ -//headers in diag_lib -#include - -//headers in ROS -#include - -watchdog::watchdog() -{ - nh_.param("/error_code_config_path", config_filepath_, ""); - nh_.param(ros::this_node::getName() + "/publish_rate", publish_rate_, 10); - diag_.DIAG_RESOURCE(config_filepath_, 0); - YAML::Node config = YAML::LoadFile(config_filepath_.c_str()); - for(YAML::const_iterator it=config.begin();it != config.end();++it) - { - if(it->first.as() != ros::this_node::getName()) - { - std::string itr_node_name = it->first.as(); - diag_target_nodes_.push_back(itr_node_name); - YAML::Node target_node = config[itr_node_name]; - diag_sub_[itr_node_name] = boost::make_shared(itr_node_name, target_node["node_number"].as()); - boost::shared_ptr > target_node_watchdog_diag_info = boost::make_shared >(); - for(const YAML::Node &error : target_node["errors"]) - { - if(error["category"].as() == NODE_IS_DEAD) - { - diag_info info(error["num"].as(), error["name"].as(), error["category"].as(), error["description"].as()); - target_node_watchdog_diag_info->push_back(info); - } - } - if(target_node_watchdog_diag_info->size() != 0) - { - watchdog_diag_info_[itr_node_name] = target_node_watchdog_diag_info; - watchdog_target_nodes_.push_back(itr_node_name); - } - } - } - write_error_code_csv_(config); - diag_pub_ = nh_.advertise(ros::this_node::getName()+"/diag/all", 1); -} - -watchdog::~watchdog() -{ - -} - -void watchdog::write_error_code_csv_(YAML::Node config) -{ - namespace fs = boost::filesystem; - const fs::path path("/tmp/Autoware/Diag/"); - boost::system::error_code error; - const bool result = fs::create_directories(path, error); - std::string write_string = "node_name,node_number,num,name,category,description,threshold,level\n"; - for(YAML::const_iterator it=config.begin();it != config.end();++it) - { - std::string node_name = it->first.as(); - YAML::Node target_node = config[node_name]; - int node_number = target_node["node_number"].as(); - for(const YAML::Node &error : target_node["errors"]) - { - std::string line = ""; - int num = error["num"].as(); - std::string name = error["name"].as(); - int category = error["category"].as(); - std::string description = error["description"].as(); - if((category == LOW_SUBSCRIBE_RATE) || (category == LOW_PUBLISH_RATE) || (category == LOW_OPERATION_CYCLE)) - { - double threashold = error["threshold"].as(); - std::string level = error["level"].as(); - line = node_name + "," + std::to_string(node_number) + "," + std::to_string(num) + "," + name + "," + std::to_string(category) + "," + description + "," + std::to_string(threashold) + "," + level + "\n"; - } - else - { - line = node_name + "," + std::to_string(node_number) + "," + std::to_string(num) + "," + name + "," + std::to_string(category) + "," + description + ",,\n"; - } - write_string = write_string + line; - } - } - std::ofstream outputfile(std::string("/tmp/Autoware/Diag/error_list.csv").c_str()); - outputfile << write_string; - outputfile.close(); - return; -} - -void watchdog::publish_diag_() -{ - ros::Rate rate(publish_rate_); - while(ros::ok()) - { - update_connection_status_(); - diag_msgs::diag diag_msg; - for(auto itr = watchdog_target_nodes_.begin(); itr != watchdog_target_nodes_.end(); ++itr) - { - diag_msgs::diag_node_errors errors = diag_sub_[*itr]->get_diag_node_errors(); - if(connection_status_[*itr] == false) - { - std::vector target_node_watchdog_diag_info = *watchdog_diag_info_[*itr]; - for(int i=0; i detected_nodes; - ros::master::getNodes(detected_nodes); - for(auto itr = watchdog_target_nodes_.begin(); itr != watchdog_target_nodes_.end(); ++itr) - { - if(std::find(detected_nodes.begin(), detected_nodes.end(), *itr) != detected_nodes.end()) - { - connection_status_[*itr] = true; - } - else - { - connection_status_[*itr] = false; - } - } - return; -} \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_lib/src/watchdog_node.cpp b/ros/src/common/libs/diagnostics_lib/diag_lib/src/watchdog_node.cpp deleted file mode 100644 index 1e13693d2d0..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_lib/src/watchdog_node.cpp +++ /dev/null @@ -1,10 +0,0 @@ -#include - -#include - -int main(int argc, char *argv[]) { - ros::init(argc, argv, "watchdog_node"); - watchdog wd; - wd.run(); - return 0; -} \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/diag_msgs/CHANGELOG.rst b/ros/src/common/libs/diagnostics_lib/diag_msgs/CHANGELOG.rst deleted file mode 100644 index 7a164831277..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_msgs/CHANGELOG.rst +++ /dev/null @@ -1,132 +0,0 @@ -^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Changelog for package state -^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -1.10.0 (2019-01-17) -------------------- - -1.9.1 (2018-11-06) ------------------- - -1.9.0 (2018-10-31) ------------------- -* add disable mode for diag_manager -* add diag_lib - add csv writer - remove unused comment - fix maintainer names - fix email address - fix dependency - fix buildtool_depend, remove unused lines from find_package -* Contributors: Masaya Kataoka - -1.6.3 (2018-03-06) ------------------- - -1.6.2 (2018-02-27) ------------------- -* Update CHANGELOG -* Contributors: Yusuke FUJII - -1.6.1 (2018-01-20) ------------------- -* update CHANGELOG -* Contributors: Yusuke FUJII - -1.6.0 (2017-12-11) ------------------- -* Prepare release for 1.6.0 -* add new state for lanechange -* add new state for all stopline pause -* Checked coding by cppcheck and apply clang-format -* Add new state - - TrafficLight State (it will be planning to change "behavior" to - another category) - - Crawl(slow speed) -* Add to support multiple lane shift -* Fixed: - - callback - - laneshift - Added: - - publisher for laneid - - new lanechange flag - - new param for decisionMaker -* add to able to have multiple-state -* change way to state management -* cosme -* Fix not working changed callback -* delete build warning, and change stopline -* update state and remove detection state -* Fix a state changing bug -* add support to stopline -* fix segv -* add state changed callback -* minor fixes -* Add feature of to find stopline. and following minor fixes - - to change vectormap operation to vectormap lib. - - to change state operation -* Support to lanechange similar to state_machine(old) package -* :put_litter_in_its_place: -* Add support to switch on/off directional indicator -* remove unnecessary code from decisionmaker -* add support to waypoint velocity control by state -* update decisionmaker and related library - - add multiplelane path recognition - - renamed euc -* Add to support manually decision -* Contributors: Yamato ANDO, Yusuke FUJII - -1.5.1 (2017-09-25) ------------------- -* Release/1.5.1 (`#816 `_) - * fix a build error by gcc version - * fix build error for older indigo version - * update changelog for v1.5.1 - * 1.5.1 -* Contributors: Yusuke FUJII - -1.5.0 (2017-09-21) ------------------- -* Update changelog -* apply clang-format -* Add to support dynamical parameter for decision_maker -* Fix a build error for libstate -* Move the decision part of the state machine library to decision_Maker node. This is WIP. -* Fixed configuration of state -* apply clang-format -* organize package files and directories -* Add a decision_maker package - The decision_maker package determines the intention of what actions the - local planner and control node should take based on perception nodes, - global planner nodes, map data, sensor data. - This commit corresponds only to the following functions. - - Behavior state recognition - - Dynamic selection of local planner (It is necessary to change the topic name of local planner) -* Contributors: Yusuke FUJII - -1.4.0 (2017-08-04) ------------------- - -1.3.1 (2017-07-16) ------------------- - -1.3.0 (2017-07-14) ------------------- - -1.2.0 (2017-06-07) ------------------- - -1.1.2 (2017-02-27 23:10) ------------------------- - -1.1.1 (2017-02-27 22:25) ------------------------- - -1.1.0 (2017-02-24) ------------------- - -1.0.1 (2017-01-14) ------------------- - -1.0.0 (2016-12-22) ------------------- diff --git a/ros/src/common/libs/diagnostics_lib/diag_msgs/msg/diag.msg b/ros/src/common/libs/diagnostics_lib/diag_msgs/msg/diag.msg deleted file mode 100644 index 68349297069..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_msgs/msg/diag.msg +++ /dev/null @@ -1,6 +0,0 @@ -#message for all diagnostics in the systems - -#header for timestamp -Header header -#list of errors in the target nodes -diag_node_errors[] nodes diff --git a/ros/src/common/libs/diagnostics_lib/diag_msgs/msg/diag_error.msg b/ros/src/common/libs/diagnostics_lib/diag_msgs/msg/diag_error.msg deleted file mode 100644 index 080e76ed032..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_msgs/msg/diag_error.msg +++ /dev/null @@ -1,10 +0,0 @@ -#the message which describes a single error - -#name of the error -string name -#error number in the target node -int32 num -#error category -int32 category -#desctiption of the error -string description diff --git a/ros/src/common/libs/diagnostics_lib/diag_msgs/msg/diag_node_errors.msg b/ros/src/common/libs/diagnostics_lib/diag_msgs/msg/diag_node_errors.msg deleted file mode 100644 index a981b9b6208..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_msgs/msg/diag_node_errors.msg +++ /dev/null @@ -1,8 +0,0 @@ -#the message which describes errors in a single node - -#header for timestamp -Header header -#number of the target node -int32 node_number -#list of error messages in the target node -diag_error[] errors diff --git a/ros/src/common/libs/diagnostics_lib/diag_msgs/package.xml b/ros/src/common/libs/diagnostics_lib/diag_msgs/package.xml deleted file mode 100644 index c4f42825413..00000000000 --- a/ros/src/common/libs/diagnostics_lib/diag_msgs/package.xml +++ /dev/null @@ -1,20 +0,0 @@ - - diag_msgs - 1.10.0 - The libdiag package - - Masaya Kataoka - Apache 2 - Yusuke FUJII - Masaya Kataoka - catkin - autoware_build_flags - std_msgs - message_generation - message_runtime - std_msgs - message_generation - message_runtime - - - diff --git a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/CHANGELOG.rst b/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/CHANGELOG.rst deleted file mode 100644 index 8d27620d8bd..00000000000 --- a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/CHANGELOG.rst +++ /dev/null @@ -1,25 +0,0 @@ -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Changelog for package fake_autoware_nodes -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -1.10.0 (2019-01-17) -------------------- - -1.9.1 (2018-11-06) ------------------- - -1.9.0 (2018-10-31) ------------------- -* add filter to the fake_autoware_node -* dd diag_filter to the fake_subscriber -* add diag_lib - add csv writer - remove unused comment - fix maintainer names - fix email address - fix dependency - fix buildtool_depend, remove unused lines from find_package -* Contributors: Masaya Kataoka - -* add diag_lib -* Contributors: Masaya Kataoka diff --git a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/CMakeLists.txt b/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/CMakeLists.txt deleted file mode 100644 index 1c391d148dc..00000000000 --- a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/CMakeLists.txt +++ /dev/null @@ -1,42 +0,0 @@ -cmake_minimum_required(VERSION 2.8.3) -project(fake_autoware_nodes) - -add_compile_options(-std=c++11) - -find_package(catkin REQUIRED COMPONENTS - geometry_msgs - roscpp - rospy - sensor_msgs - std_msgs - diag_lib -) - -catkin_package( - INCLUDE_DIRS include - CATKIN_DEPENDS geometry_msgs roscpp rospy sensor_msgs std_msgs diag_lib -) - -include_directories( - include - ${catkin_INCLUDE_DIRS} -) - -set(fake_publisher_node_src src/fake_publisher_node.cpp src/fake_publisher.cpp) -add_executable(fake_publisher_node ${fake_publisher_node_src}) -target_link_libraries(fake_publisher_node ${catkin_LIBRARIES}) -add_dependencies(fake_publisher_node diag_msgs_generate_messages_cpp) - -set(fake_subscriber_node_src src/fake_subscriber_node.cpp src/fake_subscriber.cpp) -add_executable(fake_subscriber_node ${fake_subscriber_node_src}) -target_link_libraries(fake_subscriber_node ${catkin_LIBRARIES}) -add_dependencies(fake_publisher_node diag_msgs_generate_messages_cpp) - -foreach(dir launch) - install(DIRECTORY ${dir}/ - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/${dir}) -endforeach(dir) - -install(DIRECTORY include/${PROJECT_NAME} - DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} -) diff --git a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/include/fake_autoware_nodes/fake_publisher.h b/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/include/fake_autoware_nodes/fake_publisher.h deleted file mode 100644 index 5a710c76a4c..00000000000 --- a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/include/fake_autoware_nodes/fake_publisher.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef FAKE_PUBLISHER_H_INCLUDED -#define FAKE_PUBLISHER_H_INCLUDED - -//headers in diag_lib -#include - -class fake_publisher -{ - public: - fake_publisher(); - ~fake_publisher(); - void run(); - double divide(double a, double b); - private: - ros::NodeHandle nh_; - ros::Publisher fake_pub_; - diag_manager diag_manager_; -}; - -#endif //FAKE_PUBLISHER_H_INCLUDED \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/include/fake_autoware_nodes/fake_subscriber.h b/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/include/fake_autoware_nodes/fake_subscriber.h deleted file mode 100644 index 278bcb28702..00000000000 --- a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/include/fake_autoware_nodes/fake_subscriber.h +++ /dev/null @@ -1,33 +0,0 @@ -#ifndef FAKE_SUBSCRIBER_H_INCLUDED -#define FAKE_SUBSCRIBER_H_INCLUDED - -//headers in diag_lib -#include -#include - -//headers in diag_msg -#include -#include - -//headers in std_msgs -#include - -//headers in ROS -#include - -class fake_subscriber -{ - public: - fake_subscriber(); - ~fake_subscriber(); - private: - void diag_callback_(const diag_msgs::diagConstPtr msg); - void callback_(const std_msgs::Float64ConstPtr msg); - ros::NodeHandle nh_; - ros::Subscriber fake_sub_; - ros::Subscriber diag_sub_; - diag_manager diag_manager_; - diag_filter diag_filter_; -}; - -#endif //FAKE_SUBSCRIBER_H_INCLUDED \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/launch/diag_sample.launch b/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/launch/diag_sample.launch deleted file mode 100644 index 5677fed2133..00000000000 --- a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/launch/diag_sample.launch +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/launch/fake_autoware_nodes.launch b/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/launch/fake_autoware_nodes.launch deleted file mode 100644 index 3db9981d35d..00000000000 --- a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/launch/fake_autoware_nodes.launch +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/package.xml b/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/package.xml deleted file mode 100644 index d9e8739d59d..00000000000 --- a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/package.xml +++ /dev/null @@ -1,35 +0,0 @@ - - fake_autoware_nodes - 1.10.0 - The fake_autoware_nodes package - - Masaya Kataoka - - Apache 2 - - Masaya Kataoka - - catkin - autoware_build_flags - geometry_msgs - roscpp - rospy - sensor_msgs - std_msgs - diag_lib - geometry_msgs - roscpp - rospy - sensor_msgs - std_msgs - diag_lib - geometry_msgs - roscpp - rospy - sensor_msgs - std_msgs - diag_lib - - - - diff --git a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/src/fake_publisher.cpp b/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/src/fake_publisher.cpp deleted file mode 100644 index e148e9c9275..00000000000 --- a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/src/fake_publisher.cpp +++ /dev/null @@ -1,52 +0,0 @@ -#include - -#include - -fake_publisher::fake_publisher() -{ - fake_pub_ = nh_.advertise(ros::this_node::getName()+"/data", 1); -} - -fake_publisher::~fake_publisher() -{ - -} - -void fake_publisher::run() -{ - ros::Rate rate(10); - std_msgs::Float64 msg; - msg.data = -50; - while(ros::ok()) - { - diag_manager_.DIAG_RATE_CHECK(3); - fake_pub_.publish(msg); - msg.data = msg.data + 1.0; - diag_manager_.DIAG_ASSERT_VALUE_RANGE(-20.0, 20.0, msg.data, 0); - if(msg.data == 50) - { - diag_manager_.DIAG_LOW_RELIABILITY(4); - msg.data = -50; - } - try - { - divide(1,msg.data); - } - catch(std::range_error& exception) - { - diag_manager_.DIAG_ASSERT_EXCEPTION(exception,1); - } - rate.sleep(); - } - diag_manager_.WRITE_LOG(); - return; -} - -double fake_publisher::divide(double a, double b) -{ - if (b == 0) - { - throw std::range_error("Divided by zero."); - } - return a / b; -} diff --git a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/src/fake_publisher_node.cpp b/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/src/fake_publisher_node.cpp deleted file mode 100644 index abc3c37b5dd..00000000000 --- a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/src/fake_publisher_node.cpp +++ /dev/null @@ -1,12 +0,0 @@ -//headers in ROS -#include - -//headers in fake_autoware_nodes -#include - -int main(int argc, char *argv[]) { - ros::init(argc, argv, "fake_publisher_node"); - fake_publisher fake_pub; - fake_pub.run(); - return 0; -} \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/src/fake_subscriber.cpp b/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/src/fake_subscriber.cpp deleted file mode 100644 index aa18acef14e..00000000000 --- a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/src/fake_subscriber.cpp +++ /dev/null @@ -1,28 +0,0 @@ -#include - -fake_subscriber::fake_subscriber() -{ - diag_sub_ = nh_.subscribe("watchdog_node/diag/all", 1, &fake_subscriber::diag_callback_, this); - fake_sub_ = nh_.subscribe(ros::this_node::getName()+"/data", 1, &fake_subscriber::callback_, this); -} - -fake_subscriber::~fake_subscriber() -{ - -} - -void fake_subscriber::callback_(const std_msgs::Float64ConstPtr msg) -{ - diag_manager_.DIAG_ASSERT_VALUE_MIN(0.0, msg->data, 0); - return; -} - -void fake_subscriber::diag_callback_(const diag_msgs::diagConstPtr msg) -{ - boost::optional error = diag_filter_.filter(*msg, ros::this_node::getName()); - if(error) - { - ROS_ERROR_STREAM(error.get()); - } - return; -} \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/src/fake_subscriber_node.cpp b/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/src/fake_subscriber_node.cpp deleted file mode 100644 index 244582ace61..00000000000 --- a/ros/src/common/libs/diagnostics_lib/fake_autoware_nodes/src/fake_subscriber_node.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include - -//headers in diag_lib -#include - -//headers in fake_autoware_nodes -#include - -int main(int argc, char *argv[]) { - ros::init(argc, argv, "fake_subscriber_node"); - fake_subscriber fake_sub; - ros::spin(); - return 0; -} \ No newline at end of file diff --git a/ros/src/common/libs/diagnostics_lib/rosgraph.png b/ros/src/common/libs/diagnostics_lib/rosgraph.png deleted file mode 100644 index ee8d53b9f86..00000000000 Binary files a/ros/src/common/libs/diagnostics_lib/rosgraph.png and /dev/null differ diff --git a/ros/src/common/libvectormap/FindEigen.cmake b/ros/src/common/libvectormap/FindEigen.cmake deleted file mode 100644 index b632fb78416..00000000000 --- a/ros/src/common/libvectormap/FindEigen.cmake +++ /dev/null @@ -1,87 +0,0 @@ -# - Try to find Eigen3 lib -# -# This module supports requiring a minimum version, e.g. you can do -# find_package(Eigen3 3.1.2) -# to require version 3.1.2 or newer of Eigen3. -# -# Once done this will define -# -# EIGEN3_FOUND - system has eigen lib with correct version -# EIGEN3_INCLUDE_DIR - the eigen include directory -# EIGEN3_VERSION - eigen version - -# Copyright (c) 2006, 2007 Montel Laurent, -# Copyright (c) 2008, 2009 Gael Guennebaud, -# Copyright (c) 2009 Benoit Jacob -# Redistribution and use is allowed according to the terms of the 2-clause BSD license. - -if(NOT Eigen3_FIND_VERSION) - if(NOT Eigen3_FIND_VERSION_MAJOR) - set(Eigen3_FIND_VERSION_MAJOR 2) - endif(NOT Eigen3_FIND_VERSION_MAJOR) - if(NOT Eigen3_FIND_VERSION_MINOR) - set(Eigen3_FIND_VERSION_MINOR 91) - endif(NOT Eigen3_FIND_VERSION_MINOR) - if(NOT Eigen3_FIND_VERSION_PATCH) - set(Eigen3_FIND_VERSION_PATCH 0) - endif(NOT Eigen3_FIND_VERSION_PATCH) - - set(Eigen3_FIND_VERSION "${Eigen3_FIND_VERSION_MAJOR}.${Eigen3_FIND_VERSION_MINOR}.${Eigen3_FIND_VERSION_PATCH}") -endif(NOT Eigen3_FIND_VERSION) - -macro(_eigen3_check_version) - file(READ "${EIGEN3_INCLUDE_DIR}/Eigen/src/Core/util/Macros.h" _eigen3_version_header) - - string(REGEX MATCH "define[ \t]+EIGEN_WORLD_VERSION[ \t]+([0-9]+)" _eigen3_world_version_match "${_eigen3_version_header}") - set(EIGEN3_WORLD_VERSION "${CMAKE_MATCH_1}") - string(REGEX MATCH "define[ \t]+EIGEN_MAJOR_VERSION[ \t]+([0-9]+)" _eigen3_major_version_match "${_eigen3_version_header}") - set(EIGEN3_MAJOR_VERSION "${CMAKE_MATCH_1}") - string(REGEX MATCH "define[ \t]+EIGEN_MINOR_VERSION[ \t]+([0-9]+)" _eigen3_minor_version_match "${_eigen3_version_header}") - set(EIGEN3_MINOR_VERSION "${CMAKE_MATCH_1}") - - set(EIGEN3_VERSION ${EIGEN3_WORLD_VERSION}.${EIGEN3_MAJOR_VERSION}.${EIGEN3_MINOR_VERSION}) - if(${EIGEN3_VERSION} VERSION_LESS ${Eigen3_FIND_VERSION}) - set(EIGEN3_VERSION_OK FALSE) - else(${EIGEN3_VERSION} VERSION_LESS ${Eigen3_FIND_VERSION}) - set(EIGEN3_VERSION_OK TRUE) - endif(${EIGEN3_VERSION} VERSION_LESS ${Eigen3_FIND_VERSION}) - - if(NOT EIGEN3_VERSION_OK) - - message(STATUS "Eigen3 version ${EIGEN3_VERSION} found in ${EIGEN3_INCLUDE_DIR}, " - "but at least version ${Eigen3_FIND_VERSION} is required") - endif(NOT EIGEN3_VERSION_OK) -endmacro(_eigen3_check_version) - -if (EIGEN3_INCLUDE_DIR) - - # in cache already - _eigen3_check_version() - set(EIGEN3_FOUND ${EIGEN3_VERSION_OK}) - -else (EIGEN3_INCLUDE_DIR) - - # specific additional paths for some OS - if (WIN32) - set(EIGEN_ADDITIONAL_SEARCH_PATHS ${EIGEN_ADDITIONAL_SEARCH_PATHS} "C:/Program Files/Eigen/include" "C:/Program Files (x86)/Eigen/include") - endif(WIN32) - - find_path(EIGEN3_INCLUDE_DIR NAMES signature_of_eigen3_matrix_library - PATHS - include - ${EIGEN_ADDITIONAL_SEARCH_PATHS} - ${KDE4_INCLUDE_DIR} - PATH_SUFFIXES eigen3 eigen - ) - - if(EIGEN3_INCLUDE_DIR) - _eigen3_check_version() - endif(EIGEN3_INCLUDE_DIR) - - include(FindPackageHandleStandardArgs) - find_package_handle_standard_args(Eigen3 DEFAULT_MSG EIGEN3_INCLUDE_DIR EIGEN3_VERSION_OK) - - mark_as_advanced(EIGEN3_INCLUDE_DIR) - -endif(EIGEN3_INCLUDE_DIR) - diff --git a/ros/src/computing/perception/detection/fusion_tools/packages/pixel_cloud_fusion/CMakeLists.txt b/ros/src/computing/perception/detection/fusion_tools/packages/pixel_cloud_fusion/CMakeLists.txt index c4faf49b5a6..b7e5ffda116 100644 --- a/ros/src/computing/perception/detection/fusion_tools/packages/pixel_cloud_fusion/CMakeLists.txt +++ b/ros/src/computing/perception/detection/fusion_tools/packages/pixel_cloud_fusion/CMakeLists.txt @@ -88,11 +88,14 @@ target_include_directories(pixel_cloud_fusion PRIVATE target_link_libraries(pixel_cloud_fusion pixel_cloud_fusion_lib) -install(TARGETS pixel_cloud_fusion +install(TARGETS pixel_cloud_fusion pixel_cloud_fusion_lib ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) +install(DIRECTORY include/${PROJECT_NAME}/ + DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}) + install(DIRECTORY launch/ DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/perception/detection/fusion_tools/packages/range_vision_fusion/CMakeLists.txt b/ros/src/computing/perception/detection/fusion_tools/packages/range_vision_fusion/CMakeLists.txt index 68ae406892d..00aad8e2e63 100644 --- a/ros/src/computing/perception/detection/fusion_tools/packages/range_vision_fusion/CMakeLists.txt +++ b/ros/src/computing/perception/detection/fusion_tools/packages/range_vision_fusion/CMakeLists.txt @@ -110,11 +110,14 @@ target_include_directories(range_vision_fusion PRIVATE target_link_libraries(range_vision_fusion range_vision_fusion_lib) -install(TARGETS range_vision_fusion +install(TARGETS range_vision_fusion range_vision_fusion_lib ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) +install(DIRECTORY include/${PROJECT_NAME}/ + DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}) + install(DIRECTORY launch/ DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/CMakeLists.txt b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/CMakeLists.txt new file mode 100755 index 00000000000..91250f35ee0 --- /dev/null +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/CMakeLists.txt @@ -0,0 +1,80 @@ +cmake_minimum_required(VERSION 2.8.3) +project(lidar_apollo_cnn_seg_detect) + +find_package(catkin REQUIRED COMPONENTS + autoware_build_flags + roscpp + tf + tf_conversions + pcl_ros + sensor_msgs + geometry_msgs + autoware_msgs + ) + +find_package(CUDA) +find_package(OpenCV REQUIRED) + +catkin_package( + INCLUDE_DIRS + include + CATKIN_DEPENDS + roscpp + tf + tf_conversions + pcl_ros + sensor_msgs + geometry_msgs + autoware_msgs +) + +IF (CUDA_FOUND) + include_directories(${CUDA_INCLUDE_DIRS}) + + IF ("${CMAKE_SYSTEM_PROCESSOR}" MATCHES "^arm") + link_directories(/usr/lib/arm-linux-gnueabihf/tegra) + endif () +ENDIF () +###CAFFE +set(CAFFE_PATH "$ENV{HOME}/caffe/distribute") + +if (EXISTS "${CAFFE_PATH}") + + include_directories( + include + ${catkin_INCLUDE_DIRS} + ${OpenCV_INCLUDE_DIRS} + ${CAFFE_PATH}/include + ) + + add_executable(lidar_apollo_cnn_seg_detect + nodes/lidar_apollo_cnn_seg_detect_node.cpp + nodes/cnn_segmentation.cpp + nodes/cluster2d.cpp + nodes/feature_generator.cpp + ) + target_link_libraries(lidar_apollo_cnn_seg_detect + ${catkin_LIBRARIES} + ${OpenCV_LIBRARIES} + ${CUDA_LIBRARIES} + ${CUDA_CUBLAS_LIBRARIES} + ${CUDA_curand_LIBRARY} + ${CAFFE_PATH}/lib/libcaffe.so + glog + ) + add_dependencies(lidar_apollo_cnn_seg_detect + ${catkin_EXPORTED_TARGETS} + ) + + install(TARGETS + lidar_apollo_cnn_seg_detect + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} + ) + install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) +else () + message("'Caffe' is not installed. 'lidar_apollo_cnn_seg_detect' will not be built.") +endif () \ No newline at end of file diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/README.md b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/README.md new file mode 100644 index 00000000000..d2a945c0638 --- /dev/null +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/README.md @@ -0,0 +1,64 @@ +# CNN LiDAR Baidu Object Segmenter + +Autoware package based on Baidu's object segmenter. + +## Pre requisites + +Caffe distributable installed in your home (`~/caffe/distribute`). + +``` +$ cd +$ git clone https://github.com/BVLC/caffe +$ cd caffe +``` +Follow instructions from [Installing Caffe from source](http://caffe.berkeleyvision.org/installation.html). + +* **Use offical Make compilation procedure**. +* Do not use thirdparty CMake setup. + +Compile and create distributable: +``` +$ make +$ make distribute +``` + +**Recompile Autoware to build the node.** + +## How to launch + +* From a sourced terminal: + +Using rosrun: +`rosrun lidar_apollo_cnn_seg_detect lidar_apollo_cnn_seg_detect _network_definition_file:=/PATH/TO/FILE.prototxt _pretrained_model_file:=/PATH/TO/WEIGHTS.caffemodel _points_src:=/points_raw` + +Using launch file: +`roslaunch lidar_apollo_cnn_seg_detect lidar_apollo_cnn_seg_detect.launch network_definition_file:=/PATH/TO/FILE.prototxt pretrained_model_file:=/PATH/TO/WEIGHTS.caffemodel points_src:=/points_raw` + +* From Runtime Manager: + +Computing Tab -> Detection/ lidar_detector -> `lidar_cnn_baidu_detect`. Configure parameters using the `[app]` button. + +## Parameters + +|Parameter| Type| Description|Default| +----------|-----|--------|----| +|`network_definition_file`|*String*|Path to the network definition file (prototxt)|| +|`pretrained_model_file`|*String* |Path to the Pretrained model (weights)|| +|`points_src`|*String*|Input topic Pointcloud. Default.|`/points_raw`| +|`score_threshold`|*Double*|Minimum score required as given by the network to include the result (0.-1.)|0.6| +|`use_gpu`|*Bool*|Whether ot not to use a GPU device|`true`| +|`gpu_device_id`|*Int*|GPU ID|`0`| + +## Outputs + +|Topic|Type|Description| +|---|---|---| +|`/detection/lidar_detector/points_cluster`|`sensor_msgs/PointCloud2`|Colored PointCloud of the resulting detected objects| +|`/detection/lidar_detector/objects`|`autoware_msgs/DetectedObjetArray`|Array of Detected Objects in Autoware format| + +## Notes + +* To display the results in Rviz `objects_visualizer` is required. +(Launch file launches automatically this node). + +* Pre trained models can be downloaded from the Apollo project repository. \ No newline at end of file diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/cluster2d.h b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/cluster2d.h new file mode 100755 index 00000000000..2e90ff019e4 --- /dev/null +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/cluster2d.h @@ -0,0 +1,203 @@ +/* + * Copyright 2018-2019 Autoware Foundation. All rights reserved. + * + * 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. + */ + +/* + * Copyright 2018-2019 Autoware Foundation. All rights reserved. + * + * 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. + */ + +#ifndef CLUSTER2D_H +#define CLUSTER2D_H + +#include +#include +#include + +#include "caffe/caffe.hpp" + +#include "util.h" +#include "disjoint_set.h" + +#include +#include + +#include + +#include "opencv2/core/core.hpp" +#include "opencv2/imgproc/imgproc.hpp" + +enum ObjectType +{ + UNKNOWN = 0, + UNKNOWN_MOVABLE = 1, + UNKNOWN_UNMOVABLE = 2, + PEDESTRIAN = 3, + BICYCLE = 4, + VEHICLE = 5, + MAX_OBJECT_TYPE = 6, +}; + +enum MetaType +{ + META_UNKNOWN, + META_SMALLMOT, + META_BIGMOT, + META_NONMOT, + META_PEDESTRIAN, + MAX_META_TYPE +}; + + +struct Obstacle +{ + std::vector grids; + pcl::PointCloud::Ptr cloud_ptr; + float score; + float height; + MetaType meta_type; + std::vector meta_type_probs; + + Obstacle() : score(0.0), height(-5.0), meta_type(META_UNKNOWN) + { + cloud_ptr.reset(new pcl::PointCloud); + meta_type_probs.assign(MAX_META_TYPE, 0.0); + } + + std::string GetTypeString() const + { + switch (meta_type) + { + case META_UNKNOWN: + return "unknown"; + case META_SMALLMOT: + return "car"; + case META_BIGMOT: + return "car"; + case META_NONMOT: + return "bike"; + case META_PEDESTRIAN: + return "pedestrian"; + default: + return "unknown"; + } + } +}; + +class Cluster2D +{ +public: + Cluster2D() = default; + + ~Cluster2D() = default; + + bool init(int rows, int cols, float range); + + void cluster(const caffe::Blob &category_pt_blob, + const caffe::Blob &instance_pt_blob, + const pcl::PointCloud::Ptr &pc_ptr, + const pcl::PointIndices &valid_indices, + float objectness_thresh, bool use_all_grids_for_clustering); + + void filter(const caffe::Blob &confidence_pt_blob, + const caffe::Blob &height_pt_blob); + + void classify(const caffe::Blob &classify_pt_blob); + + void getObjects(const float confidence_thresh, + const float height_thresh, + const int min_pts_num, + autoware_msgs::DetectedObjectArray &objects, + const std_msgs::Header &in_header); + + autoware_msgs::DetectedObject obstacleToObject(const Obstacle &in_obstacle, + const std_msgs::Header &in_header); + +private: + int rows_; + int cols_; + int grids_; + float range_; + float scale_; + float inv_res_x_; + float inv_res_y_; + std::vector point2grid_; + std::vector obstacles_; + std::vector id_img_; + + pcl::PointCloud::Ptr pc_ptr_; + const std::vector *valid_indices_in_pc_ = nullptr; + + struct Node + { + Node *center_node; + Node *parent; + char node_rank; + char traversed; + bool is_center; + bool is_object; + int point_num; + int obstacle_id; + + Node() + { + center_node = nullptr; + parent = nullptr; + node_rank = 0; + traversed = 0; + is_center = false; + is_object = false; + point_num = 0; + obstacle_id = -1; + } + }; + + inline bool IsValidRowCol(int row, int col) const + { + return IsValidRow(row) && IsValidCol(col); + } + + inline bool IsValidRow(int row) const + { + return row >= 0 && row < rows_; + } + + inline bool IsValidCol(int col) const + { + return col >= 0 && col < cols_; + } + + inline int RowCol2Grid(int row, int col) const + { + return row * cols_ + col; + } + + void traverse(Node *x); + + ObjectType getObjectType(const MetaType meta_type_id); +}; + +#endif //CLUSTER_2D_H diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/cnn_segmentation.h b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/cnn_segmentation.h new file mode 100755 index 00000000000..e1eec1458f2 --- /dev/null +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/cnn_segmentation.h @@ -0,0 +1,112 @@ +/* + * Copyright 2018-2019 Autoware Foundation. All rights reserved. + * + * 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. + */ +#ifndef CNN_SEGMENTATION_H +#define CNN_SEGMENTATION_H + +#include + +#include + +#include "caffe/caffe.hpp" + +#include +#include + +#include +#include +#include + +#include + +#include "cluster2d.h" +#include "feature_generator.h" + +#define __APP_NAME__ "lidar_apollo_cnn_seg_detect" + +struct CellStat +{ + CellStat() : point_num(0), valid_point_num(0) + { + } + + int point_num; + int valid_point_num; +}; + +class CNNSegmentation +{ +public: + CNNSegmentation(); + + void run(); + + void test_run(); + +private: + + double range_, score_threshold_; + int width_; + int height_; + std_msgs::Header message_header_; + std::string topic_src_; + + int gpu_device_id_; + bool use_gpu_; + + // nodehandle + ros::NodeHandle nh_; + + // publisher + ros::Publisher points_pub_;; + ros::Publisher objects_pub_; + + // subscriber + ros::Subscriber points_sub_; + + std::shared_ptr> caffe_net_; + + // center offset prediction + boost::shared_ptr> instance_pt_blob_; + // objectness prediction + boost::shared_ptr> category_pt_blob_; + // fg probability prediction + boost::shared_ptr> confidence_pt_blob_; + // object height prediction + boost::shared_ptr> height_pt_blob_; + // raw features to be input into network + boost::shared_ptr> feature_blob_; + // class prediction + boost::shared_ptr> class_pt_blob_; + + // clustering model for post-processing + std::shared_ptr cluster2d_; + + // bird-view raw feature generator + std::shared_ptr feature_generator_; + + bool init(); + + bool segment(const pcl::PointCloud::Ptr &pc_ptr, + const pcl::PointIndices &valid_idx, + autoware_msgs::DetectedObjectArray &objects); + + void pointsCallback(const sensor_msgs::PointCloud2 &msg); + + void pubColoredPoints(const autoware_msgs::DetectedObjectArray &objects); + +}; + +#endif //CNN_SEGMENTATION_H diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/disjoint_set.h b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/disjoint_set.h new file mode 100644 index 00000000000..d9015031818 --- /dev/null +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/disjoint_set.h @@ -0,0 +1,75 @@ +/****************************************************************************** + * Copyright 2017 The Apollo Authors. All Rights Reserved. + * + * 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. + *****************************************************************************/ + +#ifndef MODULES_PERCEPTION_OBSTACLE_COMMON_DISJOINT_SET_H_ +#define MODULES_PERCEPTION_OBSTACLE_COMMON_DISJOINT_SET_H_ + +// namespace apollo { +// namespace perception { + +template +void DisjointSetMakeSet(T *x) { + x->parent = x; + x->node_rank = 0; +} + +template +T *DisjointSetFindRecursive(T *x) { + if (x->parent != x) { + x->parent = DisjointSetFindRecursive(x->parent); + } + return x->parent; +} + +template +T *DisjointSetFind(T *x) { + T *y = x->parent; + if (y == x || y->parent == y) { + return y; + } + T *root = DisjointSetFindRecursive(y->parent); + x->parent = root; + y->parent = root; + return root; +} + +template +void DisjointSetMerge(T *x, const T *y) {} + +template +void DisjointSetUnion(T *x, T *y) { + x = DisjointSetFind(x); + y = DisjointSetFind(y); + if (x == y) { + return; + } + if (x->node_rank < y->node_rank) { + x->parent = y; + DisjointSetMerge(y, x); + } else if (y->node_rank < x->node_rank) { + y->parent = x; + DisjointSetMerge(x, y); + } else { + y->parent = x; + x->node_rank++; + DisjointSetMerge(x, y); + } +} + +// } // namespace perception +// } // namespace apollo + +#endif // MODULES_PERCEPTION_OBSTACLE_COMMON_DISJOINT_SET_H_ diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/feature_generator.h b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/feature_generator.h new file mode 100755 index 00000000000..74e73ac451a --- /dev/null +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/feature_generator.h @@ -0,0 +1,67 @@ +/* + * Copyright 2018-2019 Autoware Foundation. All rights reserved. + * + * 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. + */ +#ifndef FEATURE_GENERATOR_H +#define FEATURE_GENERATOR_H + +#include "caffe/caffe.hpp" + +#include +#include + +#include "util.h" + + + +class FeatureGenerator +{ +public: + FeatureGenerator(){} + ~FeatureGenerator(){} + + bool init(caffe::Blob* out_blob); + void generate( + const pcl::PointCloud::Ptr& pc_ptr); +private: + int width_ = 0; + int height_ = 0; + int range_ = 0; + + float min_height_ = 0.0; + float max_height_ = 0.0; + + // raw feature data + float* max_height_data_ = nullptr; + float* mean_height_data_ = nullptr; + float* count_data_ = nullptr; + float* direction_data_ = nullptr; + float* top_intensity_data_ = nullptr; + float* mean_intensity_data_ = nullptr; + float* distance_data_ = nullptr; + float* nonempty_data_ = nullptr; + + // output Caffe blob + caffe::Blob* out_blob_ = nullptr; + + std::vector log_table_; + + // point index in feature map + std::vector map_idx_; + + float logCount(int count); + +}; + +#endif //FEATURE_GENERATOR_H diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/pcl_types.h b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/pcl_types.h new file mode 100755 index 00000000000..6da850e63d6 --- /dev/null +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/pcl_types.h @@ -0,0 +1,198 @@ +/* + * Copyright 2018-2019 Autoware Foundation. All rights reserved. + * + * 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. + */ + +/****************************************************************************** + * Copyright 2017 The Apollo Authors. All Rights Reserved. + * + * 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. + *****************************************************************************/ + +#ifndef MODULES_PERCEPTION_COMMON_PCL_TYPES_H_ +#define MODULES_PERCEPTION_COMMON_PCL_TYPES_H_ + +#include "pcl/common/time.h" +#include "pcl/common/transforms.h" +#include "pcl/kdtree/kdtree_flann.h" +#include "pcl/point_cloud.h" +#include "pcl/point_types.h" +#include "pcl/search/impl/kdtree.hpp" + +namespace apollo { + +typedef pcl::PointIndices PointIndices; +typedef pcl::PointIndices::Ptr PointIndicesPtr; +typedef pcl::PointXY Point2d; +typedef pcl::PointCloud PointCloud2d; +typedef pcl::PointCloud::Ptr PointCloud2dPtr; +typedef pcl::PointCloud::ConstPtr PointCloud2dConstPtr; + +struct PointXYZIH; + +typedef PointXYZIH Point; +typedef pcl::PointCloud PointCloud; +typedef pcl::PointCloud::Ptr PointCloudPtr; +typedef pcl::PointCloud::ConstPtr PointCloudConstPtr; +typedef pcl::PointXYZRGB CPoint; +typedef pcl::PointCloud CPointCloud; +typedef pcl::PointCloud::Ptr CPointCloudPtr; +typedef pcl::PointCloud::ConstPtr CPointCloudConstPtr; +typedef pcl::KdTreeFLANN KdTree; + +struct BoundingCube { + float x; // center of box + float y; // center of box + float z; // center of box + float length; + float width; + float height; + float yaw; + + float trans_x; // center of points + float trans_y; // center of points + float trans_z; // center of points +}; + +// using double type to define x, y, z. +struct PointD { + double x; + double y; + double z; + uint8_t intensity; + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +} EIGEN_ALIGN16; + +typedef ::pcl::PointCloud PointDCloud; +typedef ::pcl::PointCloud::Ptr PointDCloudPtr; +typedef ::pcl::PointCloud::ConstPtr PointDCloudConstPtr; + +struct PointXYZIH { + PCL_ADD_POINT4D; + float intensity; + float h; // height from ground + + PointXYZIH() { + x = 0.0f; + y = 0.0f; + z = 0.0f; + h = 0.0f; + intensity = 0.0f; + data[3] = 1.0f; + } + + explicit PointXYZIH(float intensity_) { + x = 0.0f; + y = 0.0f; + z = 0.0f; + data[3] = 1.0f; + intensity = intensity_; + } + EIGEN_MAKE_ALIGNED_OPERATOR_NEW +} EIGEN_ALIGN16; + +struct PointXYZIRT { + float x; + float y; + float z; + unsigned char intensity; + unsigned char ring; + double timestamp; + + EIGEN_MAKE_ALIGNED_OPERATOR_NEW // make sure our new allocators are aligned +} EIGEN_ALIGN16; // enforce SSE padding for correct memory alignment + +struct PointXYZIT { + float x; + float y; + float z; + unsigned char intensity; + double timestamp; + + EIGEN_MAKE_ALIGNED_OPERATOR_NEW // make sure our new allocators are aligned +} EIGEN_ALIGN16; // enforce SSE padding for correct memory alignment + +struct RawPointXYZIT { + PCL_ADD_POINT4D + uint8_t intensity; + double timestamp; + EIGEN_MAKE_ALIGNED_OPERATOR_NEW // make sure our new allocators are aligned +} EIGEN_ALIGN16; // enforce SSE padding for correct memory alignment + +struct PointXYZIRTd { + double x; + double y; + double z; + unsigned char intensity; + unsigned char ring; + double timestamp; + + EIGEN_MAKE_ALIGNED_OPERATOR_NEW // make sure our new allocators are aligned +} EIGEN_ALIGN16; // enforce SSE padding for correct memory alignment + +struct PointXYZITd { + double x; + double y; + double z; + unsigned char intensity; + double timestamp; + + EIGEN_MAKE_ALIGNED_OPERATOR_NEW // make sure our new allocators are aligned +} EIGEN_ALIGN16; // enforce SSE padding for correct memory alignment + +} // namespace apollo + +// POINT_CLOUD_REGISTER_POINT_STRUCT( +// apollo::perception::pcl_util::PointD, +// (double, x, x)(double, y, y)(double, z, z)(uint8_t, intensity, intensity)) +// +// POINT_CLOUD_REGISTER_POINT_STRUCT(apollo::perception::pcl_util::PointXYZIH, +// (float, x, x)(float, y, y)(float, z, z)( +// float, intensity, intensity)(float, h, h)) +// +// POINT_CLOUD_REGISTER_POINT_STRUCT(apollo::perception::pcl_util::PointXYZIT, +// (float, x, x)(float, y, y)(float, z, z)( +// uint8_t, intensity, +// intensity)(double, timestamp, timestamp)) +// POINT_CLOUD_REGISTER_POINT_STRUCT(apollo::perception::pcl_util::RawPointXYZIT, +// (float, x, x)(float, y, y)(float, z, z)( +// uint8_t, intensity, +// intensity)(double, timestamp, timestamp)) +// +// POINT_CLOUD_REGISTER_POINT_STRUCT( +// apollo::perception::pcl_util::PointXYZIRT, +// (float, x, x)(float, y, y)(float, z, z)(uint8_t, intensity, intensity)( +// uint8_t, ring, ring)(double, timestamp, timestamp)) +// +// POINT_CLOUD_REGISTER_POINT_STRUCT(apollo::perception::pcl_util::PointXYZITd, +// (double, x, x)(double, y, y)(double, z, z)( +// uint8_t, intensity, +// intensity)(double, timestamp, timestamp)) +// +// POINT_CLOUD_REGISTER_POINT_STRUCT( +// apollo::perception::pcl_util::PointXYZIRTd, +// (double, x, x)(double, y, y)(double, z, z)(uint8_t, intensity, intensity)( +// uint8_t, ring, ring)(double, timestamp, timestamp)) + +#endif // MODULES_PERCEPTION_COMMON_PCL_TYPES_H_ diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/util.h b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/util.h new file mode 100755 index 00000000000..94c15735c38 --- /dev/null +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/include/util.h @@ -0,0 +1,53 @@ +/* + * Copyright 2018-2019 Autoware Foundation. All rights reserved. + * + * 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. + */ + +/****************************************************************************** + * Copyright 2017 The Apollo Authors. All Rights Reserved. + * + * 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. + *****************************************************************************/ + +#ifndef MODULES_PERCEPTION_OBSTACLE_LIDAR_SEGMENTATION_CNNSEG_UTIL_H_ +#define MODULES_PERCEPTION_OBSTACLE_LIDAR_SEGMENTATION_CNNSEG_UTIL_H_ + +#include + + +inline int F2I(float val, float ori, float scale) { + return static_cast(std::floor((ori - val) * scale)); +} + +inline int Pc2Pixel(float in_pc, float in_range, float out_size) { + float inv_res = 0.5 * out_size / in_range; + return static_cast(std::floor((in_range - in_pc) * inv_res)); +} + +inline float Pixel2Pc(int in_pixel, float in_size, float out_range) { + float res = 2.0 * out_range / in_size; + return out_range - (static_cast(in_pixel) + 0.5f) * res; +} + +#endif // MODULES_PERCEPTION_OBSTACLE_LIDAR_SEGMENTATION_CNNSEG_UTIL_H_ diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/launch/lidar_apollo_cnn_seg_detect.launch b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/launch/lidar_apollo_cnn_seg_detect.launch new file mode 100644 index 00000000000..d79f05387d6 --- /dev/null +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/launch/lidar_apollo_cnn_seg_detect.launch @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/empty.xml b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/models/.models_here similarity index 100% rename from ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/empty.xml rename to ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/models/.models_here diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/nodes/cluster2d.cpp b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/nodes/cluster2d.cpp new file mode 100755 index 00000000000..ae8fe870af3 --- /dev/null +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/nodes/cluster2d.cpp @@ -0,0 +1,398 @@ +/* + * Copyright 2018-2019 Autoware Foundation. All rights reserved. + * + * 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 "cluster2d.h" + +bool Cluster2D::init(int rows, int cols, float range) +{ + rows_ = rows; + cols_ = cols; + grids_ = rows_ * cols_; + range_ = range; + scale_ = 0.5 * static_cast(rows_) / range_; + inv_res_x_ = 0.5 * static_cast(cols_) / range_; + inv_res_y_ = 0.5 * static_cast(rows_) / range_; + point2grid_.clear(); + // obstacles_.clear(); + id_img_.assign(grids_, -1); + pc_ptr_.reset(); + valid_indices_in_pc_ = nullptr; + return true; +} + +void Cluster2D::traverse(Node *x) +{ + std::vector p; + p.clear(); + while (x->traversed == 0) + { + p.push_back(x); + x->traversed = 2; + x = x->center_node; + } + if (x->traversed == 2) + { + for (int i = static_cast(p.size()) - 1; i >= 0 && p[i] != x; i--) + { + p[i]->is_center = true; + } + x->is_center = true; + } + for (size_t i = 0; i < p.size(); i++) + { + Node *y = p[i]; + y->traversed = 1; + y->parent = x->parent; + } +} + +void Cluster2D::cluster(const caffe::Blob &category_pt_blob, + const caffe::Blob &instance_pt_blob, + const pcl::PointCloud::Ptr &pc_ptr, + const pcl::PointIndices &valid_indices, + float objectness_thresh, bool use_all_grids_for_clustering) +{ + const float *category_pt_data = category_pt_blob.cpu_data(); + const float *instance_pt_x_data = instance_pt_blob.cpu_data(); + const float *instance_pt_y_data = + instance_pt_blob.cpu_data() + instance_pt_blob.offset(0, 1); + + pc_ptr_ = pc_ptr; + std::vector> nodes(rows_, + std::vector(cols_, Node())); + + // map points into grids + size_t tot_point_num = pc_ptr_->size(); + valid_indices_in_pc_ = &(valid_indices.indices); + CHECK_LE(valid_indices_in_pc_->size(), tot_point_num); + point2grid_.assign(valid_indices_in_pc_->size(), -1); + + for (size_t i = 0; i < valid_indices_in_pc_->size(); ++i) + { + int point_id = valid_indices_in_pc_->at(i); + CHECK_GE(point_id, 0); + CHECK_LT(point_id, static_cast(tot_point_num)); + const auto &point = pc_ptr_->points[point_id]; + // * the coordinates of x and y have been exchanged in feature generation + // step, + // so we swap them back here. + int pos_x = F2I(point.y, range_, inv_res_x_); // col + int pos_y = F2I(point.x, range_, inv_res_y_); // row + if (IsValidRowCol(pos_y, pos_x)) + { + // get grid index and count point number for corresponding node + point2grid_[i] = RowCol2Grid(pos_y, pos_x); + nodes[pos_y][pos_x].point_num++; + } + } + + // construct graph with center offset prediction and objectness + for (int row = 0; row < rows_; ++row) + { + for (int col = 0; col < cols_; ++col) + { + int grid = RowCol2Grid(row, col); + Node *node = &nodes[row][col]; + DisjointSetMakeSet(node); + node->is_object = + (use_all_grids_for_clustering || nodes[row][col].point_num > 0) && + (*(category_pt_data + grid) >= objectness_thresh); + int center_row = std::round(row + instance_pt_x_data[grid] * scale_); + int center_col = std::round(col + instance_pt_y_data[grid] * scale_); + center_row = std::min(std::max(center_row, 0), rows_ - 1); + center_col = std::min(std::max(center_col, 0), cols_ - 1); + node->center_node = &nodes[center_row][center_col]; + } + } + + // traverse nodes + for (int row = 0; row < rows_; ++row) + { + for (int col = 0; col < cols_; ++col) + { + Node *node = &nodes[row][col]; + if (node->is_object && node->traversed == 0) + { + traverse(node); + } + } + } + for (int row = 0; row < rows_; ++row) + { + for (int col = 0; col < cols_; ++col) + { + Node *node = &nodes[row][col]; + if (!node->is_center) + { + continue; + } + for (int row2 = row - 1; row2 <= row + 1; ++row2) + { + for (int col2 = col - 1; col2 <= col + 1; ++col2) + { + if ((row2 == row || col2 == col) && IsValidRowCol(row2, col2)) + { + Node *node2 = &nodes[row2][col2]; + if (node2->is_center) + { + DisjointSetUnion(node, node2); + } + } + } + } + } + } + + int count_obstacles = 0; + obstacles_.clear(); + id_img_.assign(grids_, -1); + for (int row = 0; row < rows_; ++row) + { + for (int col = 0; col < cols_; ++col) + { + Node *node = &nodes[row][col]; + if (!node->is_object) + { + continue; + } + Node *root = DisjointSetFind(node); + if (root->obstacle_id < 0) + { + root->obstacle_id = count_obstacles++; + CHECK_EQ(static_cast(obstacles_.size()), count_obstacles - 1); + obstacles_.push_back(Obstacle()); + } + int grid = RowCol2Grid(row, col); + CHECK_GE(root->obstacle_id, 0); + id_img_[grid] = root->obstacle_id; + obstacles_[root->obstacle_id].grids.push_back(grid); + } + } + CHECK_EQ(static_cast(count_obstacles), obstacles_.size()); +} + +void Cluster2D::filter(const caffe::Blob &confidence_pt_blob, + const caffe::Blob &height_pt_blob) +{ + const float *confidence_pt_data = confidence_pt_blob.cpu_data(); + const float *height_pt_data = height_pt_blob.cpu_data(); + for (size_t obstacle_id = 0; obstacle_id < obstacles_.size(); + obstacle_id++) + { + Obstacle *obs = &obstacles_[obstacle_id]; + CHECK_GT(obs->grids.size(), 0); + double score = 0.0; + double height = 0.0; + for (int grid : obs->grids) + { + score += static_cast(confidence_pt_data[grid]); + height += static_cast(height_pt_data[grid]); + } + obs->score = score / static_cast(obs->grids.size()); + obs->height = height / static_cast(obs->grids.size()); + obs->cloud_ptr.reset(new pcl::PointCloud); + } +} + +void Cluster2D::classify(const caffe::Blob &classify_pt_blob) +{ + const float *classify_pt_data = classify_pt_blob.cpu_data(); + int num_classes = classify_pt_blob.channels(); + CHECK_EQ(num_classes, MAX_META_TYPE); + for (size_t obs_id = 0; obs_id < obstacles_.size(); obs_id++) + { + Obstacle *obs = &obstacles_[obs_id]; + for (size_t grid_id = 0; grid_id < obs->grids.size(); grid_id++) + { + int grid = obs->grids[grid_id]; + for (int k = 0; k < num_classes; k++) + { + obs->meta_type_probs[k] += classify_pt_data[k * grids_ + grid]; + } + } + int meta_type_id = 0; + for (int k = 0; k < num_classes; k++) + { + obs->meta_type_probs[k] /= obs->grids.size(); + if (obs->meta_type_probs[k] > obs->meta_type_probs[meta_type_id]) + { + meta_type_id = k; + } + } + obs->meta_type = static_cast(meta_type_id); + } +} + +autoware_msgs::DetectedObject +Cluster2D::obstacleToObject(const Obstacle& in_obstacle, const std_msgs::Header& in_header) +{ + autoware_msgs::DetectedObject resulting_object; + + sensor_msgs::PointCloud2 ros_pc; + pcl::PointCloud in_cluster = *in_obstacle.cloud_ptr; + pcl::toROSMsg(in_cluster, ros_pc); + resulting_object.header = in_header; + resulting_object.pointcloud = ros_pc; + resulting_object.pointcloud.header = in_header; + resulting_object.score = in_obstacle.score; + resulting_object.label = in_obstacle.GetTypeString(); + resulting_object.valid = true; + + float min_x = std::numeric_limits::max(); + float max_x = -std::numeric_limits::max(); + float min_y = std::numeric_limits::max(); + float max_y = -std::numeric_limits::max(); + float min_z = std::numeric_limits::max(); + float max_z = -std::numeric_limits::max(); + float average_x = 0, average_y = 0, average_z = 0; + float length, width, height; + + pcl::PointXYZ min_point; + pcl::PointXYZ max_point; + pcl::PointXYZ average_point; + pcl::PointXYZ centroid; + + for (auto pit = in_cluster.points.begin(); pit != in_cluster.points.end(); ++pit) + { + average_x += pit->x; + average_y += pit->y; + average_z += pit->z; + centroid.x += pit->x; + centroid.y += pit->y; + centroid.z += pit->z; + + if (pit->x < min_x) + min_x = pit->x; + if (pit->y < min_y) + min_y = pit->y; + if (pit->z < min_z) + min_z = pit->z; + if (pit->x > max_x) + max_x = pit->x; + if (pit->y > max_y) + max_y = pit->y; + if (pit->z > max_z) + max_z = pit->z; + } + // min, max points + min_point.x = min_x; + min_point.y = min_y; + min_point.z = min_z; + max_point.x = max_x; + max_point.y = max_y; + max_point.z = max_z; + + if (in_cluster.points.size() > 0) + { + centroid.x /= in_cluster.points.size(); + centroid.y /= in_cluster.points.size(); + centroid.z /= in_cluster.points.size(); + } + length = max_point.x - min_point.x; + width = max_point.y - min_point.y; + height = max_point.z - min_point.z; + + resulting_object.pose.position.x = min_point.x + length / 2; + resulting_object.pose.position.y = min_point.y + width / 2; + resulting_object.pose.position.z = min_point.z + height / 2; + resulting_object.dimensions.x = ((length < 0) ? -1 * length : length); + resulting_object.dimensions.y = ((width < 0) ? -1 * width : width); + resulting_object.dimensions.z = ((height < 0) ? -1 * height : height); + + std::vector points; + for (unsigned int i = 0; i < in_cluster.points.size(); i++) + { + cv::Point2f pt; + pt.x = in_cluster.points[i].x; + pt.y = in_cluster.points[i].y; + points.push_back(pt); + } + + resulting_object.space_frame = in_header.frame_id; + + return resulting_object; +} + +void Cluster2D::getObjects(const float confidence_thresh, + const float height_thresh, + const int min_pts_num, + autoware_msgs::DetectedObjectArray &objects, + const std_msgs::Header &in_header) +{ + CHECK(valid_indices_in_pc_ != nullptr); + + for (size_t i = 0; i < point2grid_.size(); ++i) + { + int grid = point2grid_[i]; + if (grid < 0) + { + continue; + } + + CHECK_GE(grid, 0); + CHECK_LT(grid, grids_); + int obstacle_id = id_img_[grid]; + + int point_id = valid_indices_in_pc_->at(i); + CHECK_GE(point_id, 0); + CHECK_LT(point_id, static_cast(pc_ptr_->size())); + + if (obstacle_id >= 0 && + obstacles_[obstacle_id].score >= confidence_thresh) + { + if (height_thresh < 0 || + pc_ptr_->points[point_id].z <= + obstacles_[obstacle_id].height + height_thresh) + { + obstacles_[obstacle_id].cloud_ptr->push_back(pc_ptr_->points[point_id]); + } + } + } + + for (size_t obstacle_id = 0; obstacle_id < obstacles_.size(); + obstacle_id++) + { + Obstacle *obs = &obstacles_[obstacle_id]; + if (static_cast(obs->cloud_ptr->size()) < min_pts_num) + { + continue; + } + + autoware_msgs::DetectedObject out_obj = obstacleToObject(*obs, in_header); + + objects.objects.push_back(out_obj); + } +} + +ObjectType getObjectType(const MetaType meta_type_id) +{ + switch (meta_type_id) + { + case META_UNKNOWN: + return UNKNOWN; + case META_SMALLMOT: + return VEHICLE; + case META_BIGMOT: + return VEHICLE; + case META_NONMOT: + return BICYCLE; + case META_PEDESTRIAN: + return PEDESTRIAN; + default: + { + return UNKNOWN; + } + } +} diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/nodes/cnn_segmentation.cpp b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/nodes/cnn_segmentation.cpp new file mode 100755 index 00000000000..230a0b7c9d8 --- /dev/null +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/nodes/cnn_segmentation.cpp @@ -0,0 +1,257 @@ +/* + * Copyright 2018-2019 Autoware Foundation. All rights reserved. + * + * 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 "cnn_segmentation.h" + +CNNSegmentation::CNNSegmentation() : nh_() +{ +} + +bool CNNSegmentation::init() +{ + std::string proto_file; + std::string weight_file; + + ros::NodeHandle private_node_handle("~");//to receive args + + if (private_node_handle.getParam("network_definition_file", proto_file)) + { + ROS_INFO("[%s] network_definition_file: %s", __APP_NAME__, proto_file.c_str()); + } else + { + ROS_INFO("[%s] No Network Definition File was received. Finishing execution.", __APP_NAME__); + return false; + } + if (private_node_handle.getParam("pretrained_model_file", weight_file)) + { + ROS_INFO("[%s] Pretrained Model File: %s", __APP_NAME__, weight_file.c_str()); + } else + { + ROS_INFO("[%s] No Pretrained Model File was received. Finishing execution.", __APP_NAME__); + return false; + } + + + private_node_handle.param("points_src", topic_src_, "points_raw"); + ROS_INFO("[%s] points_src: %s", __APP_NAME__, topic_src_.c_str()); + + private_node_handle.param("range", range_, 60.); + ROS_INFO("[%s] Pretrained Model File: %.2f", __APP_NAME__, range_); + + private_node_handle.param("score_threshold", score_threshold_, 0.6); + ROS_INFO("[%s] score_threshold: %.2f", __APP_NAME__, score_threshold_); + + private_node_handle.param("width", width_, 512); + ROS_INFO("[%s] width: %d", __APP_NAME__, width_); + + private_node_handle.param("height", height_, 512); + ROS_INFO("[%s] height: %d", __APP_NAME__, height_); + + private_node_handle.param("use_gpu", use_gpu_, false); + ROS_INFO("[%s] use_gpu: %d", __APP_NAME__, use_gpu_); + + private_node_handle.param("gpu_device_id", gpu_device_id_, 0); + ROS_INFO("[%s] gpu_device_id: %d", __APP_NAME__, gpu_device_id_); + + /// Instantiate Caffe net + if (!use_gpu_) + { + caffe::Caffe::set_mode(caffe::Caffe::CPU); + } + else + { + caffe::Caffe::SetDevice(gpu_device_id_); + caffe::Caffe::set_mode(caffe::Caffe::GPU); + caffe::Caffe::DeviceQuery(); + } + + caffe_net_.reset(new caffe::Net(proto_file, caffe::TEST)); + caffe_net_->CopyTrainedLayersFrom(weight_file); + + + std::string instance_pt_blob_name = "instance_pt"; + instance_pt_blob_ = caffe_net_->blob_by_name(instance_pt_blob_name); + CHECK(instance_pt_blob_ != nullptr) << "`" << instance_pt_blob_name + << "` layer required"; + + std::string category_pt_blob_name = "category_score"; + category_pt_blob_ = caffe_net_->blob_by_name(category_pt_blob_name); + CHECK(category_pt_blob_ != nullptr) << "`" << category_pt_blob_name + << "` layer required"; + + std::string confidence_pt_blob_name = "confidence_score"; + confidence_pt_blob_ = caffe_net_->blob_by_name(confidence_pt_blob_name); + CHECK(confidence_pt_blob_ != nullptr) << "`" << confidence_pt_blob_name + << "` layer required"; + + std::string height_pt_blob_name = "height_pt"; + height_pt_blob_ = caffe_net_->blob_by_name(height_pt_blob_name); + CHECK(height_pt_blob_ != nullptr) << "`" << height_pt_blob_name + << "` layer required"; + + std::string feature_blob_name = "data"; + feature_blob_ = caffe_net_->blob_by_name(feature_blob_name); + CHECK(feature_blob_ != nullptr) << "`" << feature_blob_name + << "` layer required"; + + std::string class_pt_blob_name = "class_score"; + class_pt_blob_ = caffe_net_->blob_by_name(class_pt_blob_name); + CHECK(class_pt_blob_ != nullptr) << "`" << class_pt_blob_name + << "` layer required"; + + cluster2d_.reset(new Cluster2D()); + if (!cluster2d_->init(height_, width_, range_)) + { + ROS_ERROR("[%s] Fail to Initialize cluster2d for CNNSegmentation", __APP_NAME__); + return false; + } + + feature_generator_.reset(new FeatureGenerator()); + if (!feature_generator_->init(feature_blob_.get())) + { + ROS_ERROR("[%s] Fail to Initialize feature generator for CNNSegmentation", __APP_NAME__); + return false; + } + + return true; +} + +bool CNNSegmentation::segment(const pcl::PointCloud::Ptr &pc_ptr, + const pcl::PointIndices &valid_idx, + autoware_msgs::DetectedObjectArray &objects) +{ + int num_pts = static_cast(pc_ptr->points.size()); + if (num_pts == 0) + { + ROS_INFO("[%s] Empty point cloud.", __APP_NAME__); + return true; + } + + feature_generator_->generate(pc_ptr); + +// network forward process + caffe_net_->Forward(); +#ifndef USE_CAFFE_GPU +// caffe::Caffe::set_mode(caffe::Caffe::CPU); +#else +// int gpu_id = 0; +// caffe::Caffe::SetDevice(gpu_id); +// caffe::Caffe::set_mode(caffe::Caffe::GPU); +// caffe::Caffe::DeviceQuery(); +#endif + + // clutser points and construct segments/objects + float objectness_thresh = 0.5; + bool use_all_grids_for_clustering = true; + cluster2d_->cluster(*category_pt_blob_, *instance_pt_blob_, pc_ptr, + valid_idx, objectness_thresh, + use_all_grids_for_clustering); + cluster2d_->filter(*confidence_pt_blob_, *height_pt_blob_); + cluster2d_->classify(*class_pt_blob_); + float confidence_thresh = score_threshold_; + float height_thresh = 0.5; + int min_pts_num = 3; + cluster2d_->getObjects(confidence_thresh, height_thresh, min_pts_num, + objects, message_header_); + return true; +} + +void CNNSegmentation::test_run() +{ + std::string in_pcd_file = "uscar_12_1470770225_1470770492_1349.pcd"; + + pcl::PointCloud::Ptr in_pc_ptr(new pcl::PointCloud); + pcl::io::loadPCDFile(in_pcd_file, *in_pc_ptr); + + + pcl::PointIndices valid_idx; + auto &indices = valid_idx.indices; + indices.resize(in_pc_ptr->size()); + std::iota(indices.begin(), indices.end(), 0); + + autoware_msgs::DetectedObjectArray objects; + init(); + segment(in_pc_ptr, valid_idx, objects); + + +} + +void CNNSegmentation::run() +{ + init(); + + points_sub_ = nh_.subscribe(topic_src_, 1, &CNNSegmentation::pointsCallback, this); + points_pub_ = nh_.advertise("/detection/lidar_detector/points_cluster", 1); + objects_pub_ = nh_.advertise("/detection/lidar_detector/objects", 1); + + ROS_INFO("[%s] Ready. Waiting for data...", __APP_NAME__); +} + +void CNNSegmentation::pointsCallback(const sensor_msgs::PointCloud2 &msg) +{ + std::chrono::system_clock::time_point start, end; + start = std::chrono::system_clock::now(); + + pcl::PointCloud::Ptr in_pc_ptr(new pcl::PointCloud); + pcl::fromROSMsg(msg, *in_pc_ptr); + pcl::PointIndices valid_idx; + auto &indices = valid_idx.indices; + indices.resize(in_pc_ptr->size()); + std::iota(indices.begin(), indices.end(), 0); + message_header_ = msg.header; + + autoware_msgs::DetectedObjectArray objects; + objects.header = message_header_; + segment(in_pc_ptr, valid_idx, objects); + + pubColoredPoints(objects); + + objects_pub_.publish(objects); + + end = std::chrono::system_clock::now(); + double elapsed = std::chrono::duration_cast(end - start).count(); +} + +void CNNSegmentation::pubColoredPoints(const autoware_msgs::DetectedObjectArray &objects_array) +{ + pcl::PointCloud colored_cloud; + for (size_t object_i = 0; object_i < objects_array.objects.size(); object_i++) + { + // std::cout << "objct i" << object_i << std::endl; + pcl::PointCloud object_cloud; + pcl::fromROSMsg(objects_array.objects[object_i].pointcloud, object_cloud); + int red = (object_i) % 256; + int green = (object_i * 7) % 256; + int blue = (object_i * 13) % 256; + + for (size_t i = 0; i < object_cloud.size(); i++) + { + // std::cout << "point i" << i << "/ size: "<* out_blob) +{ + out_blob_ = out_blob; + + // raw feature parameters + range_ = 60; + width_ = 512; + height_ = 512; + min_height_ = -5.0; + max_height_ = 5.0; + CHECK_EQ(width_, height_) + << "Current implementation version requires input_width == input_height."; + + // set output blob and log lookup table + out_blob_->Reshape(1, 8, height_, width_); + + log_table_.resize(256); + for (size_t i = 0; i < log_table_.size(); ++i) { + log_table_[i] = std::log1p(static_cast(i)); + } + + float* out_blob_data = nullptr; + out_blob_data = out_blob_->mutable_cpu_data(); + + int channel_index = 0; + max_height_data_ = out_blob_data + out_blob_->offset(0, channel_index++); + mean_height_data_ = out_blob_data + out_blob_->offset(0, channel_index++); + count_data_ = out_blob_data + out_blob_->offset(0, channel_index++); + direction_data_ = out_blob_data + out_blob_->offset(0, channel_index++); + top_intensity_data_ = out_blob_data + out_blob_->offset(0, channel_index++); + mean_intensity_data_ = out_blob_data + out_blob_->offset(0, channel_index++); + distance_data_ = out_blob_data + out_blob_->offset(0, channel_index++); + nonempty_data_ = out_blob_data + out_blob_->offset(0, channel_index++); + CHECK_EQ(out_blob_->offset(0, channel_index), out_blob_->count()); + + // compute direction and distance features + int siz = height_ * width_; + std::vector direction_data(siz); + std::vector distance_data(siz); + + for (int row = 0; row < height_; ++row) { + for (int col = 0; col < width_; ++col) { + int idx = row * width_ + col; + // * row <-> x, column <-> y + float center_x = Pixel2Pc(row, height_, range_); + float center_y = Pixel2Pc(col, width_, range_); + constexpr double K_CV_PI = 3.1415926535897932384626433832795; + direction_data[idx] = + static_cast(std::atan2(center_y, center_x) / (2.0 * K_CV_PI)); + distance_data[idx] = + static_cast(std::hypot(center_x, center_y) / 60.0 - 0.5); + } + } + caffe::caffe_copy(siz, direction_data.data(), direction_data_); + caffe::caffe_copy(siz, distance_data.data(), distance_data_); + + return true; +} + +float FeatureGenerator::logCount(int count) +{ + if (count < static_cast(log_table_.size())) { + return log_table_[count]; + } + return std::log(static_cast(1 + count)); +} + +void FeatureGenerator::generate( + const pcl::PointCloud::Ptr& pc_ptr) { + const auto& points = pc_ptr->points; + + // DO NOT remove this line!!! + // Otherwise, the gpu_data will not be updated for the later frames. + // It marks the head at cpu for blob. + out_blob_->mutable_cpu_data(); + + int siz = height_ * width_; + caffe::caffe_set(siz, float(-5), max_height_data_); + caffe::caffe_set(siz, float(0), mean_height_data_); + caffe::caffe_set(siz, float(0), count_data_); + caffe::caffe_set(siz, float(0), top_intensity_data_); + caffe::caffe_set(siz, float(0), mean_intensity_data_); + caffe::caffe_set(siz, float(0), nonempty_data_); + + map_idx_.resize(points.size()); + float inv_res_x = + 0.5 * static_cast(width_) / static_cast(range_); + float inv_res_y = + 0.5 * static_cast(height_) / static_cast(range_); + + for (size_t i = 0; i < points.size(); ++i) { + if (points[i].z <= min_height_ || points[i].z >= max_height_) { + map_idx_[i] = -1; + continue; + } + // * the coordinates of x and y are exchanged here + // (row <-> x, column <-> y) + int pos_x = F2I(points[i].y, range_, inv_res_x); // col + int pos_y = F2I(points[i].x, range_, inv_res_y); // row + if (pos_x >= width_ || pos_x < 0 || pos_y >= height_ || pos_y < 0) { + map_idx_[i] = -1; + continue; + } + map_idx_[i] = pos_y * width_ + pos_x; + + int idx = map_idx_[i]; + float pz = points[i].z; + float pi = points[i].intensity / 255.0; + if (max_height_data_[idx] < pz) { + max_height_data_[idx] = pz; + top_intensity_data_[idx] = pi; + } + mean_height_data_[idx] += static_cast(pz); + mean_intensity_data_[idx] += static_cast(pi); + count_data_[idx] += float(1); + } + + for (int i = 0; i < siz; ++i) { + constexpr double EPS = 1e-6; + if (count_data_[i] < EPS) { + max_height_data_[i] = float(0); + } else { + mean_height_data_[i] /= count_data_[i]; + mean_intensity_data_[i] /= count_data_[i]; + nonempty_data_[i] = float(1); + } + count_data_[i] = logCount(static_cast(count_data_[i])); + } +} diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/nodes/lidar_apollo_cnn_seg_detect_node.cpp b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/nodes/lidar_apollo_cnn_seg_detect_node.cpp new file mode 100755 index 00000000000..9c79ef2e35e --- /dev/null +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/nodes/lidar_apollo_cnn_seg_detect_node.cpp @@ -0,0 +1,28 @@ +/* + * Copyright 2018-2019 Autoware Foundation. All rights reserved. + * + * 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 "cnn_segmentation.h" + +#include + +int main(int argc, char** argv) +{ + ros::init(argc, argv, "lidar_apollo_cnn_seg_detect"); + CNNSegmentation node; + node.run(); + ros::spin(); + + return 0; +} diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/package.xml b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/package.xml new file mode 100755 index 00000000000..bab022db0a3 --- /dev/null +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_apollo_cnn_seg_detect/package.xml @@ -0,0 +1,34 @@ + + lidar_apollo_cnn_seg_detect + 1.8.0 + The apollo cnn segmentation package + + Kosuke Murakami + + BSD + + Kosuke Murakami + + catkin + autoware_build_flags + + roscpp + tf + tf_conversions + pcl_ros + sensor_msgs + geometry_msgs + autoware_msgs + + roscpp + tf + tf_conversions + pcl_ros + sensor_msgs + geometry_msgs + autoware_msgs + + + + + diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_euclidean_cluster_detect/CMakeLists.txt b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_euclidean_cluster_detect/CMakeLists.txt index 7b080d535b5..341c3099d3d 100644 --- a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_euclidean_cluster_detect/CMakeLists.txt +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_euclidean_cluster_detect/CMakeLists.txt @@ -54,7 +54,6 @@ include_directories( ${autoware_msgs_INCLUDE_DIRS} ${OpenCV_INCLUDE_DIRS} ) -link_directories(${PCL_LIBRARY_DIRS}) link_directories(${OpenCV_LIBRARY_DIRS}) #Euclidean Cluster @@ -82,15 +81,20 @@ if (${CUDA_FOUND}) target_link_libraries(lidar_euclidean_cluster_detect ${OpenCV_LIBRARIES} ${catkin_LIBRARIES} - ${PCL_LIBRARIES} ${YAML_CPP_LIBRARIES} gpu_euclidean_clustering) + install(TARGETS + gpu_euclidean_clustering + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + else () target_link_libraries(lidar_euclidean_cluster_detect ${OpenCV_LIBRARIES} ${catkin_LIBRARIES} - ${PCL_LIBRARIES} ${YAML_CPP_LIBRARIES}) endif () @@ -106,9 +110,16 @@ if (OPENMP_FOUND) ) endif () +install(DIRECTORY include/ + DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}) + install(TARGETS lidar_euclidean_cluster_detect ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_fake_perception/CMakeLists.txt b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_fake_perception/CMakeLists.txt index 78309e023ca..3124841995f 100644 --- a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_fake_perception/CMakeLists.txt +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_fake_perception/CMakeLists.txt @@ -50,5 +50,9 @@ install(TARGETS lidar_fake_perception_node ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_naive_l_shape_detect/CMakeLists.txt b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_naive_l_shape_detect/CMakeLists.txt index f3951f0935d..a9c86adb812 100644 --- a/ros/src/computing/perception/detection/lidar_detector/packages/lidar_naive_l_shape_detect/CMakeLists.txt +++ b/ros/src/computing/perception/detection/lidar_detector/packages/lidar_naive_l_shape_detect/CMakeLists.txt @@ -25,7 +25,6 @@ catkin_package( ) -link_directories(${PCL_LIBRARY_DIRS}) link_directories(${OpenCV_LIBRARY_DIRS}) include_directories( @@ -35,7 +34,9 @@ include_directories( ${OpenCV_INCLUDE_DIRS} ) -set(SOURCE_FILES nodes/lidar_naive_l_shape_detect/lidar_naive_l_shape_detect_node.cpp nodes/lidar_naive_l_shape_detect/lidar_naive_l_shape_detect.cpp) +set(SOURCE_FILES + nodes/lidar_naive_l_shape_detect/lidar_naive_l_shape_detect_node.cpp + nodes/lidar_naive_l_shape_detect/lidar_naive_l_shape_detect.cpp) add_executable(lidar_naive_l_shape_detect ${SOURCE_FILES}) @@ -43,11 +44,18 @@ add_dependencies(lidar_naive_l_shape_detect ${catkin_EXPORTED_TARGETS} ) -target_link_libraries(lidar_naive_l_shape_detect ${catkin_LIBRARIES} ${OpenCV_LIBRARIES}) +target_link_libraries(lidar_naive_l_shape_detect + ${catkin_LIBRARIES} + ${OpenCV_LIBRARIES} + ) install(TARGETS lidar_naive_l_shape_detect ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/perception/detection/lidar_tracker/packages/lidar_imm_ukf_pda_track/CMakeLists.txt b/ros/src/computing/perception/detection/lidar_tracker/packages/lidar_imm_ukf_pda_track/CMakeLists.txt index 062fbe660b7..ffbbd6147df 100644 --- a/ros/src/computing/perception/detection/lidar_tracker/packages/lidar_imm_ukf_pda_track/CMakeLists.txt +++ b/ros/src/computing/perception/detection/lidar_tracker/packages/lidar_imm_ukf_pda_track/CMakeLists.txt @@ -31,8 +31,6 @@ include_directories( ${catkin_INCLUDE_DIRS} include) -link_directories(${PCL_LIBRARY_DIRS}) - #imm_ukf_pda add_executable(imm_ukf_pda nodes/imm_ukf_pda/imm_ukf_pda_main.cpp @@ -41,7 +39,6 @@ add_executable(imm_ukf_pda ) target_link_libraries(imm_ukf_pda ${catkin_LIBRARIES} - ${PCL_LIBRARIES} ) add_dependencies(imm_ukf_pda ${catkin_EXPORTED_TARGETS} @@ -52,5 +49,9 @@ install(TARGETS imm_ukf_pda ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/perception/detection/lidar_tracker/packages/lidar_kf_contour_track/CMakeLists.txt b/ros/src/computing/perception/detection/lidar_tracker/packages/lidar_kf_contour_track/CMakeLists.txt index 5a91dc764d3..4e75a467288 100644 --- a/ros/src/computing/perception/detection/lidar_tracker/packages/lidar_kf_contour_track/CMakeLists.txt +++ b/ros/src/computing/perception/detection/lidar_tracker/packages/lidar_kf_contour_track/CMakeLists.txt @@ -52,5 +52,9 @@ install(TARGETS lidar_kf_contour_track ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/perception/detection/object_filter/packages/lidar_shape_estimation/CMakeLists.txt b/ros/src/computing/perception/detection/object_filter/packages/lidar_shape_estimation/CMakeLists.txt index 2bce4db1711..070576c9650 100644 --- a/ros/src/computing/perception/detection/object_filter/packages/lidar_shape_estimation/CMakeLists.txt +++ b/ros/src/computing/perception/detection/object_filter/packages/lidar_shape_estimation/CMakeLists.txt @@ -61,7 +61,7 @@ install(TARGETS lidar_shape_estimation ) install(DIRECTORY launch/ - DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch FILES_MATCHING PATTERN "*.launch" ) diff --git a/ros/src/computing/perception/detection/object_filter/packages/roi_object_filter/CMakeLists.txt b/ros/src/computing/perception/detection/object_filter/packages/roi_object_filter/CMakeLists.txt index 3d4fdecc7a4..9a56057e841 100644 --- a/ros/src/computing/perception/detection/object_filter/packages/roi_object_filter/CMakeLists.txt +++ b/ros/src/computing/perception/detection/object_filter/packages/roi_object_filter/CMakeLists.txt @@ -97,7 +97,7 @@ target_include_directories(roi_object_filter PRIVATE target_link_libraries(roi_object_filter roi_object_filter_lib) -install(TARGETS roi_object_filter +install(TARGETS roi_object_filter_lib roi_object_filter ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) diff --git a/ros/src/computing/perception/detection/trafficlight_recognizer/CMakeLists.txt b/ros/src/computing/perception/detection/trafficlight_recognizer/CMakeLists.txt index 569f1fc4a1d..314cac92fa9 100644 --- a/ros/src/computing/perception/detection/trafficlight_recognizer/CMakeLists.txt +++ b/ros/src/computing/perception/detection/trafficlight_recognizer/CMakeLists.txt @@ -299,7 +299,7 @@ else () # if(EXISTS "${SSD_CAFFE_PATH}") endif () # if(EXISTS "${SSD_CAFFE_PATH}") -install(TARGETS region_tlr feat_proj tlr_tuner roi_extractor label_maker +install(TARGETS region_tlr feat_proj tlr_tuner roi_extractor label_maker libcontext tl_switch ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} diff --git a/ros/src/computing/perception/detection/vision_detector/libs/dpm_ttic/CMakeLists.txt b/ros/src/computing/perception/detection/vision_detector/libs/dpm_ttic/CMakeLists.txt index fbe1d599aa6..e28fc154c40 100644 --- a/ros/src/computing/perception/detection/vision_detector/libs/dpm_ttic/CMakeLists.txt +++ b/ros/src/computing/perception/detection/vision_detector/libs/dpm_ttic/CMakeLists.txt @@ -140,5 +140,5 @@ install(TARGETS libdpm_ttic ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) diff --git a/ros/src/computing/perception/detection/vision_detector/packages/vision_dpm_ttic_detect/CMakeLists.txt b/ros/src/computing/perception/detection/vision_detector/packages/vision_dpm_ttic_detect/CMakeLists.txt index 3c976c7eaea..06704298aab 100644 --- a/ros/src/computing/perception/detection/vision_detector/packages/vision_dpm_ttic_detect/CMakeLists.txt +++ b/ros/src/computing/perception/detection/vision_detector/packages/vision_dpm_ttic_detect/CMakeLists.txt @@ -44,6 +44,8 @@ include_directories( IF (CUDA_FOUND) include_directories(${CUDA_INCLUDE_DIRS}) + + set(CMAKE_CXX_FLAGS "-lcuda ${CMAKE_CXX_FLAGS}") IF ("${CMAKE_SYSTEM_PROCESSOR}" MATCHES "^arm") link_directories(/usr/lib/arm-linux-gnueabihf/tegra) @@ -98,3 +100,11 @@ install(TARGETS vision_dpm_ttic_detect LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) + +install(DIRECTORY data/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/data + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/perception/detection/vision_detector/packages/vision_segment_enet_detect/CMakeLists.txt b/ros/src/computing/perception/detection/vision_detector/packages/vision_segment_enet_detect/CMakeLists.txt index f717456c547..76aa0feb22f 100644 --- a/ros/src/computing/perception/detection/vision_detector/packages/vision_segment_enet_detect/CMakeLists.txt +++ b/ros/src/computing/perception/detection/vision_detector/packages/vision_segment_enet_detect/CMakeLists.txt @@ -2,20 +2,20 @@ cmake_minimum_required(VERSION 2.8.12) project(vision_segment_enet_detect) FIND_PACKAGE(catkin REQUIRED COMPONENTS - cv_bridge - image_transport - roscpp - sensor_msgs - ) + cv_bridge + image_transport + roscpp + sensor_msgs + ) FIND_PACKAGE(CUDA) FIND_PACKAGE(OpenCV REQUIRED) catkin_package(CATKIN_DEPENDS - cv_bridge - image_transport - roscpp - sensor_msgs - ) + cv_bridge + image_transport + roscpp + sensor_msgs + ) ########### ## Build ## ########### @@ -23,8 +23,8 @@ catkin_package(CATKIN_DEPENDS SET(CMAKE_CXX_FLAGS "-O2 -g -Wall ${CMAKE_CXX_FLAGS}") INCLUDE_DIRECTORIES( - ${catkin_INCLUDE_DIRS} - ) + ${catkin_INCLUDE_DIRS} +) #####ENET######## @@ -33,37 +33,41 @@ set(ENET_CAFFE_PATH "$ENV{HOME}/ENet/caffe-enet/distribute") #################################################################################################### if (EXISTS "${ENET_CAFFE_PATH}" AND ${CUDA_FOUND}) - ADD_EXECUTABLE(vision_segment_enet_detect - nodes/vision_segment_enet_detect/vision_segment_enet_detect_node.cpp - nodes/vision_segment_enet_detect/vision_segment_enet_detect.cpp - ) + ADD_EXECUTABLE(vision_segment_enet_detect + nodes/vision_segment_enet_detect/vision_segment_enet_detect_node.cpp + nodes/vision_segment_enet_detect/vision_segment_enet_detect.cpp + ) - TARGET_LINK_LIBRARIES(vision_segment_enet_detect - ${catkin_LIBRARIES} - ${OpenCV_LIBS} - ${CUDA_LIBRARIES} - ${CUDA_CUBLAS_LIBRARIES} - ${CUDA_curand_LIBRARY} - ${ENET_CAFFE_PATH}/lib/libcaffe.so - glog - ) + TARGET_LINK_LIBRARIES(vision_segment_enet_detect + ${catkin_LIBRARIES} + ${OpenCV_LIBS} + ${CUDA_LIBRARIES} + ${CUDA_CUBLAS_LIBRARIES} + ${CUDA_curand_LIBRARY} + ${ENET_CAFFE_PATH}/lib/libcaffe.so + glog + ) - TARGET_INCLUDE_DIRECTORIES(vision_segment_enet_detect PRIVATE - ${CUDA_INCLUDE_DIRS} - ${ENET_CAFFE_PATH}/include - include - ) + TARGET_INCLUDE_DIRECTORIES(vision_segment_enet_detect PRIVATE + ${CUDA_INCLUDE_DIRS} + ${ENET_CAFFE_PATH}/include + include + ) - ADD_DEPENDENCIES(vision_segment_enet_detect - ${catkin_EXPORTED_TARGETS} - ) + ADD_DEPENDENCIES(vision_segment_enet_detect + ${catkin_EXPORTED_TARGETS} + ) + + install(TARGETS + vision_segment_enet_detect + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) - install(TARGETS - vision_segment_enet_detect - ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} - ) else () - message("' ENet/Caffe' is not installed. 'vision_segment_enet_detect' will not be built.") + message("' ENet/Caffe' is not installed. 'vision_segment_enet_detect' will not be built.") endif () diff --git a/ros/src/computing/perception/detection/vision_detector/packages/vision_ssd_detect/CMakeLists.txt b/ros/src/computing/perception/detection/vision_detector/packages/vision_ssd_detect/CMakeLists.txt index 8abc062b35b..c19cace836f 100644 --- a/ros/src/computing/perception/detection/vision_detector/packages/vision_ssd_detect/CMakeLists.txt +++ b/ros/src/computing/perception/detection/vision_detector/packages/vision_ssd_detect/CMakeLists.txt @@ -85,11 +85,18 @@ if (EXISTS "${SSD_CAFFE_PATH}") ${catkin_EXPORTED_TARGETS} ) + install(DIRECTORY include/ + DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}) + install(TARGETS vision_ssd_detect ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) + install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) + else () message("'SSD/Caffe' is not installed. 'ssd_unc' will not be built.") endif () diff --git a/ros/src/computing/perception/detection/vision_tracker/packages/vision_beyond_track/CMakeLists.txt b/ros/src/computing/perception/detection/vision_tracker/packages/vision_beyond_track/CMakeLists.txt index 2e12622afe2..8a91e0936f2 100644 --- a/ros/src/computing/perception/detection/vision_tracker/packages/vision_beyond_track/CMakeLists.txt +++ b/ros/src/computing/perception/detection/vision_tracker/packages/vision_beyond_track/CMakeLists.txt @@ -60,4 +60,8 @@ install(TARGETS beyond_track_lib vision_beyond_track ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} - ) \ No newline at end of file + ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/perception/detection/visualizers/packages/detected_objects_visualizer/CMakeLists.txt b/ros/src/computing/perception/detection/visualizers/packages/detected_objects_visualizer/CMakeLists.txt index eb7fca60796..b8ee99d7bd9 100644 --- a/ros/src/computing/perception/detection/visualizers/packages/detected_objects_visualizer/CMakeLists.txt +++ b/ros/src/computing/perception/detection/visualizers/packages/detected_objects_visualizer/CMakeLists.txt @@ -90,5 +90,8 @@ install(TARGETS visualize_detected_objects visualize_rects ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) +install(DIRECTORY models/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/models + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/computing/perception/detection/visualizers/packages/integrated_viewer/CMakeLists.txt b/ros/src/computing/perception/detection/visualizers/packages/integrated_viewer/CMakeLists.txt index f1590b1e39f..500aebdd0ec 100644 --- a/ros/src/computing/perception/detection/visualizers/packages/integrated_viewer/CMakeLists.txt +++ b/ros/src/computing/perception/detection/visualizers/packages/integrated_viewer/CMakeLists.txt @@ -123,6 +123,12 @@ install(TARGETS ${PROJECT_NAME} install(FILES rviz_plugin_description.xml DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) +install(FILES + node/image_viewer_plugin/autoware_logo.png + node/image_viewer_plugin/car.png + node/image_viewer_plugin/pedestrian.png + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/node/image_viewer_plugin/) + add_dependencies(${PROJECT_NAME} ${catkin_EXPORTED_TARGETS} ) diff --git a/ros/src/computing/perception/localization/lib/ndt_tku/CMakeLists.txt b/ros/src/computing/perception/localization/lib/ndt_tku/CMakeLists.txt index 8cb743759bd..9100b03162e 100644 --- a/ros/src/computing/perception/localization/lib/ndt_tku/CMakeLists.txt +++ b/ros/src/computing/perception/localization/lib/ndt_tku/CMakeLists.txt @@ -32,7 +32,7 @@ target_link_libraries(ndt_tku install(TARGETS ndt_tku ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION}) + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) install(DIRECTORY include/ DESTINATION ${CATKIN_GLOBAL_INCLUDE_DESTINATION} diff --git a/ros/src/computing/perception/localization/packages/lidar_localizer/CMakeLists.txt b/ros/src/computing/perception/localization/packages/lidar_localizer/CMakeLists.txt index d72fd69eb2c..a8dc9a8fd76 100644 --- a/ros/src/computing/perception/localization/packages/lidar_localizer/CMakeLists.txt +++ b/ros/src/computing/perception/localization/packages/lidar_localizer/CMakeLists.txt @@ -50,6 +50,7 @@ find_package(catkin REQUIRED COMPONENTS velodyne_pointcloud ndt_tku ndt_cpu + autoware_health_checker ${PCL_OPENMP_PACKAGES} autoware_msgs autoware_config_msgs @@ -136,24 +137,21 @@ add_executable(icp_matching nodes/icp_matching/icp_matching.cpp) target_link_libraries(icp_matching ${catkin_LIBRARIES}) add_dependencies(icp_matching ${catkin_EXPORTED_TARGETS}) -install(TARGETS ndt_matching_tku ndt_mapping_tku ndt_mapping_tku ndt_matching_monitor +install(TARGETS + ndt_matching + ndt_mapping + approximate_ndt_mapping + ndt_mapping_tku + mapping + ndt_matching_monitor_lib + ndt_matching_monitor + icp_matching + queue_counter ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) -install(TARGETS ndt_matching ndt_mapping approximate_ndt_mapping queue_counter - ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} - ) - -install(TARGETS icp_matching - ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) - - install(DIRECTORY launch/ DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/perception/localization/packages/lidar_localizer/nodes/ndt_matching/ndt_matching.cpp b/ros/src/computing/perception/localization/packages/lidar_localizer/nodes/ndt_matching/ndt_matching.cpp index 8e1613d5e32..4ae31227324 100644 --- a/ros/src/computing/perception/localization/packages/lidar_localizer/nodes/ndt_matching/ndt_matching.cpp +++ b/ros/src/computing/perception/localization/packages/lidar_localizer/nodes/ndt_matching/ndt_matching.cpp @@ -69,12 +69,17 @@ #include +//headers in Autoware Health Checker +#include + #define PREDICT_POSE_THRESHOLD 0.5 #define Wa 0.4 #define Wb 0.3 #define Wc 0.3 +static std::shared_ptr node_status_publisher_ptr_; + struct pose { double x; @@ -916,6 +921,7 @@ static void imu_callback(const sensor_msgs::Imu::Ptr& input) static void points_callback(const sensor_msgs::PointCloud2::ConstPtr& input) { + node_status_publisher_ptr_->CHECK_RATE("/topic/rate/points_raw/slow",8,5,1,"topic points_raw subscribe rate low."); if (map_loaded == 1 && init_pos_set == 1) { matching_start = std::chrono::system_clock::now(); @@ -1348,6 +1354,7 @@ static void points_callback(const sensor_msgs::PointCloud2::ConstPtr& input) } predict_pose_pub.publish(predict_pose_msg); + node_status_publisher_ptr_->CHECK_RATE("/topic/rate/ndt_pose/slow",8,5,1,"topic points_raw publish rate low."); ndt_pose_pub.publish(ndt_pose_msg); // current_pose is published by vel_pose_mux // current_pose_pub.publish(current_pose_msg); @@ -1369,6 +1376,7 @@ static void points_callback(const sensor_msgs::PointCloud2::ConstPtr& input) matching_end = std::chrono::system_clock::now(); exe_time = std::chrono::duration_cast(matching_end - matching_start).count() / 1000.0; time_ndt_matching.data = exe_time; + node_status_publisher_ptr_->CHECK_MAX_VALUE("/value/time_ndt_matching",time_ndt_matching.data,50,70,100,"value time_ndt_matching is too high."); time_ndt_matching_pub.publish(time_ndt_matching); // Set values for /estimate_twist @@ -1386,6 +1394,8 @@ static void points_callback(const sensor_msgs::PointCloud2::ConstPtr& input) geometry_msgs::Vector3Stamped estimate_vel_msg; estimate_vel_msg.header.stamp = current_scan_time; estimate_vel_msg.vector.x = current_velocity; + node_status_publisher_ptr_->CHECK_MAX_VALUE("/value/estimate_twist/linear",current_velocity,5,10,15,"value linear estimated twist is too high."); + node_status_publisher_ptr_->CHECK_MAX_VALUE("/value/estimate_twist/angular",angular_velocity,5,10,15,"value linear angular twist is too high."); estimated_vel_pub.publish(estimate_vel_msg); // Set values for /ndt_stat @@ -1514,6 +1524,9 @@ int main(int argc, char** argv) ros::NodeHandle nh; ros::NodeHandle private_nh("~"); + node_status_publisher_ptr_ = std::make_shared(nh,private_nh); + node_status_publisher_ptr_->ENABLE(); + node_status_publisher_ptr_->NODE_ACTIVATE(); // Set log file name. private_nh.getParam("output_log_data", _output_log_data); diff --git a/ros/src/computing/perception/localization/packages/lidar_localizer/package.xml b/ros/src/computing/perception/localization/packages/lidar_localizer/package.xml index 7d52101202a..56c51731a0e 100644 --- a/ros/src/computing/perception/localization/packages/lidar_localizer/package.xml +++ b/ros/src/computing/perception/localization/packages/lidar_localizer/package.xml @@ -25,6 +25,7 @@ ndt_tku libpcl-all-dev eigen + autoware_health_checker roscpp std_msgs @@ -43,6 +44,7 @@ ndt_tku libpcl-all eigen + autoware_health_checker diff --git a/ros/src/computing/perception/prediction/motion_predictor/packages/naive_motion_predict/CMakeLists.txt b/ros/src/computing/perception/prediction/motion_predictor/packages/naive_motion_predict/CMakeLists.txt index 6ccb1093799..eb20c81f656 100644 --- a/ros/src/computing/perception/prediction/motion_predictor/packages/naive_motion_predict/CMakeLists.txt +++ b/ros/src/computing/perception/prediction/motion_predictor/packages/naive_motion_predict/CMakeLists.txt @@ -49,5 +49,8 @@ install(TARGETS naive_motion_predict ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} - ) + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/computing/perception/semantics/packages/object_map/CMakeLists.txt b/ros/src/computing/perception/semantics/packages/object_map/CMakeLists.txt index 8dde126828d..2c71196477b 100644 --- a/ros/src/computing/perception/semantics/packages/object_map/CMakeLists.txt +++ b/ros/src/computing/perception/semantics/packages/object_map/CMakeLists.txt @@ -33,7 +33,15 @@ if (OPENMP_FOUND) endif () catkin_package( - CATKIN_DEPENDS roscpp pcl_ros pcl_conversions tf sensor_msgs nav_msgs autoware_msgs vector_map + CATKIN_DEPENDS + roscpp + pcl_ros + pcl_conversions + tf + sensor_msgs + nav_msgs + autoware_msgs + vector_map ) set(CMAKE_CXX_FLAGS "-O2 -g -Wall ${CMAKE_CXX_FLAGS}") @@ -123,7 +131,15 @@ target_link_libraries(wayarea2grid wayarea2grid_lib ) -install(TARGETS wayarea2grid grid_map_filter potential_field points2costmap laserscan2costmap +install(TARGETS + wayarea2grid + wayarea2grid_lib + grid_map_filter_lib + grid_map_filter + potential_field + points2costmap + laserscan2costmap + object_map_utils_lib ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) @@ -135,8 +151,3 @@ install(DIRECTORY launch/ install(DIRECTORY config/ DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/config PATTERN ".svn" EXCLUDE) - -install(DIRECTORY include/ - DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} - PATTERN ".svn" EXCLUDE - ) diff --git a/ros/src/computing/perception/semantics/packages/road_occupancy_processor/CMakeLists.txt b/ros/src/computing/perception/semantics/packages/road_occupancy_processor/CMakeLists.txt index 7da8c9e52cd..8cc213a439d 100644 --- a/ros/src/computing/perception/semantics/packages/road_occupancy_processor/CMakeLists.txt +++ b/ros/src/computing/perception/semantics/packages/road_occupancy_processor/CMakeLists.txt @@ -41,7 +41,7 @@ set(CMAKE_CXX_FLAGS "-O3 -g -Wall ${CMAKE_CXX_FLAGS}") #Road Occupancy Processor Library add_library(road_occupancy_processor_lib SHARED - include/road_occupancy_processor.h + include/road_occupancy_processor/road_occupancy_processor.h src/road_occupancy_processor.cpp ) @@ -87,11 +87,14 @@ target_include_directories(road_occupancy_processor PRIVATE target_link_libraries(road_occupancy_processor road_occupancy_processor_lib) -install(TARGETS road_occupancy_processor +install(TARGETS road_occupancy_processor road_occupancy_processor_lib ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) +install(DIRECTORY include/${PROJECT_NAME}/ + DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}) + install(DIRECTORY launch/ DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/perception/semantics/packages/road_occupancy_processor/include/road_occupancy_processor.h b/ros/src/computing/perception/semantics/packages/road_occupancy_processor/include/road_occupancy_processor/road_occupancy_processor.h similarity index 100% rename from ros/src/computing/perception/semantics/packages/road_occupancy_processor/include/road_occupancy_processor.h rename to ros/src/computing/perception/semantics/packages/road_occupancy_processor/include/road_occupancy_processor/road_occupancy_processor.h diff --git a/ros/src/computing/perception/semantics/packages/road_occupancy_processor/src/road_occupancy_processor.cpp b/ros/src/computing/perception/semantics/packages/road_occupancy_processor/src/road_occupancy_processor.cpp index 60849bd5094..534c8418225 100644 --- a/ros/src/computing/perception/semantics/packages/road_occupancy_processor/src/road_occupancy_processor.cpp +++ b/ros/src/computing/perception/semantics/packages/road_occupancy_processor/src/road_occupancy_processor.cpp @@ -20,7 +20,7 @@ * Created on: Jan 29, 2018 */ -#include "road_occupancy_processor.h" +#include "road_occupancy_processor/road_occupancy_processor.h" void ROSRoadOccupancyProcessorApp::ConvertXYZIToRTZ(const pcl::PointCloud::Ptr in_cloud, ROSRoadOccupancyProcessorApp::PointCloudXYZIRTColor &out_organized_points, diff --git a/ros/src/computing/perception/semantics/packages/road_occupancy_processor/src/road_occupancy_processor_node.cpp b/ros/src/computing/perception/semantics/packages/road_occupancy_processor/src/road_occupancy_processor_node.cpp index ec66a283953..7450ce98c9e 100644 --- a/ros/src/computing/perception/semantics/packages/road_occupancy_processor/src/road_occupancy_processor_node.cpp +++ b/ros/src/computing/perception/semantics/packages/road_occupancy_processor/src/road_occupancy_processor_node.cpp @@ -20,7 +20,7 @@ * Created on: Jan 29, 2018 */ -#include "road_occupancy_processor.h" +#include "road_occupancy_processor/road_occupancy_processor.h" int main(int argc, char **argv) { diff --git a/ros/src/computing/planning/decision/packages/decision_maker/CMakeLists.txt b/ros/src/computing/planning/decision/packages/decision_maker/CMakeLists.txt index 97a2e7c6e10..5d3b695007c 100644 --- a/ros/src/computing/planning/decision/packages/decision_maker/CMakeLists.txt +++ b/ros/src/computing/planning/decision/packages/decision_maker/CMakeLists.txt @@ -71,14 +71,22 @@ target_link_libraries(decision_maker_node add_dependencies(decision_maker_node ${catkin_EXPORTED_TARGETS}) # This function will be integrated into decision_maker soon. -add_executable(planner_selector_node nodes/planner_selector/planner_selector_node.cpp) -target_link_libraries(planner_selector_node ${catkin_LIBRARIES}) -add_dependencies(planner_selector_node ${catkin_EXPORTED_TARGETS}) +add_executable(planner_selector_node + nodes/planner_selector/planner_selector_node.cpp + ) +target_link_libraries(planner_selector_node + ${catkin_LIBRARIES} + ) +add_dependencies(planner_selector_node + ${catkin_EXPORTED_TARGETS} + ) -install(TARGETS decision_maker_node planner_selector_node +install(TARGETS + decision_maker_node + planner_selector_node ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) install(DIRECTORY launch diff --git a/ros/src/computing/planning/mission/packages/freespace_planner/CMakeLists.txt b/ros/src/computing/planning/mission/packages/freespace_planner/CMakeLists.txt index 05a1a61579d..67646048c04 100644 --- a/ros/src/computing/planning/mission/packages/freespace_planner/CMakeLists.txt +++ b/ros/src/computing/planning/mission/packages/freespace_planner/CMakeLists.txt @@ -25,6 +25,25 @@ include_directories( ${catkin_INCLUDE_DIRS} ) -add_executable(astar_navi nodes/astar_navi/astar_navi.cpp nodes/astar_navi/astar_search.cpp nodes/astar_navi/search_info_ros.cpp include/astar_util.cpp) -target_link_libraries(astar_navi ${catkin_LIBRARIES}) -add_dependencies(astar_navi ${catkin_EXPORTED_TARGETS}) +add_executable(astar_navi + nodes/astar_navi/astar_navi.cpp + nodes/astar_navi/astar_search.cpp + nodes/astar_navi/search_info_ros.cpp + include/astar_util.cpp + ) +target_link_libraries(astar_navi + ${catkin_LIBRARIES} + ) +add_dependencies(astar_navi + ${catkin_EXPORTED_TARGETS} + ) + +install(TARGETS astar_navi + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) + diff --git a/ros/src/computing/planning/mission/packages/lane_planner/CMakeLists.txt b/ros/src/computing/planning/mission/packages/lane_planner/CMakeLists.txt index 6533248fef4..914814689c0 100644 --- a/ros/src/computing/planning/mission/packages/lane_planner/CMakeLists.txt +++ b/ros/src/computing/planning/mission/packages/lane_planner/CMakeLists.txt @@ -37,13 +37,19 @@ include_directories( ${autoware_msgs_INCLUDE_DIRS} ) -add_library(lane_planner lib/lane_planner/lane_planner_vmap.cpp) -target_link_libraries(lane_planner ${catkin_LIBRARIES}) +add_library(lane_planner + lib/lane_planner/lane_planner_vmap.cpp + ) +target_link_libraries(lane_planner + ${catkin_LIBRARIES} + ) add_dependencies(lane_planner ${catkin_EXPORTED_TARGETS} ) -add_executable(lane_navi nodes/lane_navi/lane_navi.cpp) +add_executable(lane_navi + nodes/lane_navi/lane_navi.cpp + ) target_link_libraries(lane_navi lane_planner ${catkin_LIBRARIES} @@ -52,7 +58,9 @@ add_dependencies(lane_navi ${catkin_EXPORTED_TARGETS} ) -add_executable(lane_rule nodes/lane_rule/lane_rule.cpp) +add_executable(lane_rule + nodes/lane_rule/lane_rule.cpp + ) target_link_libraries(lane_rule lane_planner ${catkin_LIBRARIES} @@ -61,7 +69,9 @@ add_dependencies(lane_rule ${catkin_EXPORTED_TARGETS} ) -add_executable(lane_stop nodes/lane_stop/lane_stop.cpp) +add_executable(lane_stop + nodes/lane_stop/lane_stop.cpp + ) target_link_libraries(lane_stop lane_planner ${catkin_LIBRARIES}) add_dependencies(lane_stop ${catkin_EXPORTED_TARGETS} @@ -90,5 +100,8 @@ install(TARGETS lane_planner ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/planning/mission/packages/op_global_planner/CMakeLists.txt b/ros/src/computing/planning/mission/packages/op_global_planner/CMakeLists.txt index bb7d692c959..d9dbc0a99b0 100644 --- a/ros/src/computing/planning/mission/packages/op_global_planner/CMakeLists.txt +++ b/ros/src/computing/planning/mission/packages/op_global_planner/CMakeLists.txt @@ -52,3 +52,14 @@ include_directories( target_link_libraries(op_global_planner ${catkin_LIBRARIES} ) add_dependencies(op_global_planner ${catkin_EXPORTED_TARGETS}) + +install(TARGETS + op_global_planner + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/planning/mission/packages/way_planner/CMakeLists.txt b/ros/src/computing/planning/mission/packages/way_planner/CMakeLists.txt index 37de398e70e..e0177960bb9 100644 --- a/ros/src/computing/planning/mission/packages/way_planner/CMakeLists.txt +++ b/ros/src/computing/planning/mission/packages/way_planner/CMakeLists.txt @@ -57,3 +57,14 @@ include_directories( target_link_libraries(way_planner ${catkin_LIBRARIES} ) + +install(TARGETS + way_planner + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/planning/motion/packages/astar_planner/CMakeLists.txt b/ros/src/computing/planning/motion/packages/astar_planner/CMakeLists.txt index c9978c77545..9c40db28d6c 100644 --- a/ros/src/computing/planning/motion/packages/astar_planner/CMakeLists.txt +++ b/ros/src/computing/planning/motion/packages/astar_planner/CMakeLists.txt @@ -15,6 +15,7 @@ find_package(catkin REQUIRED COMPONENTS tf waypoint_follower autoware_msgs + autoware_health_checker ) ################################### @@ -48,3 +49,18 @@ add_dependencies(obstacle_avoid ${catkin_EXPORTED_TARGETS}) add_executable(obstacle_sim nodes/obstacle_avoid/obstacle_sim/obstacle_sim.cpp nodes/obstacle_avoid/obstacle_sim/obstacle_sim_node.cpp) target_link_libraries(obstacle_sim ${catkin_LIBRARIES}) add_dependencies(obstacle_sim ${catkin_EXPORTED_TARGETS}) + + +install(TARGETS + velocity_set + obstacle_avoid + obstacle_sim + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) + diff --git a/ros/src/computing/planning/motion/packages/astar_planner/nodes/obstacle_avoid/search_info_ros.cpp b/ros/src/computing/planning/motion/packages/astar_planner/nodes/obstacle_avoid/search_info_ros.cpp index 0680e9fef89..3e85174f357 100644 --- a/ros/src/computing/planning/motion/packages/astar_planner/nodes/obstacle_avoid/search_info_ros.cpp +++ b/ros/src/computing/planning/motion/packages/astar_planner/nodes/obstacle_avoid/search_info_ros.cpp @@ -30,7 +30,10 @@ SearchInfo::SearchInfo() , state_("") , upper_bound_distance_(-1) { + ros::NodeHandle nh; ros::NodeHandle private_nh_("~"); + node_status_publisher_ptr_ = std::make_shared(nh,private_nh_); + node_status_publisher_ptr_->ENABLE(); private_nh_.param("map_frame", map_frame_, "map"); private_nh_.param("obstacle_detect_count", obstacle_detect_count_, 10); private_nh_.param("avoid_distance", avoid_distance_, 13); @@ -95,7 +98,15 @@ void SearchInfo::mapCallback(const nav_msgs::OccupancyGridConstPtr &msg) void SearchInfo::currentPoseCallback(const geometry_msgs::PoseStampedConstPtr &msg) { current_pose_ = *msg; - + node_status_publisher_ptr_->NODE_ACTIVATE(); + node_status_publisher_ptr_->CHECK_RATE("/topic/rate/current_pose/slow",8,5,1,"topic current_pose subscribe rate low."); + if(closest_waypoint_index_!=-1 && path_set_) + { + autoware_msgs::Waypoint closest_waypoint = subscribed_waypoints_.waypoints[closest_waypoint_index_]; + double dist = std::sqrt(std::pow(closest_waypoint.pose.pose.position.x-current_pose_.pose.position.x,2) + +std::pow(closest_waypoint.pose.pose.position.y-current_pose_.pose.position.y,2)); + node_status_publisher_ptr_->CHECK_MAX_VALUE("/value/range/closest_waypoint_distance",dist,0.5,1.0,2.0,"distance between closest_waypoint and current_pose is too long."); + } return; } @@ -171,6 +182,7 @@ void SearchInfo::waypointsCallback(const autoware_msgs::LaneConstPtr &msg) void SearchInfo::closestWaypointCallback(const std_msgs::Int32ConstPtr &msg) { + node_status_publisher_ptr_->CHECK_RATE("/topic/rate/closest_waypoint/slow",8,5,1,"topic closest_waypoint subscribe rate low."); closest_waypoint_index_ = msg->data; } diff --git a/ros/src/computing/planning/motion/packages/astar_planner/nodes/obstacle_avoid/search_info_ros.h b/ros/src/computing/planning/motion/packages/astar_planner/nodes/obstacle_avoid/search_info_ros.h index 090081adcf5..4a0d0af0c4a 100644 --- a/ros/src/computing/planning/motion/packages/astar_planner/nodes/obstacle_avoid/search_info_ros.h +++ b/ros/src/computing/planning/motion/packages/astar_planner/nodes/obstacle_avoid/search_info_ros.h @@ -27,6 +27,9 @@ #include #include +#include +#include + namespace astar_planner { class SearchInfo @@ -140,7 +143,7 @@ class SearchInfo private: double calcPathLength(const autoware_msgs::Lane &lane, const int start_waypoint_index, const int goal_waypoint_index) const; - + std::shared_ptr node_status_publisher_ptr_; nav_msgs::OccupancyGrid map_; geometry_msgs::PoseStamped start_pose_global_; geometry_msgs::PoseStamped goal_pose_global_; diff --git a/ros/src/computing/planning/motion/packages/astar_planner/nodes/velocity_set/velocity_set_info.cpp b/ros/src/computing/planning/motion/packages/astar_planner/nodes/velocity_set/velocity_set_info.cpp index 1c6c4901881..32119763400 100644 --- a/ros/src/computing/planning/motion/packages/astar_planner/nodes/velocity_set/velocity_set_info.cpp +++ b/ros/src/computing/planning/motion/packages/astar_planner/nodes/velocity_set/velocity_set_info.cpp @@ -41,7 +41,10 @@ VelocitySetInfo::VelocitySetInfo() wpidx_detectionResultByOtherNodes_(-1) { ros::NodeHandle private_nh_("~"); + ros::NodeHandle nh; private_nh_.param("remove_points_upto", remove_points_upto_, 2.3); + node_status_publisher_ptr_ = std::make_shared(nh,private_nh_); + node_status_publisher_ptr_->ENABLE(); } VelocitySetInfo::~VelocitySetInfo() @@ -70,6 +73,7 @@ void VelocitySetInfo::configCallback(const autoware_config_msgs::ConfigVelocityS void VelocitySetInfo::pointsCallback(const sensor_msgs::PointCloud2ConstPtr &msg) { + node_status_publisher_ptr_->CHECK_RATE("/topic/rate/points_no_ground/slow",8,5,1,"topic points_no_ground subscribe rate low."); pcl::PointCloud sub_points; pcl::fromROSMsg(*msg, sub_points); @@ -111,6 +115,8 @@ void VelocitySetInfo::controlPoseCallback(const geometry_msgs::PoseStampedConstP void VelocitySetInfo::localizerPoseCallback(const geometry_msgs::PoseStampedConstPtr &msg) { + node_status_publisher_ptr_->NODE_ACTIVATE(); + node_status_publisher_ptr_->CHECK_RATE("/topic/rate/current_pose/slow",8,5,1,"topic current_pose subscribe rate low."); localizer_pose_ = *msg; } diff --git a/ros/src/computing/planning/motion/packages/astar_planner/nodes/velocity_set/velocity_set_info.h b/ros/src/computing/planning/motion/packages/astar_planner/nodes/velocity_set/velocity_set_info.h index 9d0104657fa..13afcc35c76 100644 --- a/ros/src/computing/planning/motion/packages/astar_planner/nodes/velocity_set/velocity_set_info.h +++ b/ros/src/computing/planning/motion/packages/astar_planner/nodes/velocity_set/velocity_set_info.h @@ -24,6 +24,9 @@ #include "autoware_config_msgs/ConfigVelocitySet.h" +#include +#include + class VelocitySetInfo { private: @@ -51,6 +54,8 @@ class VelocitySetInfo bool set_pose_; bool use_obstacle_sim_; + std::shared_ptr node_status_publisher_ptr_; + public: VelocitySetInfo(); ~VelocitySetInfo(); diff --git a/ros/src/computing/planning/motion/packages/astar_planner/package.xml b/ros/src/computing/planning/motion/packages/astar_planner/package.xml index 73d4016a0b2..a351946f6f4 100644 --- a/ros/src/computing/planning/motion/packages/astar_planner/package.xml +++ b/ros/src/computing/planning/motion/packages/astar_planner/package.xml @@ -16,6 +16,7 @@ std_msgs tf vector_map + autoware_health_checker roscpp std_msgs @@ -23,6 +24,7 @@ waypoint_follower autoware_msgs vector_map + autoware_health_checker diff --git a/ros/src/computing/planning/motion/packages/dp_planner/CMakeLists.txt b/ros/src/computing/planning/motion/packages/dp_planner/CMakeLists.txt index d99aa2515ac..0c9c590da78 100644 --- a/ros/src/computing/planning/motion/packages/dp_planner/CMakeLists.txt +++ b/ros/src/computing/planning/motion/packages/dp_planner/CMakeLists.txt @@ -78,3 +78,13 @@ target_link_libraries(dp_planner add_dependencies(dp_planner ${catkin_EXPORTED_TARGETS} ) + +install(TARGETS dp_planner + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) + diff --git a/ros/src/computing/planning/motion/packages/ff_waypoint_follower/CMakeLists.txt b/ros/src/computing/planning/motion/packages/ff_waypoint_follower/CMakeLists.txt index 4e846332951..6c49aaad486 100644 --- a/ros/src/computing/planning/motion/packages/ff_waypoint_follower/CMakeLists.txt +++ b/ros/src/computing/planning/motion/packages/ff_waypoint_follower/CMakeLists.txt @@ -8,16 +8,16 @@ find_package(autoware_msgs REQUIRED) find_package(OpenCV REQUIRED) find_package(catkin REQUIRED COMPONENTS - roscpp - geometry_msgs - runtime_manager - map_file - op_utility - op_planner - op_simu - waypoint_follower - autoware_msgs -) + roscpp + geometry_msgs + runtime_manager + map_file + op_utility + op_planner + op_simu + waypoint_follower + autoware_msgs + ) ## System dependencies are found with CMake's conventions # find_package(Boost REQUIRED COMPONENTS system) @@ -26,9 +26,9 @@ find_package(catkin REQUIRED COMPONENTS ## catkin specific configuration ## ################################### catkin_package( - INCLUDE_DIRS include - LIBRARIES - CATKIN_DEPENDS roscpp geometry_msgs runtime_manager map_file op_utility op_planner op_simu waypoint_follower autoware_msgs + INCLUDE_DIRS include + LIBRARIES + CATKIN_DEPENDS roscpp geometry_msgs runtime_manager map_file op_utility op_planner op_simu waypoint_follower autoware_msgs ) ########### @@ -38,10 +38,10 @@ catkin_package( SET(CMAKE_CXX_FLAGS "-O2 -g -Wall -Wno-unused-result -DROS ${CMAKE_CXX_FLAGS}") include_directories( - include -# /usr/local/include/zmp/minivan - ${catkin_INCLUDE_DIRS} - ${autoware_msgs_INCLUDE_DIRS} + include + # /usr/local/include/zmp/minivan + ${catkin_INCLUDE_DIRS} + ${autoware_msgs_INCLUDE_DIRS} ) ## Declare a C++ library @@ -50,14 +50,27 @@ include_directories( link_directories(lib) add_executable(ff_waypoint_follower nodes/ff_waypoint_follower.cpp nodes/ff_waypoint_follower_core.cpp) target_link_libraries(ff_waypoint_follower - ${catkin_LIBRARIES} - ${OpenCV_LIBS} - ) + ${catkin_LIBRARIES} + ${OpenCV_LIBS} + ) #link_directories(/usr/local/lib/zmp/minivan) #add_executable(ff_waypoint_follower nodes/ff_waypoint_follower.cpp nodes/ff_waypoint_follower_core.cpp nodes/HevCnt.cpp nodes/HevComm.cpp) #target_link_libraries(ff_waypoint_follower utilityh plannerh simuh CANUSB hevcontrol ${catkin_LIBRARIES}) -add_dependencies(ff_waypoint_follower -${catkin_EXPORTED_TARGETS} -) +add_dependencies(ff_waypoint_follower + ${catkin_EXPORTED_TARGETS} + ) + +install(TARGETS ff_waypoint_follower + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) + +install(DIRECTORY params/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/params + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/computing/planning/motion/packages/lattice_planner/CMakeLists.txt b/ros/src/computing/planning/motion/packages/lattice_planner/CMakeLists.txt index 415a6d130ee..bb47dfbb8c7 100644 --- a/ros/src/computing/planning/motion/packages/lattice_planner/CMakeLists.txt +++ b/ros/src/computing/planning/motion/packages/lattice_planner/CMakeLists.txt @@ -78,3 +78,16 @@ target_link_libraries(path_select ${catkin_LIBRARIES}) add_dependencies(path_select ${catkin_EXPORTED_TARGETS}) +install(TARGETS + libtraj_gen + lattice_trajectory_gen + lattice_twist_convert + lattice_velocity_set + path_select + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/planning/motion/packages/op_local_planner/CMakeLists.txt b/ros/src/computing/planning/motion/packages/op_local_planner/CMakeLists.txt index 0ce9778031a..6d19312901e 100644 --- a/ros/src/computing/planning/motion/packages/op_local_planner/CMakeLists.txt +++ b/ros/src/computing/planning/motion/packages/op_local_planner/CMakeLists.txt @@ -79,3 +79,19 @@ add_executable(op_motion_predictor nodes/op_motion_predictor/op_motion_predictor target_link_libraries(op_motion_predictor ${catkin_LIBRARIES} ${PCL_LIBRARIES}) add_dependencies(op_common_params op_trajectory_generator op_trajectory_evaluator op_behavior_selector op_motion_predictor ${catkin_EXPORTED_TARGETS}) + + +install(TARGETS + op_common_params + op_trajectory_generator + op_trajectory_evaluator + op_behavior_selector + op_motion_predictor + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/planning/motion/packages/op_simulation_package/CMakeLists.txt b/ros/src/computing/planning/motion/packages/op_simulation_package/CMakeLists.txt index 34460fc7bea..0e2cefd2c33 100644 --- a/ros/src/computing/planning/motion/packages/op_simulation_package/CMakeLists.txt +++ b/ros/src/computing/planning/motion/packages/op_simulation_package/CMakeLists.txt @@ -90,3 +90,16 @@ add_dependencies(op_car_simulator op_signs_simulator ${catkin_EXPORTED_TARGETS} ) + +install(TARGETS + op_car_simulator + op_perception_simulator + op_signs_simulator + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/computing/planning/motion/packages/op_utilities/CMakeLists.txt b/ros/src/computing/planning/motion/packages/op_utilities/CMakeLists.txt index ecef294632c..678cfb17946 100644 --- a/ros/src/computing/planning/motion/packages/op_utilities/CMakeLists.txt +++ b/ros/src/computing/planning/motion/packages/op_utilities/CMakeLists.txt @@ -74,3 +74,17 @@ target_link_libraries(op_bag_player add_dependencies(op_pose2tf op_data_logger op_bag_player ${catkin_EXPORTED_TARGETS}) + +install(TARGETS + op_pose2tf + op_data_logger + op_bag_player + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) + diff --git a/ros/src/computing/planning/motion/packages/waypoint_follower/CMakeLists.txt b/ros/src/computing/planning/motion/packages/waypoint_follower/CMakeLists.txt index 70f43ed7c38..22a26efe0b6 100644 --- a/ros/src/computing/planning/motion/packages/waypoint_follower/CMakeLists.txt +++ b/ros/src/computing/planning/motion/packages/waypoint_follower/CMakeLists.txt @@ -20,6 +20,7 @@ find_package(catkin REQUIRED COMPONENTS autoware_msgs autoware_config_msgs tablet_socket_msgs + autoware_health_checker ) ################################################ @@ -42,6 +43,7 @@ catkin_package( pcl_conversions sensor_msgs tablet_socket_msgs + autoware_health_checker ) ########### diff --git a/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/pure_pursuit/pure_pursuit.cpp b/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/pure_pursuit/pure_pursuit.cpp index 804398a13ae..7ba4976ee86 100644 --- a/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/pure_pursuit/pure_pursuit.cpp +++ b/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/pure_pursuit/pure_pursuit.cpp @@ -28,6 +28,7 @@ PurePursuit::PurePursuit() , current_linear_velocity_(0) , minimum_lookahead_distance_(6) { + } // Destructor diff --git a/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/pure_pursuit/pure_pursuit_core.cpp b/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/pure_pursuit/pure_pursuit_core.cpp index 2a08a7294ca..edbdfc1e8fc 100644 --- a/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/pure_pursuit/pure_pursuit_core.cpp +++ b/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/pure_pursuit/pure_pursuit_core.cpp @@ -36,7 +36,8 @@ PurePursuitNode::PurePursuitNode() , minimum_lookahead_distance_(6.0) { initForROS(); - + node_status_publisher_ptr_ = std::make_shared(nh_,private_nh_); + node_status_publisher_ptr_->ENABLE(); // initialize for PurePursuit pp_.setLinearInterpolationParameter(is_linear_interpolation_); } @@ -92,9 +93,11 @@ void PurePursuitNode::run() double kappa = 0; bool can_get_curvature = pp_.canGetCurvature(&kappa); + publishTwistStamped(can_get_curvature, kappa); publishControlCommandStamped(can_get_curvature, kappa); - + node_status_publisher_ptr_->NODE_ACTIVATE(); + node_status_publisher_ptr_->CHECK_RATE("/topic/rate/vehicle/slow",8,5,1,"topic vehicle_cmd publish rate low."); // for visualization with Rviz pub11_.publish(displayNextWaypoint(pp_.getPoseOfNextWaypoint())); pub13_.publish(displaySearchRadius(pp_.getCurrentPose().position, pp_.getLookaheadDistance())); @@ -121,6 +124,7 @@ void PurePursuitNode::publishTwistStamped(const bool &can_get_curvature, const d ts.header.stamp = ros::Time::now(); ts.twist.linear.x = can_get_curvature ? computeCommandVelocity() : 0; ts.twist.angular.z = can_get_curvature ? kappa * ts.twist.linear.x : 0; + node_status_publisher_ptr_->CHECK_MAX_VALUE("/value/twist",ts.twist.linear.x,2.2,3.3,4.4,"linear twist_cmd is too high"); pub1_.publish(ts); } diff --git a/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/pure_pursuit/pure_pursuit_core.h b/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/pure_pursuit/pure_pursuit_core.h index 2d1a69961bf..627851457c9 100644 --- a/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/pure_pursuit/pure_pursuit_core.h +++ b/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/pure_pursuit/pure_pursuit_core.h @@ -31,6 +31,10 @@ #include "pure_pursuit.h" #include "pure_pursuit_viz.h" +#include + +#include + namespace waypoint_follower { enum class Mode : int32_t @@ -60,6 +64,8 @@ class PurePursuitNode ros::NodeHandle nh_; ros::NodeHandle private_nh_; + std::shared_ptr node_status_publisher_ptr_; + // class PurePursuit pp_; diff --git a/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/twist_gate/twist_gate.cpp b/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/twist_gate/twist_gate.cpp index 70308506e30..341bd4d1731 100644 --- a/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/twist_gate/twist_gate.cpp +++ b/ros/src/computing/planning/motion/packages/waypoint_follower/nodes/twist_gate/twist_gate.cpp @@ -32,6 +32,7 @@ #include #include #include +#include #include #include @@ -48,6 +49,9 @@ #include "autoware_msgs/SteerCmd.h" #include "autoware_msgs/ControlCommandStamped.h" +//headers in Autowae Health Checker +#include + class TwistGate { using remote_msgs_t = autoware_msgs::RemoteCmd; @@ -72,6 +76,7 @@ class TwistGate ros::NodeHandle nh_; ros::NodeHandle private_nh_; + std::shared_ptr node_status_pub_ptr_; ros::Publisher emergency_stop_pub_; ros::Publisher control_command_pub_; ros::Publisher vehicle_cmd_pub_; @@ -99,6 +104,7 @@ TwistGate::TwistGate(const ros::NodeHandle& nh, const ros::NodeHandle& private_n ,command_mode_(CommandMode::AUTO) ,previous_command_mode_(CommandMode::AUTO) { + node_status_pub_ptr_ = std::make_shared(nh_,private_nh_); emergency_stop_pub_ = nh_.advertise("/emergency_stop", 1, true); control_command_pub_ = nh_.advertise("/ctrl_mode", 1); vehicle_cmd_pub_ = nh_.advertise("/vehicle_cmd", 1, true); @@ -118,6 +124,7 @@ TwistGate::TwistGate(const ros::NodeHandle& nh, const ros::NodeHandle& private_n twist_gate_msg_.header.seq = 0; emergency_stop_msg_.data = false; send_emergency_cmd = false; + node_status_pub_ptr_->ENABLE(); remote_cmd_time_ = ros::Time::now(); watchdog_timer_thread_ = std::thread(&TwistGate::watchdog_timer, this); @@ -226,6 +233,8 @@ void TwistGate::remote_cmd_callback(const remote_msgs_t::ConstPtr& input_msg) void TwistGate::auto_cmd_twist_cmd_callback(const geometry_msgs::TwistStamped::ConstPtr& input_msg) { + node_status_pub_ptr_->NODE_ACTIVATE(); + node_status_pub_ptr_->CHECK_RATE("/topic/rate/twist_cmd/slow",8,5,1,"topic twist_cmd subscribe rate low."); if(command_mode_ == CommandMode::AUTO) { twist_gate_msg_.header.frame_id = input_msg->header.frame_id; diff --git a/ros/src/computing/planning/motion/packages/waypoint_follower/package.xml b/ros/src/computing/planning/motion/packages/waypoint_follower/package.xml index 19bfc70bc9d..a937b85dfc4 100644 --- a/ros/src/computing/planning/motion/packages/waypoint_follower/package.xml +++ b/ros/src/computing/planning/motion/packages/waypoint_follower/package.xml @@ -18,6 +18,7 @@ pcl_conversions sensor_msgs tablet_socket_msgs + autoware_health_checker roscpp std_msgs @@ -29,7 +30,7 @@ pcl_conversions sensor_msgs tablet_socket_msgs - + autoware_health_checker diff --git a/ros/src/computing/planning/motion/packages/waypoint_maker/CMakeLists.txt b/ros/src/computing/planning/motion/packages/waypoint_maker/CMakeLists.txt index a1fbfb85c8c..93ba5575211 100644 --- a/ros/src/computing/planning/motion/packages/waypoint_maker/CMakeLists.txt +++ b/ros/src/computing/planning/motion/packages/waypoint_maker/CMakeLists.txt @@ -44,16 +44,26 @@ include_directories( ${Boost_INCLUDE_DIRS} ) -add_executable(waypoint_loader nodes/waypoint_loader/waypoint_loader_core.cpp nodes/waypoint_loader/velocity_replanner.cpp nodes/waypoint_loader/waypoint_loader_node.cpp) +add_executable(waypoint_loader nodes/waypoint_loader/waypoint_loader_core.cpp nodes/waypoint_loader/waypoint_loader_node.cpp) target_link_libraries(waypoint_loader ${catkin_LIBRARIES}) add_dependencies(waypoint_loader ${catkin_EXPORTED_TARGETS}) +add_executable(waypoint_replanner nodes/waypoint_replanner/waypoint_replanner.cpp nodes/waypoint_replanner/waypoint_replanner_node.cpp) +target_link_libraries(waypoint_replanner ${catkin_LIBRARIES}) +add_dependencies(waypoint_replanner + ${catkin_EXPORTED_TARGETS}) + add_executable(waypoint_saver nodes/waypoint_saver/waypoint_saver.cpp) target_link_libraries(waypoint_saver ${catkin_LIBRARIES}) add_dependencies(waypoint_saver ${catkin_EXPORTED_TARGETS}) +add_executable(waypoint_extractor nodes/waypoint_extractor/waypoint_extractor.cpp) +target_link_libraries(waypoint_extractor ${catkin_LIBRARIES}) +add_dependencies(waypoint_extractor + ${catkin_EXPORTED_TARGETS}) + add_executable(waypoint_clicker nodes/waypoint_clicker/waypoint_clicker.cpp) target_link_libraries(waypoint_clicker ${catkin_LIBRARIES}) @@ -69,11 +79,16 @@ add_dependencies(waypoint_velocity_visualizer install(TARGETS waypoint_loader + waypoint_replanner waypoint_saver waypoint_clicker waypoint_marker_publisher waypoint_velocity_visualizer ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/computing/planning/motion/packages/waypoint_maker/README.md b/ros/src/computing/planning/motion/packages/waypoint_maker/README.md index 1da74b45fb4..db750161f81 100644 --- a/ros/src/computing/planning/motion/packages/waypoint_maker/README.md +++ b/ros/src/computing/planning/motion/packages/waypoint_maker/README.md @@ -6,8 +6,10 @@ - waypoint_clicker - waypoint_saver + - waypoint_extractor - waypoint_marker_publisher - waypoint_loader + - waypoint_replanner - waypoint_velocity_visualizer - 3-formats of waypoints.csv handled by waypoint_maker @@ -63,18 +65,19 @@ 1. Overview + * waypoint_loader - Convert waypoints.csv to ROS message type. - Correspond to the above 3 types of csv. + * waypoint_replanner - Adjust waypoints offline (resample and replan velocity) - - Save waypoints.csv as ver3 format. 1. How to use * How to start - At `Computing`->`waypoint_loader`: - - Check app->`disable_decision_maker`. - If you want to use `decision_maker`, switch to false. - Otherwise switch to true. + - Check app->`load csv`. + If you want to load csv_files, switch to true. + Otherwise switch to false. - Check `waypoint_loader` and start. * Idea of velocity replanning - The velocity plan is based on the following idea. @@ -88,9 +91,13 @@ - On `multi_lane`, please select multiple input files. If you want lane change with `lane_select`, prepare ver3 type. - Check `replanning_mode` if you want to replan velocity. - On replanning mode: + * Check `realtime_tuning_mode` if you want to tune waypoint. * Check `resample_mode` if you want to resample waypoints. On resample mode, please set `resample_interval`. * Velocity replanning parameter + - Check `replan curve mode` if you want to decelerate on curve. + - Check `overwrite vmax mode` if you want to overwrite velocity of all waypoint. + - Check `replan endpoint mode` if you want to decelerate on endpoint. - `Vmax` is max velocity. - `Rth` is radius threshold for extracting curve in waypoints. Increasing this, you can extract curves more sensitively. @@ -101,27 +108,39 @@ - `Accel limit` is acceleration value for limitting velocity. - `Decel limit` is deceleration value for limitting velocity. - `Velocity Offset` is offset amount preceding the velocity plan. + - `Braking Distance` is the number of minimum velocity before end point offset. - `End Point Offset` is the number of 0 velocity points at the end of waypoints. 1. Subscribed Topics - - /config/waypoint_loader (autoware_config_msgs/ConfigWaypointLoadre) - - /config/waypoint_loader_output (std_msgs/Bool) + * waypoint_replanner + - /based/lane_waypoints_raw (autoware_msgs/LaneArray) + - /config/waypoint_replanner (autoware_config_msgs/ConfigWaypointReplanner) 1. Published Topics + * waypoint_loader + - /based/lane_waypoints_raw (autoware_msgs/LaneArray) + + * waypoint_replanner + - /based/lane_waypoints_array (autoware_msgs/LaneArray) - /lane_waypoints_array (autoware_msgs/LaneArray) 1. Parameters - - ~disable_decision_maker + * waypoint_loader + - ~multi_lane_csv ### waypoint_saver 1. Overview + * waypoint_saver - When activated, subscribe `/current_pose`, `/current_velocity`(option) and save waypoint in the file at specified intervals. + * waypoint_extractor + - When activated, subscribe autoware_msgs/LaneArray and save waypoint in the file. Input topic name is selectable. + * common - `change_flag` is basically stored as 0 (straight ahead), so if you want to change the lane, edit by yourself. (1 turn right, 2 turn left) - This node corresponds to preservation of ver3 format. @@ -129,24 +148,41 @@ 1. How to use On app: + * common - Ref on the `Save File` and specify the save file name. + - Select the function you want to use from the `Input Type`. + * if `Input Type` == VehicleFootprint (`waypoint_saver`) - Check `Save/current_velocity` if you want to save velocity. In otherwise, saved as 0 velocity. - Using `Interval`, it is set how many meters to store waypoint. + * if `Input Type` == LaneArrayTopic (`waypoint_extractor`) + - Set lane_array topic name you want to save. + - Cache starts at the same time as the node starts up. + - The cache is always overwritten while the node is running. + - The cache is flushed when the node is closed. 1. Subscribed Topics + * waypoint_saver - /current_pose (geometry_msgs/PoseStamped) : default - /current_velocity (geometry_msgs/TwistStamped) : default + * waypoint_extractor + - /lane_waypoints_array (autoware_msgs/LaneArray) : default + 1. Published Topics - nothing 1. Parameters + * waypoints_saver - ~save_filename - ~interval - ~velocity_topic - ~pose_topic - ~save_velocity + + * waypoints_extractor + - ~lane_csv + - ~lane_topic diff --git a/ros/src/computing/planning/motion/packages/waypoint_maker/interface.yaml b/ros/src/computing/planning/motion/packages/waypoint_maker/interface.yaml index 8b44fff7490..2f598c656e1 100644 --- a/ros/src/computing/planning/motion/packages/waypoint_maker/interface.yaml +++ b/ros/src/computing/planning/motion/packages/waypoint_maker/interface.yaml @@ -3,8 +3,11 @@ subscribe: [/clicked_point, /vector_map_info/point, /vector_map_info/lane, /vector_map_info/node] - name: /waypoint_loader - publish: [/lane_waypoint_array] + publish: [/based/lane_waypoint_raw] subscribe: [] +- name: /waypoint_replanner + publish: [/based/lane_waypoint_array, /lane_waypoints_array] + subscribe: [/based/lane_waypoint_raw] - name: /waypoints_marker_publisher publish: [/local_waypoints_mark, /global_waypoints_mark] subscribe: [/light_color, /light_color_managed, /lane_waypoints_array, diff --git a/ros/src/computing/planning/motion/packages/waypoint_maker/launch/waypoint_loader.launch b/ros/src/computing/planning/motion/packages/waypoint_maker/launch/waypoint_loader.launch index 5d90b2596df..70324ee61c1 100644 --- a/ros/src/computing/planning/motion/packages/waypoint_maker/launch/waypoint_loader.launch +++ b/ros/src/computing/planning/motion/packages/waypoint_maker/launch/waypoint_loader.launch @@ -1,11 +1,13 @@ - + + - - + + + diff --git a/ros/src/computing/planning/motion/packages/waypoint_maker/launch/waypoint_saver.launch b/ros/src/computing/planning/motion/packages/waypoint_maker/launch/waypoint_saver.launch index 03a5a6d587d..67519fce7f2 100644 --- a/ros/src/computing/planning/motion/packages/waypoint_maker/launch/waypoint_saver.launch +++ b/ros/src/computing/planning/motion/packages/waypoint_maker/launch/waypoint_saver.launch @@ -1,18 +1,24 @@ + - - - - + + + + + - + + + + + diff --git a/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_extractor/waypoint_extractor.cpp b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_extractor/waypoint_extractor.cpp new file mode 100644 index 00000000000..daa6edfa5a1 --- /dev/null +++ b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_extractor/waypoint_extractor.cpp @@ -0,0 +1,139 @@ +/* + * Copyright 2015-2019 Autoware Foundation. All rights reserved. + * + * 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 +#include +#include +#include +#include +#include + +namespace waypoint_maker +{ +// Constructor +class WaypointExtractor +{ +private: + ros::NodeHandle nh_, private_nh_; + ros::Subscriber larray_sub_; + std::string lane_csv_, lane_topic_; + autoware_msgs::LaneArray lane_; +public: + WaypointExtractor() : private_nh_("~") + { + init(); + } + // Destructor + ~WaypointExtractor() + { + deinit(); + } + + double mps2kmph(double velocity_mps) + { + return (velocity_mps * 60 * 60) / 1000; + } + + const std::string addFileSuffix(std::string file_path, std::string suffix) + { + std::string output_file_path, tmp; + std::string directory_path, filename, extension; + + tmp = file_path; + const std::string::size_type idx_slash(tmp.find_last_of("/")); + if (idx_slash != std::string::npos) + { + tmp.erase(0, idx_slash); + } + const std::string::size_type idx_dot(tmp.find_last_of(".")); + const std::string::size_type idx_dot_allpath(file_path.find_last_of(".")); + if (idx_dot != std::string::npos && idx_dot != tmp.size() - 1) + { + file_path.erase(idx_dot_allpath, file_path.size() - 1); + } + file_path += suffix + ".csv"; + return file_path; + } + + void init() + { + private_nh_.param("lane_csv", lane_csv_, "/tmp/driving_lane.csv"); + private_nh_.param("lane_topic", lane_topic_, "/lane_waypoints_array"); + // setup publisher + larray_sub_ = nh_.subscribe(lane_topic_, 1, &WaypointExtractor::LaneArrayCallback, this); + } + + void deinit() + { + if (lane_.lanes.empty()) + { + return; + } + std::vector dst_multi_file_path(lane_.lanes.size(), lane_csv_); + if (lane_.lanes.size() > 1) + { + for (auto& el : dst_multi_file_path) + { + el = addFileSuffix(el, std::to_string(&el - &dst_multi_file_path[0])); + } + } + saveLaneArray(dst_multi_file_path, lane_); + } + + void LaneArrayCallback(const autoware_msgs::LaneArray::ConstPtr& larray) + { + if (larray->lanes.empty()) + { + return; + } + lane_ = *larray; + } + + void saveLaneArray(const std::vector& paths, + const autoware_msgs::LaneArray& lane_array) + { + for (const auto& file_path : paths) + { + const unsigned long idx = &file_path - &paths[0]; + std::ofstream ofs(file_path.c_str()); + ofs << "x,y,z,yaw,velocity,change_flag,steering_flag,accel_flag,stop_flag,event_flag" << std::endl; + for (const auto& el : lane_array.lanes[idx].waypoints) + { + const geometry_msgs::Point p = el.pose.pose.position; + const double yaw = tf::getYaw(el.pose.pose.orientation); + const double vel = mps2kmph(el.twist.twist.linear.x); + const int states[] = + { + el.change_flag, el.wpstate.steering_state, el.wpstate.accel_state, + el.wpstate.stop_state, el.wpstate.event_state + }; + ofs << std::fixed << std::setprecision(4); + ofs << p.x << "," << p.y << "," << p.z << "," << yaw << "," << vel; + for (int i = 0; i < 5; ofs << "," << states[i++]){} + ofs << std::endl; + } + } + } +}; + +} // waypoint_maker + +int main(int argc, char **argv) +{ + ros::init(argc, argv, "waypoint_extractor"); + waypoint_maker::WaypointExtractor we; + ros::spin(); + return 0; +} diff --git a/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/velocity_replanner.cpp b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/velocity_replanner.cpp deleted file mode 100644 index f57f605921c..00000000000 --- a/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/velocity_replanner.cpp +++ /dev/null @@ -1,381 +0,0 @@ -/* - * Copyright (c) 2018, TierIV, 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 Autoware 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 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 "velocity_replanner.h" - -namespace waypoint_maker -{ -inline double kmph2mps(double velocity_kmph) -{ - return (velocity_kmph * 1000) / (60 * 60); -} -inline double mps2kmph(double velocity_mps) -{ - return (velocity_mps * 60 * 60) / 1000; -} - -VelocityReplanner::VelocityReplanner() : private_nh_("~") -{ -} - -VelocityReplanner::~VelocityReplanner() -{ -} - -void VelocityReplanner::initParameter(const autoware_config_msgs::ConfigWaypointLoader::ConstPtr& conf) -{ - velocity_max_ = kmph2mps(conf->velocity_max); - velocity_min_ = kmph2mps(conf->velocity_min); - accel_limit_ = conf->accel_limit; - decel_limit_ = conf->decel_limit; - r_th_ = conf->radius_thresh; - r_min_ = conf->radius_min; - lookup_crv_width_ = 5; - resample_mode_ = conf->resample_mode; - resample_interval_ = conf->resample_interval; - velocity_offset_ = conf->velocity_offset; - end_point_offset_ = conf->end_point_offset; - r_inf_ = 10 * r_th_; - vel_param_ = calcVelParam(); -} - -void VelocityReplanner::replanLaneWaypointVel(autoware_msgs::Lane* lane) -{ - if (vel_param_ == DBL_MAX) - { - ROS_ERROR("velocity parameter is invalid: please change Rth or Rmin"); - return; - } - std::vector curve_radius; - std::unordered_map > curve_list; - - if (resample_mode_) - { - resampleLaneWaypoint(resample_interval_, lane); - } - createRadiusList(*lane, &curve_radius); - createCurveList(curve_radius, &curve_list); - // set velocity_max for all_point - for (auto& el : lane->waypoints) - { - el.twist.twist.linear.x = velocity_max_; - } - // set velocity by curve - for (const auto& el : curve_list) - { - const double& radius = el.second.second; - const double vmin = velocity_max_ - vel_param_ * (r_th_ - radius); - limitVelocityByRange(el.first, el.second.first, velocity_offset_, vmin, lane); - } - // set velocity on start & end of lane - limitVelocityByRange(0, 0, 0, velocity_min_, lane); - limitVelocityByRange(lane->waypoints.size() - 1 - end_point_offset_, lane->waypoints.size() - 1, 0, 0.0, lane); -} - -void VelocityReplanner::resampleLaneWaypoint(const double resample_interval, autoware_msgs::Lane* lane) -{ - if (lane->waypoints.empty()) - { - return; - } - autoware_msgs::Lane original_lane = *lane; - lane->waypoints.clear(); - lane->waypoints.push_back(original_lane.waypoints[0]); - lane->waypoints.reserve(ceil(1.5 * calcPathLength(original_lane) / resample_interval_)); - - for (unsigned long i = 1; i < original_lane.waypoints.size(); i++) - { - boost::circular_buffer curve_point = getCrvPointsOnResample(*lane, original_lane, i); - const std::vector curve_param = calcCurveParam(curve_point); - - // if going straight - if (curve_param.empty()) - { - resampleOnStraight(curve_point, lane); - } - // else if turnning curve - else - { - resampleOnCurve(curve_point[1], curve_param, lane); - } - - lane->waypoints.back().wpstate = original_lane.waypoints[i].wpstate; - lane->waypoints.back().change_flag = original_lane.waypoints[i].change_flag; - } - lane->waypoints.back().wpstate = original_lane.waypoints.back().wpstate; - lane->waypoints.back().change_flag = original_lane.waypoints.back().change_flag; -} - -void VelocityReplanner::resampleOnStraight(const boost::circular_buffer& curve_point, - autoware_msgs::Lane* lane) -{ - autoware_msgs::Waypoint wp = lane->waypoints.back(); - const geometry_msgs::Point& pt = wp.pose.pose.position; - const double yaw = atan2(curve_point[2].y - curve_point[0].y, curve_point[2].x - curve_point[0].x); - wp.pose.pose.orientation = tf::createQuaternionMsgFromYaw(yaw); - - const std::vector nvec = { curve_point[1].x - pt.x, curve_point[1].y - pt.y, curve_point[1].z - pt.z }; - double dist = sqrt(nvec[0] * nvec[0] + nvec[1] * nvec[1]); - std::vector resample_vec = nvec; - const double coeff = resample_interval_ / dist; - for (auto& el : resample_vec) - { - el *= coeff; - } - for (; dist > resample_interval_; dist -= resample_interval_) - { - wp.pose.pose.position.x += resample_vec[0]; - wp.pose.pose.position.y += resample_vec[1]; - wp.pose.pose.position.z += resample_vec[2]; - lane->waypoints.push_back(wp); - } -} - -void VelocityReplanner::resampleOnCurve(const geometry_msgs::Point& target_point, - const std::vector& curve_param, autoware_msgs::Lane* lane) -{ - autoware_msgs::Waypoint wp = lane->waypoints.back(); - const double& cx = curve_param[0]; - const double& cy = curve_param[1]; - const double& radius = curve_param[2]; - - const geometry_msgs::Point& p0 = wp.pose.pose.position; - const geometry_msgs::Point& p1 = target_point; - double theta = fmod(atan2(p1.y - cy, p1.x - cx) - atan2(p0.y - cy, p0.x - cx), 2 * M_PI); - int sgn = (theta > 0.0) ? (1) : (-1); - if (fabs(theta) > M_PI) - { - theta -= 2 * sgn * M_PI; - } - sgn = (theta > 0.0) ? (1) : (-1); - // interport - double t = atan2(p0.y - cy, p0.x - cx); - double dist = radius * fabs(theta); - const double resample_dz = resample_interval_ * (p1.z - p0.z) / dist; - for (; dist > resample_interval_; dist -= resample_interval_) - { - if (lane->waypoints.size() == lane->waypoints.capacity()) - { - break; - } - t += sgn * resample_interval_ / radius; - const double yaw = fmod(t + sgn * M_PI / 2.0, 2 * M_PI); - wp.pose.pose.position.x = cx + radius * cos(t); - wp.pose.pose.position.y = cy + radius * sin(t); - wp.pose.pose.position.z += resample_dz; - wp.pose.pose.orientation = tf::createQuaternionMsgFromYaw(yaw); - lane->waypoints.push_back(wp); - } -} - -// Three points used for curve detection (the target point is the center) -// [0] = previous point, [1] = target point, [2] = next point -const boost::circular_buffer VelocityReplanner::getCrvPointsOnResample( - const autoware_msgs::Lane& lane, const autoware_msgs::Lane& original_lane, unsigned long original_index) const -{ - unsigned long id = original_index; - boost::circular_buffer curve_point(3); - const unsigned int n = (lookup_crv_width_ - 1) / 2; - const autoware_msgs::Waypoint cp[3] = { - (lane.waypoints.size() < n) ? lane.waypoints.front() : lane.waypoints[lane.waypoints.size() - n], - original_lane.waypoints[id], - (id < original_lane.waypoints.size() - n) ? original_lane.waypoints[id + n] : original_lane.waypoints.back() - }; - for (int i = 0; i < 3; i++) - { - curve_point.push_back(cp[i].pose.pose.position); - } - return curve_point; -} - -const boost::circular_buffer VelocityReplanner::getCrvPoints(const autoware_msgs::Lane& lane, - unsigned long index) const -{ - boost::circular_buffer curve_point(3); - const unsigned int n = (lookup_crv_width_ - 1) / 2; - const unsigned long curve_index[3] = { (index < n) ? 0 : (index - n), index, (index >= lane.waypoints.size() - n) ? - (lane.waypoints.size() - 1) : - (index + n) }; - for (int i = 0; i < 3; i++) - { - curve_point.push_back(lane.waypoints[curve_index[i]].pose.pose.position); - } - return curve_point; -} - -void VelocityReplanner::createRadiusList(const autoware_msgs::Lane& lane, std::vector* curve_radius) -{ - if (lane.waypoints.empty()) - { - return; - } - curve_radius->resize(lane.waypoints.size()); - curve_radius->at(0) = curve_radius->back() = r_inf_; - - for (unsigned long i = 1; i < lane.waypoints.size() - 1; i++) - { - boost::circular_buffer curve_point = getCrvPoints(lane, i); - const std::vector curve_param = calcCurveParam(curve_point); - - // if going straight - if (curve_param.empty()) - { - curve_radius->at(i) = r_inf_; - } - // else if turnning curve - else - { - curve_radius->at(i) = (curve_param[2] > r_inf_) ? r_inf_ : curve_param[2]; - } - } -} - -const double VelocityReplanner::calcVelParam() const -{ - if (fabs(r_th_ - r_min_) < 1e-8) - { - return DBL_MAX; // error - } - return (velocity_max_ - velocity_min_) / (r_th_ - r_min_); -} - -void VelocityReplanner::createCurveList( - const std::vector& curve_radius, - std::unordered_map >* curve_list) -{ - unsigned long index = 0; - bool on_curve = false; - double radius_localmin = DBL_MAX; - for (unsigned long i = 1; i < curve_radius.size(); i++) - { - if (!on_curve && curve_radius[i] <= r_th_ && curve_radius[i - 1] > r_th_) - { - index = i; - on_curve = true; - } - else if (on_curve && curve_radius[i - 1] <= r_th_ && curve_radius[i] > r_th_) - { - on_curve = false; - if (radius_localmin < r_min_) - { - radius_localmin = r_min_; - } - (*curve_list)[index] = std::make_pair(i, radius_localmin); - radius_localmin = DBL_MAX; - } - if (!on_curve) - { - continue; - } - if (radius_localmin > curve_radius[i]) - { - radius_localmin = curve_radius[i]; - } - } -} - -void VelocityReplanner::limitVelocityByRange(unsigned long start_idx, unsigned long end_idx, unsigned int offset, - double vmin, autoware_msgs::Lane* lane) -{ - if (offset > 0) - { - start_idx = (start_idx > offset) ? (start_idx - offset) : 0; - end_idx = (end_idx > offset) ? (end_idx - offset) : 0; - } - for (unsigned long idx = start_idx; idx <= end_idx; idx++) - { - if (lane->waypoints[idx].twist.twist.linear.x < vmin) - { - continue; - } - lane->waypoints[idx].twist.twist.linear.x = vmin; - } - limitAccelDecel(start_idx, lane); - limitAccelDecel(end_idx, lane); -} - -void VelocityReplanner::limitAccelDecel(const unsigned long idx, autoware_msgs::Lane* lane) -{ - const double acc[2] = { accel_limit_, decel_limit_ }; - const unsigned long end_idx[2] = { lane->waypoints.size() - idx, idx + 1 }; - const int sgn[2] = { 1, -1 }; - for (int j = 0; j < 2; j++) // [j=0]: accel_limit_process, [j=1]: decel_limit_process - { - double v = lane->waypoints[idx].twist.twist.linear.x; - unsigned long next = idx + sgn[j]; - for (unsigned long i = 1; i < end_idx[j]; i++, next += sgn[j]) - { - v = sqrt(2 * acc[j] * resample_interval_ + v * v); - if (v > velocity_max_ || v > lane->waypoints[next].twist.twist.linear.x) - { - break; - } - lane->waypoints[next].twist.twist.linear.x = v; - } - } -} - -// get curve 3-Parameter [center_x, center_y, radius] with 3 point input. If error occured, return empty vector. -const std::vector VelocityReplanner::calcCurveParam(boost::circular_buffer p) const -{ - for (int i = 0; i < 3; i++, p.push_back(p.front())) // if exception occured, change points order - { - const double d = 2 * ((p[0].y - p[2].y) * (p[0].x - p[1].x) - (p[0].y - p[1].y) * (p[0].x - p[2].x)); - if (fabs(d) < 1e-8) - { - continue; - } - const std::vector x2 = { p[0].x * p[0].x, p[1].x * p[1].x, p[2].x * p[2].x }; - const std::vector y2 = { p[0].y * p[0].y, p[1].y * p[1].y, p[2].y * p[2].y }; - const double a = y2[0] - y2[1] + x2[0] - x2[1]; - const double b = y2[0] - y2[2] + x2[0] - x2[2]; - std::vector param(3); - const double cx = param[0] = ((p[0].y - p[2].y) * a - (p[0].y - p[1].y) * b) / d; - const double cy = param[1] = ((p[0].x - p[2].x) * a - (p[0].x - p[1].x) * b) / -d; - param[2] = sqrt((cx - p[0].x) * (cx - p[0].x) + (cy - p[0].y) * (cy - p[0].y)); - return param; - } - return std::vector(); // error -} - -const double VelocityReplanner::calcPathLength(const autoware_msgs::Lane& lane) const -{ - double distance = 0.0; - for (unsigned long i = 1; i < lane.waypoints.size(); i++) - { - const geometry_msgs::Point& p0 = lane.waypoints[i - 1].pose.pose.position; - const geometry_msgs::Point& p1 = lane.waypoints[i].pose.pose.position; - tf::Vector3 tf0(p0.x, p0.y, 0.0); - tf::Vector3 tf1(p1.x, p1.y, 0.0); - distance += tf::tfDistance(tf0, tf1); - } - return distance; -} -} diff --git a/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/velocity_replanner.h b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/velocity_replanner.h deleted file mode 100644 index 424f93dd505..00000000000 --- a/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/velocity_replanner.h +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Copyright (c) 2018, TierIV, 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 Autoware 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 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. -*/ -#ifndef __VELOCITY_REPLANNER_H__ -#define __VELOCITY_REPLANNER_H__ - -#include -#include -#include -#include -#include -#include -#include -#include "autoware_msgs/Lane.h" - -namespace waypoint_maker -{ -class VelocityReplanner -{ -private: - ros::NodeHandle private_nh_; - double r_th_, r_min_, r_inf_; - int lookup_crv_width_; - double velocity_max_, velocity_min_; - double accel_limit_, decel_limit_, resample_interval_; - int velocity_offset_; - bool resample_mode_; - int end_point_offset_; - double vel_param_; - -public: - VelocityReplanner(); - ~VelocityReplanner(); - void initParameter(const autoware_config_msgs::ConfigWaypointLoader::ConstPtr& conf); - void replanLaneWaypointVel(autoware_msgs::Lane* lane); - -protected: - void resampleLaneWaypoint(const double resample_interval, autoware_msgs::Lane* lane); - void resampleOnStraight(const boost::circular_buffer& curve_point, autoware_msgs::Lane* lane); - void resampleOnCurve(const geometry_msgs::Point& target_point, const std::vector& param, - autoware_msgs::Lane* lane); - - const boost::circular_buffer getCrvPointsOnResample(const autoware_msgs::Lane& lane, - const autoware_msgs::Lane& original_lane, - unsigned long original_index) const; - const boost::circular_buffer getCrvPoints(const autoware_msgs::Lane& lane, - unsigned long index) const; - - void createRadiusList(const autoware_msgs::Lane& lane, std::vector* curve_radius); - const double calcVelParam() const; - void createCurveList(const std::vector& curve_radius, - std::unordered_map >* curve_list); - - void limitVelocityByRange(unsigned long start_idx, unsigned long end_idx, unsigned int offset, double vmin, - autoware_msgs::Lane* lane); - void limitAccelDecel(const unsigned long idx, autoware_msgs::Lane* lane); - - const std::vector calcCurveParam(boost::circular_buffer point) const; - const double calcPathLength(const autoware_msgs::Lane& lane) const; -}; -} -#endif diff --git a/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/waypoint_loader_core.cpp b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/waypoint_loader_core.cpp index 204b15d80c1..1358c8c0e71 100644 --- a/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/waypoint_loader_core.cpp +++ b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/waypoint_loader_core.cpp @@ -31,70 +31,20 @@ WaypointLoaderNode::~WaypointLoaderNode() void WaypointLoaderNode::initPubSub() { - private_nh_.param("disable_decision_maker", disable_decision_maker_, true); + private_nh_.param("multi_lane_csv", multi_lane_csv_, "/tmp/driving_lane.csv"); // setup publisher - if (disable_decision_maker_) - { - lane_pub_ = nh_.advertise("/lane_waypoints_array", 10, true); - } - else - { - lane_pub_ = nh_.advertise("/based/lane_waypoints_array", 10, true); - } - config_sub_ = nh_.subscribe("/config/waypoint_loader", 1, &WaypointLoaderNode::configCallback, this); - output_cmd_sub_ = - nh_.subscribe("/config/waypoint_loader_output", 1, &WaypointLoaderNode::outputCommandCallback, this); -} - -void WaypointLoaderNode::initParameter(const autoware_config_msgs::ConfigWaypointLoader::ConstPtr& conf) -{ - // parameter settings - replanning_mode_ = conf->replanning_mode; - multi_lane_csv_ = conf->multi_lane_csv; + lane_pub_ = nh_.advertise("/based/lane_waypoints_raw", 10, true); } -void WaypointLoaderNode::configCallback(const autoware_config_msgs::ConfigWaypointLoader::ConstPtr& conf) +void WaypointLoaderNode::run() { - initParameter(conf); - replanner_.initParameter(conf); - multi_file_path_.clear(); parseColumns(multi_lane_csv_, &multi_file_path_); autoware_msgs::LaneArray lane_array; createLaneArray(multi_file_path_, &lane_array); lane_pub_.publish(lane_array); output_lane_array_ = lane_array; -} - -void WaypointLoaderNode::outputCommandCallback(const std_msgs::Bool::ConstPtr& output_cmd) -{ - std::vector dst_multi_file_path = multi_file_path_; - for (auto& el : dst_multi_file_path) - { - el = addFileSuffix(el, "_replanned"); - } - saveLaneArray(dst_multi_file_path, output_lane_array_); -} - -const std::string addFileSuffix(std::string file_path, std::string suffix) -{ - std::string output_file_path, tmp; - std::string directory_path, filename, extension; - - tmp = file_path; - const std::string::size_type idx_slash = tmp.find_last_of("/"); - if (idx_slash != std::string::npos) - { - tmp.erase(0, idx_slash); - } - const std::string::size_type idx_dot = tmp.find_last_of("."); - const std::string::size_type idx_dot_allpath = file_path.find_last_of("."); - if (idx_dot != std::string::npos && idx_dot != tmp.size() - 1) - { - file_path.erase(idx_dot_allpath, file_path.size() - 1); - } - file_path += suffix + ".csv"; - return file_path; + ros::spin(); } void WaypointLoaderNode::createLaneArray(const std::vector& paths, autoware_msgs::LaneArray* lane_array) @@ -103,31 +53,7 @@ void WaypointLoaderNode::createLaneArray(const std::vector& paths, { autoware_msgs::Lane lane; createLaneWaypoint(el, &lane); - if (replanning_mode_) - { - replanner_.replanLaneWaypointVel(&lane); - } - lane_array->lanes.push_back(lane); - } -} - -void WaypointLoaderNode::saveLaneArray(const std::vector& paths, - const autoware_msgs::LaneArray& lane_array) -{ - unsigned long idx = 0; - for (const auto& file_path : paths) - { - std::ofstream ofs(file_path.c_str()); - ofs << "x,y,z,yaw,velocity,change_flag,steering_flag,accel_flag,stop_flag,event_flag" << std::endl; - for (const auto& el : lane_array.lanes[idx].waypoints) - { - ofs << std::fixed << std::setprecision(4) << el.pose.pose.position.x << "," << el.pose.pose.position.y << "," - << el.pose.pose.position.z << "," << tf::getYaw(el.pose.pose.orientation) << "," - << mps2kmph(el.twist.twist.linear.x) << "," << (int)el.change_flag << "," << (int)el.wpstate.steering_state - << "," << (int)el.wpstate.accel_state << "," << (int)el.wpstate.stop_state << "," - << (int)el.wpstate.event_state << std::endl; - } - idx++; + lane_array->lanes.emplace_back(lane); } } @@ -175,7 +101,7 @@ void WaypointLoaderNode::loadWaypointsForVer1(const char* filename, std::vector< { autoware_msgs::Waypoint wp; parseWaypointForVer1(line, &wp); - wps->push_back(wp); + wps->emplace_back(wp); } size_t last = wps->size() - 1; @@ -221,7 +147,7 @@ void WaypointLoaderNode::loadWaypointsForVer2(const char* filename, std::vector< { autoware_msgs::Waypoint wp; parseWaypointForVer2(line, &wp); - wps->push_back(wp); + wps->emplace_back(wp); } } @@ -256,7 +182,7 @@ void WaypointLoaderNode::loadWaypointsForVer3(const char* filename, std::vector< { autoware_msgs::Waypoint wp; parseWaypointForVer3(line, contents, &wp); - wps->push_back(wp); + wps->emplace_back(wp); } } @@ -371,7 +297,7 @@ void parseColumns(const std::string& line, std::vector* columns) } if (!column.empty()) { - columns->push_back(column); + columns->emplace_back(column); } } } diff --git a/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/waypoint_loader_core.h b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/waypoint_loader_core.h index cca5ba6e6cd..ebf945367e4 100644 --- a/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/waypoint_loader_core.h +++ b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/waypoint_loader_core.h @@ -29,7 +29,6 @@ #include #include "autoware_msgs/LaneArray.h" -#include "velocity_replanner.h" namespace waypoint_maker { @@ -60,6 +59,7 @@ class WaypointLoaderNode public: WaypointLoaderNode(); ~WaypointLoaderNode(); + void run(); private: // handle @@ -69,26 +69,18 @@ class WaypointLoaderNode // publisher & subscriber ros::Publisher lane_pub_; ros::Subscriber config_sub_; - ros::Subscriber output_cmd_sub_; // variables std::string multi_lane_csv_; - bool disable_decision_maker_; - bool replanning_mode_; - VelocityReplanner replanner_; std::vector multi_file_path_; autoware_msgs::LaneArray output_lane_array_; // initializer void initPubSub(); - void initParameter(const autoware_config_msgs::ConfigWaypointLoader::ConstPtr& conf); // functions - void configCallback(const autoware_config_msgs::ConfigWaypointLoader::ConstPtr& conf); - void outputCommandCallback(const std_msgs::Bool::ConstPtr& output_cmd); void createLaneWaypoint(const std::string& file_path, autoware_msgs::Lane* lane); void createLaneArray(const std::vector& paths, autoware_msgs::LaneArray* lane_array); - void saveLaneArray(const std::vector& paths, const autoware_msgs::LaneArray& lane_array); FileFormat checkFileFormat(const char* filename); bool verifyFileConsistency(const char* filename); diff --git a/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/waypoint_loader_node.cpp b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/waypoint_loader_node.cpp index 7683be3c327..7b31e5ae463 100644 --- a/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/waypoint_loader_node.cpp +++ b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_loader/waypoint_loader_node.cpp @@ -23,7 +23,7 @@ int main(int argc, char** argv) { ros::init(argc, argv, "waypoint_loader"); waypoint_maker::WaypointLoaderNode wln; - ros::spin(); + wln.run(); return 0; } diff --git a/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_replanner/waypoint_replanner.cpp b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_replanner/waypoint_replanner.cpp new file mode 100644 index 00000000000..184f1ea5eb7 --- /dev/null +++ b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_replanner/waypoint_replanner.cpp @@ -0,0 +1,457 @@ +/* + * Copyright 2015-2019 Autoware Foundation. All rights reserved. + * + * 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 "waypoint_replanner.h" + +namespace waypoint_maker +{ + +WaypointReplanner::WaypointReplanner() +{ +} + +WaypointReplanner::~WaypointReplanner() +{ +} + +void WaypointReplanner::initParameter(const autoware_config_msgs::ConfigWaypointReplanner::ConstPtr& conf) +{ + velocity_max_ = kmph2mps(conf->velocity_max); + velocity_min_ = kmph2mps(conf->velocity_min); + accel_limit_ = conf->accel_limit; + decel_limit_ = conf->decel_limit; + r_th_ = conf->radius_thresh; + r_min_ = conf->radius_min; + lookup_crv_width_ = 5; + resample_mode_ = conf->resample_mode; + resample_interval_ = conf->resample_interval; + replan_curve_mode_ = conf->replan_curve_mode; + replan_endpoint_mode_ = conf->replan_endpoint_mode; + overwrite_vmax_mode_ = conf->overwrite_vmax_mode; + velocity_offset_ = conf->velocity_offset; + end_point_offset_ = conf->end_point_offset; + braking_distance_ = conf->braking_distance; + r_inf_ = 10 * r_th_; + vel_param_ = calcVelParam(velocity_max_); +} + +void WaypointReplanner::changeVelSign(autoware_msgs::Lane& lane, bool positive) const +{ + const int sgn = positive ? 1 : -1; + for (auto& el : lane.waypoints) + { + el.twist.twist.linear.x = sgn * fabs(el.twist.twist.linear.x); + } +} + +int WaypointReplanner::getDirection(const autoware_msgs::Lane& lane) const +{ + if (lane.waypoints.size() < 2) + { + return 1; + } + const geometry_msgs::Pose& pose = lane.waypoints[0].pose.pose; + const geometry_msgs::Point& point = lane.waypoints[1].pose.pose.position; + const geometry_msgs::Point rlt_point(calcRelativeCoordinate(point, pose)); + return rlt_point.x < 0 ? -1 : 1; +} + +void WaypointReplanner::replanLaneWaypointVel(autoware_msgs::Lane& lane) +{ + if (lane.waypoints.empty()) + { + return; + } + const int dir = getDirection(lane); + const unsigned long last = lane.waypoints.size() - 1; + changeVelSign(lane, true); + limitVelocityByRange(0, last, 0, velocity_max_, lane); + if (resample_mode_) + { + resampleLaneWaypoint(resample_interval_, lane, dir); + } + if (replan_curve_mode_) + { + std::vector curve_radius; + KeyVal curve_list; + createRadiusList(lane, curve_radius); + createCurveList(curve_radius, curve_list); + if (overwrite_vmax_mode_) + {// set velocity_max for all_point + setVelocityByRange(0, last, 0, velocity_max_, lane); + } + // set velocity by curve + for (const auto& el : curve_list) + { + const double& radius = el.second.second; + double vmin = velocity_max_ - vel_param_ * (r_th_ - radius); + vmin = (vmin < velocity_min_) ? velocity_min_ : vmin; + limitVelocityByRange(el.first, el.second.first, velocity_offset_, vmin, lane); + } + } + // set velocity on start & end of lane + if (replan_endpoint_mode_) + { + const unsigned long zerospeed_start = last - end_point_offset_; + const unsigned long lowspeed_start = zerospeed_start - braking_distance_; + raiseVelocityByRange(0, last, 0, velocity_min_, lane); + limitVelocityByRange(0, 0, 0, velocity_min_, lane); + limitVelocityByRange(lowspeed_start, last, 0, velocity_min_, lane); + setVelocityByRange(zerospeed_start, last, 0, 0.0, lane); + } + if (dir < 0) + { + changeVelSign(lane, false); + } +} + +void WaypointReplanner::resampleLaneWaypoint(const double resample_interval, autoware_msgs::Lane& lane, int dir) +{ + if (lane.waypoints.size() < 2) + { + return; + } + autoware_msgs::Lane original_lane(lane); + lane.waypoints.clear(); + lane.waypoints.emplace_back(original_lane.waypoints[0]); + lane.waypoints.reserve(ceil(1.5 * calcPathLength(original_lane) / resample_interval_)); + + for (unsigned long i = 1; i < original_lane.waypoints.size(); i++) + { + CbufGPoint curve_point = getCrvPointsOnResample(lane, original_lane, i); + const std::vector curve_param = calcCurveParam(curve_point); + lane.waypoints.back().twist.twist = original_lane.waypoints[i - 1].twist.twist; + lane.waypoints.back().wpstate = original_lane.waypoints[i - 1].wpstate; + lane.waypoints.back().change_flag = original_lane.waypoints[i - 1].change_flag; + // if going straight + if (curve_param.empty()) + { + resampleOnStraight(curve_point, lane); + } + // else if turnning curve + else + { + resampleOnCurve(curve_point[1], curve_param, lane, dir); + } + } + lane.waypoints[0].pose.pose.orientation = lane.waypoints[1].pose.pose.orientation; + lane.waypoints.back().twist.twist = original_lane.waypoints.back().twist.twist; + lane.waypoints.back().wpstate = original_lane.waypoints.back().wpstate; + lane.waypoints.back().change_flag = original_lane.waypoints.back().change_flag; +} + +void WaypointReplanner::resampleOnStraight(const CbufGPoint& curve_point, autoware_msgs::Lane& lane) +{ + if (curve_point.size() != 3) + { + return; + } + autoware_msgs::Waypoint wp(lane.waypoints.back()); + const geometry_msgs::Point& pt = wp.pose.pose.position; + const double yaw = atan2(curve_point[2].y - curve_point[0].y, curve_point[2].x - curve_point[0].x); + wp.pose.pose.orientation = tf::createQuaternionMsgFromYaw(yaw); + + const std::vector nvec = { curve_point[1].x - pt.x, curve_point[1].y - pt.y, curve_point[1].z - pt.z }; + double dist = sqrt(nvec[0] * nvec[0] + nvec[1] * nvec[1]); + std::vector resample_vec = nvec; + const double coeff = resample_interval_ / dist; + for (auto& el : resample_vec) + { + el *= coeff; + } + for (; dist > resample_interval_; dist -= resample_interval_) + { + wp.pose.pose.position.x += resample_vec[0]; + wp.pose.pose.position.y += resample_vec[1]; + wp.pose.pose.position.z += resample_vec[2]; + lane.waypoints.emplace_back(wp); + } +} + +void WaypointReplanner::resampleOnCurve(const geometry_msgs::Point& target_point, + const std::vector& curve_param, autoware_msgs::Lane& lane, int dir) +{ + if (curve_param.size() != 3) + { + return; + } + autoware_msgs::Waypoint wp(lane.waypoints.back()); + const double& cx = curve_param[0]; + const double& cy = curve_param[1]; + const double& radius = curve_param[2]; + const double reverse_angle = (dir < 0) ? M_PI : 0.0; + + const geometry_msgs::Point& p0 = wp.pose.pose.position; + const geometry_msgs::Point& p1 = target_point; + double theta = fmod(atan2(p1.y - cy, p1.x - cx) - atan2(p0.y - cy, p0.x - cx), 2 * M_PI); + int sgn = (theta > 0.0) ? (1) : (-1); + if (fabs(theta) > M_PI) + { + theta -= 2 * sgn * M_PI; + } + sgn = (theta > 0.0) ? (1) : (-1); + // interport + double t = atan2(p0.y - cy, p0.x - cx); + double dist = radius * fabs(theta); + const double resample_dz = resample_interval_ * (p1.z - p0.z) / dist; + for (; dist > resample_interval_; dist -= resample_interval_) + { + if (lane.waypoints.size() == lane.waypoints.capacity()) + { + break; + } + t += sgn * resample_interval_ / radius; + const double yaw = fmod(t + sgn * M_PI / 2.0, 2 * M_PI) + reverse_angle; + wp.pose.pose.position.x = cx + radius * cos(t); + wp.pose.pose.position.y = cy + radius * sin(t); + wp.pose.pose.position.z += resample_dz; + wp.pose.pose.orientation = tf::createQuaternionMsgFromYaw(yaw); + lane.waypoints.emplace_back(wp); + } +} + +// Three points used for curve detection (the target point is the center) +// [0] = previous point, [1] = target point, [2] = next point +const CbufGPoint WaypointReplanner::getCrvPointsOnResample( + const autoware_msgs::Lane& lane, const autoware_msgs::Lane& original_lane, unsigned long original_index) const +{ + unsigned long id = original_index; + CbufGPoint curve_point(3); + const unsigned int n = (lookup_crv_width_ - 1) / 2; + const autoware_msgs::Waypoint cp[3] = { + (lane.waypoints.size() < n) ? lane.waypoints.front() : lane.waypoints[lane.waypoints.size() - n], + original_lane.waypoints[id], + (id < original_lane.waypoints.size() - n) ? original_lane.waypoints[id + n] : original_lane.waypoints.back() + }; + for (int i = 0; i < 3; i++) + { + curve_point.push_back(cp[i].pose.pose.position); + } + return curve_point; +} + +const CbufGPoint WaypointReplanner::getCrvPoints(const autoware_msgs::Lane& lane, unsigned long index) const +{ + CbufGPoint curve_point(3); + const unsigned int n = (lookup_crv_width_ - 1) / 2; + const unsigned long curve_index[3] = { (index < n) ? 0 : (index - n), index, (index >= lane.waypoints.size() - n) ? + (lane.waypoints.size() - 1) : + (index + n) }; + for (int i = 0; i < 3; i++) + { + curve_point.push_back(lane.waypoints[curve_index[i]].pose.pose.position); + } + return curve_point; +} + +void WaypointReplanner::createRadiusList(const autoware_msgs::Lane& lane, std::vector& curve_radius) +{ + if (lane.waypoints.empty()) + { + return; + } + curve_radius.resize(lane.waypoints.size()); + curve_radius.at(0) = curve_radius.back() = r_inf_; + + for (unsigned long i = 1; i < lane.waypoints.size() - 1; i++) + { + CbufGPoint curve_point(getCrvPoints(lane, i)); + const std::vector curve_param(calcCurveParam(curve_point)); + + // if going straight + if (curve_param.empty()) + { + curve_radius.at(i) = r_inf_; + } + // else if turnning curve + else + { + curve_radius.at(i) = (curve_param[2] > r_inf_) ? r_inf_ : curve_param[2]; + } + } +} + +const double WaypointReplanner::calcVelParam(double vmax) const +{ + if (fabs(r_th_ - r_min_) < 1e-8) + { + return DBL_MAX; // error + } + return (vmax - velocity_min_) / (r_th_ - r_min_); +} + +void WaypointReplanner::createCurveList(const std::vector& curve_radius, KeyVal& curve_list) +{ + unsigned long index = 0; + bool on_curve = false; + double radius_localmin = DBL_MAX; + for (unsigned long i = 1; i < curve_radius.size(); i++) + { + if (!on_curve && curve_radius[i] <= r_th_ && curve_radius[i - 1] > r_th_) + { + index = i; + on_curve = true; + } + else if (on_curve && curve_radius[i - 1] <= r_th_ && curve_radius[i] > r_th_) + { + on_curve = false; + if (radius_localmin < r_min_) + { + radius_localmin = r_min_; + } + curve_list[index] = std::make_pair(i, radius_localmin); + radius_localmin = DBL_MAX; + } + if (!on_curve) + { + continue; + } + if (radius_localmin > curve_radius[i]) + { + radius_localmin = curve_radius[i]; + } + } +} + + +void WaypointReplanner::setVelocityByRange(unsigned long start_idx, unsigned long end_idx, unsigned int offset, + double vel, autoware_msgs::Lane& lane) +{ + if (lane.waypoints.empty()) + { + return; + } + if (offset > 0) + { + start_idx = (start_idx > offset) ? (start_idx - offset) : 0; + end_idx = (end_idx > offset) ? (end_idx - offset) : 0; + } + end_idx = (end_idx >= lane.waypoints.size()) ? lane.waypoints.size() - 1 : end_idx; + for (unsigned long idx = start_idx; idx <= end_idx; idx++) + { + lane.waypoints[idx].twist.twist.linear.x = vel; + } +} + +void WaypointReplanner::raiseVelocityByRange(unsigned long start_idx, unsigned long end_idx, unsigned int offset, + double vmin, autoware_msgs::Lane& lane) +{ + if (lane.waypoints.empty()) + { + return; + } + if (offset > 0) + { + start_idx = (start_idx > offset) ? (start_idx - offset) : 0; + end_idx = (end_idx > offset) ? (end_idx - offset) : 0; + } + end_idx = (end_idx >= lane.waypoints.size()) ? lane.waypoints.size() - 1 : end_idx; + for (unsigned long idx = start_idx; idx <= end_idx; idx++) + { + if (lane.waypoints[idx].twist.twist.linear.x >= vmin) + { + continue; + } + lane.waypoints[idx].twist.twist.linear.x = vmin; + } +} + +void WaypointReplanner::limitVelocityByRange(unsigned long start_idx, unsigned long end_idx, unsigned int offset, + double vmin, autoware_msgs::Lane& lane) +{ + if (lane.waypoints.empty()) + { + return; + } + if (offset > 0) + { + start_idx = (start_idx > offset) ? (start_idx - offset) : 0; + end_idx = (end_idx > offset) ? (end_idx - offset) : 0; + } + end_idx = (end_idx >= lane.waypoints.size()) ? lane.waypoints.size() - 1 : end_idx; + for (unsigned long idx = start_idx; idx <= end_idx; idx++) + { + if (lane.waypoints[idx].twist.twist.linear.x < vmin) + { + continue; + } + lane.waypoints[idx].twist.twist.linear.x = vmin; + } + limitAccelDecel(start_idx, lane); + limitAccelDecel(end_idx, lane); +} + +void WaypointReplanner::limitAccelDecel(const unsigned long idx, autoware_msgs::Lane& lane) +{ + const double acc[2] = { accel_limit_, decel_limit_ }; + const unsigned long end_idx[2] = { lane.waypoints.size() - idx, idx + 1 }; + const int sgn[2] = { 1, -1 }; + for (int j = 0; j < 2; j++) // [j=0]: accel_limit_process, [j=1]: decel_limit_process + { + double v = lane.waypoints[idx].twist.twist.linear.x; + unsigned long next = idx + sgn[j]; + for (unsigned long i = 1; i < end_idx[j]; i++, next += sgn[j]) + { + const geometry_msgs::Point& p0 = lane.waypoints[next - sgn[j]].pose.pose.position; + const geometry_msgs::Point& p1 = lane.waypoints[next].pose.pose.position; + const double dist = std::hypot(p0.x - p1.x, p0.y - p1.y); + v = sqrt(2 * acc[j] * dist + v * v); + if (v > velocity_max_ || v > lane.waypoints[next].twist.twist.linear.x) + { + break; + } + lane.waypoints[next].twist.twist.linear.x = v; + } + } +} + +// get curve 3-Parameter [center_x, center_y, radius] with 3 point input. If error occured, return empty vector. +const std::vector WaypointReplanner::calcCurveParam(CbufGPoint p) const +{ + for (int i = 0; i < 3; i++, p.push_back(p.front())) // if exception occured, change points order + { + const double d = 2 * ((p[0].y - p[2].y) * (p[0].x - p[1].x) - (p[0].y - p[1].y) * (p[0].x - p[2].x)); + if (fabs(d) < 1e-8) + { + continue; + } + const std::vector x2 = { p[0].x * p[0].x, p[1].x * p[1].x, p[2].x * p[2].x }; + const std::vector y2 = { p[0].y * p[0].y, p[1].y * p[1].y, p[2].y * p[2].y }; + const double a = y2[0] - y2[1] + x2[0] - x2[1]; + const double b = y2[0] - y2[2] + x2[0] - x2[2]; + std::vector param(3); + const double cx = param[0] = ((p[0].y - p[2].y) * a - (p[0].y - p[1].y) * b) / d; + const double cy = param[1] = ((p[0].x - p[2].x) * a - (p[0].x - p[1].x) * b) / -d; + param[2] = sqrt((cx - p[0].x) * (cx - p[0].x) + (cy - p[0].y) * (cy - p[0].y)); + return param; + } + return std::vector(); // error +} + +const double WaypointReplanner::calcPathLength(const autoware_msgs::Lane& lane) const +{ + double distance = 0.0; + for (unsigned long i = 1; i < lane.waypoints.size(); i++) + { + const geometry_msgs::Point& p0 = lane.waypoints[i - 1].pose.pose.position; + const geometry_msgs::Point& p1 = lane.waypoints[i].pose.pose.position; + tf::Vector3 tf0(p0.x, p0.y, 0.0); + tf::Vector3 tf1(p1.x, p1.y, 0.0); + distance += tf::tfDistance(tf0, tf1); + } + return distance; +} + +}; diff --git a/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_replanner/waypoint_replanner.h b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_replanner/waypoint_replanner.h new file mode 100644 index 00000000000..f88119cf0de --- /dev/null +++ b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_replanner/waypoint_replanner.h @@ -0,0 +1,85 @@ +/* + * Copyright 2015-2019 Autoware Foundation. All rights reserved. + * + * 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. + */ +#ifndef __WAYPOINT_REPLANNER_H__ +#define __WAYPOINT_REPLANNER_H__ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace waypoint_maker +{ +typedef std::unordered_map> KeyVal; +typedef boost::circular_buffer CbufGPoint; + +class WaypointReplanner +{ +private: + double r_th_, r_min_, r_inf_; + int lookup_crv_width_; + double velocity_max_, velocity_min_; + double accel_limit_, decel_limit_, resample_interval_; + int velocity_offset_; + bool resample_mode_, replan_curve_mode_, replan_endpoint_mode_; + int end_point_offset_, braking_distance_; + double vel_param_; + bool overwrite_vmax_mode_; + +public: + WaypointReplanner(); + ~WaypointReplanner(); + void initParameter(const autoware_config_msgs::ConfigWaypointReplanner::ConstPtr& conf); + void replanLaneWaypointVel(autoware_msgs::Lane& lane); + +protected: + void changeVelSign(autoware_msgs::Lane& lane, bool positive) const; + int getDirection(const autoware_msgs::Lane& lane) const; + void resampleLaneWaypoint(const double resample_interval, autoware_msgs::Lane& lane, int dir); + void resampleOnStraight(const CbufGPoint& curve_point, autoware_msgs::Lane& lane); + void resampleOnCurve(const geometry_msgs::Point& target_point, + const std::vector& param,autoware_msgs::Lane& lane, int dir); + + const CbufGPoint getCrvPointsOnResample(const autoware_msgs::Lane& lane, + const autoware_msgs::Lane& original_lane, unsigned long original_index) const; + const CbufGPoint getCrvPoints(const autoware_msgs::Lane& lane, unsigned long index) const; + + void createRadiusList(const autoware_msgs::Lane& lane, std::vector& curve_radius); + const double calcVelParam(double vmax) const; + void createCurveList(const std::vector& curve_radius, KeyVal& curve_list); + void createVmaxList(const autoware_msgs::Lane& lane, const KeyVal &curve_list, + unsigned long offset, KeyVal &vmax_list); + double searchVmaxByRange(unsigned long start_idx, unsigned long end_idx, unsigned int offset, + const autoware_msgs::Lane &lane) const; + void setVelocityByRange(unsigned long start_idx, unsigned long end_idx, unsigned int offset, double vel, + autoware_msgs::Lane& lane); + void raiseVelocityByRange(unsigned long start_idx, unsigned long end_idx, unsigned int offset, + double vmin, autoware_msgs::Lane& lane); + + void limitVelocityByRange(unsigned long start_idx, unsigned long end_idx, unsigned int offset, double vmin, + autoware_msgs::Lane& lane); + void limitAccelDecel(const unsigned long idx, autoware_msgs::Lane& lane); + + const std::vector calcCurveParam(CbufGPoint point) const; + const double calcPathLength(const autoware_msgs::Lane& lane) const; +}; +} +#endif diff --git a/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_replanner/waypoint_replanner_node.cpp b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_replanner/waypoint_replanner_node.cpp new file mode 100644 index 00000000000..3bee36e5ff0 --- /dev/null +++ b/ros/src/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_replanner/waypoint_replanner_node.cpp @@ -0,0 +1,109 @@ +/* + * Copyright 2015-2019 Autoware Foundation. All rights reserved. + * + * 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 +#include +#include "waypoint_replanner.h" + +namespace waypoint_maker +{ +class WaypointReplannerNode +{ +public: + WaypointReplannerNode(); + ~WaypointReplannerNode(); +private: + ros::NodeHandle nh_; + std::map lane_pub_; + ros::Subscriber lane_sub_, config_sub_; + bool replanning_mode_, realtime_tuning_mode_; + WaypointReplanner replanner_; + autoware_msgs::LaneArray lane_array_; + bool withoutDecisionMaker(); + void replan(autoware_msgs::LaneArray &lane_array); + void publishLaneArray(); + void laneCallback(const autoware_msgs::LaneArray::ConstPtr& lane_array); + void configCallback(const autoware_config_msgs::ConfigWaypointReplanner::ConstPtr& conf); +}; + +WaypointReplannerNode::WaypointReplannerNode() : replanning_mode_(false) +{ + lane_pub_["with_decision"] = nh_.advertise("/based/lane_waypoints_array", 10, true); + lane_pub_["without_decision"] = nh_.advertise("/lane_waypoints_array", 10, true); + lane_sub_ = nh_.subscribe("/based/lane_waypoints_raw", 1, &WaypointReplannerNode::laneCallback, this); + config_sub_ = nh_.subscribe("/config/waypoint_replanner", 1, &WaypointReplannerNode::configCallback, this); +} + +WaypointReplannerNode::~WaypointReplannerNode() +{ +} + +void WaypointReplannerNode::replan(autoware_msgs::LaneArray& lane_array) +{ + for (auto &el : lane_array.lanes) + { + replanner_.replanLaneWaypointVel(el); + } +} + +bool WaypointReplannerNode::withoutDecisionMaker() +{ + std::vector node_list; + ros::master::getNodes(node_list); + return (std::find(node_list.begin(), node_list.end(), "/decision_maker") == node_list.end()); +} + +void WaypointReplannerNode::publishLaneArray() +{ + autoware_msgs::LaneArray array(lane_array_); + if (replanning_mode_) + { + replan(array); + } + lane_pub_["with_decision"].publish(array); + if (withoutDecisionMaker()) + { + lane_pub_["without_decision"].publish(array); + } +} + +void WaypointReplannerNode::laneCallback(const autoware_msgs::LaneArray::ConstPtr& lane_array) +{ + lane_array_ = *lane_array; + publishLaneArray(); +} + +void WaypointReplannerNode::configCallback(const autoware_config_msgs::ConfigWaypointReplanner::ConstPtr& conf) +{ + replanning_mode_ = conf->replanning_mode; + realtime_tuning_mode_ = conf->realtime_tuning_mode; + replanner_.initParameter(conf); + if (lane_array_.lanes.empty() || !realtime_tuning_mode_) + { + return; + } + publishLaneArray(); +} + +} + +int main(int argc, char** argv) +{ + ros::init(argc, argv, "waypoint_replanner"); + waypoint_maker::WaypointReplannerNode wr; + ros::spin(); + + return 0; +} diff --git a/ros/src/data/packages/map_file/CMakeLists.txt b/ros/src/data/packages/map_file/CMakeLists.txt index 82019222360..c7cb61eb68b 100644 --- a/ros/src/data/packages/map_file/CMakeLists.txt +++ b/ros/src/data/packages/map_file/CMakeLists.txt @@ -9,33 +9,33 @@ find_package(autoware_msgs REQUIRED) find_package(vector_map REQUIRED) find_package(catkin REQUIRED COMPONENTS - roscpp - std_msgs - visualization_msgs - geometry_msgs - tf - pcl_ros - tf2_ros - tf2_geometry_msgs - autoware_msgs - vector_map -) + roscpp + std_msgs + visualization_msgs + geometry_msgs + tf + pcl_ros + tf2_ros + tf2_geometry_msgs + autoware_msgs + vector_map + ) find_package(PCL REQUIRED COMPONENTS io) # See: https://github.com/ros-perception/perception_pcl/blob/lunar-devel/pcl_ros/CMakeLists.txt#L10-L22 -if(NOT "${PCL_LIBRARIES}" STREQUAL "") - # FIXME: this causes duplicates and not found error in ubuntu:zesty - list(REMOVE_ITEM PCL_LIBRARIES "/usr/lib/libmpi.so") - - # For debian: https://github.com/ros-perception/perception_pcl/issues/139 - list(REMOVE_ITEM PCL_IO_LIBRARIES - "vtkGUISupportQt" - "vtkGUISupportQtOpenGL" - "vtkGUISupportQtSQL" - "vtkGUISupportQtWebkit" - "vtkViewsQt" - "vtkRenderingQt") -endif() +if (NOT "${PCL_LIBRARIES}" STREQUAL "") + # FIXME: this causes duplicates and not found error in ubuntu:zesty + list(REMOVE_ITEM PCL_LIBRARIES "/usr/lib/libmpi.so") + + # For debian: https://github.com/ros-perception/perception_pcl/issues/139 + list(REMOVE_ITEM PCL_IO_LIBRARIES + "vtkGUISupportQt" + "vtkGUISupportQtOpenGL" + "vtkGUISupportQtSQL" + "vtkGUISupportQtWebkit" + "vtkViewsQt" + "vtkRenderingQt") +endif () find_package(CURL REQUIRED) @@ -50,17 +50,17 @@ catkin_package( ########### include_directories( - include - ${vector_map_INCLUDE_DIRS} - ${catkin_INCLUDE_DIRS} - ${autoware_msgs_INCLUDE_DIRS} - ${PCL_IO_INCLUDE_DIRS} - ${CURL_INCLUDE_DIRS} + include + ${vector_map_INCLUDE_DIRS} + ${catkin_INCLUDE_DIRS} + ${autoware_msgs_INCLUDE_DIRS} + ${PCL_IO_INCLUDE_DIRS} + ${CURL_INCLUDE_DIRS} ) add_library(get_file - lib/map_file/get_file.cpp - ) + lib/map_file/get_file.cpp + ) target_link_libraries(get_file ${CURL_LIBRARIES}) add_executable(points_map_loader nodes/points_map_loader/points_map_loader.cpp) @@ -75,11 +75,20 @@ target_link_libraries(points_map_filter ${catkin_LIBRARIES}) add_dependencies(points_map_filter ${catkin_EXPORTED_TARGETS}) ## Install executables and/or libraries -install(TARGETS get_file points_map_loader vector_map_loader - ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) +install(TARGETS + get_file + points_map_loader + vector_map_loader + points_map_filter + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) ## Install project namespaced headers install(DIRECTORY include/${PROJECT_NAME}/ - DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}) + DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/data/packages/obj_db/CMakeLists.txt b/ros/src/data/packages/obj_db/CMakeLists.txt index 3b23d901f7d..470fe41b78a 100644 --- a/ros/src/data/packages/obj_db/CMakeLists.txt +++ b/ros/src/data/packages/obj_db/CMakeLists.txt @@ -51,3 +51,16 @@ set_target_properties(obj_uploader add_executable(can_uploader nodes/can_uploader/can_uploader.cpp) target_link_libraries(can_uploader ${catkin_LIBRARIES} obj_db) add_dependencies(can_uploader ${catkin_EXPORTED_TARGETS}) + +install(TARGETS + can_uploader + obj_uploader + obj_db + obj_downloader + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + + +install(DIRECTORY include + DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}) diff --git a/ros/src/data/packages/pos_db/CMakeLists.txt b/ros/src/data/packages/pos_db/CMakeLists.txt index d5d60cb7854..c3b6f1292f8 100644 --- a/ros/src/data/packages/pos_db/CMakeLists.txt +++ b/ros/src/data/packages/pos_db/CMakeLists.txt @@ -75,10 +75,14 @@ if (LIBSSH2_FOUND) pos_uploader ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION}) + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) install(DIRECTORY include DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}) + + install(FILES model/prius_model.dae + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/model/ + ) else() message("LibSSH2 not found. pos_db package won't be built.") endif() diff --git a/ros/src/driveworks/packages/autoware_driveworks_gmsl_interface/CMakeLists.txt b/ros/src/driveworks/packages/autoware_driveworks_gmsl_interface/CMakeLists.txt index b4649a9374f..cd50c3bac20 100644 --- a/ros/src/driveworks/packages/autoware_driveworks_gmsl_interface/CMakeLists.txt +++ b/ros/src/driveworks/packages/autoware_driveworks_gmsl_interface/CMakeLists.txt @@ -85,13 +85,18 @@ if ("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "aarch64" AND CUDA_FOUND) RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) - install(FILES - nodelet_gmsl_camera.xml - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} - ) + + install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) else() find_package(catkin REQUIRED) catkin_package() message("gmsl_camera driver will not be built. CUDA was not found.") endif() + +install(FILES + nodelet_gmsl_camera.xml + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} + ) \ No newline at end of file diff --git a/ros/src/driveworks/packages/autoware_driveworks_interface/CMakeLists.txt b/ros/src/driveworks/packages/autoware_driveworks_interface/CMakeLists.txt index b69ec552fee..031059681e8 100755 --- a/ros/src/driveworks/packages/autoware_driveworks_interface/CMakeLists.txt +++ b/ros/src/driveworks/packages/autoware_driveworks_interface/CMakeLists.txt @@ -96,6 +96,20 @@ if ("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "aarch64" AND CUDA_FOUND) # Use configure_file instead of file(COPY ...) so that if the input file # changes, it gets copied to the DEVEL space anyway configure_file(lib/libautoware_driveworks.so ${CATKIN_DEVEL_PREFIX}/lib/libautoware_driveworks.so COPYONLY) + + install(TARGETS tensorrt_interface gmsl_interface + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + + install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) + + install(FILES + lib/libautoware_driveworks.so + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/lib/libautoware_driveworks.so + ) ELSE() message("autoware_driveworks_interface won't be built, CUDA and aarch64 are required.") ENDIF () diff --git a/ros/src/msgs/autoware_config_msgs/CMakeLists.txt b/ros/src/msgs/autoware_config_msgs/CMakeLists.txt index d4761d895a2..1b967b36824 100644 --- a/ros/src/msgs/autoware_config_msgs/CMakeLists.txt +++ b/ros/src/msgs/autoware_config_msgs/CMakeLists.txt @@ -42,7 +42,7 @@ add_message_files( ConfigVelocitySet.msg ConfigVoxelGridFilter.msg ConfigWaypointFollower.msg - ConfigWaypointLoader.msg + ConfigWaypointReplanner.msg ) ## Generate added messages and services with any dependencies listed here diff --git a/ros/src/msgs/autoware_config_msgs/msg/ConfigWaypointLoader.msg b/ros/src/msgs/autoware_config_msgs/msg/ConfigWaypointReplanner.msg similarity index 67% rename from ros/src/msgs/autoware_config_msgs/msg/ConfigWaypointLoader.msg rename to ros/src/msgs/autoware_config_msgs/msg/ConfigWaypointReplanner.msg index 94ea67b907a..4e885c40fb0 100644 --- a/ros/src/msgs/autoware_config_msgs/msg/ConfigWaypointLoader.msg +++ b/ros/src/msgs/autoware_config_msgs/msg/ConfigWaypointReplanner.msg @@ -10,3 +10,8 @@ bool resample_mode float32 resample_interval int32 velocity_offset int32 end_point_offset +int32 braking_distance +bool replan_curve_mode +bool replan_endpoint_mode +bool overwrite_vmax_mode +bool realtime_tuning_mode diff --git a/ros/src/common/libs/diagnostics_lib/diag_msgs/CMakeLists.txt b/ros/src/msgs/autoware_system_msgs/CMakeLists.txt similarity index 53% rename from ros/src/common/libs/diagnostics_lib/diag_msgs/CMakeLists.txt rename to ros/src/msgs/autoware_system_msgs/CMakeLists.txt index b25afb2d0bf..f0b97cbc97b 100644 --- a/ros/src/common/libs/diagnostics_lib/diag_msgs/CMakeLists.txt +++ b/ros/src/msgs/autoware_system_msgs/CMakeLists.txt @@ -1,28 +1,33 @@ cmake_minimum_required(VERSION 2.8.3) -project(diag_msgs) - +project(autoware_system_msgs) +add_compile_options(-std=c++11) find_package(catkin REQUIRED COMPONENTS message_generation std_msgs - message_runtime + rosgraph_msgs ) add_message_files( FILES - diag_error.msg - diag_node_errors.msg - diag.msg - ) + DiagnosticStatus.msg + DiagnosticStatusArray.msg + SystemStatus.msg + NodeStatus.msg + HardwareStatus.msg +) -generate_messages( - DEPENDENCIES - std_msgs) +generate_messages(DEPENDENCIES + std_msgs + rosgraph_msgs +) catkin_package( CATKIN_DEPENDS - std_msgs message_runtime + message_runtime + std_msgs + rosgraph_msgs ) foreach(dir msg) diff --git a/ros/src/msgs/autoware_system_msgs/msg/DiagnosticStatus.msg b/ros/src/msgs/autoware_system_msgs/msg/DiagnosticStatus.msg new file mode 100755 index 00000000000..4abe2e1489d --- /dev/null +++ b/ros/src/msgs/autoware_system_msgs/msg/DiagnosticStatus.msg @@ -0,0 +1,20 @@ +Header header + +string key + +string value + +string description + +uint8 UNDEFINED = 0 + +uint8 type +uint8 OUT_OF_RANGE = 1 +uint8 RATE_IS_SLOW = 2 +uint8 HARDWARE = 255 + +uint8 level +uint8 OK = 1 +uint8 WARN = 2 +uint8 ERROR = 3 +uint8 FATAL = 4 \ No newline at end of file diff --git a/ros/src/msgs/autoware_system_msgs/msg/DiagnosticStatusArray.msg b/ros/src/msgs/autoware_system_msgs/msg/DiagnosticStatusArray.msg new file mode 100755 index 00000000000..f0ea4636beb --- /dev/null +++ b/ros/src/msgs/autoware_system_msgs/msg/DiagnosticStatusArray.msg @@ -0,0 +1 @@ +autoware_system_msgs/DiagnosticStatus[] status \ No newline at end of file diff --git a/ros/src/msgs/autoware_system_msgs/msg/HardwareStatus.msg b/ros/src/msgs/autoware_system_msgs/msg/HardwareStatus.msg new file mode 100755 index 00000000000..4a408ef8f08 --- /dev/null +++ b/ros/src/msgs/autoware_system_msgs/msg/HardwareStatus.msg @@ -0,0 +1,3 @@ +std_msgs/Header header +string hardware_name +autoware_system_msgs/DiagnosticStatusArray[] status \ No newline at end of file diff --git a/ros/src/msgs/autoware_system_msgs/msg/NodeStatus.msg b/ros/src/msgs/autoware_system_msgs/msg/NodeStatus.msg new file mode 100755 index 00000000000..efd420a4108 --- /dev/null +++ b/ros/src/msgs/autoware_system_msgs/msg/NodeStatus.msg @@ -0,0 +1,4 @@ +Header header +string node_name +bool node_activated +autoware_system_msgs/DiagnosticStatusArray[] status \ No newline at end of file diff --git a/ros/src/msgs/autoware_system_msgs/msg/SystemStatus.msg b/ros/src/msgs/autoware_system_msgs/msg/SystemStatus.msg new file mode 100755 index 00000000000..0b46b9ea6b0 --- /dev/null +++ b/ros/src/msgs/autoware_system_msgs/msg/SystemStatus.msg @@ -0,0 +1,6 @@ +Header header +string[] available_nodes +bool detect_too_match_warning +autoware_system_msgs/NodeStatus[] node_status +autoware_system_msgs/HardwareStatus[] hardware_status +rosgraph_msgs/TopicStatistics[] topic_statistics \ No newline at end of file diff --git a/ros/src/msgs/autoware_system_msgs/package.xml b/ros/src/msgs/autoware_system_msgs/package.xml new file mode 100644 index 00000000000..42c95edc889 --- /dev/null +++ b/ros/src/msgs/autoware_system_msgs/package.xml @@ -0,0 +1,25 @@ + + + autoware_system_msgs + 0.0.0 + The autoware_system_msgs package + + Masaya Kataoka + + BSD + + catkin + message_generation + std_msgs + rosgraph_msgs + + std_msgs + rosgraph_msgs + + std_msgs + rosgraph_msgs + message_runtime + + + + diff --git a/ros/src/msgs/lgsvl_msgs b/ros/src/msgs/lgsvl_msgs index da97879fb78..a80edfbd988 160000 --- a/ros/src/msgs/lgsvl_msgs +++ b/ros/src/msgs/lgsvl_msgs @@ -1 +1 @@ -Subproject commit da97879fb78e1df3b84a60572d90faa6aea4189b +Subproject commit a80edfbd9880379af8a5e8dc0a90d6432494c9cd diff --git a/ros/src/sensing/drivers/camera/packages/baumer/CMakeLists.txt b/ros/src/sensing/drivers/camera/packages/baumer/CMakeLists.txt index 9f4e5f547b4..ea92b4a3a5d 100644 --- a/ros/src/sensing/drivers/camera/packages/baumer/CMakeLists.txt +++ b/ros/src/sensing/drivers/camera/packages/baumer/CMakeLists.txt @@ -25,32 +25,44 @@ set(BAUMER_LIB_DIR "$ENV{HOME}/Baumer/BaumerGAPI/Components/Bin/Systems/GigE") if(EXISTS "${BAUMER_INC_DIR}") -add_definitions(-D_GNULINUX) + add_definitions(-D_GNULINUX) -include_directories(include - ${catkin_INCLUDE_DIRS} - ${BAUMER_INC_DIR} - nodes/vlg22/src/ - ${OpenCV_INCLUDE_DIRS} -) + include_directories(include + ${catkin_INCLUDE_DIRS} + ${BAUMER_INC_DIR} + nodes/vlg22/src/ + ${OpenCV_INCLUDE_DIRS} + ) -link_directories("${BAUMER_LIB_DIR}") + link_directories("${BAUMER_LIB_DIR}") -add_executable(${PROJECT_NAME}_node - nodes/vlg22/src/vlg22_main.cpp - nodes/vlg22/src/bgapi_init.cpp -) + add_executable(${PROJECT_NAME}_node + nodes/vlg22/src/vlg22_main.cpp + nodes/vlg22/src/bgapi_init.cpp + ) -target_link_libraries(${PROJECT_NAME}_node - bgapi - ${OpenCV_LIBS} - ${catkin_LIBRARIES} -) + target_link_libraries(${PROJECT_NAME}_node + bgapi + ${OpenCV_LIBS} + ${catkin_LIBRARIES} + ) -add_custom_command(TARGET ${PROJECT_NAME}_node POST_BUILD - COMMAND ${CMAKE_COMMAND} -E copy_directory - ${BAUMER_LIB_DIR} $ -) + add_custom_command(TARGET ${PROJECT_NAME}_node POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy_directory + ${BAUMER_LIB_DIR} $ + ) + + + install(TARGETS + ${PROJECT_NAME}_node + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + + install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) else() message("'BGGAPI' is not installed. 'vlg22c_cam' will not be built.") diff --git a/ros/src/sensing/drivers/camera/packages/pointgrey/CMakeLists.txt b/ros/src/sensing/drivers/camera/packages/pointgrey/CMakeLists.txt index 41e691eaade..9141a760f12 100644 --- a/ros/src/sensing/drivers/camera/packages/pointgrey/CMakeLists.txt +++ b/ros/src/sensing/drivers/camera/packages/pointgrey/CMakeLists.txt @@ -3,15 +3,18 @@ cmake_minimum_required(VERSION 2.8.12) project(autoware_pointgrey_drivers) find_package(catkin REQUIRED COMPONENTS - autoware_build_flags - roscpp - std_msgs - message_generation - tf + autoware_build_flags + roscpp + std_msgs + message_generation + tf + sensor_msgs + camera_info_manager + image_transport + cv_bridge ) set(CMAKE_CXX_FLAGS "-O2 -Wall ${CMAKE_CXX_FLAGS}") - find_package(OpenCV REQUIRED) catkin_package() @@ -20,54 +23,107 @@ catkin_package() ## Build ## ########### -if(EXISTS "/usr/include/flycapture") - include_directories( - /usr/include/flycapture - ${catkin_INCLUDE_DIRS} - ${OpenCV_INCLUDE_DIRS} - ${catkin_INCLUDE_DIRS} - ) - add_executable(grasshopper3_camera - nodes/grasshopper3/grasshopper3.cpp - ) +if (EXISTS "/usr/include/flycapture") + include_directories( + /usr/include/flycapture + ${catkin_INCLUDE_DIRS} + ${OpenCV_INCLUDE_DIRS} + ${catkin_INCLUDE_DIRS} + ) + add_executable(grasshopper3_camera + nodes/grasshopper3/grasshopper3.cpp + ) + + target_link_libraries(grasshopper3_camera + ${catkin_LIBRARIES} + ${OpenCV_LIBS} + flycapture + ) + install(TARGETS + grasshopper3_camera + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + install(FILES + scripts/grasshopper3.launch + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + ) + +else () + message("'FlyCapture SDK' is not installed. 'grasshopper3_camera' will not be built.") +endif () + + +if (EXISTS "/usr/include/ladybug") + + if (${CMAKE_VERSION} VERSION_LESS "3.1.3") + include(FindXercesC.cmake) + else () + find_package(XercesC REQUIRED) + endif () + + include_directories( + /usr/include/ladybug + nodes/ladybug + ${catkin_INCLUDE_DIRS} + ${OpenCV_INCLUDE_DIRS} + ${XercesC_INCLUDE_DIRS} + ) + + add_executable(ladybug_camera + nodes/ladybug/ladybug.cpp + ) - target_link_libraries(grasshopper3_camera + target_link_libraries(ladybug_camera ${catkin_LIBRARIES} ${OpenCV_LIBS} + ${XercesC_LIBRARIES} flycapture + ladybug ) + + install(TARGETS + ladybug_camera + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + install(FILES + scripts/ladybug.launch + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + ) else() - message("'FlyCapture SDK' is not installed. 'grasshopper3_camera' will not be built.") + message("'SDK for Ladybug' is not installed. 'ladybug_camera' will not be built.") endif() - -if(EXISTS "/usr/include/ladybug") - - if(${CMAKE_VERSION} VERSION_LESS "3.1.3") - include(FindXercesC.cmake) - else() - find_package(XercesC REQUIRED) - endif() - +if(EXISTS "/usr/include/spinnaker") + include(FindSpinnaker.cmake) include_directories( - /usr/include/ladybug - nodes/ladybug + nodes/spinnaker + ${Spinnaker_INCLUDE_DIRS} ${catkin_INCLUDE_DIRS} ${OpenCV_INCLUDE_DIRS} - ${XercesC_INCLUDE_DIRS} ) - add_executable(ladybug_camera - nodes/ladybug/ladybug.cpp + add_executable(spinnaker_camera + nodes/spinnaker/spinnaker.cpp ) - target_link_libraries(ladybug_camera + target_link_libraries(spinnaker_camera ${catkin_LIBRARIES} ${OpenCV_LIBS} - ${XercesC_LIBRARIES} - flycapture - ladybug + ${Spinnaker_LIBRARIES} ) + install(TARGETS spinnaker_camera + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + install(FILES + scripts/spinnaker.launch + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + ) else() - message("'SDK for Ladybug' is not installed. 'ladybug_camera' will not be built.") + message("'SDK for Spinnaker' is not installed. 'spinnaker_camera' will not be built.") endif() diff --git a/ros/src/sensing/drivers/camera/packages/pointgrey/FindSpinnaker.cmake b/ros/src/sensing/drivers/camera/packages/pointgrey/FindSpinnaker.cmake new file mode 100644 index 00000000000..bb4502b0dc1 --- /dev/null +++ b/ros/src/sensing/drivers/camera/packages/pointgrey/FindSpinnaker.cmake @@ -0,0 +1,20 @@ +unset(Spinnaker_FOUND) +unset(Spinnaker_INCLUDE_DIRS) +unset(Spinnaker_LIBRARIES) + +find_path(Spinnaker_INCLUDE_DIRS NAMES + Spinnaker.h + PATHS + /usr/include/spinnaker/ + /usr/local/include/spinnaker/ +) + +find_library(Spinnaker_LIBRARIES NAMES Spinnaker + PATHS + /usr/lib + /usr/local/lib +) + +if (Spinnaker_INCLUDE_DIRS AND Spinnaker_LIBRARIES) + set(Spinnaker_FOUND 1) +endif (Spinnaker_INCLUDE_DIRS AND Spinnaker_LIBRARIES) \ No newline at end of file diff --git a/ros/src/sensing/drivers/camera/packages/pointgrey/README.md b/ros/src/sensing/drivers/camera/packages/pointgrey/README.md index cf6ac0864f8..5f60e65cad0 100644 --- a/ros/src/sensing/drivers/camera/packages/pointgrey/README.md +++ b/ros/src/sensing/drivers/camera/packages/pointgrey/README.md @@ -4,7 +4,7 @@ This package allows the capture of an image stream from Point Grey cameras. It has been tested successfully with Grasshopper3 and LadyBug5 devices on both Ubuntu 14.04 and 16.04. ## Requirements -* FlyCapture SDK provided by Point Grey. +* FlyCapture SDK or Spinnaker SDK provided by Point Grey. --- @@ -72,3 +72,22 @@ Execute from `Autoware/ros` base path. |`WIDTH`|*integer*|Image width of the stream (Default 640).| |`HEIGHT`|*integer*|Image height of the camera (Default 512).| |`NS`|*string*|Namespace to add as prefix. Default `flir_adk`.| + +## Spinnaker + +### How to launch +* From a sourced terminal:\ +`roslaunch autoware_pointgrey_drivers spinnaker.launch` +* From Runtime manager:\ +Sensing Tab -> Cameras -> PointGrey Spinnaker + +### Parameters available + +|Parameter| Type| Description| +----------|-----|-------- +|`fps`|*integer* |Frame per second (Default 60).| +|`width`|*integer*|Image width of the stream (Default 1440).| +|`height`|*integer*|Image height of the camera (Default 1080).| +|`dltl`|*integer*|DeviceLinkThroughputLimit (Default 100000000).| + + diff --git a/ros/src/sensing/drivers/camera/packages/pointgrey/nodes/spinnaker/spinnaker.cpp b/ros/src/sensing/drivers/camera/packages/pointgrey/nodes/spinnaker/spinnaker.cpp new file mode 100644 index 00000000000..e1190d8ec7b --- /dev/null +++ b/ros/src/sensing/drivers/camera/packages/pointgrey/nodes/spinnaker/spinnaker.cpp @@ -0,0 +1,336 @@ + +/* + * Copyright 2015-2019 Autoware Foundation. All rights reserved. + * + * 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 +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +#include + +#include "SpinGenApi/SpinnakerGenApi.h" +#include "Spinnaker.h" + +using namespace Spinnaker; +using namespace Spinnaker::GenApi; +using namespace Spinnaker::GenICam; +using namespace std; + +#define __APP_NAME__ "autoware_spinnaker" + +class SpinnakerCamera +{ +public: + SpinnakerCamera(); + ~SpinnakerCamera(); + void spin(); + void publish_image(int); + +private: + ros::NodeHandle nh_, private_nh_; + image_transport::ImageTransport* image_transport_; + std::vector image_pubs_; + Spinnaker::SystemPtr system_; + Spinnaker::CameraList camList_; + CameraPtr* pCamList_; + + // config + int width_; + int height_; + double fps_; + int dltl_; + std::string format_; + + Spinnaker::GenApi::INodeMap* node_map_; +}; + +SpinnakerCamera::SpinnakerCamera() + : nh_() + , private_nh_("~") + , system_(Spinnaker::System::GetInstance()) + , camList_(system_->GetCameras()) + , width_(0) + , height_(0) + , fps_(0) + , dltl_(0) +{ + private_nh_.param("width", width_, 1440); + private_nh_.param("height", height_, 1080); + private_nh_.param("fps", fps_, 60.0); + private_nh_.param("dltl", dltl_, 100000000); + unsigned int num_cameras = camList_.GetSize(); + ROS_INFO_STREAM("[" << __APP_NAME__ << "] Number of cameras detected: " << num_cameras); + if (num_cameras < 1) + { + ROS_ERROR("[%s] Error: This program requires at least 1 camera.", __APP_NAME__); + camList_.Clear(); + system_->ReleaseInstance(); + std::exit(-1); + } + image_transport_ = new image_transport::ImageTransport(nh_); + pCamList_ = new CameraPtr[num_cameras]; + + try + { + vector strSerialNumbers(camList_.GetSize()); + for (int i = 0; i < camList_.GetSize(); i++) + { + pCamList_[i] = camList_.GetByIndex(i); + pCamList_[i]->Init(); + node_map_ = &pCamList_[i]->GetNodeMap(); + // config + pCamList_[i]->Width.SetValue(width_); + pCamList_[i]->Height.SetValue(height_); + CEnumerationPtr ptrDeviceType = pCamList_[i]->GetTLDeviceNodeMap().GetNode("DeviceType"); + + if (IsAvailable(ptrDeviceType) && ptrDeviceType->GetCurrentEntry()->GetSymbolic() == "GEV") + { + /////////////////////// DeviceLinkThroughputLimit ///////////////////////////// + CIntegerPtr ptrDeviceLinkThroughputLimit = node_map_->GetNode("DeviceLinkThroughputLimit"); + if (IsAvailable(ptrDeviceLinkThroughputLimit) && IsWritable(ptrDeviceLinkThroughputLimit)) + { + ROS_INFO_STREAM("[" << __APP_NAME__ + << "] DeviceLinkThroughputLimit: " << ptrDeviceLinkThroughputLimit->GetValue()); + ptrDeviceLinkThroughputLimit->SetValue(dltl_); + } + else + { + ROS_WARN("[%s] This camera does not support DeviceLinkThroughputLimit, using default value.", __APP_NAME__); + } + } + + /////////////////////// FrameRate ///////////////////////////// + CFloatPtr ptrAcquisitionFrameRate = node_map_->GetNode("AcquisitionFrameRate"); + CBooleanPtr ptrAcquisitionFrameRateEnable = node_map_->GetNode("AcquisitionFrameRateEnable"); + CEnumerationPtr ptrAcquisitionFrameRateAuto = pCamList_[i]->GetNodeMap().GetNode("AcquisitionFrameRateAuto"); + if (IsAvailable(ptrAcquisitionFrameRateAuto) && IsWritable(ptrAcquisitionFrameRateAuto)) + { + CEnumEntryPtr ptrAcquisitionFrameRateAutoOff = ptrAcquisitionFrameRateAuto->GetEntryByName("Off"); + if (IsAvailable(ptrAcquisitionFrameRateAutoOff) && IsReadable(ptrAcquisitionFrameRateAutoOff)) + { + int64_t FrameRateAutoOff = ptrAcquisitionFrameRateAutoOff->GetValue(); + ptrAcquisitionFrameRateAuto->SetIntValue(FrameRateAutoOff); + ROS_INFO_STREAM("[" << __APP_NAME__ << "] Updated FrameRateAuto to Off"); + } + else + { + ROS_INFO_STREAM("[" << __APP_NAME__ << "] Cannot update FrameRateAuto to Off"); + } + } + if (IsAvailable(ptrAcquisitionFrameRateEnable) && IsWritable(ptrAcquisitionFrameRateEnable)) + { + ptrAcquisitionFrameRateEnable->SetValue(true); + } + if (IsAvailable(ptrAcquisitionFrameRate) && IsWritable(ptrAcquisitionFrameRate)) + { + ptrAcquisitionFrameRate->SetValue(fps_); + ROS_INFO_STREAM("[" << __APP_NAME__ << "] Set FrameRate to " << fps_); + } + else + { + ROS_WARN("[%s] This camera does not support AcquisitionFrameRate, using default value.", __APP_NAME__); + } + + /////////////////////// PixelFormat ///////////////////////////// + CEnumerationPtr ptrPixelFormat = node_map_->GetNode("PixelFormat"); + if (IsAvailable(ptrPixelFormat) && IsWritable(ptrPixelFormat)) + { + ROS_INFO_STREAM("[" << __APP_NAME__ << "] Current pixel Format" + << ptrPixelFormat->GetCurrentEntry()->GetSymbolic()); + /*gcstring pixel_format = format_.c_str(); + + CEnumEntryPtr ptrPixelFormatSetup = ptrPixelFormat->GetEntryByName(pixel_format); + if (IsAvailable(ptrPixelFormatSetup) && IsReadable(ptrPixelFormatSetup)) + { + int64_t pixelFormatSetup = ptrPixelFormatSetup->GetValue(); + ptrPixelFormat->SetIntValue(ptrPixelFormatSetup); + + ROS_INFO_STREAM("[" << __APP_NAME__ << "] Pixel format set to " << + ptrPixelFormat->GetCurrentEntry()->GetSymbolic()); + } + else + { + ROS_WARN("[%s] %s pixel format not available. Using default.", __APP_NAME__, format_.c_str()); + }*/ + } + else + { + ROS_WARN("[%s] Pixel format cannot be changed on this camera. Using default.", __APP_NAME__); + } + + /////////////////////// AcquisitionMode ///////////////////////////// + CEnumerationPtr ptrAcquisitionMode = pCamList_[i]->GetNodeMap().GetNode("AcquisitionMode"); + if (!IsAvailable(ptrAcquisitionMode) || !IsWritable(ptrAcquisitionMode)) + { + ROS_FATAL("[%s] Unable to set acquisition mode to continuous (node retrieval; " + "camera ", + __APP_NAME__); + } + + /////////////////////// ContinuousMode ///////////////////////////// + CEnumEntryPtr ptrAcquisitionModeContinuous = ptrAcquisitionMode->GetEntryByName("Continuous"); + if (!IsAvailable(ptrAcquisitionModeContinuous) || !IsReadable(ptrAcquisitionModeContinuous)) + { + ROS_FATAL("[%s] Unable to set acquisition mode to continuous (entry " + "'continuous' retrieval. Aborting...", + __APP_NAME__); + } + + int64_t acquisitionModeContinuous = ptrAcquisitionModeContinuous->GetValue(); + ptrAcquisitionMode->SetIntValue(acquisitionModeContinuous); + + ROS_INFO("[%s] [camera %d] acquisition mode set to continuous...", __APP_NAME__, i); + + strSerialNumbers[i] = ""; + CStringPtr ptrStringSerial = pCamList_[i]->GetTLDeviceNodeMap().GetNode("DeviceSerialNumber"); + if (IsAvailable(ptrStringSerial) && IsReadable(ptrStringSerial)) + { + strSerialNumbers[i] = ptrStringSerial->GetValue(); + ROS_INFO("[%s] [camera %d] serial number set to %s", __APP_NAME__, i, strSerialNumbers[i].c_str()); + } + std::string topic("image_raw"); + if (camList_.GetSize() > 1) + topic = "camera" + std::to_string(i) + "/" + topic; + image_pubs_.push_back(image_transport_->advertise(topic, 100)); + } + } + catch (Spinnaker::Exception& e) + { + ROS_ERROR("[%s] Error: %s", __APP_NAME__, e.what()); + } +} + +SpinnakerCamera::~SpinnakerCamera() +{ + for (int i = 0; i < camList_.GetSize(); i++) + { + pCamList_[i]->EndAcquisition(); + pCamList_[i]->DeInit(); + pCamList_[i] = NULL; + ROS_INFO("[%s] Shutting down camera %d", __APP_NAME__, i); + } + delete[] pCamList_; + node_map_ = NULL; + camList_.Clear(); + system_->ReleaseInstance(); +} + +void SpinnakerCamera::publish_image(int index) +{ + while (ros::ok()) + { + try + { + ImagePtr pResultImage = pCamList_[index]->GetNextImage(); + if (pResultImage->IsIncomplete()) + { + ROS_WARN("[%s] [camera %d] Image incomplete with image status %d", __APP_NAME__, index, + pResultImage->GetImageStatus()); + } + else + { + ros::Time receive_time = ros::Time::now(); + + // create opencv mat + int pixel_format = pResultImage->GetPixelFormat(); + std::string encoding_pattern; + switch (pixel_format) + { + case PixelFormatEnums::PixelFormat_BayerRG8: + encoding_pattern = "bayer_rggb8"; + break; + case PixelFormatEnums::PixelFormat_BayerGR8: + encoding_pattern = "bayer_grbg8"; + break; + case PixelFormatEnums::PixelFormat_BayerGB8: + encoding_pattern = "bayer_gbrg8"; + break; + case PixelFormatEnums::PixelFormat_BayerBG8: + encoding_pattern = "bayer_bggr8"; + break; + case PixelFormatEnums::PixelFormat_RGB8: + encoding_pattern = "rgb8"; + break; + case PixelFormatEnums::PixelFormat_BGR8: + encoding_pattern = "bgr8"; + break; + default: + encoding_pattern = "mono8"; + } + unsigned int XPadding = pResultImage->GetXPadding(); + unsigned int YPadding = pResultImage->GetYPadding(); + unsigned int rowsize = pResultImage->GetWidth(); + unsigned int colsize = pResultImage->GetHeight(); + + // create and publish ros message + std_msgs::Header header; + sensor_msgs::Image msg; + header.stamp = receive_time; + header.frame_id = (camList_.GetSize() > 1) ? "camera" + std::to_string(index) : "camera"; + + msg.header = header; + msg.height = pResultImage->GetHeight(); + msg.width = pResultImage->GetWidth(); + msg.encoding = encoding_pattern; + msg.step = pResultImage->GetStride(); + + size_t image_size = pResultImage->GetImageSize(); + msg.data.resize(image_size); + memcpy(msg.data.data(), pResultImage->GetData(), image_size); + + image_pubs_[index].publish(msg); + } + pResultImage->Release(); + } + catch (Spinnaker::Exception& e) + { + ROS_ERROR("[%s] Error: %s", __APP_NAME__, e.what()); + } + } +} +void SpinnakerCamera::spin() +{ + for (int i = 0; i < camList_.GetSize(); i++) + { + pCamList_[i]->BeginAcquisition(); + ROS_INFO("[%s] [camera %d] started acquisition", __APP_NAME__, i); + } + vector> threads(camList_.GetSize()); + for (int i = 0; i < camList_.GetSize(); i++) + { + threads[i] = make_shared(&SpinnakerCamera::publish_image, this, i); + } + for (auto& thread : threads) + { + thread->join(); + } +} + +int main(int argc, char** argv) +{ + ros::init(argc, argv, "spinnaker"); + SpinnakerCamera node; + node.spin(); + return 0; +} diff --git a/ros/src/sensing/drivers/camera/packages/pointgrey/package.xml b/ros/src/sensing/drivers/camera/packages/pointgrey/package.xml index b80064b2c7c..2932db90548 100644 --- a/ros/src/sensing/drivers/camera/packages/pointgrey/package.xml +++ b/ros/src/sensing/drivers/camera/packages/pointgrey/package.xml @@ -5,6 +5,8 @@ The autoware_pointgrey_drivers package Masao KONDOH Abraham Monrroy + Daisuke Nishimatsu + Apache 2 catkin autoware_build_flags @@ -14,12 +16,14 @@ message_generation tf cv_bridge + image_transport roscpp std_msgs message_generation tf cv_bridge + image_transport v4l-utils gstreamer0.10-plugins-good diff --git a/ros/src/sensing/drivers/camera/packages/pointgrey/scripts/spinnaker.launch b/ros/src/sensing/drivers/camera/packages/pointgrey/scripts/spinnaker.launch new file mode 100644 index 00000000000..4b2c3566af4 --- /dev/null +++ b/ros/src/sensing/drivers/camera/packages/pointgrey/scripts/spinnaker.launch @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/ros/src/sensing/drivers/camera/packages/vectacam/CMakeLists.txt b/ros/src/sensing/drivers/camera/packages/vectacam/CMakeLists.txt index 933054cecbf..03d96418387 100644 --- a/ros/src/sensing/drivers/camera/packages/vectacam/CMakeLists.txt +++ b/ros/src/sensing/drivers/camera/packages/vectacam/CMakeLists.txt @@ -4,32 +4,49 @@ project(vectacam) find_package(autoware_build_flags REQUIRED) find_package(catkin REQUIRED COMPONENTS - roscpp - std_msgs - message_generation - tf - image_transport - cv_bridge -) + roscpp + std_msgs + message_generation + tf + image_transport + cv_bridge + ) FIND_PACKAGE(OpenCV REQUIRED) -set (CUDA_USE_STATIC_CUDA_RUNTIME OFF) +set(CUDA_USE_STATIC_CUDA_RUNTIME OFF) catkin_package( - LIBRARIES ${PROJECT_NAME} + LIBRARIES ${PROJECT_NAME} ) include_directories( - ${catkin_INCLUDE_DIRS} + ${catkin_INCLUDE_DIRS} ) set(CMAKE_CXX_FLAGS "-O2 -Wall ${CMAKE_CXX_FLAGS}") -add_executable(vectacam_node nodes/vectacam/vectacam_node.cpp nodes/vectacam/VectaCam.cpp) +add_executable(vectacam_node + nodes/vectacam/vectacam_node.cpp + nodes/vectacam/VectaCam.cpp) -link_directories(${catkin_LIBRARY_DIRS} ${Boost_LIBRARY_DIRS} ) +link_directories(${catkin_LIBRARY_DIRS} + ${Boost_LIBRARY_DIRS}) target_link_libraries(vectacam_node - ${BOOST_LIBRARIES} ${OpenCV_LIBS} ${catkin_LIBRARIES} -lpthread -) + ${BOOST_LIBRARIES} + ${OpenCV_LIBS} + ${catkin_LIBRARIES} + -lpthread + ) + +install(TARGETS + vectacam_node + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + +install(DIRECTORY scripts/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/sensing/drivers/camera/packages/vectacam/initialization_params.txt b/ros/src/sensing/drivers/camera/packages/vectacam/scripts/initialization_params.txt similarity index 100% rename from ros/src/sensing/drivers/camera/packages/vectacam/initialization_params.txt rename to ros/src/sensing/drivers/camera/packages/vectacam/scripts/initialization_params.txt diff --git a/ros/src/sensing/drivers/camera/packages/vectacam/scripts/vectacam.launch b/ros/src/sensing/drivers/camera/packages/vectacam/scripts/vectacam.launch index 614bc19bc3e..3a626d72765 100644 --- a/ros/src/sensing/drivers/camera/packages/vectacam/scripts/vectacam.launch +++ b/ros/src/sensing/drivers/camera/packages/vectacam/scripts/vectacam.launch @@ -2,7 +2,7 @@ - + diff --git a/ros/src/sensing/drivers/can/packages/kvaser/CMakeLists.txt b/ros/src/sensing/drivers/can/packages/kvaser/CMakeLists.txt index 3963d0a3a9d..40334a05724 100644 --- a/ros/src/sensing/drivers/can/packages/kvaser/CMakeLists.txt +++ b/ros/src/sensing/drivers/can/packages/kvaser/CMakeLists.txt @@ -25,22 +25,39 @@ include_directories( ) if (EXISTS "/usr/include/canlib.h") - add_executable(can_listener nodes/can_listener/can_listener.cpp) + + add_executable(can_listener + nodes/can_listener/can_listener.cpp + ) target_include_directories(can_listener PRIVATE ${catkin_INCLUDE_DIRS}) + target_link_libraries(can_listener ${catkin_LIBRARIES}) + target_link_libraries(can_listener canlib) + add_dependencies(can_listener ${catkin_EXPORTED_TARGETS}) + install(TARGETS can_listener + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) else () message("'canlib' is not installed. 'can_listener' is not built.") endif () -add_executable(can_converter nodes/can_converter/can_converter.cpp) +add_executable(can_converter + nodes/can_converter/can_converter.cpp) target_include_directories(can_converter PRIVATE ${catkin_INCLUDE_DIRS}) target_link_libraries(can_converter ${catkin_LIBRARIES}) add_dependencies(can_converter ${catkin_EXPORTED_TARGETS}) -add_executable(can_draw nodes/can_draw/can_draw.cpp) +add_executable(can_draw + nodes/can_draw/can_draw.cpp + ) target_include_directories(can_draw PRIVATE ${catkin_INCLUDE_DIRS}) target_link_libraries(can_draw ${catkin_LIBRARIES}) add_dependencies(can_draw ${catkin_EXPORTED_TARGETS}) +install(TARGETS can_converter can_draw + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) diff --git a/ros/src/sensing/drivers/gnss/packages/garmin/CMakeLists.txt b/ros/src/sensing/drivers/gnss/packages/garmin/CMakeLists.txt index e437c45d13e..dcafe4050e3 100644 --- a/ros/src/sensing/drivers/gnss/packages/garmin/CMakeLists.txt +++ b/ros/src/sensing/drivers/gnss/packages/garmin/CMakeLists.txt @@ -25,3 +25,8 @@ include_directories( add_executable(garmin_gps_18x_lvc src/garmin_gps_18x_lvc.cc) target_link_libraries(garmin_gps_18x_lvc ${catkin_LIBRARIES}) + +install(TARGETS garmin_gps_18x_lvc + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) \ No newline at end of file diff --git a/ros/src/sensing/drivers/gnss/packages/javad_navsat_driver/CMakeLists.txt b/ros/src/sensing/drivers/gnss/packages/javad_navsat_driver/CMakeLists.txt index 88deb53b81e..8d31eb6f530 100644 --- a/ros/src/sensing/drivers/gnss/packages/javad_navsat_driver/CMakeLists.txt +++ b/ros/src/sensing/drivers/gnss/packages/javad_navsat_driver/CMakeLists.txt @@ -12,6 +12,12 @@ install(PROGRAMS nodes/javad_topic_serial_reader DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) +install(DIRECTORY cfg/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/cfg + PATTERN ".svn" EXCLUDE) # Check package for pep8 style, add a test to fail on violations. roslint_python() diff --git a/ros/src/sensing/drivers/gnss/packages/nmea_navsat/CMakeLists.txt b/ros/src/sensing/drivers/gnss/packages/nmea_navsat/CMakeLists.txt index 3fc38e321d6..3d6d4133615 100644 --- a/ros/src/sensing/drivers/gnss/packages/nmea_navsat/CMakeLists.txt +++ b/ros/src/sensing/drivers/gnss/packages/nmea_navsat/CMakeLists.txt @@ -19,3 +19,6 @@ catkin_package( #target_link_libraries(javad_tty # ${catkin_LIBRARIES} #) +install(DIRECTORY scripts/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/sensing/drivers/imu/packages/memsic/CMakeLists.txt b/ros/src/sensing/drivers/imu/packages/memsic/CMakeLists.txt index bda0fe6c965..137ef279ac3 100755 --- a/ros/src/sensing/drivers/imu/packages/memsic/CMakeLists.txt +++ b/ros/src/sensing/drivers/imu/packages/memsic/CMakeLists.txt @@ -29,3 +29,12 @@ include_directories( add_executable(vg440_node nodes/vg440/vg440_node.cpp) target_link_libraries(vg440_node ${catkin_LIBRARIES}) + +install(TARGETS vg440_node + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/sensing/drivers/imu/packages/microstrain/CMakeLists.txt b/ros/src/sensing/drivers/imu/packages/microstrain/CMakeLists.txt index 51007bd3ae1..88f9170c340 100644 --- a/ros/src/sensing/drivers/imu/packages/microstrain/CMakeLists.txt +++ b/ros/src/sensing/drivers/imu/packages/microstrain/CMakeLists.txt @@ -83,3 +83,15 @@ add_executable(3dm_gx5_45_node src/3dm_gx5_45_node.cpp) target_link_libraries(microstrain_driver ${catkin_LIBRARIES}) target_link_libraries(3dm_gx5_15_node microstrain_driver ${catkin_LIBRARIES}) target_link_libraries(3dm_gx5_45_node microstrain_driver ${catkin_LIBRARIES}) + +install(TARGETS + microstrain_driver + 3dm_gx5_15_node + 3dm_gx5_45_node + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/sensing/drivers/imu/packages/xsens/src/xsens_driver/CMakeLists.txt b/ros/src/sensing/drivers/imu/packages/xsens/src/xsens_driver/CMakeLists.txt index ef65e4dea4b..fc1a5187e96 100755 --- a/ros/src/sensing/drivers/imu/packages/xsens/src/xsens_driver/CMakeLists.txt +++ b/ros/src/sensing/drivers/imu/packages/xsens/src/xsens_driver/CMakeLists.txt @@ -132,6 +132,10 @@ install(PROGRAMS DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) + ## Mark executables and/or libraries for installation # install(TARGETS test_py test_py_node # ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} diff --git a/ros/src/sensing/drivers/lidar/packages/hokuyo/CMakeLists.txt b/ros/src/sensing/drivers/lidar/packages/hokuyo/CMakeLists.txt index 8fdf8d10d8e..d1d959e3c2a 100644 --- a/ros/src/sensing/drivers/lidar/packages/hokuyo/CMakeLists.txt +++ b/ros/src/sensing/drivers/lidar/packages/hokuyo/CMakeLists.txt @@ -20,3 +20,12 @@ include_directories(${catkin_INCLUDE_DIRS} ${Boost_INCLUDE_DIRS}) add_executable(hokuyo_3d nodes/hokuyo_3d/hokuyo_3d.cpp nodes/hokuyo_3d/vssp.hpp) target_link_libraries(hokuyo_3d ${catkin_LIBRARIES} ${Boost_LIBRARIES}) + +install(TARGETS hokuyo_3d + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + +install(DIRECTORY scripts/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/sensing/drivers/lidar/packages/ouster b/ros/src/sensing/drivers/lidar/packages/ouster index ac1dbaef89b..e21ef1b8b01 160000 --- a/ros/src/sensing/drivers/lidar/packages/ouster +++ b/ros/src/sensing/drivers/lidar/packages/ouster @@ -1 +1 @@ -Subproject commit ac1dbaef89b8e1464642f362af6593f67a42af7b +Subproject commit e21ef1b8b0133dbb17b074a64a434d60e2dcc2b6 diff --git a/ros/src/sensing/drivers/lidar/packages/robosense b/ros/src/sensing/drivers/lidar/packages/robosense index 038e5f65243..4a284cc1ba5 160000 --- a/ros/src/sensing/drivers/lidar/packages/robosense +++ b/ros/src/sensing/drivers/lidar/packages/robosense @@ -1 +1 @@ -Subproject commit 038e5f6524305d0d287805fdc9029872627ac7de +Subproject commit 4a284cc1ba595a7ad0679c2e5978975189a33d51 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/.gitignore b/ros/src/sensing/drivers/lidar/packages/velodyne/.gitignore deleted file mode 100644 index da9cbf726df..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -*.pyc -*.tar.gz -*~ -*.user -doc -TAGS diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/.travis.yml b/ros/src/sensing/drivers/lidar/packages/velodyne/.travis.yml deleted file mode 100644 index 64853876521..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/.travis.yml +++ /dev/null @@ -1,33 +0,0 @@ -sudo: required -dist: trusty -# Force travis to use its minimal image with default Python settings -language: generic -compiler: - - gcc -env: - global: - - CATKIN_WS=~/catkin_ws - - CATKIN_WS_SRC=${CATKIN_WS}/src - matrix: - - CI_ROS_DISTRO="indigo" - - CI_ROS_DISTRO="jade" -install: - - sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu trusty main" > /etc/apt/sources.list.d/ros-latest.list' - - wget http://packages.ros.org/ros.key -O - | sudo apt-key add - - - sudo apt-get update -qq - - sudo apt-get install -qq -y python-rosdep - - sudo rosdep init - - rosdep update - # Use rosdep to install all dependencies (including ROS itself) - - rosdep install --from-paths ./ -i -y --rosdistro $CI_ROS_DISTRO -script: - - source /opt/ros/$CI_ROS_DISTRO/setup.bash - - mkdir -p $CATKIN_WS_SRC - - ln -s $TRAVIS_BUILD_DIR $CATKIN_WS_SRC - - cd $CATKIN_WS - # Build [and Install] packages, build tests, and run tests - - catkin_make_isolated --install --cmake-args -DCMAKE_BUILD_TYPE=Release && - catkin_make_isolated --install --cmake-args -DCMAKE_BUILD_TYPE=Release --catkin-make-args tests && - catkin_make_isolated --install --cmake-args -DCMAKE_BUILD_TYPE=Release --catkin-make-args run_tests - # Check results - - catkin_test_results ./build_isolated diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/COPYING b/ros/src/sensing/drivers/lidar/packages/velodyne/COPYING deleted file mode 100644 index be172875125..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/COPYING +++ /dev/null @@ -1,41 +0,0 @@ - - Copyright (C) 2010-2013 Austin Robot Technology, and others - All rights reserved. - - -All code in this repository is released under the terms of the -following Modified BSD License. - - -Modified BSD License: --------------------- - - 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 names of the University of Texas at Austin, nor - Austin Robot Technology, nor the names of other 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. diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/README.md b/ros/src/sensing/drivers/lidar/packages/velodyne/README.md deleted file mode 100644 index 21e50c61f40..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/README.md +++ /dev/null @@ -1,46 +0,0 @@ -Autoware's Velodyne Driver Subtree -================================== - -This directory is part of a subtree fetched from https://github.com/CPFL/velodyne on the **Autoware** branch, a fork from the original https://github.com/ros-drivers/velodyne - -This repo adds support to HDL-64 S3 and creates the launch files used by Autoware. -If you need to modify **any** file inside this folder structure, please use the following commands to either push or fetch changes from the subtree. -All the commands written here will suppose you're in the root of Autoware path. - -## Pulling in commits from the repository subtree - -Bring latest commits from https://github.com/CPFL/velodyne - -`git subtree pull --prefix ros/src/sensing/drivers/lidar/packages/velodyne https://github.com/CPFL/velodyne Autoware --squash` - -## Pushing changes to the repository subtree - -If you made any modification to the subtree you are encouraged to commit and publish your changes to the fork. You can do with the following command. - -`git subtree push --prefix ros/src/sensing/drivers/lidar/packages/velodyne https://github.com/CPFL/velodyne Autoware` - -**End of Section** - -**Original README from https://github.com/ros-drivers/velodyne** - ---- - -Overview -======== - -Velodyne_ is a collection of ROS_ packages supporting `Velodyne high -definition 3D LIDARs`_ . - -**Warning**:: - - The master branch normally contains code being tested for the next - ROS release. It will not always work with every previous release. - -The current ``master`` branch works with ROS Kinetic, Jade, and -Indigo. It may work with Hydro and Groovy, but that has not been -tested recently. To build for Fuerte from source, check out the -``rosbuild`` branch instead of ``master``. - -.. _ROS: http://www.ros.org -.. _Velodyne: http://www.ros.org/wiki/velodyne -.. _`Velodyne high definition 3D LIDARs`: http://www.velodynelidar.com/lidar/lidar.aspx diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne/CHANGELOG.rst b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne/CHANGELOG.rst deleted file mode 100644 index b1451825250..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne/CHANGELOG.rst +++ /dev/null @@ -1,56 +0,0 @@ -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Changelog for package velodyne -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -1.10.0 (2019-01-17) -------------------- - -1.9.1 (2018-11-06) ------------------- - -1.9.0 (2018-10-31) ------------------- - -1.8.0 (2018-08-31) ------------------- - -1.7.0 (2018-05-18) ------------------- -* update Version from 1.6.3 to 1.7.0 in package.xml and CHANGELOG.rst -* Modify package xml version other than 1.6.3 -* Removed flawed subtree -* Contributors: AMC, Kosuke Murakami - -1.6.3 (2018-03-06) ------------------- - -1.6.2 (2018-02-27) ------------------- -* Update CHANGELOG -* Contributors: Yusuke FUJII - -1.3.0 (2017-11-10) ------------------- -* Merge pull request `#110 `_ from kmhallen/master - Added velodyne_laserscan package -* Added velodyne_laserscan package and inserted into existing launch files -* Contributors: Jack O'Quin, Joshua Whitley, Kevin Hallenbeck - - -1.2.0 (2017-06-07) ------------------- - -1.1.2 (2017-02-27 23:10) ------------------------- - -1.1.1 (2017-02-27 22:25) ------------------------- - -1.1.0 (2017-02-24) ------------------- - -1.0.1 (2017-01-14) ------------------- - -1.0.0 (2016-12-22) ------------------- diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne/CMakeLists.txt b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne/CMakeLists.txt deleted file mode 100644 index 006a3f6beba..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne/CMakeLists.txt +++ /dev/null @@ -1,4 +0,0 @@ -cmake_minimum_required(VERSION 2.8.3) -project(velodyne) -find_package(catkin REQUIRED) -catkin_metapackage() diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne/package.xml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne/package.xml deleted file mode 100644 index d44e18f1ca0..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne/package.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - velodyne - 1.10.0 - - Basic ROS support for the Velodyne 3D LIDARs. - - Josh Whitley - Jack O'Quin - BSD - - http://www.ros.org/wiki/velodyne - https://github.com/ros-drivers/velodyne - https://github.com/ros-drivers/velodyne/issues - - catkin - - velodyne_driver - velodyne_laserscan - velodyne_msgs - velodyne_pointcloud - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/CHANGELOG.rst b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/CHANGELOG.rst deleted file mode 100644 index 2f95f579fa6..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/CHANGELOG.rst +++ /dev/null @@ -1,108 +0,0 @@ -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Changelog for package velodyne_driver -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -1.10.0 (2019-01-17) -------------------- -* Use colcon as the build tool (`#1704 `_) - * Switch to colcon as the build tool instead of catkin - * Added cmake-target - * Added note about the second colcon call - * Added warning about catkin* scripts being deprecated - * Fix COLCON_OPTS - * Added install targets - * Update Docker image tags - * Message packages fixes - * Fix missing dependency -* Contributors: Esteve Fernandez - -1.9.1 (2018-11-06) ------------------- - -1.9.0 (2018-10-31) ------------------- - -1.8.0 (2018-08-31) ------------------- -* [Fix] Extend and Update interface.yaml (`#1291 `_) -* Contributors: Kenji Funaoka - -1.7.0 (2018-05-18) ------------------- -* update Version from 1.6.3 to 1.7.0 in package.xml and CHANGELOG.rst -* [feature] vlc32c driver, velodyne drivers updated (`#1166 `_) - * Squashed 'ros/src/sensing/drivers/lidar/packages/velodyne/' changes from 776a358..1a70413 - 1a70413 Merge branch 'master' into Autoware - 7976d12 support vlp32c now - 273520e Added hdl32c, fixed naming - e21b522 Merge pull request `#146 `_ from stsundermann/patch-2 - 0e5a200 Merge pull request `#150 `_ from ros-drivers/mikaelarguedas-patch-1 - db6b5ee update to use non deprecated pluginlib macro - 560fe12 Use std::abs instead of fabsf - git-subtree-dir: ros/src/sensing/drivers/lidar/packages/velodyne - git-subtree-split: 1a704135c529c5d2995cd2c1972ca4f59d5ae1ad - * Squashed 'ros/src/sensing/drivers/lidar/packages/velodyne/' changes from 1a70413..52c0a0d - 52c0a0d README format - git-subtree-dir: ros/src/sensing/drivers/lidar/packages/velodyne - git-subtree-split: 52c0a0d63594ee71a156755954d240d24966829e - * Squashed 'ros/src/sensing/drivers/lidar/packages/velodyne/' changes from 52c0a0d..a1d6f18 - a1d6f18 Update and rename README.rst to README.md - git-subtree-dir: ros/src/sensing/drivers/lidar/packages/velodyne - git-subtree-split: a1d6f186d3340f3ce5059e234ed7e3dcb828d09d -* Removed flawed subtree -* Contributors: AMC, Abraham Monrroy, Kosuke Murakami - -1.6.3 (2018-03-06) ------------------- - -1.6.2 (2018-02-27) ------------------- -* Update CHANGELOG -* Contributors: Yusuke FUJII - -1.3.0 (2017-11-10) ------------------- -* Merge pull request `#129 `_ from kmhallen/pluginlib_macro - Modern pluginlib macro -* Update to use non deprecated pluginlib macro -* add launch args to support multiple devices (`#108 `_) -* Merge pull request `#101 `_ from teosnare/master - velodyne_driver/src/lib/input.cc : fix for device_ip filter -* Merge pull request `#104 `_ from altrouge/launch_options - Add more options in launch files. -* Rearranged alphabetically. -* Add more options in launch files. - - rpm, device_ip, port, read_once, read_fast, repeat_delay -* velodyne_driver/src/lib/input.cc : fix for device_ip filter - Fix for device_ip filter in InputSocket: initialization of devip\_ for correct ip filtering in InputSocket::getPacket. -* velodyne_driver: credit @priyankadey for VLP-16 bug fix (`#96 `_) -* Merge pull request `#96 `_ from priyankadey/master - updated VLP-16 packet rate from user manual. -* updated VLP-16 packet rate from user manual. - Also verified with sensor. It reduced overlap in the pointcloud -* update change history -* Merge pull request `#94 `_ from ros-drivers/pcap_port - velodyne_driver: use port number for PCAP data (`#46 `_, `#66 `_) -* fix g++ 5.3.1 compile errors (`#94 `_) -* merge current master (`#94 `_) -* Merge pull request `#91 `_ from chukcha2/master - update velodyne_driver package description to include all models -* update velodyne_driver package description to include all models -* Merge pull request `#89 `_ from Tones29/feat_dynrec_driver - Add dynamic latency configuration to velodyne_driver -* velodyne_driver: Add dynamic_reconfigure and time_offset correction - The value of time_offset is added to the calculated time stamp in live mode for each packet. -* velodyne_driver: Make input destructors virtual -* prepare change history for coming Indigo release (`#59 `_) -* velodyne_driver: use port number for PCAP data (`#66 `_) -* Merge pull request `#39 `_ from zooxco/multivelodyne - support for multiple velodynes -* Merge pull request `#44 `_ from SISegwayRmp/master - adding driver and pointcloud support for the VLP16 -* adding the VLP16 test scripts and updating the CMakeLists to include the test file from http://download.ros.org/data/velodyne/vlp16.pcap -* adding support for the VLP16 -* parameters to set the udp port -* fixed missing header -* cleanup debug line -* parameter and code added for working with multiple velodynes -* Contributors: Andreas Wachaja, Brice Rebsamen, Daniel Jartoux, Denis Dillenberger, Gabor Meszaros, Ilya, Jack O'Quin, Joshua Whitley, Kevin Hallenbeck, Matteo Murtas, Micho Radovnikovich, Priyanka Dey, William Woodall, jack.oquin, junior, phussey diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/CMakeLists.txt b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/CMakeLists.txt deleted file mode 100644 index d8be7374f72..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/CMakeLists.txt +++ /dev/null @@ -1,80 +0,0 @@ -cmake_minimum_required(VERSION 2.8.3) -project(velodyne_driver) - -set(${PROJECT_NAME}_CATKIN_DEPS - diagnostic_updater - dynamic_reconfigure - nodelet - roscpp - tf - velodyne_msgs) - - -find_package(velodyne_msgs REQUIRED) -find_package(catkin REQUIRED COMPONENTS ${${PROJECT_NAME}_CATKIN_DEPS}) - -# This driver uses Boost threads -find_package(Boost REQUIRED COMPONENTS thread) - -# libpcap provides no pkg-config or find_package module: -set(libpcap_LIBRARIES -lpcap) - -include_directories(include ${Boost_INCLUDE_DIR} ${catkin_INCLUDE_DIRS}) - -# Generate dynamic_reconfigure server -generate_dynamic_reconfigure_options(cfg/VelodyneNode.cfg) - -# objects needed by other ROS packages that depend on this one -catkin_package(CATKIN_DEPENDS ${${PROJECT_NAME}_CATKIN_DEPS} - INCLUDE_DIRS include - LIBRARIES velodyne_input) - -# compile the driver and input library -add_subdirectory(src/lib) -add_subdirectory(src/driver) - -install(DIRECTORY include/${PROJECT_NAME}/ - DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}) -install(FILES nodelet_velodyne.xml - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) -install(DIRECTORY launch/ - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch) -install(PROGRAMS src/vdump - DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) - -if (CATKIN_ENABLE_TESTING) - - # these dependencies are only needed for unit testing - find_package(roslaunch REQUIRED) - find_package(rostest REQUIRED) - - # Download packet capture (PCAP) files containing test data. - # Store them in devel-space, so rostest can easily find them. - catkin_download_test_data( - ${PROJECT_NAME}_tests_class.pcap - http://download.ros.org/data/velodyne/class.pcap - DESTINATION ${CATKIN_DEVEL_PREFIX}/${CATKIN_PACKAGE_SHARE_DESTINATION}/tests - MD5 65808d25772101358a3719b451b3d015) - catkin_download_test_data( - ${PROJECT_NAME}_tests_32e.pcap - http://download.ros.org/data/velodyne/32e.pcap - DESTINATION ${CATKIN_DEVEL_PREFIX}/${CATKIN_PACKAGE_SHARE_DESTINATION}/tests - MD5 e41d02aac34f0967c03a5597e1d554a9) - catkin_download_test_data( - ${PROJECT_NAME}_tests_vlp16.pcap - http://download.ros.org/data/velodyne/vlp16.pcap - DESTINATION ${CATKIN_DEVEL_PREFIX}/${CATKIN_PACKAGE_SHARE_DESTINATION}/tests - MD5 f45c2bb1d7ee358274e423ea3b66fd73) - - # unit tests - add_rostest(tests/pcap_node_hertz.test) - add_rostest(tests/pcap_nodelet_hertz.test) - add_rostest(tests/pcap_32e_node_hertz.test) - add_rostest(tests/pcap_32e_nodelet_hertz.test) - add_rostest(tests/pcap_vlp16_node_hertz.test) - add_rostest(tests/pcap_vlp16_nodelet_hertz.test) - - # parse check all the launch/*.launch files - roslaunch_add_file_check(launch) - -endif (CATKIN_ENABLE_TESTING) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/cfg/VelodyneNode.cfg b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/cfg/VelodyneNode.cfg deleted file mode 100755 index 16196722ab9..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/cfg/VelodyneNode.cfg +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env python -PACKAGE = "velodyne_driver" -NODE_NAME = "velodyne_node" -PARAMS_NAME = "VelodyneNode" - -from math import pi -from dynamic_reconfigure.parameter_generator_catkin import * - -gen = ParameterGenerator() - -gen.add("time_offset", double_t, 0, "A manually calibrated offset (in seconds) to add to the timestamp before publication of a message.", - 0.0, -1.0, 1.0) - -exit(gen.generate(PACKAGE, NODE_NAME, PARAMS_NAME)) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/include/velodyne_driver/input.h b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/include/velodyne_driver/input.h deleted file mode 100644 index 1cf55fd9fe6..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/include/velodyne_driver/input.h +++ /dev/null @@ -1,126 +0,0 @@ -/* -*- mode: C++ -*- - * - * Copyright (C) 2007 Austin Robot Technology, Yaxin Liu, Patrick Beeson - * Copyright (C) 2009, 2010 Austin Robot Technology, Jack O'Quin - * Copyright (C) 2015, Jack O'Quin - * - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** @file - * - * Velodyne 3D LIDAR data input classes - * - * These classes provide raw Velodyne LIDAR input packets from - * either a live socket interface or a previously-saved PCAP dump - * file. - * - * Classes: - * - * velodyne::Input -- base class for accessing the data - * independently of its source - * - * velodyne::InputSocket -- derived class reads live data from the - * device via a UDP socket - * - * velodyne::InputPCAP -- derived class provides a similar interface - * from a PCAP dump file - */ - -#ifndef __VELODYNE_INPUT_H -#define __VELODYNE_INPUT_H - -#include -#include -#include -#include - -#include -#include - -namespace velodyne_driver -{ - static uint16_t DATA_PORT_NUMBER = 2368; // default data port - static uint16_t POSITION_PORT_NUMBER = 8308; // default position port - - /** @brief Velodyne input base class */ - class Input - { - public: - Input(ros::NodeHandle private_nh, uint16_t port); - virtual ~Input() {} - - /** @brief Read one Velodyne packet. - * - * @param pkt points to VelodynePacket message - * - * @returns 0 if successful, - * -1 if end of file - * > 0 if incomplete packet (is this possible?) - */ - virtual int getPacket(velodyne_msgs::VelodynePacket *pkt, - const double time_offset) = 0; - - protected: - ros::NodeHandle private_nh_; - uint16_t port_; - std::string devip_str_; - }; - - /** @brief Live Velodyne input from socket. */ - class InputSocket: public Input - { - public: - InputSocket(ros::NodeHandle private_nh, - uint16_t port = DATA_PORT_NUMBER); - virtual ~InputSocket(); - - virtual int getPacket(velodyne_msgs::VelodynePacket *pkt, - const double time_offset); - void setDeviceIP( const std::string& ip ); - private: - - private: - int sockfd_; - in_addr devip_; - }; - - - /** @brief Velodyne input from PCAP dump file. - * - * Dump files can be grabbed by libpcap, Velodyne's DSR software, - * ethereal, wireshark, tcpdump, or the \ref vdump_command. - */ - class InputPCAP: public Input - { - public: - InputPCAP(ros::NodeHandle private_nh, - uint16_t port = DATA_PORT_NUMBER, - double packet_rate = 0.0, - std::string filename="", - bool read_once=false, - bool read_fast=false, - double repeat_delay=0.0); - virtual ~InputPCAP(); - - virtual int getPacket(velodyne_msgs::VelodynePacket *pkt, - const double time_offset); - void setDeviceIP( const std::string& ip ); - - private: - ros::Rate packet_rate_; - std::string filename_; - pcap_t *pcap_; - bpf_program pcap_packet_filter_; - char errbuf_[PCAP_ERRBUF_SIZE]; - bool empty_; - bool read_once_; - bool read_fast_; - double repeat_delay_; - }; - -} // velodyne_driver namespace - -#endif // __VELODYNE_INPUT_H diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/include/velodyne_driver/ring_sequence.h b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/include/velodyne_driver/ring_sequence.h deleted file mode 100644 index fb5d10722f9..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/include/velodyne_driver/ring_sequence.h +++ /dev/null @@ -1,54 +0,0 @@ -/* -*- mode: C++ -*- - * - * Copyright (C) 2010 Austin Robot Technology, Jack O'Quin - * - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** \file - * - * Velodyne HDL-64E 3D LIDAR laser ring sequence. - * - * \author Jack O'Quin - */ - - -#ifndef __VELODYNE_RING_SEQUENCE_H -#define __VELODYNE_RING_SEQUENCE_H - -namespace velodyne -{ - /// number of lasers - const int N_LASERS = 64; - - /// ring sequence for device laser numbers - const int LASER_SEQUENCE[N_LASERS] = - { - 6, 7, 10, 11, 0, 1, 4, 5, - 8, 9, 14, 15, 18, 19, 22, 23, - 12, 13, 16, 17, 20, 21, 26, 27, - 30, 31, 2, 3, 24, 25, 28, 29, - 38, 39, 42, 43, 32, 33, 36, 37, - 40, 41, 46, 47, 50, 51, 54, 55, - 44, 45, 48, 49, 52, 53, 58, 59, - 62, 63, 34, 35, 56, 57, 60, 61 - }; - - /// convert laser number to ring sequence (inverse of LASER_SEQUENCE) - const int LASER_RING[N_LASERS] = - { - 4, 5, 26, 27, 6, 7, 0, 1, - 8, 9, 2, 3, 16, 17, 10, 11, - 18, 19, 12, 13, 20, 21, 14, 15, - 28, 29, 22, 23, 30, 31, 24, 25, - 36, 37, 58, 59, 38, 39, 32, 33, - 40, 41, 34, 35, 48, 49, 42, 43, - 50, 51, 44, 45, 52, 53, 46, 47, - 60, 61, 54, 55, 62, 63, 56, 57 - }; - -} // velodyne namespace - -#endif // __VELODYNE_RING_SEQUENCE_H diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/interface.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/interface.yaml deleted file mode 100644 index 3162d42a03f..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/interface.yaml +++ /dev/null @@ -1,2 +0,0 @@ -- name: /velodyne_node - publish: [/velodyne_packets] diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/launch/nodelet_manager.launch b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/launch/nodelet_manager.launch deleted file mode 100644 index 44eb60c4aec..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/launch/nodelet_manager.launch +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/mainpage.dox b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/mainpage.dox deleted file mode 100644 index 63112536059..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/mainpage.dox +++ /dev/null @@ -1,77 +0,0 @@ -/** -\mainpage - -\htmlinclude manifest.html - -ROS device driver for Velodyne 3D LIDARs. - -\section read Velodyne device driver - -ROS device driver node that captures Velodyne 3D LIDAR data and -publishes it to the \b velodyne_msgs/VelodyneScan topic. - -\subsection read_examples Examples - -Read the Velodyne input socket as fast as possible. Publish each -complete revolution to \b velodyne/rawscan. - -\verbatim -$ rosrun velodyne_driver velodyne_node -\endverbatim - -Read previously captured Velodyne packets from dump.pcap file. -Publish messages to \b velodyne/rawscan at approximately 10 Hz rate. - -Dump files can be grabbed by libpcap, Velodyne's DSR software, -ethereal, wireshark, tcpdump, or the velodyne_driver vdump command. - -\verbatim -$ rosrun velodyne_driver velodyne_node _pcap:=dump.pcap -\endverbatim - -\subsection read_names ROS names - -Node name: \b velodyne_node - -Publishes: \b velodyne_packets raw Velodyne data packets for one -entire revolution of the device. - -Parameters: - - - \b ~pcap (string): PCAP dump input file name (default: use real device) - - \b ~input/read_once (bool): if true, read input file only once - (default false). - - \b ~input/read_fast (bool): if true, read input file as fast as - possible (default false). - - \b ~input/repeat_delay (double): number of seconds to delay before - repeating input file (default: 0.0). - -\section vdump_command Vdump Command - -The vdump command dumps raw data from the Velodyne LIDAR in PCAP -format. It is a shell script wrapper with some obscure options for -the powerful tcpdump command. - -Other methods of acquiring PCAP data include using tcpdump directly, -wireshark, Velodyne's DSR software, and programming with libpcap. - -\subsection vdump_usage Usage - -\verbatim - rosrun velodyne_driver vdump [ ] - - file name to dump (with 3-digit number suffix) - interface to read from (default: "eth1") -\endverbatim - -\subsection vdump_examples Examples - -Dump Velodyne packets to a series of files named "pcap-000", -"pcap-001", etc. Each file will be about 100MB, holding a little more -than 30 seconds of Velodyne packets. Type ^C when finished. - -\verbatim -$ rosrun velodyne_driver vdump pcap- eth0 -\endverbatim - -*/ diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/nodelet_velodyne.xml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/nodelet_velodyne.xml deleted file mode 100644 index 7c08922e095..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/nodelet_velodyne.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Publish raw Velodyne data packets. - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/package.xml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/package.xml deleted file mode 100644 index 3b71be21f83..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/package.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - velodyne_driver - 1.10.0 - - ROS device driver for Velodyne 3D LIDARs. - - Josh Whitley - Brice Rebsamen - Jack O'Quin - Patrick Beeson - Michael Quinlan - Yaxin Liu - BSD - - http://www.ros.org/wiki/velodyne_driver - https://github.com/ros-drivers/velodyne - https://github.com/ros-drivers/velodyne/issues - - catkin - - diagnostic_updater - dynamic_reconfigure - libpcap - nodelet - pluginlib - roscpp - tf - velodyne_msgs - - - roslaunch - rostest - - diagnostic_updater - dynamic_reconfigure - libpcap - nodelet - pluginlib - roscpp - tf - velodyne_msgs - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/CMakeLists.txt b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/CMakeLists.txt deleted file mode 100644 index 8d4179d7cb0..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -# build the driver node -add_executable(velodyne_node velodyne_node.cc driver.cc) -add_dependencies(velodyne_node velodyne_driver_gencfg) -target_link_libraries(velodyne_node - velodyne_input - ${catkin_LIBRARIES} - ${libpcap_LIBRARIES} -) - -# build the nodelet version -add_library(driver_nodelet nodelet.cc driver.cc) -add_dependencies(driver_nodelet velodyne_driver_gencfg) -target_link_libraries(driver_nodelet - velodyne_input - ${catkin_LIBRARIES} - ${libpcap_LIBRARIES} -) - -# install runtime files -install(TARGETS velodyne_node - RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} - COMPONENT main -) -install(TARGETS driver_nodelet - LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} -) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/driver.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/driver.cc deleted file mode 100644 index e35ccdeb350..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/driver.cc +++ /dev/null @@ -1,236 +0,0 @@ -/* - * Copyright (C) 2007 Austin Robot Technology, Patrick Beeson - * Copyright (C) 2009-2012 Austin Robot Technology, Jack O'Quin - * - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** \file - * - * ROS driver implementation for the Velodyne 3D LIDARs - */ - -#include -#include - -#include -#include -#include - -#include "driver.h" - -namespace velodyne_driver -{ - -VelodyneDriver::VelodyneDriver(ros::NodeHandle node, - ros::NodeHandle private_nh) -{ - // use private node handle to get parameters - private_nh.param("frame_id", config_.frame_id, std::string("velodyne")); - std::string tf_prefix = tf::getPrefixParam(private_nh); - ROS_DEBUG_STREAM("tf_prefix: " << tf_prefix); - config_.frame_id = tf::resolve(tf_prefix, config_.frame_id); - - // get model name, validate string, determine packet rate - private_nh.param("model", config_.model, std::string("64E")); - double packet_rate; // packet frequency (Hz) - std::string model_full_name; - if ((config_.model == "64E_S2") || - (config_.model == "64E_S2.1")) // generates 1333312 points per second - { // 1 packet holds 384 points - packet_rate = 3472.17; // 1333312 / 384 - model_full_name = std::string("HDL-") + config_.model; - } - else if (config_.model == "64E_S3") - { - packet_rate = 5800.0; // experimental - model_full_name = std::string("HDL-") + config_.model; - } - else if (config_.model == "64E") - { - packet_rate = 2600.0; - model_full_name = std::string("HDL-") + config_.model; - } - else if (config_.model == "32E") - { - packet_rate = 1808.0; - model_full_name = std::string("HDL-") + config_.model; - } - else if (config_.model == "32C") - { - packet_rate = 1507.0; - model_full_name = std::string("VLP-") + config_.model; - } - else if (config_.model == "VLP16") - { - packet_rate = 754; // 754 Packets/Second for Last or Strongest mode 1508 for dual (VLP-16 User Manual) - model_full_name = "VLP-16"; - } - else - { - ROS_ERROR_STREAM("unknown Velodyne LIDAR model: " << config_.model); - packet_rate = 2600.0; - } - std::string deviceName(std::string("Velodyne ") + model_full_name); - - private_nh.param("rpm", config_.rpm, 600.0); - ROS_INFO_STREAM(deviceName << " rotating at " << config_.rpm << " RPM"); - double frequency = (config_.rpm / 60.0); // expected Hz rate - - // default number of packets for each scan is a single revolution - // (fractions rounded up) - config_.npackets = (int) ceil(packet_rate / frequency); - private_nh.getParam("npackets", config_.npackets); - ROS_INFO_STREAM("publishing " << config_.npackets << " packets per scan"); - - std::string dump_file; - private_nh.param("pcap", dump_file, std::string("")); - - double cut_angle; - private_nh.param("cut_angle", cut_angle, -0.01); - if (cut_angle < 0.0) - { - ROS_INFO_STREAM("Cut at specific angle feature deactivated."); - } - else if (cut_angle < (2*M_PI)) - { - ROS_INFO_STREAM("Cut at specific angle feature activated. " - "Cutting velodyne points always at " << cut_angle << " rad."); - } - else - { - ROS_ERROR_STREAM("cut_angle parameter is out of range. Allowed range is " - << "between 0.0 and 2*PI or negative values to deactivate this feature."); - cut_angle = -0.01; - } - - // Convert cut_angle from radian to one-hundredth degree, - // which is used in velodyne packets - config_.cut_angle = int((cut_angle*360/(2*M_PI))*100); - - int udp_port; - private_nh.param("port", udp_port, (int) DATA_PORT_NUMBER); - - // Initialize dynamic reconfigure - srv_ = boost::make_shared > (private_nh); - dynamic_reconfigure::Server:: - CallbackType f; - f = boost::bind (&VelodyneDriver::callback, this, _1, _2); - srv_->setCallback (f); // Set callback function und call initially - - // initialize diagnostics - diagnostics_.setHardwareID(deviceName); - const double diag_freq = packet_rate/config_.npackets; - diag_max_freq_ = diag_freq; - diag_min_freq_ = diag_freq; - ROS_INFO("expected frequency: %.3f (Hz)", diag_freq); - - using namespace diagnostic_updater; - diag_topic_.reset(new TopicDiagnostic("velodyne_packets", diagnostics_, - FrequencyStatusParam(&diag_min_freq_, - &diag_max_freq_, - 0.1, 10), - TimeStampStatusParam())); - - // open Velodyne input device or file - if (dump_file != "") // have PCAP file? - { - // read data from packet capture file - input_.reset(new velodyne_driver::InputPCAP(private_nh, udp_port, - packet_rate, dump_file)); - } - else - { - // read data from live socket - input_.reset(new velodyne_driver::InputSocket(private_nh, udp_port)); - } - - // raw packet output topic - output_ = - node.advertise("velodyne_packets", 10); -} - -/** poll the device - * - * @returns true unless end of file reached - */ -bool VelodyneDriver::poll(void) -{ - // Allocate a new shared pointer for zero-copy sharing with other nodelets. - velodyne_msgs::VelodyneScanPtr scan(new velodyne_msgs::VelodyneScan); - - if( config_.cut_angle >= 0) //Cut at specific angle feature enabled - { - scan->packets.reserve(config_.npackets); - velodyne_msgs::VelodynePacket tmp_packet; - while(true) - { - while(true) - { - int rc = input_->getPacket(&tmp_packet, config_.time_offset); - if (rc == 0) break; // got a full packet? - if (rc < 0) return false; // end of file reached? - } - scan->packets.push_back(tmp_packet); - - static int last_azimuth = -1; - // Extract base rotation of first block in packet - std::size_t azimuth_data_pos = 100*0+2; - int azimuth = *( (u_int16_t*) (&tmp_packet.data[azimuth_data_pos])); - - // Handle overflow 35999->0 - if(azimuth= config_.cut_angle ) - { - last_azimuth = azimuth; - break; // Cut angle passed, one full revolution collected - } - last_azimuth = azimuth; - } - } - else // standard behaviour - { - // Since the velodyne delivers data at a very high rate, keep - // reading and publishing scans as fast as possible. - scan->packets.resize(config_.npackets); - for (int i = 0; i < config_.npackets; ++i) - { - while (true) - { - // keep reading until full packet received - int rc = input_->getPacket(&scan->packets[i], config_.time_offset); - if (rc == 0) break; // got a full packet? - if (rc < 0) return false; // end of file reached? - } - } - } - - // publish message using time of last packet read - ROS_DEBUG("Publishing a full Velodyne scan."); - scan->header.stamp = scan->packets.back().stamp; - scan->header.frame_id = config_.frame_id; - output_.publish(scan); - - // notify diagnostics that a message has been published, updating - // its status - diag_topic_->tick(scan->header.stamp); - diagnostics_.update(); - - return true; -} - -void VelodyneDriver::callback(velodyne_driver::VelodyneNodeConfig &config, - uint32_t level) -{ - ROS_INFO("Reconfigure Request"); - config_.time_offset = config.time_offset; -} - -} // namespace velodyne_driver diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/driver.h b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/driver.h deleted file mode 100644 index 68b58e1805d..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/driver.h +++ /dev/null @@ -1,73 +0,0 @@ -/* -*- mode: C++ -*- */ -/* - * Copyright (C) 2012 Austin Robot Technology, Jack O'Quin - * - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** \file - * - * ROS driver interface for the Velodyne 3D LIDARs - */ - -#ifndef _VELODYNE_DRIVER_H_ -#define _VELODYNE_DRIVER_H_ 1 - -#include -#include -#include -#include -#include - -#include -#include - -namespace velodyne_driver -{ - -class VelodyneDriver -{ -public: - - VelodyneDriver(ros::NodeHandle node, - ros::NodeHandle private_nh); - ~VelodyneDriver() {} - - bool poll(void); - -private: - - ///Callback for dynamic reconfigure - void callback(velodyne_driver::VelodyneNodeConfig &config, - uint32_t level); - - ///Pointer to dynamic reconfigure service srv_ - boost::shared_ptr > srv_; - - // configuration parameters - struct - { - std::string frame_id; ///< tf frame ID - std::string model; ///< device model name - int npackets; ///< number of packets to collect - double rpm; ///< device rotation rate (RPMs) - int cut_angle; ///< cutting angle in 1/100° - double time_offset; ///< time in seconds added to each velodyne time stamp - } config_; - - boost::shared_ptr input_; - ros::Publisher output_; - - /** diagnostics updater */ - diagnostic_updater::Updater diagnostics_; - double diag_min_freq_; - double diag_max_freq_; - boost::shared_ptr diag_topic_; -}; - -} // namespace velodyne_driver - -#endif // _VELODYNE_DRIVER_H_ diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/nodelet.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/nodelet.cc deleted file mode 100644 index f2dfca2b152..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/nodelet.cc +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Copyright (C) 2012 Austin Robot Technology, Jack O'Quin - * - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** \file - * - * ROS driver nodelet for the Velodyne 3D LIDARs - */ - -#include -#include - -#include -#include -#include - -#include "driver.h" - -namespace velodyne_driver -{ - -class DriverNodelet: public nodelet::Nodelet -{ -public: - - DriverNodelet(): - running_(false) - {} - - ~DriverNodelet() - { - if (running_) - { - NODELET_INFO("shutting down driver thread"); - running_ = false; - deviceThread_->join(); - NODELET_INFO("driver thread stopped"); - } - } - -private: - - virtual void onInit(void); - virtual void devicePoll(void); - - volatile bool running_; ///< device thread is running - boost::shared_ptr deviceThread_; - - boost::shared_ptr dvr_; ///< driver implementation class -}; - -void DriverNodelet::onInit() -{ - // start the driver - dvr_.reset(new VelodyneDriver(getNodeHandle(), getPrivateNodeHandle())); - - // spawn device poll thread - running_ = true; - deviceThread_ = boost::shared_ptr< boost::thread > - (new boost::thread(boost::bind(&DriverNodelet::devicePoll, this))); -} - -/** @brief Device poll thread main loop. */ -void DriverNodelet::devicePoll() -{ - while(ros::ok()) - { - // poll device until end of file - running_ = dvr_->poll(); - if (!running_) - break; - } - running_ = false; -} - -} // namespace velodyne_driver - -// Register this plugin with pluginlib. Names must match nodelet_velodyne.xml. -// -// parameters are: class type, base class type -PLUGINLIB_EXPORT_CLASS(velodyne_driver::DriverNodelet, nodelet::Nodelet) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/velodyne_node.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/velodyne_node.cc deleted file mode 100644 index 90f0a025ec1..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/driver/velodyne_node.cc +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (C) 2012 Austin Robot Technology, Jack O'Quin - * - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** \file - * - * ROS driver node for the Velodyne 3D LIDARs. - */ - -#include -#include "driver.h" - -int main(int argc, char** argv) -{ - ros::init(argc, argv, "velodyne_node"); - ros::NodeHandle node; - ros::NodeHandle private_nh("~"); - - // start the driver - velodyne_driver::VelodyneDriver dvr(node, private_nh); - - // loop until shut down or end of file - while(ros::ok() && dvr.poll()) - { - ros::spinOnce(); - } - - return 0; -} diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/lib/CMakeLists.txt b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/lib/CMakeLists.txt deleted file mode 100644 index 29b9d22af09..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/lib/CMakeLists.txt +++ /dev/null @@ -1,12 +0,0 @@ -add_library(velodyne_input input.cc) -target_link_libraries(velodyne_input - ${catkin_LIBRARIES} - ${libpcap_LIBRARIES} -) -if(catkin_EXPORTED_TARGETS) - add_dependencies(velodyne_input ${catkin_EXPORTED_TARGETS}) -endif() - -install(TARGETS velodyne_input - LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} -) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/lib/input.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/lib/input.cc deleted file mode 100644 index 382b0bafe8f..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/lib/input.cc +++ /dev/null @@ -1,327 +0,0 @@ -/* - * Copyright (C) 2007 Austin Robot Technology, Patrick Beeson - * Copyright (C) 2009, 2010 Austin Robot Technology, Jack O'Quin - * Copyright (C) 2015, Jack O'Quin - * - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** \file - * - * Input classes for the Velodyne HDL-64E 3D LIDAR: - * - * Input -- base class used to access the data independently of - * its source - * - * InputSocket -- derived class reads live data from the device - * via a UDP socket - * - * InputPCAP -- derived class provides a similar interface from a - * PCAP dump - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace velodyne_driver -{ - static const size_t packet_size = - sizeof(velodyne_msgs::VelodynePacket().data); - - //////////////////////////////////////////////////////////////////////// - // Input base class implementation - //////////////////////////////////////////////////////////////////////// - - /** @brief constructor - * - * @param private_nh ROS private handle for calling node. - * @param port UDP port number. - */ - Input::Input(ros::NodeHandle private_nh, uint16_t port): - private_nh_(private_nh), - port_(port) - { - private_nh.param("device_ip", devip_str_, std::string("")); - if (!devip_str_.empty()) - ROS_INFO_STREAM("Only accepting packets from IP address: " - << devip_str_); - } - - //////////////////////////////////////////////////////////////////////// - // InputSocket class implementation - //////////////////////////////////////////////////////////////////////// - - /** @brief constructor - * - * @param private_nh ROS private handle for calling node. - * @param port UDP port number - */ - InputSocket::InputSocket(ros::NodeHandle private_nh, uint16_t port): - Input(private_nh, port) - { - sockfd_ = -1; - - if (!devip_str_.empty()) { - inet_aton(devip_str_.c_str(),&devip_); - } - - // connect to Velodyne UDP port - ROS_INFO_STREAM("Opening UDP socket: port " << port); - sockfd_ = socket(PF_INET, SOCK_DGRAM, 0); - if (sockfd_ == -1) - { - perror("socket"); // TODO: ROS_ERROR errno - return; - } - - sockaddr_in my_addr; // my address information - memset(&my_addr, 0, sizeof(my_addr)); // initialize to zeros - my_addr.sin_family = AF_INET; // host byte order - my_addr.sin_port = htons(port); // port in network byte order - my_addr.sin_addr.s_addr = INADDR_ANY; // automatically fill in my IP - - if (bind(sockfd_, (sockaddr *)&my_addr, sizeof(sockaddr)) == -1) - { - perror("bind"); // TODO: ROS_ERROR errno - return; - } - - if (fcntl(sockfd_,F_SETFL, O_NONBLOCK|FASYNC) < 0) - { - perror("non-block"); - return; - } - - ROS_DEBUG("Velodyne socket fd is %d\n", sockfd_); - } - - /** @brief destructor */ - InputSocket::~InputSocket(void) - { - (void) close(sockfd_); - } - - /** @brief Get one velodyne packet. */ - int InputSocket::getPacket(velodyne_msgs::VelodynePacket *pkt, const double time_offset) - { - double time1 = ros::Time::now().toSec(); - - struct pollfd fds[1]; - fds[0].fd = sockfd_; - fds[0].events = POLLIN; - static const int POLL_TIMEOUT = 1000; // one second (in msec) - - sockaddr_in sender_address; - socklen_t sender_address_len = sizeof(sender_address); - - while (true) - { - // Unfortunately, the Linux kernel recvfrom() implementation - // uses a non-interruptible sleep() when waiting for data, - // which would cause this method to hang if the device is not - // providing data. We poll() the device first to make sure - // the recvfrom() will not block. - // - // Note, however, that there is a known Linux kernel bug: - // - // Under Linux, select() may report a socket file descriptor - // as "ready for reading", while nevertheless a subsequent - // read blocks. This could for example happen when data has - // arrived but upon examination has wrong checksum and is - // discarded. There may be other circumstances in which a - // file descriptor is spuriously reported as ready. Thus it - // may be safer to use O_NONBLOCK on sockets that should not - // block. - - // poll() until input available - do - { - int retval = poll(fds, 1, POLL_TIMEOUT); - if (retval < 0) // poll() error? - { - if (errno != EINTR) - ROS_ERROR("poll() error: %s", strerror(errno)); - return 1; - } - if (retval == 0) // poll() timeout? - { - ROS_WARN("Velodyne poll() timeout"); - return 1; - } - if ((fds[0].revents & POLLERR) - || (fds[0].revents & POLLHUP) - || (fds[0].revents & POLLNVAL)) // device error? - { - ROS_ERROR("poll() reports Velodyne error"); - return 1; - } - } while ((fds[0].revents & POLLIN) == 0); - - // Receive packets that should now be available from the - // socket using a blocking read. - ssize_t nbytes = recvfrom(sockfd_, &pkt->data[0], - packet_size, 0, - (sockaddr*) &sender_address, - &sender_address_len); - - if (nbytes < 0) - { - if (errno != EWOULDBLOCK) - { - perror("recvfail"); - ROS_INFO("recvfail"); - return 1; - } - } - else if ((size_t) nbytes == packet_size) - { - // read successful, - // if packet is not from the lidar scanner we selected by IP, - // continue otherwise we are done - if(devip_str_ != "" - && sender_address.sin_addr.s_addr != devip_.s_addr) - continue; - else - break; //done - } - - ROS_DEBUG_STREAM("incomplete Velodyne packet read: " - << nbytes << " bytes"); - } - - // Average the times at which we begin and end reading. Use that to - // estimate when the scan occurred. Add the time offset. - double time2 = ros::Time::now().toSec(); - pkt->stamp = ros::Time((time2 + time1) / 2.0 + time_offset); - - return 0; - } - - //////////////////////////////////////////////////////////////////////// - // InputPCAP class implementation - //////////////////////////////////////////////////////////////////////// - - /** @brief constructor - * - * @param private_nh ROS private handle for calling node. - * @param port UDP port number - * @param packet_rate expected device packet frequency (Hz) - * @param filename PCAP dump file name - */ - InputPCAP::InputPCAP(ros::NodeHandle private_nh, uint16_t port, - double packet_rate, std::string filename, - bool read_once, bool read_fast, double repeat_delay): - Input(private_nh, port), - packet_rate_(packet_rate), - filename_(filename) - { - pcap_ = NULL; - empty_ = true; - - // get parameters using private node handle - private_nh.param("read_once", read_once_, false); - private_nh.param("read_fast", read_fast_, false); - private_nh.param("repeat_delay", repeat_delay_, 0.0); - - if (read_once_) - ROS_INFO("Read input file only once."); - if (read_fast_) - ROS_INFO("Read input file as quickly as possible."); - if (repeat_delay_ > 0.0) - ROS_INFO("Delay %.3f seconds before repeating input file.", - repeat_delay_); - - // Open the PCAP dump file - ROS_INFO("Opening PCAP file \"%s\"", filename_.c_str()); - if ((pcap_ = pcap_open_offline(filename_.c_str(), errbuf_) ) == NULL) - { - ROS_FATAL("Error opening Velodyne socket dump file."); - return; - } - - std::stringstream filter; - if( devip_str_ != "" ) // using specific IP? - { - filter << "src host " << devip_str_ << " && "; - } - filter << "udp dst port " << port; - pcap_compile(pcap_, &pcap_packet_filter_, - filter.str().c_str(), 1, PCAP_NETMASK_UNKNOWN); - } - - /** destructor */ - InputPCAP::~InputPCAP(void) - { - pcap_close(pcap_); - } - - /** @brief Get one velodyne packet. */ - int InputPCAP::getPacket(velodyne_msgs::VelodynePacket *pkt, const double time_offset) - { - struct pcap_pkthdr *header; - const u_char *pkt_data; - - while (true) - { - int res; - if ((res = pcap_next_ex(pcap_, &header, &pkt_data)) >= 0) - { - // Skip packets not for the correct port and from the - // selected IP address. - if (!devip_str_.empty() && - (0 == pcap_offline_filter(&pcap_packet_filter_, - header, pkt_data))) - continue; - - // Keep the reader from blowing through the file. - if (read_fast_ == false) - packet_rate_.sleep(); - - memcpy(&pkt->data[0], pkt_data+42, packet_size); - pkt->stamp = ros::Time::now(); // time_offset not considered here, as no synchronization required - empty_ = false; - return 0; // success - } - - if (empty_) // no data in file? - { - ROS_WARN("Error %d reading Velodyne packet: %s", - res, pcap_geterr(pcap_)); - return -1; - } - - if (read_once_) - { - ROS_INFO("end of file reached -- done reading."); - return -1; - } - - if (repeat_delay_ > 0.0) - { - ROS_INFO("end of file reached -- delaying %.3f seconds.", - repeat_delay_); - usleep(rint(repeat_delay_ * 1000000.0)); - } - - ROS_DEBUG("replaying Velodyne dump file"); - - // I can't figure out how to rewind the file, because it - // starts with some kind of header. So, close the file - // and reopen it with pcap. - pcap_close(pcap_); - pcap_ = pcap_open_offline(filename_.c_str(), errbuf_); - empty_ = true; // maybe the file disappeared? - } // loop back and try again - } - -} // velodyne namespace diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/vdump b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/vdump deleted file mode 100755 index 8ded1ddb491..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/src/vdump +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -# dump velodyne packets -# $Id: vdump 8892 2009-10-24 15:13:57Z joq $ - -if [ x$1 = x ] -then echo -e "usage:\t`basename $0` file-prefix [ interface ]" - echo -e "\n\tfile-prefix is completed with a three-digit number" - echo -e "\tinterface default is 'eth0'\n" - exit 9 -fi - -IF=${2:-eth0} -ID=`id -un` - -echo "acquiring packets on $IF for user $ID; press ^C when done" - -sudo /usr/sbin/tcpdump -i $IF -Z $ID -s 0 -C 100 -W 999 -w $1 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/diagnostic_agg.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/diagnostic_agg.yaml deleted file mode 100644 index 00dc03cbd19..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/diagnostic_agg.yaml +++ /dev/null @@ -1,17 +0,0 @@ -## Diagnostic aggregator parameters for testing Velodyne diagnostics. -# -# $ rosparam load $(rospack find velodyne_driver)/tests/diagnostic_agg.yaml -# $ rosrun diagnostic_aggregator aggregator_node -# -diagnostic_aggregator: - analyzers: - sensors: - type: diagnostic_aggregator/AnalyzerGroup - path: Sensors - analyzers: - velodyne: - type: diagnostic_aggregator/GenericAnalyzer - path: Velodyne HDL - timeout: 5.0 - find_and_remove_prefix: velodyne_nodelet_manager - num_items: 1 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_32e_node_hertz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_32e_node_hertz.test deleted file mode 100644 index 8b794da4bdd..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_32e_node_hertz.test +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_32e_nodelet_hertz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_32e_nodelet_hertz.test deleted file mode 100644 index 935e76f4c3b..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_32e_nodelet_hertz.test +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_node_hertz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_node_hertz.test deleted file mode 100644 index 348e4ba1a4f..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_node_hertz.test +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_nodelet_hertz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_nodelet_hertz.test deleted file mode 100644 index 81c49d2640f..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_nodelet_hertz.test +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_vlp16_node_hertz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_vlp16_node_hertz.test deleted file mode 100644 index 873e4fe10bf..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_vlp16_node_hertz.test +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_vlp16_nodelet_hertz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_vlp16_nodelet_hertz.test deleted file mode 100644 index 77f11951fc7..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_driver/tests/pcap_vlp16_nodelet_hertz.test +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/CHANGELOG.rst b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/CHANGELOG.rst deleted file mode 100644 index a110b5fa499..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/CHANGELOG.rst +++ /dev/null @@ -1,55 +0,0 @@ -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Changelog for package velodyne_laserscan -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -1.10.0 (2019-01-17) -------------------- - -1.9.1 (2018-11-06) ------------------- - -1.9.0 (2018-10-31) ------------------- - -1.8.0 (2018-08-31) ------------------- -* [Fix] Extend and Update interface.yaml (`#1291 `_) -* Contributors: Kenji Funaoka - -1.7.0 (2018-05-18) ------------------- -* update Version from 1.6.3 to 1.7.0 in package.xml and CHANGELOG.rst -* Modify package xml version other than 1.6.3 -* [feature] vlc32c driver, velodyne drivers updated (`#1166 `_) - * Squashed 'ros/src/sensing/drivers/lidar/packages/velodyne/' changes from 776a358..1a70413 - 1a70413 Merge branch 'master' into Autoware - 7976d12 support vlp32c now - 273520e Added hdl32c, fixed naming - e21b522 Merge pull request `#146 `_ from stsundermann/patch-2 - 0e5a200 Merge pull request `#150 `_ from ros-drivers/mikaelarguedas-patch-1 - db6b5ee update to use non deprecated pluginlib macro - 560fe12 Use std::abs instead of fabsf - git-subtree-dir: ros/src/sensing/drivers/lidar/packages/velodyne - git-subtree-split: 1a704135c529c5d2995cd2c1972ca4f59d5ae1ad - * Squashed 'ros/src/sensing/drivers/lidar/packages/velodyne/' changes from 1a70413..52c0a0d - 52c0a0d README format - git-subtree-dir: ros/src/sensing/drivers/lidar/packages/velodyne - git-subtree-split: 52c0a0d63594ee71a156755954d240d24966829e - * Squashed 'ros/src/sensing/drivers/lidar/packages/velodyne/' changes from 52c0a0d..a1d6f18 - a1d6f18 Update and rename README.rst to README.md - git-subtree-dir: ros/src/sensing/drivers/lidar/packages/velodyne - git-subtree-split: a1d6f186d3340f3ce5059e234ed7e3dcb828d09d -* Contributors: Abraham Monrroy, Kosuke Murakami - -1.3.0 (2017-11-10) ------------------- -* Merge pull request `#110 `_ from kmhallen/master - Added velodyne_laserscan package -* Added tests for velodyne_laserscan -* Fixed validating PointCloud2 field types -* Package.xml format version 2 -* Merge pull request `#1 `_ from volkandre/master - Fixed bug. Laserscans now cover full 360 degrees. -* Fixed bug. Laserscans now cover full 360 degrees. -* Added velodyne_laserscan package and inserted into existing launch files -* Contributors: Joshua Whitley, Kevin Hallenbeck, kmhallen, volkandre diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/CMakeLists.txt b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/CMakeLists.txt deleted file mode 100644 index 09e92b9939f..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/CMakeLists.txt +++ /dev/null @@ -1,51 +0,0 @@ -cmake_minimum_required(VERSION 2.8.3) -project(velodyne_laserscan) - -find_package(catkin REQUIRED COMPONENTS - roscpp - nodelet - sensor_msgs - dynamic_reconfigure -) - -generate_dynamic_reconfigure_options( - cfg/VelodyneLaserScan.cfg -) - -catkin_package() - -include_directories( - ${catkin_INCLUDE_DIRS} -) - -add_library(${PROJECT_NAME} - src/VelodyneLaserScan.cpp - src/nodelet.cpp -) -add_dependencies(${PROJECT_NAME} - ${PROJECT_NAME}_gencfg -) -target_link_libraries(${PROJECT_NAME} - ${catkin_LIBRARIES} -) - -add_executable(${PROJECT_NAME}_node - src/node.cpp -) -target_link_libraries(${PROJECT_NAME}_node - ${catkin_LIBRARIES} - ${PROJECT_NAME} -) - -install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_node - RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} - LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} -) -install(FILES nodelets.xml - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} -) - -if (CATKIN_ENABLE_TESTING) - add_subdirectory(tests) -endif() - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/cfg/VelodyneLaserScan.cfg b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/cfg/VelodyneLaserScan.cfg deleted file mode 100755 index deffd5fb4ae..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/cfg/VelodyneLaserScan.cfg +++ /dev/null @@ -1,13 +0,0 @@ -#! /usr/bin/env python - -PACKAGE='velodyne_laserscan' - -from dynamic_reconfigure.parameter_generator_catkin import * - -gen = ParameterGenerator() - -# Name Type Lvl Description Default Min Max -gen.add("ring", int_t, 0, "Ring to extract as laser scan (-1 default)", -1, -1, 31) -gen.add("resolution", double_t, 0, "Laser scan angular resolution (rad)", 0.007, 0.001, 0.05) - -exit(gen.generate(PACKAGE, PACKAGE, "VelodyneLaserScan")) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/interface.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/interface.yaml deleted file mode 100644 index 37a4e0c5186..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/interface.yaml +++ /dev/null @@ -1,3 +0,0 @@ -- name: /velodyne_laserscan_node - publish: [/scan] - subscribe: [/velodyne_points] diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/nodelets.xml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/nodelets.xml deleted file mode 100755 index 506ae9ad019..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/nodelets.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - Extract a single ring from a Velodyne PointCloud2 and publish - as a LaserScan. - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/package.xml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/package.xml deleted file mode 100755 index 748757251dc..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/package.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - velodyne_laserscan - 1.10.0 - - Extract a single ring of a Velodyne PointCloud2 and publish it as a LaserScan message - - Josh Whitley - Micho Radovnikovich - Kevin Hallenbeck - BSD - - http://ros.org/wiki/velodyne_laserscan - https://github.com/ros-drivers/velodyne - https://github.com/ros-drivers/velodyne/issues - - catkin - - roscpp - nodelet - sensor_msgs - dynamic_reconfigure - - roslaunch - rostest - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/src/VelodyneLaserScan.cpp b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/src/VelodyneLaserScan.cpp deleted file mode 100644 index 91910ac2c2b..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/src/VelodyneLaserScan.cpp +++ /dev/null @@ -1,174 +0,0 @@ -#include "VelodyneLaserScan.h" -#include - -namespace velodyne_laserscan { - -VelodyneLaserScan::VelodyneLaserScan(ros::NodeHandle &nh, ros::NodeHandle &nh_priv) : - ring_count_(0), nh_(nh), srv_(nh_priv) -{ - ros::SubscriberStatusCallback connect_cb = boost::bind(&VelodyneLaserScan::connectCb, this); - pub_ = nh.advertise("scan", 10, connect_cb, connect_cb); - - srv_.setCallback(boost::bind(&VelodyneLaserScan::reconfig, this, _1, _2)); -} - -void VelodyneLaserScan::connectCb() -{ - boost::lock_guard lock(connect_mutex_); - if (!pub_.getNumSubscribers()) { - sub_.shutdown(); - } else if (!sub_) { - sub_ = nh_.subscribe("velodyne_points", 10, &VelodyneLaserScan::recvCallback, this); - } -} - -void VelodyneLaserScan::recvCallback(const sensor_msgs::PointCloud2ConstPtr& msg) -{ - // Latch ring count - if (!ring_count_) { - // Check for PointCloud2 field 'ring' - bool found = false; - for (size_t i = 0; i < msg->fields.size(); i++) { - if (msg->fields[i].datatype == sensor_msgs::PointField::UINT16) { - if (msg->fields[i].name == "ring") { - found = true; - break; - } - } - } - if (!found) { - ROS_ERROR("VelodyneLaserScan: Field 'ring' of type 'UINT16' not present in PointCloud2"); - return; - } - for (sensor_msgs::PointCloud2ConstIterator it(*msg, "ring"); it != it.end(); ++it) { - const uint16_t ring = *it; - if (ring + 1 > ring_count_) { - ring_count_ = ring + 1; - } - } - if (ring_count_) { - ROS_INFO("VelodyneLaserScan: Latched ring count of %u", ring_count_); - } else { - ROS_ERROR("VelodyneLaserScan: Field 'ring' of type 'UINT16' not present in PointCloud2"); - return; - } - } - - // Select ring to use - uint16_t ring; - if ((cfg_.ring < 0) || (cfg_.ring >= ring_count_)) { - // Default to ring closest to being level for each known sensor - if (ring_count_ > 32) { - ring = 57; // HDL-64E - } else if (ring_count_ > 16) { - ring = 23; // HDL-32E - } else { - ring = 8; // VLP-16 - } - } else { - ring = cfg_.ring; - } - ROS_INFO_ONCE("VelodyneLaserScan: Extracting ring %u", ring); - - // Load structure of PointCloud2 - int offset_x = -1; - int offset_y = -1; - int offset_z = -1; - int offset_i = -1; - int offset_r = -1; - for (size_t i = 0; i < msg->fields.size(); i++) { - if (msg->fields[i].datatype == sensor_msgs::PointField::FLOAT32) { - if (msg->fields[i].name == "x") { - offset_x = msg->fields[i].offset; - } else if (msg->fields[i].name == "y") { - offset_y = msg->fields[i].offset; - } else if (msg->fields[i].name == "z") { - offset_z = msg->fields[i].offset; - } else if (msg->fields[i].name == "intensity") { - offset_i = msg->fields[i].offset; - } - } else if (msg->fields[i].datatype == sensor_msgs::PointField::UINT16) { - if (msg->fields[i].name == "ring") { - offset_r = msg->fields[i].offset; - } - } - } - - // Construct LaserScan message - if ((offset_x >= 0) && (offset_y >= 0) && (offset_r >= 0)) { - const float RESOLUTION = std::abs(cfg_.resolution); - const size_t SIZE = 2.0 * M_PI / RESOLUTION; - sensor_msgs::LaserScanPtr scan(new sensor_msgs::LaserScan()); - scan->header = msg->header; - scan->angle_increment = RESOLUTION; - scan->angle_min = -M_PI; - scan->angle_max = M_PI; - scan->range_min = 0.0; - scan->range_max = 200.0; - scan->time_increment = 0.0; - scan->ranges.resize(SIZE, INFINITY); - if ((offset_x == 0) && (offset_y == 4) && (offset_z == 8) && (offset_i == 16) && (offset_r == 20)) { - scan->intensities.resize(SIZE); - for (sensor_msgs::PointCloud2ConstIterator it(*msg, "x"); it != it.end(); ++it) { - const uint16_t r = *((const uint16_t*)(&it[5])); // ring - if (r == ring) { - const float x = it[0]; // x - const float y = it[1]; // y - const float i = it[4]; // intensity - const int bin = (atan2f(y, x) + (float)M_PI) / RESOLUTION; - if ((bin >= 0) && (bin < (int)SIZE)) { - scan->ranges[bin] = sqrtf(x * x + y * y); - scan->intensities[bin] = i; - } - } - } - } else { - ROS_WARN_ONCE("VelodyneLaserScan: PointCloud2 fields in unexpected order. Using slower generic method."); - if (offset_i >= 0) { - scan->intensities.resize(SIZE); - sensor_msgs::PointCloud2ConstIterator iter_r(*msg, "ring"); - sensor_msgs::PointCloud2ConstIterator iter_x(*msg, "x"); - sensor_msgs::PointCloud2ConstIterator iter_y(*msg, "y"); - sensor_msgs::PointCloud2ConstIterator iter_i(*msg, "intensity"); - for ( ; iter_r != iter_r.end(); ++iter_x, ++iter_y, ++iter_r, ++iter_i) { - const uint16_t r = *iter_r; // ring - if (r == ring) { - const float x = *iter_x; // x - const float y = *iter_y; // y - const float i = *iter_i; // intensity - const int bin = (atan2f(y, x) + (float)M_PI) / RESOLUTION; - if ((bin >= 0) && (bin < (int)SIZE)) { - scan->ranges[bin] = sqrtf(x * x + y * y); - scan->intensities[bin] = i; - } - } - } - } else { - sensor_msgs::PointCloud2ConstIterator iter_r(*msg, "ring"); - sensor_msgs::PointCloud2ConstIterator iter_x(*msg, "x"); - sensor_msgs::PointCloud2ConstIterator iter_y(*msg, "y"); - for ( ; iter_r != iter_r.end(); ++iter_x, ++iter_y, ++iter_r) { - const uint16_t r = *iter_r; // ring - if (r == ring) { - const float x = *iter_x; // x - const float y = *iter_y; // y - const int bin = (atan2f(y, x) + (float)M_PI) / RESOLUTION; - if ((bin >= 0) && (bin < (int)SIZE)) { - scan->ranges[bin] = sqrtf(x * x + y * y); - } - } - } - } - } - pub_.publish(scan); - } else { - ROS_ERROR("VelodyneLaserScan: PointCloud2 missing one or more required fields! (x,y,ring)"); - } -} - -void VelodyneLaserScan::reconfig(VelodyneLaserScanConfig& config, uint32_t level) -{ - cfg_ = config; -} - -} diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/src/VelodyneLaserScan.h b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/src/VelodyneLaserScan.h deleted file mode 100644 index 477348e50ba..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/src/VelodyneLaserScan.h +++ /dev/null @@ -1,39 +0,0 @@ -#ifndef VELODYNELASERSCAN_H -#define VELODYNELASERSCAN_H - -#include -#include -#include - -#include -#include - -#include -#include - -namespace velodyne_laserscan { - -class VelodyneLaserScan -{ -public: - VelodyneLaserScan(ros::NodeHandle &nh, ros::NodeHandle &nh_priv); - -private: - boost::mutex connect_mutex_; - void connectCb(); - void recvCallback(const sensor_msgs::PointCloud2ConstPtr& msg); - - ros::NodeHandle nh_; - ros::Subscriber sub_; - ros::Publisher pub_; - - VelodyneLaserScanConfig cfg_; - dynamic_reconfigure::Server srv_; - void reconfig(VelodyneLaserScanConfig& config, uint32_t level); - - unsigned int ring_count_; -}; - -} - -#endif // VELODYNELASERSCAN_H diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/src/node.cpp b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/src/node.cpp deleted file mode 100644 index 6c95fb9edec..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/src/node.cpp +++ /dev/null @@ -1,17 +0,0 @@ -#include -#include "VelodyneLaserScan.h" - -int main(int argc, char** argv) -{ - ros::init(argc, argv, "velodyne_laserscan_node"); - ros::NodeHandle nh; - ros::NodeHandle nh_priv("~"); - - // create VelodyneLaserScan class - velodyne_laserscan::VelodyneLaserScan n(nh, nh_priv); - - // handle callbacks until shut down - ros::spin(); - - return 0; -} diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/src/nodelet.cpp b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/src/nodelet.cpp deleted file mode 100644 index a9e7df78d42..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/src/nodelet.cpp +++ /dev/null @@ -1,24 +0,0 @@ -#include -#include -#include -#include "VelodyneLaserScan.h" - -namespace velodyne_laserscan -{ - -class LaserScanNodelet: public nodelet::Nodelet -{ -public: - LaserScanNodelet() {} - ~LaserScanNodelet() {} - -private: - virtual void onInit() { - node_.reset(new VelodyneLaserScan(getNodeHandle(), getPrivateNodeHandle())); - } - boost::shared_ptr node_; -}; - -} - -PLUGINLIB_EXPORT_CLASS(velodyne_laserscan::LaserScanNodelet, nodelet::Nodelet); diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/CMakeLists.txt b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/CMakeLists.txt deleted file mode 100644 index 3b23421c21a..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/CMakeLists.txt +++ /dev/null @@ -1,30 +0,0 @@ -### Unit tests -# -# Only configured when CATKIN_ENABLE_TESTING is true. - -# These dependencies are only needed for unit testing -find_package(roslaunch REQUIRED) -find_package(rostest REQUIRED) - -# C++ gtests -#catkin_add_gtest(test_calibration test_calibration.cpp) -#add_dependencies(test_calibration ${catkin_EXPORTED_TARGETS}) -#target_link_libraries(test_calibration velodyne_rawdata ${catkin_LIBRARIES}) - -# ROS rostests -add_rostest_gtest(test_lazy_subscriber_node lazy_subscriber_node.test lazy_subscriber.cpp) -add_dependencies(test_lazy_subscriber_node ${catkin_EXPORTED_TARGETS}) -target_link_libraries(test_lazy_subscriber_node ${catkin_LIBRARIES}) - -add_rostest_gtest(test_lazy_subscriber_nodelet lazy_subscriber_nodelet.test lazy_subscriber.cpp) -add_dependencies(test_lazy_subscriber_nodelet ${catkin_EXPORTED_TARGETS}) -target_link_libraries(test_lazy_subscriber_nodelet ${catkin_LIBRARIES}) - -add_rostest_gtest(test_system_node system_node.test system.cpp) -add_dependencies(test_system_node ${catkin_EXPORTED_TARGETS}) -target_link_libraries(test_system_node ${catkin_LIBRARIES}) - -add_rostest_gtest(test_system_nodelet system_nodelet.test system.cpp) -add_dependencies(test_system_nodelet ${catkin_EXPORTED_TARGETS}) -target_link_libraries(test_system_nodelet ${catkin_LIBRARIES}) - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/lazy_subscriber.cpp b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/lazy_subscriber.cpp deleted file mode 100644 index 49918006860..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/lazy_subscriber.cpp +++ /dev/null @@ -1,90 +0,0 @@ -/********************************************************************* - * C++ unit test for velodyne_laserscan - * Verify correct handling of subscribe and unsubscribe events - *********************************************************************/ - -#include - -#include -#include -#include - -// Subscriber receive callback -void recv(const sensor_msgs::LaserScanConstPtr& msg) {} - -// Build and publish a minimal PointCloud2 message -void publish(const ros::Publisher &pub) { - const uint32_t POINT_STEP = 32; - sensor_msgs::PointCloud2 msg; - msg.header.frame_id = ""; - msg.header.stamp = ros::Time::now(); - msg.fields.resize(5); - msg.fields[0].name = "x"; - msg.fields[0].offset = 0; - msg.fields[0].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[0].count = 1; - msg.fields[1].name = "y"; - msg.fields[1].offset = 4; - msg.fields[1].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[1].count = 1; - msg.fields[2].name = "z"; - msg.fields[2].offset = 8; - msg.fields[2].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[2].count = 1; - msg.fields[3].name = "intensity"; - msg.fields[3].offset = 16; - msg.fields[3].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[3].count = 1; - msg.fields[4].name = "ring"; - msg.fields[4].offset = 20; - msg.fields[4].datatype = sensor_msgs::PointField::UINT16; - msg.fields[4].count = 1; - msg.data.resize(1 * POINT_STEP, 0x00); - msg.point_step = POINT_STEP; - msg.row_step = msg.data.size(); - msg.height = 1; - msg.width = msg.row_step / POINT_STEP; - msg.is_bigendian = false; - msg.is_dense = true; - pub.publish(msg); -} - -// Verify correct handling of subscribe and unsubscribe events -TEST(Main, subscribe_unsubscribe) -{ - ros::NodeHandle nh; - ros::Publisher pub = nh.advertise("velodyne_points", 2); - - // Wait for node to startup - ros::WallDuration(2.0).sleep(); - ros::spinOnce(); - EXPECT_EQ(0, pub.getNumSubscribers()); - - // Subscribe to 'scan' and expect the node to subscribe to 'velodyne_points' - ros::Subscriber sub = nh.subscribe("scan", 2, recv); - for (size_t i = 10; i > 0; i--) { - publish(pub); - ros::WallDuration(0.1).sleep(); - ros::spinOnce(); - } - EXPECT_EQ(1, sub.getNumPublishers()); - EXPECT_EQ(1, pub.getNumSubscribers()); - - // Unsubscribe from 'scan' and expect the node to unsubscribe from 'velodyne_points' - sub.shutdown(); - for (size_t i = 10; i > 0; i--) { - publish(pub); - ros::WallDuration(0.1).sleep(); - ros::spinOnce(); - } - EXPECT_EQ(0, sub.getNumPublishers()); - EXPECT_EQ(0, pub.getNumSubscribers()); -} - -// Run all the tests that were declared with TEST() -int main(int argc, char **argv) -{ - testing::InitGoogleTest(&argc, argv); - ros::init(argc, argv, "test_lazy_subscriber"); - return RUN_ALL_TESTS(); -} diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/lazy_subscriber_node.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/lazy_subscriber_node.test deleted file mode 100644 index f852b0b3270..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/lazy_subscriber_node.test +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/lazy_subscriber_nodelet.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/lazy_subscriber_nodelet.test deleted file mode 100644 index 787a3a28b59..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/lazy_subscriber_nodelet.test +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/system.cpp b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/system.cpp deleted file mode 100644 index a96613e6e7e..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/system.cpp +++ /dev/null @@ -1,582 +0,0 @@ -/********************************************************************* - * C++ unit test for velodyne_laserscan - * Verify all aspects of the system - *********************************************************************/ - -#include - -#include -#include -#include - -// Define our own PointCloud type for easy use -typedef struct { - float x; // x - float y; // y - float z; // z - float i; // intensity - uint16_t r; // ring -} Point; -typedef struct { - std_msgs::Header header; - std::vector points; -} PointCloud; - -// Global variables -ros::Publisher g_pub; -ros::Subscriber g_sub; -sensor_msgs::LaserScan g_scan; -volatile bool g_scan_new = false; - -// Convert WallTime to Time -static inline ros::Time rosTime(const ros::WallTime &stamp) { - return ros::Time(stamp.sec, stamp.nsec); -} - -// Subscriber receive callback -void recv(const sensor_msgs::LaserScanConstPtr& msg) { - g_scan = *msg; - g_scan_new = true; -} - -// Wait for incoming LaserScan message -bool waitForScan(ros::WallDuration dur) { - const ros::WallTime start = ros::WallTime::now(); - while (!g_scan_new) { - if ((ros::WallTime::now() - start) > dur) { - return false; - } - ros::WallDuration(0.001).sleep(); - ros::spinOnce(); - } - return true; -} - -// Build and publish PointCloud2 messages of various structures -void publishXYZIR1(const PointCloud &cloud) { - g_scan_new = false; - const uint32_t POINT_STEP = 32; - sensor_msgs::PointCloud2 msg; - msg.header.frame_id = cloud.header.frame_id; - msg.header.stamp = cloud.header.stamp; - msg.fields.resize(5); - msg.fields[0].name = "x"; - msg.fields[0].offset = 0; - msg.fields[0].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[0].count = 1; - msg.fields[1].name = "y"; - msg.fields[1].offset = 4; - msg.fields[1].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[1].count = 1; - msg.fields[2].name = "z"; - msg.fields[2].offset = 8; - msg.fields[2].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[2].count = 1; - msg.fields[3].name = "intensity"; - msg.fields[3].offset = 16; - msg.fields[3].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[3].count = 1; - msg.fields[4].name = "ring"; - msg.fields[4].offset = 20; - msg.fields[4].datatype = sensor_msgs::PointField::UINT16; - msg.fields[4].count = 1; - msg.data.resize(std::max((size_t)1, cloud.points.size()) * POINT_STEP, 0x00); - msg.point_step = POINT_STEP; - msg.row_step = msg.data.size(); - msg.height = 1; - msg.width = msg.row_step / POINT_STEP; - msg.is_bigendian = false; - msg.is_dense = true; - uint8_t *ptr = msg.data.data(); - for (size_t i = 0; i < cloud.points.size(); i++) { - *((float*)(ptr + 0)) = cloud.points[i].x; - *((float*)(ptr + 4)) = cloud.points[i].y; - *((float*)(ptr + 8)) = cloud.points[i].z; - *((float*)(ptr + 16)) = cloud.points[i].i; - *((uint16_t*)(ptr + 20)) = cloud.points[i].r; - ptr += POINT_STEP; - } - g_pub.publish(msg); -} -void publishXYZIR2(const PointCloud &cloud) { - g_scan_new = false; - const uint32_t POINT_STEP = 19; - sensor_msgs::PointCloud2 msg; - msg.header.frame_id = cloud.header.frame_id; - msg.header.stamp = cloud.header.stamp; - msg.fields.resize(5); - msg.fields[0].name = "z"; - msg.fields[0].offset = 4; - msg.fields[0].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[0].count = 1; - msg.fields[1].name = "y"; - msg.fields[1].offset = 8; - msg.fields[1].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[1].count = 1; - msg.fields[2].name = "x"; - msg.fields[2].offset = 12; - msg.fields[2].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[2].count = 1; - msg.fields[3].name = "intensity"; - msg.fields[3].offset = 0; - msg.fields[3].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[3].count = 1; - msg.fields[4].name = "ring"; - msg.fields[4].offset = 16; - msg.fields[4].datatype = sensor_msgs::PointField::UINT16; - msg.fields[4].count = 1; - msg.data.resize(std::max((size_t)1, cloud.points.size()) * POINT_STEP, 0x00); - msg.point_step = POINT_STEP; - msg.row_step = msg.data.size(); - msg.height = 1; - msg.width = msg.row_step / POINT_STEP; - msg.is_bigendian = false; - msg.is_dense = true; - uint8_t *ptr = msg.data.data(); - for (size_t i = 0; i < cloud.points.size(); i++) { - *((float*)(ptr + 0)) = cloud.points[i].i; - *((float*)(ptr + 4)) = cloud.points[i].z; - *((float*)(ptr + 8)) = cloud.points[i].y; - *((float*)(ptr + 12)) = cloud.points[i].x; - *((uint16_t*)(ptr + 16)) = cloud.points[i].r; - ptr += POINT_STEP; - } - g_pub.publish(msg); -} -void publishXYZR(const PointCloud &cloud) { - g_scan_new = false; - const uint32_t POINT_STEP = 15; - sensor_msgs::PointCloud2 msg; - msg.header.frame_id = cloud.header.frame_id; - msg.header.stamp = cloud.header.stamp; - msg.fields.resize(4); - msg.fields[0].name = "x"; - msg.fields[0].offset = 0; - msg.fields[0].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[0].count = 1; - msg.fields[1].name = "y"; - msg.fields[1].offset = 4; - msg.fields[1].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[1].count = 1; - msg.fields[2].name = "z"; - msg.fields[2].offset = 8; - msg.fields[2].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[2].count = 1; - msg.fields[3].name = "ring"; - msg.fields[3].offset = 12; - msg.fields[3].datatype = sensor_msgs::PointField::UINT16; - msg.fields[3].count = 1; - msg.data.resize(std::max((size_t)1, cloud.points.size()) * POINT_STEP, 0x00); - msg.point_step = POINT_STEP; - msg.row_step = msg.data.size(); - msg.height = 1; - msg.width = msg.row_step / POINT_STEP; - msg.is_bigendian = false; - msg.is_dense = true; - uint8_t *ptr = msg.data.data(); - for (size_t i = 0; i < cloud.points.size(); i++) { - *((float*)(ptr + 0)) = cloud.points[i].x; - *((float*)(ptr + 4)) = cloud.points[i].y; - *((float*)(ptr + 8)) = cloud.points[i].z; - *((uint16_t*)(ptr + 12)) = cloud.points[i].r; - ptr += POINT_STEP; - } - g_pub.publish(msg); -} -void publishR(const PointCloud &cloud) { - g_scan_new = false; - const uint32_t POINT_STEP = 2; - sensor_msgs::PointCloud2 msg; - msg.header.stamp = rosTime(ros::WallTime::now()); - msg.fields.resize(1); - msg.fields[0].name = "ring"; - msg.fields[0].offset = 0; - msg.fields[0].datatype = sensor_msgs::PointField::UINT16; - msg.fields[0].count = 1; - msg.data.resize(std::max((size_t)1, cloud.points.size()) * POINT_STEP, 0x00); - msg.point_step = POINT_STEP; - msg.row_step = msg.data.size(); - msg.height = 1; - msg.width = msg.row_step / POINT_STEP; - uint8_t *ptr = msg.data.data(); - for (size_t i = 0; i < cloud.points.size(); i++) { - *((uint16_t*)(ptr + 0)) = cloud.points[i].r; - ptr += POINT_STEP; - } - g_pub.publish(msg); -} -void publishXYZR32(const PointCloud &cloud) { - g_scan_new = false; - const uint32_t POINT_STEP = 16; - sensor_msgs::PointCloud2 msg; - msg.header.frame_id = cloud.header.frame_id; - msg.header.stamp = cloud.header.stamp; - msg.fields.resize(4); - msg.fields[0].name = "x"; - msg.fields[0].offset = 0; - msg.fields[0].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[0].count = 1; - msg.fields[1].name = "y"; - msg.fields[1].offset = 4; - msg.fields[1].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[1].count = 1; - msg.fields[2].name = "z"; - msg.fields[2].offset = 8; - msg.fields[2].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[2].count = 1; - msg.fields[3].name = "ring"; - msg.fields[3].offset = 12; - msg.fields[3].datatype = sensor_msgs::PointField::UINT32; - msg.fields[3].count = 1; - msg.data.resize(std::max((size_t)1, cloud.points.size()) * POINT_STEP, 0x00); - msg.point_step = POINT_STEP; - msg.row_step = msg.data.size(); - msg.height = 1; - msg.width = msg.row_step / POINT_STEP; - msg.is_bigendian = false; - msg.is_dense = true; - uint8_t *ptr = msg.data.data(); - for (size_t i = 0; i < cloud.points.size(); i++) { - *((float*)(ptr + 0)) = cloud.points[i].x; - *((float*)(ptr + 4)) = cloud.points[i].y; - *((float*)(ptr + 8)) = cloud.points[i].z; - *((uint32_t*)(ptr + 12)) = cloud.points[i].r; - ptr += POINT_STEP; - } - g_pub.publish(msg); -} -void publishXYZ(const PointCloud &cloud) { - g_scan_new = false; - const uint32_t POINT_STEP = 12; - sensor_msgs::PointCloud2 msg; - msg.header.stamp = rosTime(ros::WallTime::now()); - msg.fields.resize(3); - msg.fields[0].name = "x"; - msg.fields[0].offset = 0; - msg.fields[0].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[0].count = 1; - msg.fields[1].name = "y"; - msg.fields[1].offset = 4; - msg.fields[1].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[1].count = 1; - msg.fields[2].name = "z"; - msg.fields[2].offset = 8; - msg.fields[2].datatype = sensor_msgs::PointField::FLOAT32; - msg.fields[2].count = 1; - msg.data.resize(std::max((size_t)1, cloud.points.size()) * POINT_STEP, 0x00); - msg.point_step = POINT_STEP; - msg.row_step = msg.data.size(); - msg.height = 1; - msg.width = msg.row_step / POINT_STEP; - uint8_t *ptr = msg.data.data(); - for (size_t i = 0; i < cloud.points.size(); i++) { - *((float*)(ptr + 0)) = cloud.points[i].x; - *((float*)(ptr + 4)) = cloud.points[i].y; - *((float*)(ptr + 8)) = cloud.points[i].z; - ptr += POINT_STEP; - } - g_pub.publish(msg); -} -void publishNone() { - g_scan_new = false; - const uint32_t POINT_STEP = 16; - sensor_msgs::PointCloud2 msg; - msg.header.stamp = rosTime(ros::WallTime::now()); - msg.data.resize(1 * POINT_STEP, 0x00); - msg.point_step = POINT_STEP; - msg.row_step = msg.data.size(); - msg.height = 1; - msg.width = msg.row_step / POINT_STEP; - g_pub.publish(msg); -} - -// Find the index of the point in the PointCloud with the shortest 2d distance to the point (x,y) -static inline float SQUARE(float x) { return x * x; } -size_t findClosestIndex(const PointCloud &cloud, uint16_t ring, float x, float y) { - size_t index = SIZE_MAX; - float delta = INFINITY; - for (size_t i = 0; i < cloud.points.size(); i++) { - if (cloud.points[i].r == ring) { - float dist = SQUARE(x - cloud.points[i].x) + SQUARE(y - cloud.points[i].y); - if (dist < delta) { - delta = dist; - index = i; - } - } - } - return index; -} - -// Verify that all LaserScan header values are values are passed through, and other values are default -void verifyScanEmpty(const PointCloud &cloud, bool intensity = true) { - ASSERT_EQ(cloud.header.stamp, g_scan.header.stamp); - EXPECT_EQ(cloud.header.frame_id, g_scan.header.frame_id); - for (size_t i = 0; i < g_scan.ranges.size(); i++) { - EXPECT_EQ(INFINITY, g_scan.ranges[i]); - } - if (!intensity) { - EXPECT_EQ(0, g_scan.intensities.size()); - } else { - EXPECT_EQ(g_scan.ranges.size(), g_scan.intensities.size()); - for (size_t i = 0; i < g_scan.intensities.size(); i++) { - EXPECT_EQ(0.0, g_scan.intensities[i]); - } - } -} - -// Verify that every PointCloud point made it to the LaserScan and other values are default -void verifyScanSparse(const PointCloud &cloud, uint16_t ring, uint16_t ring_count, bool intensity = true) { - ASSERT_EQ(cloud.header.stamp, g_scan.header.stamp); - EXPECT_EQ(cloud.header.frame_id, g_scan.header.frame_id); - EXPECT_EQ(intensity ? g_scan.ranges.size() : 0, g_scan.intensities.size()); - size_t count = 0; - for (size_t i = 0; i < g_scan.ranges.size(); i++) { - double r = g_scan.ranges[i]; - if (std::isfinite(r)) { - float a = g_scan.angle_min + i * g_scan.angle_increment; - float x = g_scan.ranges[i] * cosf(a); - float y = g_scan.ranges[i] * sinf(a); - float e = g_scan.ranges[i] * g_scan.angle_increment + (float)1e-3; // allowable error - size_t index = findClosestIndex(cloud, ring, x, y); - if (index < cloud.points.size()) { - count++; - EXPECT_NEAR(cloud.points[index].x, x, e); - EXPECT_NEAR(cloud.points[index].y, y, e); - if (i < g_scan.intensities.size()) { - EXPECT_EQ(cloud.points[index].i, g_scan.intensities[i]); - } - } else { - EXPECT_TRUE(false); // LaserScan point not found in PointCloud - } - } else { - EXPECT_EQ(INFINITY, r); - } - } - if (ring_count > 0) { - EXPECT_EQ(cloud.points.size() / ring_count, count); // Make sure that all points were converted to ranges - } -} - -// Verify that every LaserScan point is not default, and every point came from the PointCloud -void verifyScanDense(const PointCloud &cloud, uint16_t ring, bool intensity = true) { - ASSERT_EQ(cloud.header.stamp, g_scan.header.stamp); - EXPECT_EQ(cloud.header.frame_id, g_scan.header.frame_id); - EXPECT_EQ(intensity ? g_scan.ranges.size() : 0, g_scan.intensities.size()); - for (size_t i = 0; i < g_scan.ranges.size(); i++) { - double r = g_scan.ranges[i]; - if (std::isfinite(r)) { - float a = g_scan.angle_min + i * g_scan.angle_increment; - float x = g_scan.ranges[i] * cosf(a); - float y = g_scan.ranges[i] * sinf(a); - float e = g_scan.ranges[i] * g_scan.angle_increment + (float)1e-3; // allowable error - size_t index = findClosestIndex(cloud, ring, x, y); - if (index < cloud.points.size()) { - EXPECT_NEAR(cloud.points[index].x, x, e); - EXPECT_NEAR(cloud.points[index].y, y, e); - ///@TODO: Test for matching intensity - } else { - EXPECT_TRUE(false); // LaserScan point not found in PointCloud - } - } else { - EXPECT_TRUE(false); // Dense PointCloud should populate every range in LaserScan - } - } -} - -// Verify that no LaserScan is generated when the PointCloud2 message is missing required fields -TEST(System, missing_fields) -{ - // Make sure system is connected - ASSERT_EQ(1, g_sub.getNumPublishers()); - ASSERT_EQ(1, g_pub.getNumSubscribers()); - - // Create PointCloud with 16 rings - PointCloud cloud; - cloud.points.resize(1); - cloud.points[0].x = 0.0; - cloud.points[0].y = 0.0; - cloud.points[0].z = 0.0; - cloud.points[0].i = 0.0; - cloud.points[0].r = 15; - - // Verify no LaserScan when PointCloud2 fields are empty - publishNone(); - EXPECT_FALSE(waitForScan(ros::WallDuration(0.5))); - - // Verify no LaserScan when PointCloud2 fields are missing 'ring' - publishXYZ(cloud); - EXPECT_FALSE(waitForScan(ros::WallDuration(0.5))); - - // Verify no LaserScan when PointCloud2 field 'ring' is the incorrect type - publishXYZR32(cloud); - EXPECT_FALSE(waitForScan(ros::WallDuration(0.5))); - - - // Verify no LaserScan when PointCloud2 fields are missing 'x' and 'y' - publishR(cloud); - EXPECT_FALSE(waitForScan(ros::WallDuration(0.5))); - - // Verify that the node hasn't crashed by sending normal PointCloud2 fields - cloud.header.stamp = rosTime(ros::WallTime::now()); - publishXYZIR1(cloud); - ASSERT_TRUE(waitForScan(ros::WallDuration(1.0))); - ASSERT_EQ(cloud.header.stamp, g_scan.header.stamp); -} - -// Verify that non-point fields are passed through unmodified -TEST(System, empty_data) -{ - // Make sure system is connected - ASSERT_EQ(1, g_sub.getNumPublishers()); - ASSERT_EQ(1, g_pub.getNumSubscribers()); - - // Create PointCloud with 16 rings - PointCloud cloud; - cloud.header.frame_id = "abcdefghijklmnopqrstuvwxyz"; - cloud.points.resize(1); - cloud.points[0].x = 0.0; - cloud.points[0].y = 0.0; - cloud.points[0].z = 0.0; - cloud.points[0].i = 0.0; - cloud.points[0].r = 15; - - // Verify that all three PointCloud2 types create proper default values - - // PointXYZIR (expected format) - cloud.header.stamp = rosTime(ros::WallTime::now()); - publishXYZIR1(cloud); - ASSERT_TRUE(waitForScan(ros::WallDuration(1.0))); - verifyScanEmpty(cloud, true); - - // PointXYZIR (unexpected format with intensity) - cloud.header.stamp = rosTime(ros::WallTime::now()); - publishXYZIR2(cloud); - ASSERT_TRUE(waitForScan(ros::WallDuration(1.0))); - verifyScanEmpty(cloud, true); - - // PointXYZR (unexpected format without intensity) - cloud.header.stamp = rosTime(ros::WallTime::now()); - publishXYZR(cloud); - ASSERT_TRUE(waitForScan(ros::WallDuration(1.0))); - verifyScanEmpty(cloud, false); -} - -// Verify that every piece of a small amount of random data is passed through -TEST(System, random_data_sparse) -{ - // Make sure system is connected - ASSERT_EQ(1, g_sub.getNumPublishers()); - ASSERT_EQ(1, g_pub.getNumSubscribers()); - - // Create PointCloud with sparse random data - PointCloud cloud; - cloud.header.frame_id = "velodyne"; - const size_t RANGE_COUNT = 100; - const size_t RING_COUNT = 16; - const double RANGE_MAX = 20.0; - const double INTENSITY_MAX = 1.0; - for (size_t i = 0; i < RANGE_COUNT; i++) { - double angle_y = i * 1.99 * M_PI / RANGE_COUNT; // yaw - for (size_t j = 0; j < RING_COUNT; j++) { - double angle_p = j * 0.2 * M_PI / RING_COUNT - 0.1 * M_PI; // pitch - double range = rand() * (RANGE_MAX / RAND_MAX); - Point point; - point.x = range * cos(angle_p) * cos(angle_y); - point.y = range * cos(angle_p) * sin(angle_y); - point.z = range * sin(angle_p); - point.i = rand() * (INTENSITY_MAX / RAND_MAX); - point.r = j; - cloud.points.push_back(point); - } - } - - // Verify that all three PointCloud2 types are handled correctly - - // PointXYZIR (expected format) - cloud.header.stamp = rosTime(ros::WallTime::now()); - publishXYZIR1(cloud); - ASSERT_TRUE(waitForScan(ros::WallDuration(1.0))); - verifyScanSparse(cloud, 8, RING_COUNT, true); - - // PointXYZIR (unexpected format with intensity) - cloud.header.stamp = rosTime(ros::WallTime::now()); - publishXYZIR2(cloud); - ASSERT_TRUE(waitForScan(ros::WallDuration(1.0))); - verifyScanSparse(cloud, 8, RING_COUNT, true); - - // PointXYZR (unexpected format without intensity) - cloud.header.stamp = rosTime(ros::WallTime::now()); - publishXYZR(cloud); - ASSERT_TRUE(waitForScan(ros::WallDuration(1.0))); - verifyScanSparse(cloud, 8, RING_COUNT, false); -} - -// Verify that every LaserScan range is valid when given an extra large amount of random data -TEST(System, random_data_dense) -{ - // Make sure system is connected - ASSERT_EQ(1, g_sub.getNumPublishers()); - ASSERT_EQ(1, g_pub.getNumSubscribers()); - - // Create PointCloud with dense random data - PointCloud cloud; - cloud.header.frame_id = "velodyne"; - const size_t RANGE_COUNT = 2500; - const size_t RING_COUNT = 16; - const double RANGE_MAX = 20.0; - const double INTENSITY_MAX = 1.0; - for (size_t i = 0; i < RANGE_COUNT; i++) { - double angle_y = i * 2.0 * M_PI / RANGE_COUNT; // yaw - for (size_t j = 0; j < RING_COUNT; j++) { - double angle_p = j * 0.2 * M_PI / RING_COUNT - 0.1 * M_PI; // pitch - double range = rand() * (RANGE_MAX / RAND_MAX); - Point point; - point.x = range * cos(angle_p) * cos(angle_y); - point.y = range * cos(angle_p) * sin(angle_y); - point.z = range * sin(angle_p); - point.i = rand() * (INTENSITY_MAX / RAND_MAX); - point.r = j; - cloud.points.push_back(point); - } - } - - // Verify that all three PointCloud2 types are handled correctly - - // PointXYZIR (expected format) - cloud.header.stamp = rosTime(ros::WallTime::now()); - publishXYZIR1(cloud); - ASSERT_TRUE(waitForScan(ros::WallDuration(1.0))); - verifyScanDense(cloud, 8, true); - - // PointXYZIR (unexpected format with intensity) - cloud.header.stamp = rosTime(ros::WallTime::now()); - publishXYZIR2(cloud); - ASSERT_TRUE(waitForScan(ros::WallDuration(1.0))); - verifyScanDense(cloud, 8, true); - - // PointXYZR (unexpected format without intensity) - cloud.header.stamp = rosTime(ros::WallTime::now()); - publishXYZR(cloud); - ASSERT_TRUE(waitForScan(ros::WallDuration(1.0))); - verifyScanDense(cloud, 8, false); -} - -int main(int argc, char **argv) -{ - testing::InitGoogleTest(&argc, argv); - - // Initialize ROS - ros::init(argc, argv, "test_lazy_subscriber"); - ros::NodeHandle nh; - - // Setup publisher and subscriber - g_pub = nh.advertise("velodyne_points", 2); - g_sub = nh.subscribe("scan", 2, recv); - - // Wait for other nodes to startup - ros::WallDuration(1.0).sleep(); - ros::spinOnce(); - - // Run all the tests that were declared with TEST() - return RUN_ALL_TESTS(); -} diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/system_node.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/system_node.test deleted file mode 100644 index 05daf8bf8a6..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/system_node.test +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/system_nodelet.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/system_nodelet.test deleted file mode 100644 index 55a1e991e05..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_laserscan/tests/system_nodelet.test +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/CHANGELOG.rst b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/CHANGELOG.rst deleted file mode 100644 index 0dbd2e5da2a..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/CHANGELOG.rst +++ /dev/null @@ -1,58 +0,0 @@ -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Changelog for package velodyne_msgs -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -1.10.0 (2019-01-17) -------------------- - -1.9.1 (2018-11-06) ------------------- - -1.9.0 (2018-10-31) ------------------- - -1.8.0 (2018-08-31) ------------------- - -1.7.0 (2018-05-18) ------------------- -* update Version from 1.6.3 to 1.7.0 in package.xml and CHANGELOG.rst -* Removed flawed subtree -* Contributors: AMC, Kosuke Murakami - -1.6.3 (2018-03-06) ------------------- - -1.6.2 (2018-02-27) ------------------- -* Update CHANGELOG -* Contributors: Yusuke FUJII - -1.4.0 (2017-08-04) ------------------- -* version number must equal current release number so we can start releasing in the future -* Contributors: Dejan Pangercic - -1.3.1 (2017-07-16) ------------------- - -1.3.0 (2017-07-14) ------------------- - -1.2.0 (2017-06-07) ------------------- - -1.1.2 (2017-02-27 23:10) ------------------------- - -1.1.1 (2017-02-27 22:25) ------------------------- - -1.1.0 (2017-02-24) ------------------- - -1.0.1 (2017-01-14) ------------------- - -1.0.0 (2016-12-22) ------------------- diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/CMakeLists.txt b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/CMakeLists.txt deleted file mode 100644 index d3485da661e..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -cmake_minimum_required(VERSION 2.8.3) -project(velodyne_msgs) - -find_package(catkin REQUIRED COMPONENTS message_generation std_msgs) - -add_message_files( - DIRECTORY msg - FILES - VelodynePacket.msg - VelodyneScan.msg -) -generate_messages(DEPENDENCIES std_msgs) - -catkin_package( - CATKIN_DEPENDS message_runtime std_msgs -) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/mainpage.dox b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/mainpage.dox deleted file mode 100644 index f79cc87a70f..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/mainpage.dox +++ /dev/null @@ -1,10 +0,0 @@ -/** -\mainpage -\htmlinclude manifest.html - -The @b velodyne_msgs package collects ROS messages specific to the -Velodyne HDL-64E 3D and HDL-64E S2 LIDARs. - -No other programming interfaces or ROS nodes are provided. - -*/ diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/msg/VelodynePacket.msg b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/msg/VelodynePacket.msg deleted file mode 100644 index fcea2733339..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/msg/VelodynePacket.msg +++ /dev/null @@ -1,5 +0,0 @@ -# Raw Velodyne LIDAR packet. - -time stamp # packet timestamp -uint8[1206] data # packet contents - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/msg/VelodyneScan.msg b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/msg/VelodyneScan.msg deleted file mode 100644 index 61cb8bee32a..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/msg/VelodyneScan.msg +++ /dev/null @@ -1,4 +0,0 @@ -# Velodyne LIDAR scan packets. - -Header header # standard ROS message header -VelodynePacket[] packets # vector of raw packets diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/package.xml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/package.xml deleted file mode 100644 index 2b3432b541c..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_msgs/package.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - velodyne_msgs - 1.10.0 - - ROS message definitions for Velodyne 3D LIDARs. - - Josh Whitley - Jack O'Quin - BSD - - http://ros.org/wiki/velodyne_msgs - https://github.com/ros-drivers/velodyne - https://github.com/ros-drivers/velodyne/issues - - catkin - - message_generation - std_msgs - - message_runtime - std_msgs - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/CHANGELOG.rst b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/CHANGELOG.rst deleted file mode 100644 index f93de64bd6d..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/CHANGELOG.rst +++ /dev/null @@ -1,246 +0,0 @@ -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Changelog for package velodyne_pointcloud -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -1.10.0 (2019-01-17) -------------------- -* Use colcon as the build tool (`#1704 `_) - * Switch to colcon as the build tool instead of catkin - * Added cmake-target - * Added note about the second colcon call - * Added warning about catkin* scripts being deprecated - * Fix COLCON_OPTS - * Added install targets - * Update Docker image tags - * Message packages fixes - * Fix missing dependency -* Contributors: Esteve Fernandez - -1.9.1 (2018-11-06) ------------------- - -1.9.0 (2018-10-31) ------------------- - -1.8.0 (2018-08-31) ------------------- -* [Fix] Extend and Update interface.yaml (`#1291 `_) -* Contributors: Kenji Funaoka - -1.7.0 (2018-05-18) ------------------- -* update Version from 1.6.3 to 1.7.0 in package.xml and CHANGELOG.rst -* [feature] vlc32c driver, velodyne drivers updated (`#1166 `_) - * Squashed 'ros/src/sensing/drivers/lidar/packages/velodyne/' changes from 776a358..1a70413 - 1a70413 Merge branch 'master' into Autoware - 7976d12 support vlp32c now - 273520e Added hdl32c, fixed naming - e21b522 Merge pull request `#146 `_ from stsundermann/patch-2 - 0e5a200 Merge pull request `#150 `_ from ros-drivers/mikaelarguedas-patch-1 - db6b5ee update to use non deprecated pluginlib macro - 560fe12 Use std::abs instead of fabsf - git-subtree-dir: ros/src/sensing/drivers/lidar/packages/velodyne - git-subtree-split: 1a704135c529c5d2995cd2c1972ca4f59d5ae1ad - * Squashed 'ros/src/sensing/drivers/lidar/packages/velodyne/' changes from 1a70413..52c0a0d - 52c0a0d README format - git-subtree-dir: ros/src/sensing/drivers/lidar/packages/velodyne - git-subtree-split: 52c0a0d63594ee71a156755954d240d24966829e - * Squashed 'ros/src/sensing/drivers/lidar/packages/velodyne/' changes from 52c0a0d..a1d6f18 - a1d6f18 Update and rename README.rst to README.md - git-subtree-dir: ros/src/sensing/drivers/lidar/packages/velodyne - git-subtree-split: a1d6f186d3340f3ce5059e234ed7e3dcb828d09d -* rename hdl32c to vlp32c -* Added hdl32c, fixed naming -* Removed flawed subtree -* Contributors: AMC, Abraham Monrroy, Kosuke Murakami, yukikitsukawa - -1.6.3 (2018-03-06) ------------------- - -1.6.2 (2018-02-27) ------------------- -* Update CHANGELOG -* Contributors: Yusuke FUJII - -1.3.0 (2017-11-10) -------------------- -* Merge pull request `#110 `_ from kmhallen/master - Added velodyne_laserscan package -* Merge remote-tracking branch ros-drivers/master -* Merge pull request `#129 `_ from kmhallen/pluginlib_macro - Modern pluginlib macro -* Update to use non deprecated pluginlib macro -* Merge pull request `#127 `_ from swri-robotics/add_vlp16_hires_support - Add VLP16 Puck Hi-Res config file -* Add VLP16 Puck Hi-Res support -* velodyne_pointcloud: remove incorrect catkin_package() DEPENDS option (`#93 `_) - This eliminates a CMake warning when building on Xenial. -* Merge pull request `#111 `_ from OrebroUniversity/master - Added an interface to set up raw data processing offline -* Added an interface to set up raw data processing from a locally defined calibration file. This method is useful when processing data offline from a bag file, without starting any ros master -* Added velodyne_laserscan package and inserted into existing launch files -* test multiple nodelet manager support (`#108 `_) -* add launch args to support multiple devices (`#108 `_) -* Merge pull request `#105 `_ from fudger/patch-1 - Remove unused constants. -* Merge pull request `#104 `_ from altrouge/launch_options - Add more options in launch files. -* Rearranged alphabetically. -* Remove unused constants. - DISTANCE_MAX and DISTANCE_MAX_UNITS are not used anywhere in the code. - Furthermore, using them would lead to errors as both VLP-64 manuals state that returns above 120 m should not be used. The VLP-32 manual allows 70 m as the maximum valid sensor range. -* Merge pull request `#103 `_ from fudger/patch-1 - Fix misleading typecasts. -* Add more options in launch files. - - rpm, device_ip, port, read_once, read_fast, repeat_delay -* Fix misleading typecasts. - intensity and VPoint::intensity are both of type float. -* update change history -* merge current master (`#94 `_) -* Merge pull request `#92 `_ from adasta/master - GCC Build Warnings -* Modified velodyne_point_cloud/src/lib/rawdata.cc to address warning - that last_azimuth_diff variable may be used uninitialized. Variable - is now initialized to 0 at creation. - velodyne/velodyne_pointcloud/src/lib/rawdata.cc:328:57: error: ‘last_azimuth_diff’ may be used uninitialized in this function [-Werror=maybe-uninitialized] - azimuth_corrected_f = azimuth + (azimuth_diff * ((dsr*VLP16_DSR_TOFFSET) + (firing*VLP16_FIRING_TOFFSET)) / VLP16_BLOCK_TDURATION); -* Modified velodyne_pointcloud/src/conversion/colors.cc to remove - address build warning for strict-aliasing. - velodyne/velodyne_pointcloud/src/conversions/colors.cc:84:58: -* Merge pull request `#89 `_ from Tones29/feat_dynrec_driver - Add dynamic latency configuration to velodyne_driver -* velodyne_pointcloud: Fix compile warning "Wrong initialization order" -* velodyne_pointcloud: add dynamic reconfig update to change log (`#78 `_) -* Merge branch fudger-reconfigure_transform_node -* velodyne_pointcloud: use recommended add_dependencies() CMake variable `#78 `_ -* velodyne_pointcloud: fix transform unit tests - Use tf2_ros static_transform_publisher for more consistent timing (`#2 `_) -* Merge branch reconfigure_transform_node of https://github.com/fudger/velodyne -* prepare change history for coming Indigo release (`#59 `_) -* calibration: unit test case improvements (`#84 `_) -* calibration: read all intensities as float, then convert (`#84 `_) -* calibration: add gtest for `#84 `_ - This currently fails on 64e_s2.1-sztaki.yaml and on issue_84_float_intensities.yaml. -* calibration: make max_intensity and min_intensity optional (`#84 `_) - This fixes a regression in the 32e and VLP-16 calibrations which do not contain - intensity values. There is still a problem with the 64e_s2.1 calibration. -* Merge pull request `#76 `_ from pomerlef/master - Sign inversion in some equations -* Merge pull request `#82 `_ from ros-drivers/fix_pr_80 - Fix pr 80; adding travis CI tests. -* fix the yaml-cpp 0.5 code paths -* Merge pull request `#80 `_ from ros-drivers/fix_yaml_import - allow floats in min/max_intensity and make horiz_offset_correction optional -* allow horiz_offset_correction to be optional with 0 as default -* allow floats instead of ints in min/max_intensity -* Resolve frame ID name using tf prefix. -* Improve coding style. -* Set up dynamic reconfiguration for transform_node. - Previously, transform_node has neither read parameters other than frame_id from the command line nor has it exposed these parameters via dynamic reconfigure. As parameters like max_range and view_width have been initialized to zero, the inconfigurable transform_node has returned an empty point cloud. - Now, transform_node launches an reconfigure server just as cloud_node. In contrast to cloud_node, transform node exposes another parameter for dynamic reconfiguration: frame_id, i.e. the frame of reference the incoming Velodyne points are transformed to. -* Merge pull request `#77 `_ from fudger/pretty_print - Fix output of calibration data onto console -* Add a missing space. -* Fix line that always indicates use of model VLP-16. -* Align console output of calibration data. -* Merge branch master of https://github.com/ros-drivers/velodyne -* resolve sign error -* Merge pull request `#73 `_ from fudger/master - Correct important data type error for VLP-16 -* Fix data type error that distorts the point cloud. -* Fix and add a few comments. -* Merge pull request `#68 `_ from jlblancoc/patch-1 - Remove unused variable -* Remove unused variable - I think that `dsr` was unused. See line 317: - for (int dsr=0; ... -* VLP-16: skip badly formatted data packets (`#62 `_, `#63 `_) -* restore VLP-16 min_range setting to 0.4 (`#60 `_) - NOTE: There is still some other problem keeping that from working. -* permit min_range settings below 0.9 meters (`#60 `_) - No known models are currently known to return closer measurements. -* Merge pull request `#55 `_ from lemiant/azimuth_bug_VLP16 - Fixed azimuth overflow bug. -* Fixed azimuth overflow bug. - For interpolated azimuth values between 35999.5 and 36000.0 the nested round(fmod()) - yields a value of 36000 which is invalid and overflows the pre-computed sin/cos arrays, - since they only go form 0..35999 -* Merge pull request `#51 `_ from kunlileo/master - Added vertical sin angle correction -* Added vertical sin angle correction -* Merge pull request `#47 `_ from prclibo/master - fixed rounding bug in intensity calculation found by songshiyu -* fixed rounding bug in intensity calculation found by songshiyu -* fix some overly long C++ source lines -* Merge pull request `#44 `_ from SISegwayRmp/master - adding driver and pointcloud support for the VLP16 -* missed the space in the file name which caused the build to fail, removed space before extension -* adding the VLP16 test scripts and updating the CMakeLists to include the test file from http://download.ros.org/data/velodyne/vlp16.pcap -* adding support for the VLP16 -* Merge pull request `#43 `_ from prclibo/fix_rawdata - fixed point computation according to the 64e_s2(.1) velodyne manual -* fixed point computation according to the 64e_s2(.1) velodyne manual, with luopei"s help -* Merge pull request `#41 `_ from prclibo/master - fixed a calibration file parsing bug -* Merge pull request `#42 `_ from prclibo/fix_gen_calibration - fixed gen_calibration min/max intensity type -* fixed gen_calibration min/max intensity type -* fixed a calibration file parsing bug -* Contributors: Adam Stambler, Alex Rodrigues, Alexander Schaefer, Andreas Wachaja, Bo Li, Daniel Jartoux, Gabor Meszaros, Jack OQuin, Jose Luis Blanco-Claraco, Joshua Whitley, Kevin Hallenbeck, Kris Kozak, Kun Li, Micho Radovnikovich, Scott K Logan, Thomas Solatges, Todor Stoyanov, William Woodall, jack.oquin, libo24, phussey, piyushk, pomerlef - -1.2.0 (2017-06-07) ------------------- - -1.1.2 (2017-02-27 23:10) ------------------------- - -1.1.1 (2017-02-27 22:25) ------------------------- - -1.1.0 (2017-02-24) ------------------- - -1.0.1 (2017-01-14) ------------------- - -1.0.0 (2016-12-22) ------------------- - - * Completely revised API, anticipating a 1.0.0 release. - * HDL-32E device support. - * New YAML configuration file format. - * New velodyne_driver and velodyne_pointcloud packages. - * Old velodyne_common and velodyne_pcl packages no longer included. - * Released to Electric, Fuerte and Groovy. - -0.2.6 (2011-02-23) ------------------- - - * Label all timing-dependent tests "realtime" so they do not run by - default on the build farm machines. - -0.2.5 (2010-11-19) ------------------- - - * Initial implementation of new 0.3 interfaces. - * Support for ROS 1.3 `std_msgs::Header` changes. - -0.2.0 (2010-08-17) ------------------- - - * Initial release to ROS C-turtle. - -.. _`#1`: https://github.com/ros-drivers/velodyne/issues/1 -.. _`#4`: https://github.com/ros-drivers/velodyne/issues/4 -.. _`#7`: https://github.com/ros-drivers/velodyne/issues/7 -.. _`#8`: https://github.com/ros-drivers/velodyne/pull/8 -.. _`#9`: https://github.com/ros-drivers/velodyne/issues/9 -.. _`#10`: https://github.com/ros-drivers/velodyne/issues/10 -.. _`#11`: https://github.com/ros-drivers/velodyne/issues/11 -.. _`#12`: https://github.com/ros-drivers/velodyne/pull/12 -.. _`#13`: https://github.com/ros-drivers/velodyne/issues/13 -.. _`#14`: https://github.com/ros-drivers/velodyne/pull/14 -.. _`#17`: https://github.com/ros-drivers/velodyne/issues/17 -.. _`#18`: https://github.com/ros-drivers/velodyne/issues/18 -.. _`#20`: https://github.com/ros-drivers/velodyne/issues/20 -.. _`#50`: https://github.com/ros-drivers/velodyne/issue/50 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/CMakeLists.txt b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/CMakeLists.txt deleted file mode 100644 index b9022314e9f..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/CMakeLists.txt +++ /dev/null @@ -1,95 +0,0 @@ -cmake_minimum_required(VERSION 2.8.3) -project(velodyne_pointcloud) - -set(${PROJECT_NAME}_CATKIN_DEPS - angles - nodelet - pcl_ros - roscpp - roslib - sensor_msgs - tf - dynamic_reconfigure -) - - -find_package(velodyne_msgs REQUIRED) - -find_package(velodyne_driver REQUIRED) -find_package(catkin REQUIRED COMPONENTS - angles - nodelet - pcl_ros - roscpp - roslib - sensor_msgs - tf - dynamic_reconfigure - pcl_conversions) -find_package(Boost COMPONENTS signals) - -# Resolve system dependency on yaml-cpp, which apparently does not -# provide a CMake find_package() module. -find_package(PkgConfig REQUIRED) -pkg_check_modules(YAML_CPP REQUIRED yaml-cpp) -find_path(YAML_CPP_INCLUDE_DIR - NAMES yaml_cpp.h - PATHS ${YAML_CPP_INCLUDE_DIRS}) -find_library(YAML_CPP_LIBRARY - NAMES YAML_CPP - PATHS ${YAML_CPP_LIBRARY_DIRS}) - -link_directories(${YAML_CPP_LIBRARY_DIRS}) - -generate_dynamic_reconfigure_options( - cfg/CloudNode.cfg cfg/TransformNode.cfg -) - -if(NOT ${YAML_CPP_VERSION} VERSION_LESS "0.5") -add_definitions(-DHAVE_NEW_YAMLCPP) -endif(NOT ${YAML_CPP_VERSION} VERSION_LESS "0.5") - -include_directories( - include - ${velodyne_msgs_INCLUDE_DIRS} - ${catkin_INCLUDE_DIRS} - ${dynamic_reconfigure_PACKAGE_PATH}/cmake/cfgbuild.cmake -) - -catkin_package( - CATKIN_DEPENDS - angles - nodelet - pcl_ros - roscpp - roslib - sensor_msgs - tf - dynamic_reconfigure - velodyne_driver - INCLUDE_DIRS include - LIBRARIES velodyne_rawdata) - -#add_executable(dynamic_reconfigure_node src/dynamic_reconfigure_node.cpp) -#target_link_libraries(dynamic_reconfigure_node -# ${catkin_LIBRARIES} -# ) - -add_subdirectory(src/lib) -add_subdirectory(src/conversions) - -install(DIRECTORY include/${PROJECT_NAME}/ - DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}) -install(FILES nodelets.xml - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) -install(DIRECTORY launch/ - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch) -install(DIRECTORY params/ - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/params) -install(PROGRAMS scripts/gen_calibration.py - DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) - - -if (CATKIN_ENABLE_TESTING) - add_subdirectory(tests) -endif() diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/cfg/CloudNode.cfg b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/cfg/CloudNode.cfg deleted file mode 100755 index c4f45c78365..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/cfg/CloudNode.cfg +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env python -PACKAGE = "velodyne_pointcloud" - -from math import pi -from dynamic_reconfigure.parameter_generator_catkin import * - -gen = ParameterGenerator() - -gen.add("min_range", double_t, 0, "min range to publish", 0.9, 0.1, 10.0) -gen.add("max_range", double_t, 0, "max range to publish", 130, 0.1, 200) -gen.add("view_direction", double_t, 0, "angle defining the center of view", - 0.0, -pi, pi) -gen.add("view_width", double_t, 0, "angle defining the view width", - 2*pi, 0.0, 2*pi) - -exit(gen.generate(PACKAGE, "cloud_node", "CloudNode")) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/cfg/TransformNode.cfg b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/cfg/TransformNode.cfg deleted file mode 100755 index e6948b9b733..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/cfg/TransformNode.cfg +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env python -PACKAGE = "velodyne_pointcloud" - -from math import pi -import dynamic_reconfigure.parameter_generator_catkin as pgc - -gen = pgc.ParameterGenerator() - -gen.add("min_range", - pgc.double_t, - 0, - "min range to publish", - 0.9, 0.1, 10.0) - -gen.add("max_range", - pgc.double_t, - 0, - "max range to publish", - 130, 0.1, 200) - -gen.add("view_direction", - pgc.double_t, - 0, - "angle defining the center of view", - 0.0, -pi, pi) - -gen.add("view_width", - pgc.double_t, - 0, - "angle defining the view width", - 2*pi, 0.0, 2*pi) - -gen.add("frame_id", - pgc.str_t, - 0, - "new frame of reference for point clouds", - "odom") - -exit(gen.generate(PACKAGE, "transform_node", "TransformNode")) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/calibration.h b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/calibration.h deleted file mode 100644 index 483709fd35e..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/calibration.h +++ /dev/null @@ -1,84 +0,0 @@ -/** - * \file calibration.h - * - * \author Piyush Khandelwal (piyushk@cs.utexas.edu) - * Copyright (C) 2012, Austin Robot Technology, University of Texas at Austin - * - * License: Modified BSD License - * - * $ Id: 02/14/2012 11:25:34 AM piyushk $ - */ - -#ifndef __VELODYNE_CALIBRATION_H -#define __VELODYNE_CALIBRATION_H - -#include -#include - -namespace velodyne_pointcloud { - - /** \brief correction values for a single laser - * - * Correction values for a single laser (as provided by db.xml from - * Velodyne). Includes parameters for Velodyne HDL-64E S2.1. - * - * http://velodynelidar.com/lidar/products/manual/63-HDL64E%20S2%20Manual_Rev%20D_2011_web.pdf - */ - - /** \brief Correction information for a single laser. */ - struct LaserCorrection { - - /** parameters in db.xml */ - float rot_correction; - float vert_correction; - float dist_correction; - bool two_pt_correction_available; - float dist_correction_x; - float dist_correction_y; - float vert_offset_correction; - float horiz_offset_correction; - int max_intensity; - int min_intensity; - float focal_distance; - float focal_slope; - - /** cached values calculated when the calibration file is read */ - float cos_rot_correction; ///< cosine of rot_correction - float sin_rot_correction; ///< sine of rot_correction - float cos_vert_correction; ///< cosine of vert_correction - float sin_vert_correction; ///< sine of vert_correction - - int laser_ring; ///< ring number for this laser - }; - - /** \brief Calibration information for the entire device. */ - class Calibration { - - public: - - std::map laser_corrections; - int num_lasers; - bool initialized; - bool ros_info; - - public: - - Calibration(bool info=true): - initialized(false), ros_info(info) {} - Calibration(const std::string& calibration_file, - bool info=true): - ros_info(info) - { - read(calibration_file); - } - - void read(const std::string& calibration_file); - void write(const std::string& calibration_file); - }; - -} /* velodyne_pointcloud */ - - -#endif /* end of include guard: __VELODYNE_CALIBRATION_H */ - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/point_types.h b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/point_types.h deleted file mode 100644 index 75a75e2806f..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/point_types.h +++ /dev/null @@ -1,46 +0,0 @@ -/* -*- mode: C++ -*- - * - * Copyright (C) 2011, 2012 Austin Robot Technology - * - * License: Modified BSD Software License Agreement - * - * $Id: data_base.h 1554 2011-06-14 22:11:17Z jack.oquin $ - */ - -/** \file - * - * Point Cloud Library point structures for Velodyne data. - * - * @author Jesse Vera - * @author Jack O'Quin - * @author Piyush Khandelwal - */ - -#ifndef __VELODYNE_POINTCLOUD_POINT_TYPES_H -#define __VELODYNE_POINTCLOUD_POINT_TYPES_H - -#include - -namespace velodyne_pointcloud -{ - /** Euclidean Velodyne coordinate, including intensity and ring number. */ - struct PointXYZIR - { - PCL_ADD_POINT4D; // quad-word XYZ - float intensity; ///< laser intensity reading - uint16_t ring; ///< laser ring number - EIGEN_MAKE_ALIGNED_OPERATOR_NEW // ensure proper alignment - } EIGEN_ALIGN16; - -}; // namespace velodyne_pointcloud - - -POINT_CLOUD_REGISTER_POINT_STRUCT(velodyne_pointcloud::PointXYZIR, - (float, x, x) - (float, y, y) - (float, z, z) - (float, intensity, intensity) - (uint16_t, ring, ring)) - -#endif // __VELODYNE_POINTCLOUD_POINT_TYPES_H - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/rawdata.h b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/rawdata.h deleted file mode 100644 index f7f828331f1..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/rawdata.h +++ /dev/null @@ -1,189 +0,0 @@ -/* -*- mode: C++ -*- - * - * Copyright (C) 2007 Austin Robot Technology, Yaxin Liu, Patrick Beeson - * Copyright (C) 2009, 2010, 2012 Austin Robot Technology, Jack O'Quin - * - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** @file - * - * @brief Interfaces for interpreting raw packets from the Velodyne 3D LIDAR. - * - * @author Yaxin Liu - * @author Patrick Beeson - * @author Jack O'Quin - */ - -#ifndef __VELODYNE_RAWDATA_H -#define __VELODYNE_RAWDATA_H - -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include - -namespace velodyne_rawdata -{ - // Shorthand typedefs for point cloud representations - typedef velodyne_pointcloud::PointXYZIR VPoint; - typedef pcl::PointCloud VPointCloud; - - /** - * Raw Velodyne packet constants and structures. - */ - static const int SIZE_BLOCK = 100; - static const int RAW_SCAN_SIZE = 3; - static const int SCANS_PER_BLOCK = 32; - static const int BLOCK_DATA_SIZE = (SCANS_PER_BLOCK * RAW_SCAN_SIZE); - - static const float ROTATION_RESOLUTION = 0.01f; // [deg] - static const uint16_t ROTATION_MAX_UNITS = 36000u; // [deg/100] - static const float DISTANCE_RESOLUTION = 0.002f; // [m] - - /** @todo make this work for both big and little-endian machines */ - static const uint16_t UPPER_BANK = 0xeeff; - static const uint16_t LOWER_BANK = 0xddff; - - - /** Special Defines for VLP16 support **/ - static const int VLP16_FIRINGS_PER_BLOCK = 2; - static const int VLP16_SCANS_PER_FIRING = 16; - static const float VLP16_BLOCK_TDURATION = 110.592f; // [µs] - static const float VLP16_DSR_TOFFSET = 2.304f; // [µs] - static const float VLP16_FIRING_TOFFSET = 55.296f; // [µs] - - - /** \brief Raw Velodyne data block. - * - * Each block contains data from either the upper or lower laser - * bank. The device returns three times as many upper bank blocks. - * - * use stdint.h types, so things work with both 64 and 32-bit machines - */ - typedef struct raw_block - { - uint16_t header; ///< UPPER_BANK or LOWER_BANK - uint16_t rotation; ///< 0-35999, divide by 100 to get degrees - uint8_t data[BLOCK_DATA_SIZE]; - } raw_block_t; - - /** used for unpacking the first two data bytes in a block - * - * They are packed into the actual data stream misaligned. I doubt - * this works on big endian machines. - */ - union two_bytes - { - uint16_t uint; - uint8_t bytes[2]; - }; - - static const int PACKET_SIZE = 1206; - static const int BLOCKS_PER_PACKET = 12; - static const int PACKET_STATUS_SIZE = 4; - static const int SCANS_PER_PACKET = (SCANS_PER_BLOCK * BLOCKS_PER_PACKET); - - /** \brief Raw Velodyne packet. - * - * revolution is described in the device manual as incrementing - * (mod 65536) for each physical turn of the device. Our device - * seems to alternate between two different values every third - * packet. One value increases, the other decreases. - * - * \todo figure out if revolution is only present for one of the - * two types of status fields - * - * status has either a temperature encoding or the microcode level - */ - typedef struct raw_packet - { - raw_block_t blocks[BLOCKS_PER_PACKET]; - uint16_t revolution; - uint8_t status[PACKET_STATUS_SIZE]; - } raw_packet_t; - - /** \brief Velodyne data conversion class */ - class RawData - { - public: - - RawData(); - ~RawData() {} - - /** \brief Set up for data processing. - * - * Perform initializations needed before data processing can - * begin: - * - * - read device-specific angles calibration - * - * @param private_nh private node handle for ROS parameters - * @returns 0 if successful; - * errno value for failure - */ - int setup(ros::NodeHandle private_nh); - - /** \brief Set up for data processing offline. - * Performs the same initialization as in setup, in the abscence of a ros::NodeHandle. - * this method is useful if unpacking data directly from bag files, without passing - * through a communication overhead. - * - * @param calibration_file path to the calibration file - * @param max_range_ cutoff for maximum range - * @param min_range_ cutoff for minimum range - * @returns 0 if successful; - * errno value for failure - */ - int setupOffline(std::string calibration_file, double max_range_, double min_range_); - - void unpack(const velodyne_msgs::VelodynePacket &pkt, VPointCloud &pc, int packets_num); - - void setParameters(double min_range, double max_range, double view_direction, - double view_width); - - private: - - /** configuration parameters */ - typedef struct { - std::string calibrationFile; ///< calibration file name - double max_range; ///< maximum range to publish - double min_range; ///< minimum range to publish - int min_angle; ///< minimum angle to publish - int max_angle; ///< maximum angle to publish - - double tmp_min_angle; - double tmp_max_angle; - } Config; - Config config_; - - /** - * Calibration file - */ - velodyne_pointcloud::Calibration calibration_; - float sin_rot_table_[ROTATION_MAX_UNITS]; - float cos_rot_table_[ROTATION_MAX_UNITS]; - - /** add private function to handle the VLP16 **/ - void unpack_vlp16(const velodyne_msgs::VelodynePacket &pkt, VPointCloud &pc); - - /** in-line test whether a point is in range */ - bool pointInRange(float range) - { - return (range >= config_.min_range - && range <= config_.max_range); - } - }; - -} // namespace velodyne_rawdata - -#endif // __VELODYNE_RAWDATA_H diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/interface.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/interface.yaml deleted file mode 100644 index 18bd6798126..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/interface.yaml +++ /dev/null @@ -1,9 +0,0 @@ -- name: /cloud_node - publish: [/velodyne_points] - subscribe: [/velodyne_packets] -- name: /colors_node - publish: [/velodyne_rings] - subscribe: [/velodyne_points] -- name: /transform_node - publish: [/velodyne_points] - subscribe: [/velodyne_packets] diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/32c_points.launch b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/32c_points.launch deleted file mode 100644 index 8ed72f2761f..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/32c_points.launch +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/32e_points.launch b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/32e_points.launch deleted file mode 100644 index 460687e5581..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/32e_points.launch +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/VLP-32C_points.launch b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/VLP-32C_points.launch deleted file mode 100644 index d745c269d78..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/VLP-32C_points.launch +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/VLP16_points.launch b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/VLP16_points.launch deleted file mode 100644 index 1234280f89c..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/VLP16_points.launch +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/cloud_nodelet.launch b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/cloud_nodelet.launch deleted file mode 100644 index 049a89f5146..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/cloud_nodelet.launch +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/laserscan_nodelet.launch b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/laserscan_nodelet.launch deleted file mode 100644 index 7c5be247bb8..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/laserscan_nodelet.launch +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/transform_nodelet.launch b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/transform_nodelet.launch deleted file mode 100644 index 465f33fc283..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/transform_nodelet.launch +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_hdl32c.launch b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_hdl32c.launch deleted file mode 100644 index 134c8dbbf2e..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_hdl32c.launch +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/mainpage.dox b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/mainpage.dox deleted file mode 100644 index 7e1d763adeb..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/mainpage.dox +++ /dev/null @@ -1,8 +0,0 @@ -/** -\mainpage -\htmlinclude manifest.html - -Nodes and nodelets for converting raw Velodyne 3D LIDAR data to point -clouds. - -*/ diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/nodelets.xml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/nodelets.xml deleted file mode 100644 index 0b02a54a221..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/nodelets.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - Aggregates points from multiple packets, publishing PointCloud2. - - - - - - - - Converts a Velodyne PointCloud2 to PointXYZRGB, assigning colors - for visualization of the laser rings. - - - - - - - - Transforms packets into /odom frame, publishing multiple packets - as PointCloud2. - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/package.xml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/package.xml deleted file mode 100644 index 7115ffbe143..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/package.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - velodyne_pointcloud - 1.10.0 - - Point cloud conversions for Velodyne 3D LIDARs. - - Josh Whitley - Jack O'Quin - Piyush Khandelwal - Jesse Vera - BSD - http://ros.org/wiki/velodyne_pointcloud - https://github.com/ros-drivers/velodyne - https://github.com/ros-drivers/velodyne/issues - - catkin - - angles - nodelet - pcl_conversions - pcl_ros - pluginlib - roscpp - roslib - sensor_msgs - tf - velodyne_driver - velodyne_msgs - yaml-cpp - dynamic_reconfigure - vector_map_msgs - - - roslaunch - rostest - tf2_ros - - angles - nodelet - pcl_ros - pluginlib - python-yaml - roscpp - roslib - sensor_msgs - tf - velodyne_driver - velodyne_msgs - yaml-cpp - dynamic_reconfigure - velodyne_laserscan - vector_map_msgs - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/32c-db.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/32c-db.yaml deleted file mode 100644 index fbd9b083afc..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/32c-db.yaml +++ /dev/null @@ -1,98 +0,0 @@ -lasers: -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 0, rot_correction: -0.024434609527920613, - vert_correction: -0.4363323129985824, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 1, rot_correction: 0.07330382858376185, - vert_correction: -0.017453292519943295, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 2, rot_correction: -0.024434609527920613, - vert_correction: -0.029094638630745476, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 3, rot_correction: 0.024434609527920613, - vert_correction: -0.2729520417193932, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 4, rot_correction: -0.024434609527920613, - vert_correction: -0.19739673840055869, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 5, rot_correction: 0.024434609527920613, - vert_correction: 0.0, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 6, rot_correction: -0.07330382858376185, - vert_correction: -0.011641346110802179, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 7, rot_correction: 0.024434609527920613, - vert_correction: -0.15433946575385857, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 8, rot_correction: -0.024434609527920613, - vert_correction: -0.12660618393966866, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 9, rot_correction: 0.07330382858376185, - vert_correction: 0.005811946409141118, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 10, rot_correction: -0.024434609527920613, - vert_correction: -0.005811946409141118, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 11, rot_correction: 0.024434609527920613, - vert_correction: -0.10730284241261137, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 12, rot_correction: -0.07330382858376185, - vert_correction: -0.0930784090088576, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 13, rot_correction: 0.024434609527920613, - vert_correction: 0.02326523892908441, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 14, rot_correction: -0.07330382858376185, - vert_correction: 0.011641346110802179, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 15, rot_correction: 0.024434609527920613, - vert_correction: -0.06981317007977318, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 16, rot_correction: -0.024434609527920613, - vert_correction: -0.08145451619057535, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 17, rot_correction: 0.07330382858376185, - vert_correction: 0.029094638630745476, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 18, rot_correction: -0.024434609527920613, - vert_correction: 0.017453292519943295, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 19, rot_correction: 0.07330382858376185, - vert_correction: -0.06400122367063206, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 20, rot_correction: -0.07330382858376185, - vert_correction: -0.058171823968971005, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 21, rot_correction: 0.024434609527920613, - vert_correction: 0.058171823968971005, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 22, rot_correction: -0.024434609527920613, - vert_correction: 0.04071853144902771, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 23, rot_correction: 0.024434609527920613, - vert_correction: -0.04654793115068877, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 24, rot_correction: -0.024434609527920613, - vert_correction: -0.05235987755982989, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 25, rot_correction: 0.024434609527920613, - vert_correction: 0.12217304763960307, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 26, rot_correction: -0.024434609527920613, - vert_correction: 0.08145451619057535, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 27, rot_correction: 0.07330382858376185, - vert_correction: -0.04071853144902771, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 28, rot_correction: -0.07330382858376185, - vert_correction: -0.03490658503988659, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 29, rot_correction: 0.024434609527920613, - vert_correction: 0.2617993877991494, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 30, rot_correction: -0.024434609527920613, - vert_correction: 0.18034487160857407, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 31, rot_correction: 0.024434609527920613, - vert_correction: -0.02326523892908441, vert_offset_correction: 0.0} -num_lasers: 32 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/32db.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/32db.yaml deleted file mode 100644 index 3f0bde5dad4..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/32db.yaml +++ /dev/null @@ -1,99 +0,0 @@ -# standard Velodyne HDL-32E calibration parameters -lasers: -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 0, rot_correction: 0.0, - vert_correction: -0.5352924815866609, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 1, rot_correction: 0.0, - vert_correction: -0.1628392174657417, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 2, rot_correction: 0.0, - vert_correction: -0.5119050696099369, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 3, rot_correction: 0.0, - vert_correction: -0.13962634015954636, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 4, rot_correction: 0.0, - vert_correction: -0.4886921905584123, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 5, rot_correction: 0.0, - vert_correction: -0.11641346285335104, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 6, rot_correction: 0.0, - vert_correction: -0.4654793115068877, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 7, rot_correction: 0.0, - vert_correction: -0.09302604738596851, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 8, rot_correction: 0.0, - vert_correction: -0.44209189953016365, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 9, rot_correction: 0.0, - vert_correction: -0.06981317007977318, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 10, rot_correction: 0.0, - vert_correction: -0.4188790204786391, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 11, rot_correction: 0.0, - vert_correction: -0.046600292773577856, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 12, rot_correction: 0.0, - vert_correction: -0.39566614142711454, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 13, rot_correction: 0.0, - vert_correction: -0.023212879051524585, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 14, rot_correction: 0.0, - vert_correction: -0.3722787294503905, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 15, rot_correction: 0.0, - vert_correction: 0.0, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 16, rot_correction: 0.0, - vert_correction: -0.3490658503988659, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 17, rot_correction: 0.0, - vert_correction: 0.023212879051524585, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 18, rot_correction: 0.0, - vert_correction: -0.32585297134734137, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 19, rot_correction: 0.0, - vert_correction: 0.046600292773577856, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 20, rot_correction: 0.0, - vert_correction: -0.30246555937061725, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 21, rot_correction: 0.0, - vert_correction: 0.06981317007977318, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 22, rot_correction: 0.0, - vert_correction: -0.2792526803190927, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 23, rot_correction: 0.0, - vert_correction: 0.09302604738596851, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 24, rot_correction: 0.0, - vert_correction: -0.25603980126756815, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 25, rot_correction: 0.0, - vert_correction: 0.11641346285335104, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 26, rot_correction: 0.0, - vert_correction: -0.23265238929084414, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 27, rot_correction: 0.0, - vert_correction: 0.13962634015954636, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 28, rot_correction: 0.0, - vert_correction: -0.20943951023931956, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 29, rot_correction: 0.0, - vert_correction: 0.1628392174657417, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 30, rot_correction: 0.0, - vert_correction: -0.18622663118779495, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 31, rot_correction: 0.0, - vert_correction: 0.18622663118779495, vert_offset_correction: 0.0} -num_lasers: 32 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/64_s3.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/64_s3.yaml deleted file mode 100644 index 33b3c041290..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/64_s3.yaml +++ /dev/null @@ -1,236 +0,0 @@ -lasers: -- {dist_correction: 1.3341370000000001, dist_correction_x: 1.3770175, dist_correction_y: 1.3693201, - focal_distance: 23.0, focal_slope: 0.80000001, horiz_offset_correction: 0.025999999, - laser_id: 0, min_intensity: 40, rot_correction: -0.0875638125990495, vert_correction: -0.11998075876479478, - vert_offset_correction: 0.21524197} -- {dist_correction: 1.2784334, dist_correction_x: 1.3453961, dist_correction_y: 1.3687756, - focal_distance: 24.0, focal_slope: 0.80000001, horiz_offset_correction: -0.025999999, - laser_id: 1, min_intensity: 40, rot_correction: -0.0516039806967789, vert_correction: -0.11377040779263016, - vert_offset_correction: 0.21478924} -- {dist_correction: 1.2389702, dist_correction_x: 1.3081396, dist_correction_y: 1.3355688000000001, - focal_distance: 24.0, focal_slope: 0.89999998, horiz_offset_correction: 0.025999999, - laser_id: 2, min_intensity: 40, rot_correction: 0.04853123779152178, vert_correction: 0.011001473674968943, - vert_offset_correction: 0.20578202999999998} -- {dist_correction: 1.3441640000000001, dist_correction_x: 1.3580962, dist_correction_y: 1.4128375, - focal_distance: 24.0, focal_slope: 1.3, horiz_offset_correction: -0.025999999, laser_id: 3, - min_intensity: 40, rot_correction: 0.08738408208333763, vert_correction: 0.017214444386340795, - vert_offset_correction: 0.2053352} -- {dist_correction: 1.1810606000000001, dist_correction_x: 1.2801595000000001, dist_correction_y: 1.2827992000000001, - focal_distance: 24.0, focal_slope: 1.2, horiz_offset_correction: 0.025999999, laser_id: 4, - min_intensity: 40, rot_correction: -0.01254561725328956, vert_correction: -0.10835938096596465, - vert_offset_correction: 0.21439533000000002} -- {dist_correction: 1.2961924999999999, dist_correction_x: 1.3474356, dist_correction_y: 1.3811745, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: -0.025999999, laser_id: 5, - min_intensity: 40, rot_correction: 0.026674055453788554, vert_correction: -0.10229472309843952, - vert_offset_correction: 0.21395437} -- {dist_correction: 1.2419437, dist_correction_x: 1.2903035, dist_correction_y: 1.2895184000000002, - focal_distance: 18.0, focal_slope: 1.2, horiz_offset_correction: 0.025999999, laser_id: 6, - min_intensity: 40, rot_correction: -0.026249280711096678, vert_correction: -0.14464475168031724, - vert_offset_correction: 0.21704693} -- {dist_correction: 1.331787, dist_correction_x: 1.3404492, dist_correction_y: 1.3704454000000001, - focal_distance: 24.0, focal_slope: 1.2, horiz_offset_correction: -0.025999999, laser_id: 7, - min_intensity: 40, rot_correction: 0.012960040448187856, vert_correction: -0.136949821901077, - vert_offset_correction: 0.21648251} -- {dist_correction: 1.4419050999999998, dist_correction_x: 1.4522223, dist_correction_y: 1.4566838000000002, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: 0.025999999, laser_id: 8, - min_intensity: 40, rot_correction: 0.06214989882783487, vert_correction: -0.0973970360020291, - vert_offset_correction: 0.21359867000000002} -- {dist_correction: 1.2242116, dist_correction_x: 1.2461514, dist_correction_y: 1.2859863000000002, - focal_distance: 24.0, focal_slope: 1.2, horiz_offset_correction: -0.025999999, laser_id: 9, - min_intensity: 20, rot_correction: 0.10129050253474403, vert_correction: -0.09075139991441711, - vert_offset_correction: 0.21311657} -- {dist_correction: 1.2606423, dist_correction_x: 1.2659447000000001, dist_correction_y: 1.2614133, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: 0.025999999, laser_id: 10, - min_intensity: 40, rot_correction: 0.04840783777741802, vert_correction: -0.13221247471238878, - vert_offset_correction: 0.21613562000000003} -- {dist_correction: 1.2711886000000001, dist_correction_x: 1.2960101, dist_correction_y: 1.3366455, - focal_distance: 24.0, focal_slope: 1.2, horiz_offset_correction: -0.025999999, laser_id: 11, - min_intensity: 40, rot_correction: 0.08791822962893499, vert_correction: -0.12569898099310378, - vert_offset_correction: 0.21565939} -- {dist_correction: 1.3744284, dist_correction_x: 1.4837148, dist_correction_y: 1.4738747, - focal_distance: 24.0, focal_slope: 0.69999999, horiz_offset_correction: 0.025999999, - laser_id: 12, min_intensity: 40, rot_correction: -0.08779799564209434, vert_correction: -0.048893669373332414, - vert_offset_correction: 0.21009163} -- {dist_correction: 1.2048839, dist_correction_x: 1.2105705, dist_correction_y: 1.221711, - focal_distance: 24.0, focal_slope: 1.3, horiz_offset_correction: -0.025999999, laser_id: 13, - min_intensity: 40, rot_correction: -0.04901914632924604, vert_correction: -0.042406825086396115, - vert_offset_correction: 0.20962421} -- {dist_correction: 1.2685587, dist_correction_x: 1.3017062000000001, dist_correction_y: 1.2806761, - focal_distance: 24.0, focal_slope: 0.80000001, horiz_offset_correction: 0.025999999, - laser_id: 14, min_intensity: 40, rot_correction: -0.1014407876006455, vert_correction: -0.08413830549070854, - vert_offset_correction: 0.21263739} -- {dist_correction: 1.3096053, dist_correction_x: 1.3180252, dist_correction_y: 1.3305025000000001, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: -0.025999999, laser_id: 15, - min_intensity: 40, rot_correction: -0.06274414155023689, vert_correction: -0.07784292556804527, - vert_offset_correction: 0.21218174} -- {dist_correction: 1.1794215, dist_correction_x: 1.2482835, dist_correction_y: 1.2621236, - focal_distance: 24.0, focal_slope: 1.2, horiz_offset_correction: 0.025999999, laser_id: 16, - min_intensity: 20, rot_correction: -0.01320811282142007, vert_correction: -0.03677380634151095, - vert_offset_correction: 0.20921852000000002} -- {dist_correction: 1.3635158, dist_correction_x: 1.3565096, dist_correction_y: 1.3900846999999998, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: -0.025999999, laser_id: 17, - min_intensity: 40, rot_correction: 0.02572681989017068, vert_correction: -0.03077087029765335, - vert_offset_correction: 0.20878639} -- {dist_correction: 1.4423683, dist_correction_x: 1.4654208, dist_correction_y: 1.4381956, - focal_distance: 24.0, focal_slope: 1.2, horiz_offset_correction: 0.025999999, laser_id: 18, - min_intensity: 40, rot_correction: -0.02671174583898537, vert_correction: -0.07316812923441927, - vert_offset_correction: 0.21184366000000002} -- {dist_correction: 1.2666303, dist_correction_x: 1.3264554000000002, dist_correction_y: 1.3313803, - focal_distance: 24.0, focal_slope: 1.3, horiz_offset_correction: -0.025999999, laser_id: 19, - min_intensity: 40, rot_correction: 0.01210807123832914, vert_correction: -0.066536682673626, - vert_offset_correction: 0.2113645} -- {dist_correction: 1.1811635, dist_correction_x: 1.2530032, dist_correction_y: 1.2701639, - focal_distance: 24.0, focal_slope: 1.3, horiz_offset_correction: 0.025999999, laser_id: 20, - min_intensity: 40, rot_correction: 0.061021080954168756, vert_correction: -0.025133421907126623, - vert_offset_correction: 0.20838072000000002} -- {dist_correction: 1.1797396, dist_correction_x: 1.1966942, dist_correction_y: 1.2427734, - focal_distance: 10.0, focal_slope: 1.0, horiz_offset_correction: -0.025999999, laser_id: 21, - min_intensity: 40, rot_correction: 0.09963826914505108, vert_correction: -0.017818762719981656, - vert_offset_correction: 0.20785452} -- {dist_correction: 1.2759121, dist_correction_x: 1.3082083, dist_correction_y: 1.2781748000000002, - focal_distance: 24.0, focal_slope: 1.1, horiz_offset_correction: 0.025999999, laser_id: 22, - min_intensity: 40, rot_correction: 0.04789914062297325, vert_correction: -0.061039906075480765, - vert_offset_correction: 0.21096764} -- {dist_correction: 1.1052917, dist_correction_x: 1.1863661, dist_correction_y: 1.2294272, - focal_distance: 24.0, focal_slope: 1.2, horiz_offset_correction: -0.025999999, laser_id: 23, - min_intensity: 40, rot_correction: 0.0864218331974941, vert_correction: -0.054765011082248155, - vert_offset_correction: 0.21051493000000002} -- {dist_correction: 1.4327750000000001, dist_correction_x: 1.4601050000000002, dist_correction_y: 1.4634244, - focal_distance: 24.0, focal_slope: 1.1, horiz_offset_correction: 0.025999999, laser_id: 24, - min_intensity: 40, rot_correction: -0.08853664865213563, vert_correction: 0.022690591018194532, - vert_offset_correction: 0.20494126999999998} -- {dist_correction: 1.3748683, dist_correction_x: 1.3880458, dist_correction_y: 1.4084926, - focal_distance: 24.0, focal_slope: 1.3, horiz_offset_correction: -0.025999999, laser_id: 25, - min_intensity: 40, rot_correction: -0.0500542749286651, vert_correction: 0.02865556615082126, - vert_offset_correction: 0.20451208} -- {dist_correction: 1.5232005000000002, dist_correction_x: 1.5581267, dist_correction_y: 1.5533673, - focal_distance: 24.0, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 26, - min_intensity: 40, rot_correction: -0.1022799087437486, vert_correction: -0.013486229117863189, - vert_offset_correction: 0.2075429} -- {dist_correction: 1.2030782, dist_correction_x: 1.2052515, dist_correction_y: 1.2159852, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: -0.025999999, laser_id: 27, - min_intensity: 40, rot_correction: -0.06285698057703683, vert_correction: -0.007231806662223545, - vert_offset_correction: 0.20709312000000002} -- {dist_correction: 1.3160265999999998, dist_correction_x: 1.3362192, dist_correction_y: 1.3606879, - focal_distance: 24.0, focal_slope: 1.2, horiz_offset_correction: 0.025999999, laser_id: 28, - min_intensity: 40, rot_correction: -0.01320027105709086, vert_correction: 0.03421014630846329, - vert_offset_correction: 0.20411228} -- {dist_correction: 1.2353125, dist_correction_x: 1.2489084, dist_correction_y: 1.2976976, - focal_distance: 24.0, focal_slope: 1.2, horiz_offset_correction: -0.025999999, laser_id: 29, - min_intensity: 40, rot_correction: 0.025127123013856178, vert_correction: 0.039885086116652105, - vert_offset_correction: 0.20370367000000003} -- {dist_correction: 1.4900142, dist_correction_x: 1.4986922000000003, dist_correction_y: 1.4892090999999998, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: 0.025999999, laser_id: 30, - min_intensity: 40, rot_correction: -0.027599874082155206, vert_correction: -0.0015491891506552067, - vert_offset_correction: 0.20668451000000002} -- {dist_correction: 1.37972, dist_correction_x: 1.3738556, dist_correction_y: 1.4163486, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: -0.025999999, laser_id: 31, - min_intensity: 10, rot_correction: 0.01160064032025669, vert_correction: 0.004951184754109629, - vert_offset_correction: 0.20621710000000001} -- {dist_correction: 1.3428465, dist_correction_x: 1.3557657, dist_correction_y: 1.3418614, - focal_distance: 10.0, focal_slope: 1.8, horiz_offset_correction: 0.025999999, laser_id: 32, - max_intensity: 240, rot_correction: -0.138260122601024, vert_correction: -0.38958258687977804, - vert_offset_correction: 0.15966215} -- {dist_correction: 1.2656889, dist_correction_x: 1.2834363, dist_correction_y: 1.2928867, - focal_distance: 2.0, focal_slope: 0.89999998, horiz_offset_correction: -0.025999999, - laser_id: 33, rot_correction: -0.07863341834752928, vert_correction: -0.3813684914612396, - vert_offset_correction: 0.15906769} -- {dist_correction: 1.3147719, dist_correction_x: 1.3500304, dist_correction_y: 1.3394234, - focal_distance: 0.25, focal_slope: 0.60000002, horiz_offset_correction: 0.025999999, - laser_id: 34, rot_correction: 0.07737380899037723, vert_correction: -0.19529038779278932, - vert_offset_correction: 0.14644182} -- {dist_correction: 1.2474113, dist_correction_x: 1.2436385, dist_correction_y: 1.2742156, - focal_distance: 8.0, focal_slope: 1.4, horiz_offset_correction: -0.025999999, laser_id: 35, - rot_correction: 0.13389198061697338, vert_correction: -0.18440860897245506, vert_offset_correction: 0.14574067} -- {dist_correction: 1.3043698000000001, dist_correction_x: 1.3455293000000002, dist_correction_y: 1.3310945, - focal_distance: 6.0, focal_slope: 0.69999999, horiz_offset_correction: 0.025999999, - laser_id: 36, rot_correction: -0.01809471498268523, vert_correction: -0.3735607435991504, - vert_offset_correction: 0.15850626} -- {dist_correction: 1.3558932, dist_correction_x: 1.3648607000000001, dist_correction_y: 1.3844502, - focal_distance: 12.0, focal_slope: 2.0, horiz_offset_correction: -0.025999999, laser_id: 37, - rot_correction: 0.04160905428393128, vert_correction: -0.3643492972328523, vert_offset_correction: 0.15784829} -- {dist_correction: 1.3631388999999998, dist_correction_x: 1.3619556, dist_correction_y: 1.32826, - focal_distance: 0.25, focal_slope: 1.2, horiz_offset_correction: 0.025999999, laser_id: 38, - rot_correction: -0.04136107615847867, vert_correction: -0.4249418405144618, vert_offset_correction: 0.16226859999999999} -- {dist_correction: 1.2119859, dist_correction_x: 1.195593, dist_correction_y: 1.2124264, - focal_distance: 0.25, focal_slope: 1.0, horiz_offset_correction: -0.025999999, laser_id: 39, - rot_correction: 0.019412234364418465, vert_correction: -0.4177926751923203, vert_offset_correction: 0.16173511999999998} -- {dist_correction: 1.1596658, dist_correction_x: 1.2247992, dist_correction_y: 1.1987354000000001, - focal_distance: 0.25, focal_slope: 0.89999998, horiz_offset_correction: 0.025999999, - laser_id: 40, rot_correction: 0.10110012725592424, vert_correction: -0.3549289349550905, - vert_offset_correction: 0.15718016} -- {dist_correction: 1.2120467, dist_correction_x: 1.2054861, dist_correction_y: 1.2306758, - focal_distance: 11.0, focal_slope: 1.8, horiz_offset_correction: -0.025999999, laser_id: 41, - rot_correction: 0.16126966730403272, vert_correction: -0.3449354938174363, vert_offset_correction: 0.15647646} -- {dist_correction: 1.3333382, dist_correction_x: 1.2956323, dist_correction_y: 1.3181738, - focal_distance: 0.25, focal_slope: 1.3, horiz_offset_correction: 0.025999999, laser_id: 42, - rot_correction: 0.08026351398098995, vert_correction: -0.4069834497089914, vert_offset_correction: 0.16093489000000002} -- {dist_correction: 1.2031100000000001, dist_correction_x: 1.1726703, dist_correction_y: 1.1966344, - focal_distance: 5.0, focal_slope: 1.4, horiz_offset_correction: -0.025999999, laser_id: 43, - rot_correction: 0.14212699904258477, vert_correction: -0.3982280404229469, vert_offset_correction: 0.16029216999999998} -- {dist_correction: 1.3584755000000002, dist_correction_x: 1.3747638, dist_correction_y: 1.3606628, - focal_distance: 12.0, focal_slope: 2.0, horiz_offset_correction: 0.025999999, laser_id: 44, - rot_correction: -0.13554782509288874, vert_correction: -0.27988262200601505, vert_offset_correction: 0.15201041} -- {dist_correction: 1.2297962, dist_correction_x: 1.2653230000000002, dist_correction_y: 1.2591778, - focal_distance: 4.0, focal_slope: 0.5, horiz_offset_correction: -0.025999999, laser_id: 45, - rot_correction: -0.0759075648670938, vert_correction: -0.2741710494821561, vert_offset_correction: 0.15162681} -- {dist_correction: 1.3673357, dist_correction_x: 1.4087834000000001, dist_correction_y: 1.3718388, - focal_distance: 11.0, focal_slope: 2.0, horiz_offset_correction: 0.025999999, laser_id: 46, - rot_correction: -0.16045821835622, vert_correction: -0.33278957301988255, vert_offset_correction: 0.15562797} -- {dist_correction: 1.3467569000000001, dist_correction_x: 1.3862437, dist_correction_y: 1.3835794000000001, - focal_distance: 2.0, focal_slope: 0.89999998, horiz_offset_correction: -0.025999999, - laser_id: 47, rot_correction: -0.09918226173539475, vert_correction: -0.3263478594567443, - vert_offset_correction: 0.15518085} -- {dist_correction: 1.3194414, dist_correction_x: 1.3914738, dist_correction_y: 1.3407483, - focal_distance: 13.0, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 48, - rot_correction: -0.017567135111063132, vert_correction: -0.2663114478879902, vert_offset_correction: 0.15110094999999998} -- {dist_correction: 1.1799297, dist_correction_x: 1.2140034, dist_correction_y: 1.2188379, - focal_distance: 13.0, focal_slope: 1.6, horiz_offset_correction: -0.025999999, laser_id: 49, - rot_correction: 0.040753359494251254, vert_correction: -0.2574624191408687, vert_offset_correction: 0.15051157} -- {dist_correction: 1.3178593, dist_correction_x: 1.3847113, dist_correction_y: 1.3503816000000002, - focal_distance: 11.5, focal_slope: 1.3, horiz_offset_correction: 0.025999999, laser_id: 50, - rot_correction: -0.03918480766087442, vert_correction: -0.31943572730031605, vert_offset_correction: 0.15470325000000001} -- {dist_correction: 1.1757167, dist_correction_x: 1.2291534, dist_correction_y: 1.2066114000000001, - focal_distance: 10.0, focal_slope: 1.1, horiz_offset_correction: -0.025999999, laser_id: 51, - rot_correction: 0.019609919082145603, vert_correction: -0.31071396796225, vert_offset_correction: 0.15410372} -- {dist_correction: 1.3012508, dist_correction_x: 1.3459103, dist_correction_y: 1.3279784000000001, - focal_distance: 3.0, focal_slope: 0.60000002, horiz_offset_correction: 0.025999999, - laser_id: 52, rot_correction: 0.09831982124815579, vert_correction: -0.2485719737305974, - vert_offset_correction: 0.14992219} -- {dist_correction: 1.3961946, dist_correction_x: 1.3866818, dist_correction_y: 1.4235323, - focal_distance: 10.0, focal_slope: 1.8, horiz_offset_correction: -0.025999999, laser_id: 53, - rot_correction: 0.15524662855785065, vert_correction: -0.23431031245389858, vert_offset_correction: 0.14898224000000002} -- {dist_correction: 1.3121657, dist_correction_x: 1.3609177, dist_correction_y: 1.3314134000000002, - focal_distance: 2.5, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 54, - rot_correction: 0.0774651054182198, vert_correction: -0.30134662878716373, vert_offset_correction: 0.15346353000000001} -- {dist_correction: 1.3857425, dist_correction_x: 1.3832364000000001, dist_correction_y: 1.4127867, - focal_distance: 12.0, focal_slope: 2.0, horiz_offset_correction: -0.025999999, laser_id: 55, - rot_correction: 0.13762208607703091, vert_correction: -0.29222440365222757, vert_offset_correction: 0.15284367} -- {dist_correction: 1.3394890000000002, dist_correction_x: 1.355778, dist_correction_y: 1.3378203, - focal_distance: 8.0, focal_slope: 1.6, horiz_offset_correction: 0.025999999, laser_id: 56, - rot_correction: -0.1324210241047096, vert_correction: -0.17344281000192982, vert_offset_correction: 0.14503697000000002} -- {dist_correction: 1.2533094, dist_correction_x: 1.2771513, dist_correction_y: 1.2885771, - focal_distance: 0.25, focal_slope: 0.89999998, horiz_offset_correction: -0.025999999, - laser_id: 57, rot_correction: -0.07550436239395657, vert_correction: -0.16800350360539426, - vert_offset_correction: 0.14468894000000002} -- {dist_correction: 1.3952191, dist_correction_x: 1.3993332, dist_correction_y: 1.4028029000000002, - focal_distance: 10.0, focal_slope: 1.8, horiz_offset_correction: 0.025999999, laser_id: 58, - rot_correction: -0.15500965822399038, vert_correction: -0.2253176954692155, vert_offset_correction: 0.14839286} -- {dist_correction: 1.4072631999999998, dist_correction_x: 1.4515788, dist_correction_y: 1.4461058, - focal_distance: 2.0, focal_slope: 0.5, horiz_offset_correction: -0.025999999, laser_id: 59, - rot_correction: -0.0964995842099951, vert_correction: -0.2195225565807711, vert_offset_correction: 0.14801434} -- {dist_correction: 1.2998834, dist_correction_x: 1.3250862, dist_correction_y: 1.3162988000000002, - focal_distance: 3.0, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 60, - rot_correction: -0.018001111229571518, vert_correction: -0.1604433882935658, vert_offset_correction: 0.14420626} -- {dist_correction: 1.2459258, dist_correction_x: 1.2490827, dist_correction_y: 1.2775961, - focal_distance: 4.0, focal_slope: 1.2, horiz_offset_correction: -0.025999999, laser_id: 61, - rot_correction: 0.03613890442885447, vert_correction: -0.1503078633921653, vert_offset_correction: 0.14356099} -- {dist_correction: 1.3532121000000001, dist_correction_x: 1.3825903, dist_correction_y: 1.3751887999999999, - focal_distance: 12.0, focal_slope: 0.60000002, horiz_offset_correction: 0.025999999, - laser_id: 62, rot_correction: -0.03914617479788153, vert_correction: -0.21215009383412933, - vert_offset_correction: 0.1475342} -- {dist_correction: 1.4005698000000002, dist_correction_x: 1.4151000999999999, dist_correction_y: 1.4399539, - focal_distance: 6.0, focal_slope: 0.44999999, horiz_offset_correction: -0.025999999, - laser_id: 63, rot_correction: 0.01847893350954851, vert_correction: -0.20283293287503792, - vert_offset_correction: 0.14692958} -num_lasers: 64 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/64e_s2.1-sztaki.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/64e_s2.1-sztaki.yaml deleted file mode 100644 index 4c191d2447a..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/64e_s2.1-sztaki.yaml +++ /dev/null @@ -1,245 +0,0 @@ -lasers: -- {dist_correction: 1.5195264000000002, dist_correction_x: 1.5500304, dist_correction_y: 1.5231381, - focal_distance: 12.0, focal_slope: 1.4, horiz_offset_correction: 0.025999999, laser_id: 0, - max_intensity: 235.0, min_intensity: 30.0, rot_correction: -0.1248942899601548, - vert_correction: -0.15304134919741974, vert_offset_correction: 0.19548199} -- {dist_correction: 1.5145139, dist_correction_x: 1.5256960000000002, dist_correction_y: 1.5491043, - focal_distance: 5.0, focal_slope: 1.0, horiz_offset_correction: -0.025999999, laser_id: 1, - min_intensity: 40.0, rot_correction: -0.06924466398252106, vert_correction: -0.1458455539136526, - vert_offset_correction: 0.19601112} -- {dist_correction: 1.4963768, dist_correction_x: 1.5571011, dist_correction_y: 1.5456782999999998, - focal_distance: 5.0, focal_slope: 0.89999998, horiz_offset_correction: 0.025999999, - laser_id: 2, min_intensity: 60.0, rot_correction: 0.0824016906676694, vert_correction: 0.04339494149708345, - vert_offset_correction: 0.20969539999999998} -- {dist_correction: 1.3771207, dist_correction_x: 1.4103835, dist_correction_y: 1.4343457000000002, - focal_distance: 9.5, focal_slope: 1.1, horiz_offset_correction: -0.025999999, laser_id: 3, - min_intensity: 20.0, rot_correction: 0.137808349360133, vert_correction: 0.05196082373432465, - vert_offset_correction: 0.21031273} -- {dist_correction: 1.2947885, dist_correction_x: 1.3720455999999999, dist_correction_y: 1.4025244000000001, - focal_distance: 10.0, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 4, - min_intensity: 50.0, rot_correction: -0.011199603626188263, vert_correction: -0.1358262679404349, - vert_offset_correction: 0.19674603999999998} -- {dist_correction: 1.4395787000000002, dist_correction_x: 1.4801956, dist_correction_y: 1.5074649, - focal_distance: 7.0, focal_slope: 1.0, horiz_offset_correction: -0.025999999, laser_id: 5, - min_intensity: 30.0, rot_correction: 0.045795414990398894, vert_correction: -0.12678532627942263, - vert_offset_correction: 0.19740747} -- {dist_correction: 1.3618773, dist_correction_x: 1.4004077000000001, dist_correction_y: 1.3900876, - focal_distance: 5.0, focal_slope: 1.1, horiz_offset_correction: 0.025999999, laser_id: 6, - min_intensity: 65.0, rot_correction: -0.031646046452444135, vert_correction: -0.1895564226946273, - vert_offset_correction: 0.19277746} -- {dist_correction: 1.5325716, dist_correction_x: 1.5337143, dist_correction_y: 1.5452948000000002, - focal_distance: 6.0, focal_slope: 1.0, horiz_offset_correction: -0.025999999, laser_id: 7, - min_intensity: 10.0, rot_correction: 0.023408326257150665, vert_correction: -0.18086723120040343, - vert_offset_correction: 0.19342419} -- {dist_correction: 1.3743323, dist_correction_x: 1.4474606, dist_correction_y: 1.4533472, - focal_distance: 6.0, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 8, - min_intensity: 30.0, rot_correction: 0.10065885915180103, vert_correction: -0.11973897655818674, - vert_offset_correction: 0.19792192} -- {dist_correction: 1.4969112000000002, dist_correction_x: 1.4754176, dist_correction_y: 1.4888799000000001, - focal_distance: 5.0, focal_slope: 1.0, horiz_offset_correction: -0.025999999, laser_id: 9, - min_intensity: 10.0, rot_correction: 0.15996423607269877, vert_correction: -0.10924820210484752, - vert_offset_correction: 0.19868624000000001} -- {dist_correction: 1.434263, dist_correction_x: 1.4957901000000002, dist_correction_y: 1.5191892999999999, - focal_distance: 5.0, focal_slope: 0.89999998, horiz_offset_correction: 0.025999999, - laser_id: 10, min_intensity: 35.0, rot_correction: 0.08313316164783874, vert_correction: -0.17135657256846043, - vert_offset_correction: 0.19412970999999998} -- {dist_correction: 1.5500841, dist_correction_x: 1.542697, dist_correction_y: 1.5716737, - focal_distance: 8.0, focal_slope: 1.2, horiz_offset_correction: -0.025999999, laser_id: 11, - min_intensity: 30.0, rot_correction: 0.13862572370075624, vert_correction: -0.1630088948849621, - vert_offset_correction: 0.19474705} -- {dist_correction: 1.3725992, dist_correction_x: 1.4353555, dist_correction_y: 1.3932405, - focal_distance: 11.0, focal_slope: 1.1, horiz_offset_correction: 0.025999999, laser_id: 12, - min_intensity: 50.0, rot_correction: -0.1255805045528199, vert_correction: -0.04526314018308893, - vert_offset_correction: 0.20331627000000002} -- {dist_correction: 1.3111591000000002, dist_correction_x: 1.3470857, dist_correction_y: 1.3652054000000002, - focal_distance: 6.0, focal_slope: 0.69999999, horiz_offset_correction: -0.025999999, - laser_id: 13, min_intensity: 30.0, rot_correction: -0.06716508498014805, vert_correction: -0.03587557613263058, - vert_offset_correction: 0.20399239000000002} -- {dist_correction: 1.5360803, dist_correction_x: 1.5528035, dist_correction_y: 1.5666801000000001, - focal_distance: 8.0, focal_slope: 1.1, horiz_offset_correction: 0.025999999, laser_id: 14, - min_intensity: 20.0, rot_correction: -0.14578889529014513, vert_correction: -0.09893566067472198, - vert_offset_correction: 0.19943586} -- {dist_correction: 1.4755448999999998, dist_correction_x: 1.5032428, dist_correction_y: 1.5326752, - focal_distance: 5.0, focal_slope: 0.89999998, horiz_offset_correction: -0.025999999, - laser_id: 15, min_intensity: 30.0, rot_correction: -0.08892898296002069, vert_correction: -0.09062974348423608, - vert_offset_correction: 0.20003851} -- {dist_correction: 1.4410587000000001, dist_correction_x: 1.4870845, dist_correction_y: 1.4627965, - focal_distance: 18.0, focal_slope: 0.5, horiz_offset_correction: 0.025999999, laser_id: 16, - min_intensity: 40.0, rot_correction: -0.013006177528832626, vert_correction: -0.02770725895504266, - vert_offset_correction: 0.20458033} -- {dist_correction: 1.4434521, dist_correction_x: 1.4897508, dist_correction_y: 1.4791382, - focal_distance: 11.0, focal_slope: 0.80000001, horiz_offset_correction: -0.025999999, - laser_id: 17, min_intensity: 55.0, rot_correction: 0.04596628970548614, vert_correction: -0.02014825541794774, - vert_offset_correction: 0.20512417} -- {dist_correction: 1.3243448000000002, dist_correction_x: 1.3816666000000002, dist_correction_y: 1.3647719, - focal_distance: 12.0, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 18, - min_intensity: 10.0, rot_correction: -0.03237303019110658, vert_correction: -0.08210824496987311, - vert_offset_correction: 0.20065581999999998} -- {dist_correction: 1.4565853999999998, dist_correction_x: 1.4340645, dist_correction_y: 1.4550516, - focal_distance: 20.0, focal_slope: 0.69999999, horiz_offset_correction: -0.025999999, - laser_id: 19, min_intensity: 30.0, rot_correction: 0.02431275238487562, vert_correction: -0.0727614640280461, - vert_offset_correction: 0.20133196000000003} -- {dist_correction: 1.3313776, dist_correction_x: 1.3819601000000001, dist_correction_y: 1.3847791, - focal_distance: 5.0, focal_slope: 0.89999998, horiz_offset_correction: 0.025999999, - laser_id: 20, min_intensity: 45.0, rot_correction: 0.10029393174916004, vert_correction: -0.009929893699589059, - vert_offset_correction: 0.20585909000000002} -- {dist_correction: 1.3787535, dist_correction_x: 1.3978789, dist_correction_y: 1.4257806, - focal_distance: 10.0, focal_slope: 1.1, horiz_offset_correction: -0.025999999, laser_id: 21, - min_intensity: 35.0, rot_correction: 0.15867894419560363, vert_correction: -0.0037977317325845416, - vert_offset_correction: 0.20630005} -- {dist_correction: 1.3419412, dist_correction_x: 1.4059189, dist_correction_y: 1.4113303, - focal_distance: 11.0, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 22, - min_intensity: 40.0, rot_correction: 0.08044522544540282, vert_correction: -0.06482699129962814, - vert_offset_correction: 0.20190518999999998} -- {dist_correction: 1.4338304, dist_correction_x: 1.4212059, dist_correction_y: 1.4900565000000001, - focal_distance: 11.0, focal_slope: 1.1, horiz_offset_correction: -0.025999999, laser_id: 23, - min_intensity: 55.0, rot_correction: 0.13867708175932542, vert_correction: -0.05566171063737453, - vert_offset_correction: 0.20256662} -- {dist_correction: 1.4930911, dist_correction_x: 1.5572188, dist_correction_y: 1.5182672, - focal_distance: 5.0, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 24, - min_intensity: 25.0, rot_correction: -0.12505298227706313, vert_correction: 0.06113007152996804, - vert_offset_correction: 0.21097416} -- {dist_correction: 1.4367653000000002, dist_correction_x: 1.4614236, dist_correction_y: 1.4587589, - focal_distance: 3.0, focal_slope: 1.0, horiz_offset_correction: -0.025999999, laser_id: 25, - min_intensity: 50.0, rot_correction: -0.06814826559971075, vert_correction: 0.06988221181432357, - vert_offset_correction: 0.21160620000000002} -- {dist_correction: 1.5279892000000002, dist_correction_x: 1.5686107999999999, dist_correction_y: 1.55737, - focal_distance: 7.5, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 26, - min_intensity: 30.0, rot_correction: -0.14531660046790917, vert_correction: 0.00887576771486082, - vert_offset_correction: 0.20721134} -- {dist_correction: 1.5077638, dist_correction_x: 1.5453738000000001, dist_correction_y: 1.5483368, - focal_distance: 4.0, focal_slope: 0.89999998, horiz_offset_correction: -0.025999999, - laser_id: 27, min_intensity: 30.0, rot_correction: -0.08904354811745085, vert_correction: 0.017050959569839413, - vert_offset_correction: 0.20779928000000003} -- {dist_correction: 1.3627797000000001, dist_correction_x: 1.4232985, dist_correction_y: 1.4116524000000001, - focal_distance: 4.0, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 28, - min_intensity: 50.0, rot_correction: -0.012061568860271928, vert_correction: 0.07842048992411524, - vert_offset_correction: 0.21222351} -- {dist_correction: 1.3749608, dist_correction_x: 1.4045798, dist_correction_y: 1.4006630999999998, - focal_distance: 4.0, focal_slope: 1.1, horiz_offset_correction: -0.025999999, laser_id: 29, - min_intensity: 40.0, rot_correction: 0.043892943273872005, vert_correction: 0.08674443287511571, - vert_offset_correction: 0.21282616000000001} -- {dist_correction: 1.2940709000000001, dist_correction_x: 1.392794, dist_correction_y: 1.3225565000000001, - focal_distance: 8.0, focal_slope: 0.89999998, horiz_offset_correction: 0.025999999, - laser_id: 30, min_intensity: 90.0, rot_correction: -0.033068739374902546, vert_correction: 0.02522388232225749, - vert_offset_correction: 0.20838722} -- {dist_correction: 1.3907666, dist_correction_x: 1.4365166, dist_correction_y: 1.4501437000000001, - focal_distance: 9.0, focal_slope: 1.0, horiz_offset_correction: -0.025999999, laser_id: 31, - min_intensity: 5.0, rot_correction: 0.025535290948715324, vert_correction: 0.034414332377654115, - vert_offset_correction: 0.20904865} -- {dist_correction: 1.3461819, dist_correction_x: 1.3678523000000002, dist_correction_y: 1.3552880999999999, - focal_distance: 11.0, focal_slope: 1.5, horiz_offset_correction: 0.025999999, laser_id: 32, - min_intensity: 45.0, rot_correction: -0.13309965698710405, vert_correction: -0.39666389380060213, - vert_offset_correction: 0.10812234999999999} -- {dist_correction: 1.2487466, dist_correction_x: 1.2929747, dist_correction_y: 1.3438803, - focal_distance: 5.0, focal_slope: 0.89999998, horiz_offset_correction: -0.025999999, - laser_id: 33, min_intensity: 35.0, rot_correction: -0.07241159183553281, vert_correction: -0.39021216204755743, - vert_offset_correction: 0.10859233} -- {dist_correction: 1.5016498000000003, dist_correction_x: 1.5384890999999998, dist_correction_y: 1.5506186, - focal_distance: 4.5, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 34, - min_intensity: 20.0, rot_correction: 0.08292710807634829, vert_correction: -0.2010672181773803, - vert_offset_correction: 0.12148494} -- {dist_correction: 1.2495708, dist_correction_x: 1.2891127, dist_correction_y: 1.2943669, - focal_distance: 11.0, focal_slope: 1.3, horiz_offset_correction: -0.025999999, laser_id: 35, - min_intensity: 25.0, rot_correction: 0.14006506182829093, vert_correction: -0.19103771853737994, - vert_offset_correction: 0.12213274} -- {dist_correction: 1.2674536, dist_correction_x: 1.3298663, dist_correction_y: 1.3577469, - focal_distance: 6.0, focal_slope: 0.89999998, horiz_offset_correction: 0.025999999, - laser_id: 36, min_intensity: 35.0, rot_correction: -0.012004346320883118, vert_correction: -0.3819670695815035, - vert_offset_correction: 0.10918932} -- {dist_correction: 1.2481956, dist_correction_x: 1.28627, dist_correction_y: 1.29235, - focal_distance: 14.5, focal_slope: 1.5, horiz_offset_correction: -0.025999999, laser_id: 37, - min_intensity: 30.0, rot_correction: 0.04832190474636683, vert_correction: -0.3718940414299584, - vert_offset_correction: 0.10991334} -- {dist_correction: 1.4516722, dist_correction_x: 1.4842308, dist_correction_y: 1.4868384000000001, - focal_distance: 4.0, focal_slope: 1.1, horiz_offset_correction: 0.025999999, laser_id: 38, - min_intensity: 55.0, rot_correction: -0.03583078923869515, vert_correction: -0.4336284663746853, - vert_offset_correction: 0.1053787} -- {dist_correction: 1.3843003999999999, dist_correction_x: 1.4010727, dist_correction_y: 1.4332015999999999, - focal_distance: 6.5, focal_slope: 1.3, horiz_offset_correction: -0.025999999, laser_id: 39, - min_intensity: 40.0, rot_correction: 0.026883486237381612, vert_correction: -0.4261966798867682, - vert_offset_correction: 0.10593759000000001} -- {dist_correction: 1.244738, dist_correction_x: 1.3131859000000001, dist_correction_y: 1.354245, - focal_distance: 6.5, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 40, - min_intensity: 25.0, rot_correction: 0.1076316048478218, vert_correction: -0.3640637439139335, - vert_offset_correction: 0.11047223} -- {dist_correction: 1.3284543, dist_correction_x: 1.3295518000000002, dist_correction_y: 1.3809489, - focal_distance: 12.5, focal_slope: 1.7, horiz_offset_correction: -0.025999999, laser_id: 41, - min_intensity: 50.0, rot_correction: 0.1679293847080498, vert_correction: -0.3511493721000192, - vert_offset_correction: 0.11138678} -- {dist_correction: 1.4055542, dist_correction_x: 1.4426663, dist_correction_y: 1.430847, - focal_distance: 1.5, focal_slope: 1.1, horiz_offset_correction: 0.025999999, laser_id: 42, - min_intensity: 10.0, rot_correction: 0.0861156692854385, vert_correction: -0.4163231777753111, - vert_offset_correction: 0.10667431000000001} -- {dist_correction: 1.3529747, dist_correction_x: 1.3834917999999998, dist_correction_y: 1.4029074, - focal_distance: 6.0, focal_slope: 1.2, horiz_offset_correction: -0.025999999, laser_id: 43, - min_intensity: 35.0, rot_correction: 0.15024020221305323, vert_correction: -0.4046365927302973, - vert_offset_correction: 0.10753805} -- {dist_correction: 1.2407380000000001, dist_correction_x: 1.3171521000000002, dist_correction_y: 1.2836400000000001, - focal_distance: 15.0, focal_slope: 1.6, horiz_offset_correction: 0.025999999, laser_id: 44, - max_intensity: 220.0, rot_correction: -0.12998527227122358, vert_correction: -0.28892197890806653, - vert_offset_correction: 0.11568009} -- {dist_correction: 1.5288051999999999, dist_correction_x: 1.5904514, dist_correction_y: 1.6288455, - focal_distance: 10.0, focal_slope: 0.89999998, horiz_offset_correction: -0.025999999, - laser_id: 45, rot_correction: -0.07009281894983248, vert_correction: -0.28120381879648226, - vert_offset_correction: 0.11620087} -- {dist_correction: 1.5423979, dist_correction_x: 1.5919412, dist_correction_y: 1.610177, - focal_distance: 13.0, focal_slope: 1.7, horiz_offset_correction: 0.025999999, laser_id: 46, - rot_correction: -0.1533711640661691, vert_correction: -0.34156398894148127, vert_offset_correction: 0.11205999} -- {dist_correction: 1.3086252999999999, dist_correction_x: 1.3737134, dist_correction_y: 1.4177727, - focal_distance: 5.5, focal_slope: 0.89999998, horiz_offset_correction: -0.025999999, - laser_id: 47, rot_correction: -0.0927890927600715, vert_correction: -0.3348332488542128, - vert_offset_correction: 0.11252997} -- {dist_correction: 1.3405330000000002, dist_correction_x: 1.4512436, dist_correction_y: 1.4471467999999998, - focal_distance: 13.5, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 48, - rot_correction: -0.012004348415278218, vert_correction: -0.2738300470529015, vert_offset_correction: 0.11669625} -- {dist_correction: 1.2994545, dist_correction_x: 1.3971343999999999, dist_correction_y: 1.36849, - focal_distance: 14.0, focal_slope: 1.0, horiz_offset_correction: -0.025999999, laser_id: 49, - rot_correction: 0.047471358677980184, vert_correction: -0.2649030020882158, vert_offset_correction: 0.11729325} -- {dist_correction: 1.4499762999999999, dist_correction_x: 1.5111346, dist_correction_y: 1.542395, - focal_distance: 13.0, focal_slope: 1.2, horiz_offset_correction: 0.025999999, laser_id: 50, - rot_correction: -0.03378136079915033, vert_correction: -0.32678797913421975, vert_offset_correction: 0.11308886} -- {dist_correction: 1.3516956, dist_correction_x: 1.4231836999999998, dist_correction_y: 1.4301146, - focal_distance: 13.0, focal_slope: 1.1, horiz_offset_correction: -0.025999999, laser_id: 51, - rot_correction: 0.025334358173250228, vert_correction: -0.3179609589889659, vert_offset_correction: 0.11369856} -- {dist_correction: 1.2374236, dist_correction_x: 1.308008, dist_correction_y: 1.3549429000000002, - focal_distance: 5.0, focal_slope: 0.89999998, horiz_offset_correction: 0.025999999, - laser_id: 52, rot_correction: 0.10481975724981128, vert_correction: -0.25478428121685354, - vert_offset_correction: 0.11796646000000001} -- {dist_correction: 1.3730562000000002, dist_correction_x: 1.403678, dist_correction_y: 1.4347415000000001, - focal_distance: 13.0, focal_slope: 1.4, horiz_offset_correction: -0.025999999, laser_id: 53, - rot_correction: 0.16311715242247551, vert_correction: -0.24576616497179882, vert_offset_correction: 0.11856346000000001} -- {dist_correction: 1.4445888, dist_correction_x: 1.5025624, dist_correction_y: 1.5189749000000001, - focal_distance: 10.0, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 54, - rot_correction: 0.08384971878954978, vert_correction: -0.31000962288931516, vert_offset_correction: 0.11424474999999999} -- {dist_correction: 1.3861449, dist_correction_x: 1.4228815000000001, dist_correction_y: 1.4620186000000002, - focal_distance: 15.0, focal_slope: 1.6, horiz_offset_correction: -0.025999999, laser_id: 55, - rot_correction: 0.14374613400834294, vert_correction: -0.2986601307360315, vert_offset_correction: 0.11501958000000001} -- {dist_correction: 1.4635341, dist_correction_x: 1.5232283000000002, dist_correction_y: 1.5063837000000002, - focal_distance: 13.0, focal_slope: 1.3, horiz_offset_correction: 0.025999999, laser_id: 56, - rot_correction: -0.12741928396895377, vert_correction: -0.18393445537456576, vert_offset_correction: 0.12259002000000001} -- {dist_correction: 1.3715826000000002, dist_correction_x: 1.4186972, dist_correction_y: 1.4328435, - focal_distance: 3.5, focal_slope: 1.0, horiz_offset_correction: -0.025999999, laser_id: 57, - rot_correction: -0.06853129555735342, vert_correction: -0.1744342722087932, vert_offset_correction: 0.12319972} -- {dist_correction: 1.4644831999999999, dist_correction_x: 1.5095984000000002, dist_correction_y: 1.5149265, - focal_distance: 11.0, focal_slope: 1.4, horiz_offset_correction: 0.025999999, laser_id: 58, - rot_correction: -0.1497316045423758, vert_correction: -0.23400086557751998, vert_offset_correction: 0.11933828} -- {dist_correction: 1.3074548, dist_correction_x: 1.3521214000000001, dist_correction_y: 1.3830151000000002, - focal_distance: 5.0, focal_slope: 0.89999998, horiz_offset_correction: -0.025999999, - laser_id: 59, rot_correction: -0.08973572126418226, vert_correction: -0.22644383426247983, - vert_offset_correction: 0.11983367} -- {dist_correction: 1.4378391, dist_correction_x: 1.4799687000000001, dist_correction_y: 1.4889211, - focal_distance: 5.0, focal_slope: 1.1, horiz_offset_correction: 0.025999999, laser_id: 60, - rot_correction: -0.011751946229237658, vert_correction: -0.1678843098347878, vert_offset_correction: 0.12361888} -- {dist_correction: 1.3585466, dist_correction_x: 1.4135242, dist_correction_y: 1.4170488, - focal_distance: 2.0, focal_slope: 0.89999998, horiz_offset_correction: -0.025999999, - laser_id: 61, rot_correction: 0.04489272721060892, vert_correction: -0.158331168143522, - vert_offset_correction: 0.12422858} -- {dist_correction: 1.4478067, dist_correction_x: 1.5442529, dist_correction_y: 1.5512207, - focal_distance: 10.0, focal_slope: 1.0, horiz_offset_correction: 0.025999999, laser_id: 62, - rot_correction: -0.0340408982402389, vert_correction: -0.21671681763514258, vert_offset_correction: 0.12046877} -- {dist_correction: 1.4329738, dist_correction_x: 1.4817114, dist_correction_y: 1.4954124, - focal_distance: 9.0, focal_slope: 0.80000001, horiz_offset_correction: -0.025999999, - laser_id: 63, rot_correction: 0.024857907722065305, vert_correction: -0.2106649408137298, - vert_offset_correction: 0.12086253} -num_lasers: 64 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/64e_utexas.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/64e_utexas.yaml deleted file mode 100644 index 9126ce5242e..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/64e_utexas.yaml +++ /dev/null @@ -1,258 +0,0 @@ -# University of Texas HDL-64E calibration parameters -lasers: -- {dist_correction: 0.100000001490116, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 0, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0698131695389748, two_pt_correction_available: false, vert_correction: -0.124932751059532, - vert_offset_correction: 0} -- {dist_correction: 0.280000001192093, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 1, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0392699092626572, two_pt_correction_available: false, vert_correction: -0.118993431329727, - vert_offset_correction: 0} -- {dist_correction: 0.319999992847443, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 2, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0698131695389748, two_pt_correction_available: false, vert_correction: 0.0055470340885222, - vert_offset_correction: 0} -- {dist_correction: 0.230000004172325, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 3, max_intensity: 255, min_intensity: 0, - rot_correction: 0.104719758033752, two_pt_correction_available: false, vert_correction: 0.0114863449707627, - vert_offset_correction: 0} -- {dist_correction: 0.0700000002980232, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 4, max_intensity: 255, min_intensity: 0, - rot_correction: 0.013962633907795, two_pt_correction_available: false, vert_correction: -0.113056324422359, - vert_offset_correction: 0} -- {dist_correction: 0.0900000035762787, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 5, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0392699092626572, two_pt_correction_available: false, vert_correction: -0.107121199369431, - vert_offset_correction: 0} -- {dist_correction: 0.119999997317791, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 6, max_intensity: 255, min_intensity: 0, - rot_correction: 0, two_pt_correction_available: false, vert_correction: -0.148716226220131, - vert_offset_correction: 0} -- {dist_correction: 0.200000002980232, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 7, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0226892791688442, two_pt_correction_available: false, vert_correction: -0.142765983939171, - vert_offset_correction: 0} -- {dist_correction: 0.129999995231628, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 8, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0820304751396179, two_pt_correction_available: false, vert_correction: -0.101187855005264, - vert_offset_correction: 0} -- {dist_correction: 0.159999996423721, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 9, max_intensity: 255, min_intensity: 0, - rot_correction: 0.113446399569511, two_pt_correction_available: false, vert_correction: -0.0952560678124428, - vert_offset_correction: 0} -- {dist_correction: 0.159999996423721, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 10, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0698131695389748, two_pt_correction_available: false, vert_correction: -0.136818811297417, - vert_offset_correction: 0} -- {dist_correction: 0.159999996423721, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 11, max_intensity: 255, min_intensity: 0, - rot_correction: 0.104719758033752, two_pt_correction_available: false, vert_correction: -0.130874469876289, - vert_offset_correction: 0} -- {dist_correction: 0.129999995231628, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 12, max_intensity: 255, min_intensity: 0, - rot_correction: -0.068067841231823, two_pt_correction_available: false, vert_correction: -0.05375986546278, - vert_offset_correction: 0} -- {dist_correction: 0.200000002980232, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 13, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0349065847694874, two_pt_correction_available: false, vert_correction: -0.0478330813348293, - vert_offset_correction: 0} -- {dist_correction: 0.170000001788139, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 14, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0837758108973503, two_pt_correction_available: false, vert_correction: -0.0893256440758705, - vert_offset_correction: 0} -- {dist_correction: 0.239999994635582, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 15, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0479965545237064, two_pt_correction_available: false, vert_correction: -0.0833963677287102, - vert_offset_correction: 0} -- {dist_correction: 0.180000007152557, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 16, max_intensity: 255, min_intensity: 0, - rot_correction: 0.00872664619237185, two_pt_correction_available: false, vert_correction: -0.0419059917330742, - vert_offset_correction: 0} -- {dist_correction: 0.0599999986588955, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 17, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0392699092626572, two_pt_correction_available: false, vert_correction: -0.035978376865387, - vert_offset_correction: 0} -- {dist_correction: 0.140000000596046, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 18, max_intensity: 255, min_intensity: 0, - rot_correction: 0, two_pt_correction_available: false, vert_correction: -0.0774680152535439, - vert_offset_correction: 0} -- {dist_correction: 0.150000005960464, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 19, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0305432621389627, two_pt_correction_available: false, vert_correction: -0.0715404152870178, - vert_offset_correction: 0} -- {dist_correction: 0.219999998807907, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 20, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0855211317539215, two_pt_correction_available: false, vert_correction: -0.0300500374287367, - vert_offset_correction: 0} -- {dist_correction: 0.140000000596046, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 21, max_intensity: 255, min_intensity: 0, - rot_correction: 0.109083078801632, two_pt_correction_available: false, vert_correction: -0.024120757356286, - vert_offset_correction: 0} -- {dist_correction: 0.0799999982118607, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 22, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0698131695389748, two_pt_correction_available: false, vert_correction: -0.0656133219599724, - vert_offset_correction: 0} -- {dist_correction: 0.159999996423721, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 23, max_intensity: 255, min_intensity: 0, - rot_correction: 0.104719758033752, two_pt_correction_available: false, vert_correction: -0.0596865378320217, - vert_offset_correction: 0} -- {dist_correction: 0.119999997317791, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 24, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0610865242779255, two_pt_correction_available: false, vert_correction: 0.0174280721694231, - vert_offset_correction: 0} -- {dist_correction: 0.219999998807907, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 25, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0349065847694874, two_pt_correction_available: false, vert_correction: 0.0233724191784859, - vert_offset_correction: 0} -- {dist_correction: 0.159999996423721, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 26, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0785398185253143, two_pt_correction_available: false, vert_correction: -0.0181903336197138, - vert_offset_correction: 0} -- {dist_correction: 0.259999990463257, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 27, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0471238903701305, two_pt_correction_available: false, vert_correction: -0.0122585473582149, - vert_offset_correction: 0} -- {dist_correction: 0.140000000596046, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 28, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0104719763621688, two_pt_correction_available: false, vert_correction: 0.0293195936828852, - vert_offset_correction: 0} -- {dist_correction: 0.219999998807907, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 29, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0349065847694874, two_pt_correction_available: false, vert_correction: 0.0352698266506195, - vert_offset_correction: 0} -- {dist_correction: 0.209999993443489, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 30, max_intensity: 255, min_intensity: 0, - rot_correction: -0.00436332309618592, two_pt_correction_available: false, vert_correction: -0.00632520206272602, - vert_offset_correction: 0} -- {dist_correction: 0.140000000596046, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 31, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0296705979853868, two_pt_correction_available: false, vert_correction: -0.000390077300835401, - vert_offset_correction: 0} -- {dist_correction: 0.119999997317791, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 32, max_intensity: 255, min_intensity: 0, - rot_correction: -0.122173048555851, two_pt_correction_available: false, vert_correction: -0.396850973367691, - vert_offset_correction: 0} -- {dist_correction: 0.0199999995529652, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 33, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0610865242779255, two_pt_correction_available: false, vert_correction: -0.387918144464493, - vert_offset_correction: 0} -- {dist_correction: 0.100000001490116, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 34, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0959931090474129, two_pt_correction_available: false, vert_correction: -0.200955957174301, - vert_offset_correction: 0} -- {dist_correction: 0.230000004172325, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 35, max_intensity: 255, min_intensity: 0, - rot_correction: 0.148352980613708, two_pt_correction_available: false, vert_correction: -0.192023113369942, - vert_offset_correction: 0} -- {dist_correction: 0.170000001788139, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 36, max_intensity: 255, min_intensity: 0, - rot_correction: -0.00872664619237185, two_pt_correction_available: false, vert_correction: -0.378992766141891, - vert_offset_correction: 0} -- {dist_correction: 0.150000005960464, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 37, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0610865242779255, two_pt_correction_available: false, vert_correction: -0.370074152946472, - vert_offset_correction: 0} -- {dist_correction: 0.0500000007450581, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 38, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0174532923847437, two_pt_correction_available: false, vert_correction: -0.43128889799118, - vert_offset_correction: 0} -- {dist_correction: 0.270000010728836, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 39, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0349065847694874, two_pt_correction_available: false, vert_correction: -0.423701733350754, - vert_offset_correction: 0} -- {dist_correction: 0.180000007152557, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 40, max_intensity: 255, min_intensity: 0, - rot_correction: 0.122173048555851, two_pt_correction_available: false, vert_correction: -0.361161530017853, - vert_offset_correction: 0} -- {dist_correction: 0.189999997615814, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 41, max_intensity: 255, min_intensity: 0, - rot_correction: 0.174532920122147, two_pt_correction_available: false, vert_correction: -0.352254241704941, - vert_offset_correction: 0} -- {dist_correction: 0.100000001490116, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 42, max_intensity: 255, min_intensity: 0, - rot_correction: 0.104719758033752, two_pt_correction_available: false, vert_correction: -0.414742022752762, - vert_offset_correction: 0} -- {dist_correction: 0.200000002980232, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 43, max_intensity: 255, min_intensity: 0, - rot_correction: 0.165806278586388, two_pt_correction_available: false, vert_correction: -0.405792057514191, - vert_offset_correction: 0} -- {dist_correction: 0.219999998807907, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 44, max_intensity: 255, min_intensity: 0, - rot_correction: -0.113446399569511, two_pt_correction_available: false, vert_correction: -0.28999200463295, - vert_offset_correction: 0} -- {dist_correction: 0.200000002980232, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 45, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0567231997847557, two_pt_correction_available: false, vert_correction: -0.281101644039154, - vert_offset_correction: 0} -- {dist_correction: 0.150000005960464, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 46, max_intensity: 255, min_intensity: 0, - rot_correction: -0.13962633907795, two_pt_correction_available: false, vert_correction: -0.343351542949677, - vert_offset_correction: 0} -- {dist_correction: 0.219999998807907, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 47, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0872664600610733, two_pt_correction_available: false, vert_correction: -0.334452718496323, - vert_offset_correction: 0} -- {dist_correction: 0.0599999986588955, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 48, max_intensity: 255, min_intensity: 0, - rot_correction: 0, two_pt_correction_available: false, vert_correction: -0.272210210561752, - vert_offset_correction: 0} -- {dist_correction: 0.129999995231628, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 49, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0558505356311798, two_pt_correction_available: false, vert_correction: -0.26331701874733, - vert_offset_correction: 0} -- {dist_correction: 0.00999999977648258, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 50, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0174532923847437, two_pt_correction_available: false, vert_correction: -0.323895305395126, - vert_offset_correction: 0} -- {dist_correction: 0.150000005960464, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 51, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0349065847694874, two_pt_correction_available: false, vert_correction: -0.316663861274719, - vert_offset_correction: 0} -- {dist_correction: 0.200000002980232, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 52, max_intensity: 255, min_intensity: 0, - rot_correction: 0.122173048555851, two_pt_correction_available: false, vert_correction: -0.254421383142471, - vert_offset_correction: 0} -- {dist_correction: 0.239999994635582, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 53, max_intensity: 255, min_intensity: 0, - rot_correction: 0.165806278586388, two_pt_correction_available: false, vert_correction: -0.245522528886795, - vert_offset_correction: 0} -- {dist_correction: 0.180000007152557, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 54, max_intensity: 255, min_intensity: 0, - rot_correction: 0.104719758033752, two_pt_correction_available: false, vert_correction: -0.307772427797318, - vert_offset_correction: 0} -- {dist_correction: 0.219999998807907, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 55, max_intensity: 255, min_intensity: 0, - rot_correction: 0.157079637050629, two_pt_correction_available: false, vert_correction: -0.298882067203522, - vert_offset_correction: 0} -- {dist_correction: 0.140000000596046, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 56, max_intensity: 255, min_intensity: 0, - rot_correction: -0.104719758033752, two_pt_correction_available: false, vert_correction: -0.183082059025764, - vert_offset_correction: 0} -- {dist_correction: 0.319999992847443, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 57, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0610865242779255, two_pt_correction_available: false, vert_correction: -0.17413204908371, - vert_offset_correction: 0} -- {dist_correction: 0.200000002980232, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 58, max_intensity: 255, min_intensity: 0, - rot_correction: -0.13962633907795, two_pt_correction_available: false, vert_correction: -0.236619830131531, - vert_offset_correction: 0} -- {dist_correction: 0.25, dist_correction_x: 0, dist_correction_y: 0, focal_distance: 0, - focal_slope: 0, laser_id: 59, max_intensity: 255, min_intensity: 0, rot_correction: -0.0785398185253143, - two_pt_correction_available: false, vert_correction: -0.22771255671978, vert_offset_correction: 0} -- {dist_correction: 0.170000001788139, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 60, max_intensity: 255, min_intensity: 0, - rot_correction: 0, two_pt_correction_available: false, vert_correction: -0.16517236828804, - vert_offset_correction: 0} -- {dist_correction: 0.230000004172325, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 61, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0436332300305367, two_pt_correction_available: false, vert_correction: -0.156202226877213, - vert_offset_correction: 0} -- {dist_correction: 0.150000005960464, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 62, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0174532923847437, two_pt_correction_available: false, vert_correction: -0.218799933791161, - vert_offset_correction: 0} -- {dist_correction: 0.230000004172325, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 63, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0314159244298935, two_pt_correction_available: false, vert_correction: -0.209881335496902, - vert_offset_correction: 0} -num_lasers: 64 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/VLP16_hires_db.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/VLP16_hires_db.yaml deleted file mode 100644 index 395bd4333e0..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/VLP16_hires_db.yaml +++ /dev/null @@ -1,50 +0,0 @@ -lasers: -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 0, rot_correction: 0.0, - vert_correction: -0.17453292519943295, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 1, rot_correction: 0.0, - vert_correction: 0.011635528346628864, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 2, rot_correction: 0.0, - vert_correction: -0.15126186850617523, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 3, rot_correction: 0.0, - vert_correction: 0.03490658503988659, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 4, rot_correction: 0.0, - vert_correction: -0.1279908118129175, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 5, rot_correction: 0.0, - vert_correction: 0.05817764173314432, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 6, rot_correction: 0.0, - vert_correction: -0.10471975511965977, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 7, rot_correction: 0.0, - vert_correction: 0.08144869842640205, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 8, rot_correction: 0.0, - vert_correction: -0.08144869842640205, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 9, rot_correction: 0.0, - vert_correction: 0.10471975511965977, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 10, rot_correction: 0.0, - vert_correction: -0.05817764173314432, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 11, rot_correction: 0.0, - vert_correction: 0.1279908118129175, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 12, rot_correction: 0.0, - vert_correction: -0.03490658503988659, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 13, rot_correction: 0.0, - vert_correction: 0.15126186850617523, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 14, rot_correction: 0.0, - vert_correction: -0.011635528346628864, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 15, rot_correction: 0.0, - vert_correction: 0.17453292519943295, vert_offset_correction: 0.0} -num_lasers: 16 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/VLP16db.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/VLP16db.yaml deleted file mode 100644 index bb6212576f2..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/VLP16db.yaml +++ /dev/null @@ -1,51 +0,0 @@ -lasers: -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 0, rot_correction: 0.0, - vert_correction: -0.2617993877991494, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 1, rot_correction: 0.0, - vert_correction: 0.017453292519943295, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 2, rot_correction: 0.0, - vert_correction: -0.22689280275926285, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 3, rot_correction: 0.0, - vert_correction: 0.05235987755982989, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 4, rot_correction: 0.0, - vert_correction: -0.19198621771937624, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 5, rot_correction: 0.0, - vert_correction: 0.08726646259971647, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 6, rot_correction: 0.0, - vert_correction: -0.15707963267948966, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 7, rot_correction: 0.0, - vert_correction: 0.12217304763960307, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 8, rot_correction: 0.0, - vert_correction: -0.12217304763960307, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 9, rot_correction: 0.0, - vert_correction: 0.15707963267948966, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 10, rot_correction: 0.0, - vert_correction: -0.08726646259971647, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 11, rot_correction: 0.0, - vert_correction: 0.19198621771937624, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 12, rot_correction: 0.0, - vert_correction: -0.05235987755982989, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 13, rot_correction: 0.0, - vert_correction: 0.22689280275926285, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 14, rot_correction: 0.0, - vert_correction: -0.017453292519943295, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 15, rot_correction: 0.0, - vert_correction: 0.2617993877991494, vert_offset_correction: 0.0} -num_lasers: 16 - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/VeloView-VLP-32C.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/VeloView-VLP-32C.yaml deleted file mode 100644 index fbd9b083afc..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/VeloView-VLP-32C.yaml +++ /dev/null @@ -1,98 +0,0 @@ -lasers: -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 0, rot_correction: -0.024434609527920613, - vert_correction: -0.4363323129985824, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 1, rot_correction: 0.07330382858376185, - vert_correction: -0.017453292519943295, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 2, rot_correction: -0.024434609527920613, - vert_correction: -0.029094638630745476, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 3, rot_correction: 0.024434609527920613, - vert_correction: -0.2729520417193932, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 4, rot_correction: -0.024434609527920613, - vert_correction: -0.19739673840055869, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 5, rot_correction: 0.024434609527920613, - vert_correction: 0.0, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 6, rot_correction: -0.07330382858376185, - vert_correction: -0.011641346110802179, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 7, rot_correction: 0.024434609527920613, - vert_correction: -0.15433946575385857, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 8, rot_correction: -0.024434609527920613, - vert_correction: -0.12660618393966866, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 9, rot_correction: 0.07330382858376185, - vert_correction: 0.005811946409141118, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 10, rot_correction: -0.024434609527920613, - vert_correction: -0.005811946409141118, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 11, rot_correction: 0.024434609527920613, - vert_correction: -0.10730284241261137, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 12, rot_correction: -0.07330382858376185, - vert_correction: -0.0930784090088576, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 13, rot_correction: 0.024434609527920613, - vert_correction: 0.02326523892908441, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 14, rot_correction: -0.07330382858376185, - vert_correction: 0.011641346110802179, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 15, rot_correction: 0.024434609527920613, - vert_correction: -0.06981317007977318, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 16, rot_correction: -0.024434609527920613, - vert_correction: -0.08145451619057535, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 17, rot_correction: 0.07330382858376185, - vert_correction: 0.029094638630745476, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 18, rot_correction: -0.024434609527920613, - vert_correction: 0.017453292519943295, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 19, rot_correction: 0.07330382858376185, - vert_correction: -0.06400122367063206, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 20, rot_correction: -0.07330382858376185, - vert_correction: -0.058171823968971005, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 21, rot_correction: 0.024434609527920613, - vert_correction: 0.058171823968971005, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 22, rot_correction: -0.024434609527920613, - vert_correction: 0.04071853144902771, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 23, rot_correction: 0.024434609527920613, - vert_correction: -0.04654793115068877, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 24, rot_correction: -0.024434609527920613, - vert_correction: -0.05235987755982989, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 25, rot_correction: 0.024434609527920613, - vert_correction: 0.12217304763960307, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 26, rot_correction: -0.024434609527920613, - vert_correction: 0.08145451619057535, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 27, rot_correction: 0.07330382858376185, - vert_correction: -0.04071853144902771, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 28, rot_correction: -0.07330382858376185, - vert_correction: -0.03490658503988659, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 29, rot_correction: 0.024434609527920613, - vert_correction: 0.2617993877991494, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 30, rot_correction: -0.024434609527920613, - vert_correction: 0.18034487160857407, vert_offset_correction: 0.0} -- {dist_correction: 0.0, dist_correction_x: 0.0, dist_correction_y: 0.0, focal_distance: 0.0, - focal_slope: 0.0, horiz_offset_correction: 0.0, laser_id: 31, rot_correction: 0.024434609527920613, - vert_correction: -0.02326523892908441, vert_offset_correction: 0.0} -num_lasers: 32 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/rviz_points.vcg b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/rviz_points.vcg deleted file mode 100644 index 52e6fb1d122..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/params/rviz_points.vcg +++ /dev/null @@ -1,78 +0,0 @@ -Background\ ColorB=0 -Background\ ColorG=0 -Background\ ColorR=0 -Camera\ Config=0.384797 3.10041 41.6639 0 0 0 -Camera\ Type=rviz::OrbitViewController -Fixed\ Frame=/velodyne -Grid.Alpha=0.5 -Grid.Cell\ Size=1 -Grid.ColorB=0.5 -Grid.ColorG=0.5 -Grid.ColorR=0.5 -Grid.Enabled=1 -Grid.Line\ Style=0 -Grid.Line\ Width=0.03 -Grid.Normal\ Cell\ Count=0 -Grid.OffsetX=0 -Grid.OffsetY=0 -Grid.OffsetZ=0 -Grid.Plane=0 -Grid.Plane\ Cell\ Count=50 -Grid.Reference\ Frame= -Property\ Grid\ Splitter=751,78 -Property\ Grid\ State=expanded=.Global Options,Grid.Enabled,Velodyne Cloud.Enabled;splitterratio=0.5 -QMainWindow=000000ff00000000fd00000003000000000000011d0000038ffc0200000001fb000000100044006900730070006c006100790073010000001d0000038f000000ee00ffffff00000001000001300000038ffc0200000003fb0000001e0054006f006f006c002000500072006f0070006500720074006900650073010000001d0000011f0000006700fffffffb0000000a00560069006500770073010000014200000145000000bb00fffffffb0000001200530065006c0065006300740069006f006e010000028d0000011f0000006700ffffff00000003000005d10000003efc0100000001fb0000000800540069006d00650100000000000005d1000002bf00ffffff000003780000038f00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 -TF.All\ Enabled=1 -TF.Enabled=1 -TF.Frame\ Timeout=15 -TF.Marker\ Scale=1 -TF.Show\ Arrows=1 -TF.Show\ Axes=1 -TF.Show\ Names=1 -TF.Update\ Interval=0 -Target\ Frame= -Tool\ 2D\ Nav\ GoalTopic=move_base_simple/goal -Tool\ 2D\ Pose\ EstimateTopic=initialpose -Velodyne\ Cloud..AxisColorAutocompute\ Value\ Bounds=1 -Velodyne\ Cloud..AxisColorAxis=2 -Velodyne\ Cloud..AxisColorMax\ Value=10 -Velodyne\ Cloud..AxisColorMin\ Value=-10 -Velodyne\ Cloud..AxisColorUse\ Fixed\ Frame=1 -Velodyne\ Cloud..FlatColorColorB=1 -Velodyne\ Cloud..FlatColorColorG=1 -Velodyne\ Cloud..FlatColorColorR=1 -Velodyne\ Cloud..IntensityAutocompute\ Intensity\ Bounds=1 -Velodyne\ Cloud..IntensityChannel\ Name=intensity -Velodyne\ Cloud..IntensityMax\ ColorB=1 -Velodyne\ Cloud..IntensityMax\ ColorG=0.776471 -Velodyne\ Cloud..IntensityMax\ ColorR=0.796078 -Velodyne\ Cloud..IntensityMax\ Intensity=255 -Velodyne\ Cloud..IntensityMin\ ColorB=1 -Velodyne\ Cloud..IntensityMin\ ColorG=0.0823529 -Velodyne\ Cloud..IntensityMin\ ColorR=0.141176 -Velodyne\ Cloud..IntensityMin\ Intensity=95 -Velodyne\ Cloud..IntensityUse\ full\ RGB\ spectrum=0 -Velodyne\ Cloud.Alpha=1 -Velodyne\ Cloud.Billboard\ Size=0.1 -Velodyne\ Cloud.Color\ Transformer=Intensity -Velodyne\ Cloud.Decay\ Time=0 -Velodyne\ Cloud.Enabled=1 -Velodyne\ Cloud.Position\ Transformer=XYZ -Velodyne\ Cloud.Queue\ Size=10 -Velodyne\ Cloud.Selectable=1 -Velodyne\ Cloud.Style=0 -Velodyne\ Cloud.Topic=/velodyne_points -[Display0] -ClassName=rviz::GridDisplay -Name=Grid -[Display1] -ClassName=rviz::TFDisplay -Name=TF -[Display2] -ClassName=rviz::PointCloud2Display -Name=Velodyne Cloud -[Window] -Height=1045 -Width=1505 -X=-8 -Y=-29 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/scripts/gen_calibration.py b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/scripts/gen_calibration.py deleted file mode 100755 index fb0ffa06e38..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/scripts/gen_calibration.py +++ /dev/null @@ -1,204 +0,0 @@ -#!/usr/bin/python -# Software License Agreement (BSD License) -# -# Copyright (C) 2012, Austin Robot Technology -# 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 Austin Robot Technology, 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. -# -# Revision $Id$ - -""" -Generate YAML calibration file from Velodyne db.xml. - -The input data provided by the manufacturer are in degrees and -centimeters. The YAML file uses radians and meters, following ROS -standards [REP-0103]. - -""" - -from __future__ import print_function - -import math -import optparse -import os -import sys -from xml.etree import ElementTree -import yaml - -# parse the command line -usage = """usage: %prog infile.xml [outfile.yaml] - - Default output file is input file with .yaml suffix.""" -parser = optparse.OptionParser(usage=usage) -options, args = parser.parse_args() - -if len(args) < 1: - parser.error('XML file name missing') - sys.exit(9) - -xmlFile = args[0] -if len(args) >= 2: - yamlFile = args[1] -else: - yamlFile, ext = os.path.splitext(xmlFile) - yamlFile += '.yaml' - -print('converting "' + xmlFile + '" to "' + yamlFile + '"') - -calibrationGood = True -def xmlError(msg): - 'handle XML calibration error' - global calibrationGood - calibrationGood = False - print('gen_calibration.py: ' + msg) - -db = None -try: - db = ElementTree.parse(xmlFile) -except IOError: - xmlError('unable to read ' + xmlFile) -except ElementTree.ParseError: - xmlError('XML parse failed for ' + xmlFile) - -if not calibrationGood: - sys.exit(2) - -# create a dictionary to hold all relevant calibration values -calibration = {'num_lasers': 0, 'lasers': []} -cm2meters = 0.01 # convert centimeters to meters - -def addLaserCalibration(laser_num, key, val): - 'Define key and corresponding value for laser_num' - global calibration - if laser_num < len(calibration['lasers']): - calibration['lasers'][laser_num][key] = val - else: - calibration['lasers'].append({key: val}) - -# add enabled flags -num_enabled = 0 -enabled_lasers = [] -enabled = db.find('DB/enabled_') -if enabled == None: - print('no enabled tags found: assuming all 64 enabled') - num_enabled = 64 - enabled_lasers = [True for i in xrange(num_enabled)] -else: - index = 0 - for el in enabled: - if el.tag == 'item': - this_enabled = int(el.text) != 0 - enabled_lasers.append(this_enabled) - index += 1 - if this_enabled: - num_enabled += 1 - -calibration['num_lasers'] = num_enabled -print(str(num_enabled) + ' lasers') - -# add minimum laser intensities -minIntensities = db.find('DB/minIntensity_') -if minIntensities != None: - index = 0 - for el in minIntensities: - if el.tag == 'item': - if enabled_lasers[index]: - value = int(el.text) - if value != 0: - addLaserCalibration(index, 'min_intensity', value) - index += 1 - -# add maximum laser intensities -maxIntensities = db.find('DB/maxIntensity_') -if maxIntensities != None: - index = 0 - for el in maxIntensities: - if el.tag == 'item': - if enabled_lasers[index]: - value = int(el.text) - if value != 255: - addLaserCalibration(index, 'max_intensity', value) - index += 1 - -# add calibration information for each laser -for el in db.find('DB/points_'): - if el.tag == 'item': - for px in el: - for field in px: - if field.tag == 'id_': - index = int(field.text) - if not enabled_lasers[index]: - break # skip this laser, it is not enabled - addLaserCalibration(index, 'laser_id', index) - - if field.tag == 'rotCorrection_': - addLaserCalibration(index, 'rot_correction', - math.radians(float(field.text))) - elif field.tag == 'vertCorrection_': - addLaserCalibration(index, 'vert_correction', - math.radians(float(field.text))) - elif field.tag == 'distCorrection_': - addLaserCalibration(index, 'dist_correction', - float(field.text) * cm2meters) - elif field.tag == 'distCorrectionX_': - addLaserCalibration(index, 'dist_correction_x', - float(field.text) * cm2meters) - elif field.tag == 'distCorrectionY_': - addLaserCalibration(index, 'dist_correction_y', - float(field.text) * cm2meters) - elif field.tag == 'vertOffsetCorrection_': - addLaserCalibration(index, 'vert_offset_correction', - float(field.text) * cm2meters) - elif field.tag == 'horizOffsetCorrection_': - addLaserCalibration(index, 'horiz_offset_correction', - float(field.text) * cm2meters) - elif field.tag == 'focalDistance_': - addLaserCalibration(index, 'focal_distance', - float(field.text) * cm2meters) - elif field.tag == 'focalSlope_': - addLaserCalibration(index, 'focal_slope', float(field.text)) - -# validate input data -if calibration['num_lasers'] <= 0: - xmlError('no lasers defined') -elif calibration['num_lasers'] != num_enabled: - xmlError('inconsistent number of lasers defined') - -# TODO: make sure all required fields are present. -# (Which ones are required?) - -if calibrationGood: - - # write calibration data to YAML file - f = open(yamlFile, 'w') - try: - yaml.dump(calibration, f) - finally: - f.close() diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/CMakeLists.txt b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/CMakeLists.txt deleted file mode 100644 index 8e6e2519634..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/CMakeLists.txt +++ /dev/null @@ -1,45 +0,0 @@ -add_executable(cloud_node cloud_node.cc convert.cc) -add_dependencies(cloud_node ${${PROJECT_NAME}_EXPORTED_TARGETS}) -target_link_libraries(cloud_node velodyne_rawdata - ${catkin_LIBRARIES} ${YAML_CPP_LIBRARIES}) -install(TARGETS cloud_node - RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) - -add_library(cloud_nodelet cloud_nodelet.cc convert.cc) -add_dependencies(cloud_nodelet ${${PROJECT_NAME}_EXPORTED_TARGETS}) -target_link_libraries(cloud_nodelet velodyne_rawdata - ${catkin_LIBRARIES} ${YAML_CPP_LIBRARIES}) -install(TARGETS cloud_nodelet - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} - ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}) - -add_executable(ringcolors_node ringcolors_node.cc colors.cc) -target_link_libraries(ringcolors_node - ${catkin_LIBRARIES} ${YAML_CPP_LIBRARIES}) -install(TARGETS ringcolors_node - RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) - -add_library(ringcolors_nodelet ringcolors_nodelet.cc colors.cc) -target_link_libraries(ringcolors_nodelet - ${catkin_LIBRARIES} ${YAML_CPP_LIBRARIES}) -install(TARGETS ringcolors_nodelet - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} - ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}) - -add_executable(transform_node transform_node.cc transform.cc) -add_dependencies(transform_node ${${PROJECT_NAME}_EXPORTED_TARGETS}) -target_link_libraries(transform_node velodyne_rawdata - ${catkin_LIBRARIES} ${YAML_CPP_LIBRARIES}) -install(TARGETS transform_node - RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) - -add_library(transform_nodelet transform_nodelet.cc transform.cc) -add_dependencies(transform_nodelet ${${PROJECT_NAME}_EXPORTED_TARGETS}) -target_link_libraries(transform_nodelet velodyne_rawdata - ${catkin_LIBRARIES} ${YAML_CPP_LIBRARIES}) -install(TARGETS transform_nodelet - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} - ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/cloud_node.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/cloud_node.cc deleted file mode 100644 index 623409817da..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/cloud_node.cc +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (C) 2012 Austin Robot Technology, Jack O'Quin - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** \file - - This ROS node converts raw Velodyne LIDAR packets to PointCloud2. - -*/ - -#include -#include "convert.h" - -/** Main node entry point. */ -int main(int argc, char **argv) -{ - ros::init(argc, argv, "cloud_node"); - ros::NodeHandle node; - ros::NodeHandle priv_nh("~"); - - // create conversion class, which subscribes to raw data - velodyne_pointcloud::Convert conv(node, priv_nh); - - // handle callbacks until shut down - ros::spin(); - - return 0; -} diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/cloud_nodelet.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/cloud_nodelet.cc deleted file mode 100644 index 0ddd5f70514..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/cloud_nodelet.cc +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (C) 2012 Austin Robot Technology, Jack O'Quin - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** @file - - This ROS nodelet converts raw Velodyne 3D LIDAR packets to a - PointCloud2. - -*/ - -#include -#include -#include - -#include "convert.h" - -namespace velodyne_pointcloud -{ - class CloudNodelet: public nodelet::Nodelet - { - public: - - CloudNodelet() {} - ~CloudNodelet() {} - - private: - - virtual void onInit(); - boost::shared_ptr conv_; - }; - - /** @brief Nodelet initialization. */ - void CloudNodelet::onInit() - { - conv_.reset(new Convert(getNodeHandle(), getPrivateNodeHandle())); - } - -} // namespace velodyne_pointcloud - - -// Register this plugin with pluginlib. Names must match nodelets.xml. -// -// parameters: class type, base class type -PLUGINLIB_EXPORT_CLASS(velodyne_pointcloud::CloudNodelet, nodelet::Nodelet) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/colors.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/colors.cc deleted file mode 100644 index a0de9a27c47..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/colors.cc +++ /dev/null @@ -1,93 +0,0 @@ -/* - * Copyright (C) 2012 Austin Robot Technology - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** @file - - Implementation for converting a Velodyne 3D LIDAR PointXYZIR cloud - to PointXYZRGB, assigning colors for visualization of the laser - rings. - - @author Jack O'Quin -*/ - -#include "colors.h" -#include - -/// @todo make sure these includes are really necessary -#include -#include - -namespace -{ - // RGB color values - const int color_red = 0xff0000; - const int color_orange = 0xff8800; - const int color_yellow = 0xffff00; - const int color_green = 0x00ff00; - const int color_blue = 0x0000ff; - const int color_violet = 0xff00ff; - - const int N_COLORS = 6; - int rainbow[N_COLORS] = {color_red, color_orange, color_yellow, - color_green, color_blue, color_violet}; -} - -namespace velodyne_pointcloud -{ - - /** types of output point and cloud */ - typedef pcl::PointXYZRGB RGBPoint; - typedef pcl::PointCloud RGBPointCloud; - - /** @brief Constructor. */ - RingColors::RingColors(ros::NodeHandle node, ros::NodeHandle private_nh) - { - // advertise output point cloud (before subscribing to input data) - output_ = - node.advertise("velodyne_rings", 10); - - // subscribe to VelodyneScan packets - input_ = - node.subscribe("velodyne_points", 10, - &RingColors::convertPoints, this, - ros::TransportHints().tcpNoDelay(true)); - } - - - /** @brief Callback for Velodyne PointXYZRI messages. */ - void - RingColors::convertPoints(const VPointCloud::ConstPtr &inMsg) - { - if (output_.getNumSubscribers() == 0) // no one listening? - return; // do nothing - - // allocate an PointXYZRGB message with same time and frame ID as - // input data - RGBPointCloud::Ptr outMsg(new RGBPointCloud()); - outMsg->header.stamp = inMsg->header.stamp; - outMsg->header.frame_id = inMsg->header.frame_id; - outMsg->height = 1; - - for (size_t i = 0; i < inMsg->points.size(); ++i) - { - RGBPoint p; - p.x = inMsg->points[i].x; - p.y = inMsg->points[i].y; - p.z = inMsg->points[i].z; - - // color lasers with the rainbow array - int color = inMsg->points[i].ring % N_COLORS; - p.rgb = *reinterpret_cast(rainbow+color); - - outMsg->points.push_back(p); - ++outMsg->width; - } - - output_.publish(outMsg); - } - -} // namespace velodyne_pcl diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/colors.h b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/colors.h deleted file mode 100644 index a88e308efdd..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/colors.h +++ /dev/null @@ -1,49 +0,0 @@ -/* -*- mode: C++ -*- */ -/* - * Copyright (C) 2012 Austin Robot Technology - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** @file - - Interface for converting a Velodyne 3D LIDAR PointXYZIR cloud to - PointXYZRGB, assigning colors for visualization of the laser - rings. - - @author Jack O'Quin -*/ - -#ifndef _VELODYNE_POINTCLOUD_COLORS_H_ -#define _VELODYNE_POINTCLOUD_COLORS_H_ - -#include -#include -#include -#include - -namespace velodyne_pointcloud -{ - // shorter names for point cloud types in this namespace - typedef velodyne_pointcloud::PointXYZIR VPoint; - typedef pcl::PointCloud VPointCloud; - - class RingColors - { - public: - - RingColors(ros::NodeHandle node, ros::NodeHandle private_nh); - ~RingColors() {} - - private: - - void convertPoints(const VPointCloud::ConstPtr &inMsg); - - ros::Subscriber input_; - ros::Publisher output_; - }; - -} // namespace velodyne_pointcloud - -#endif // _VELODYNE_POINTCLOUD_COLORS_H_ diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/convert.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/convert.cc deleted file mode 100644 index 5a95e4ce149..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/convert.cc +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Copyright (C) 2009, 2010 Austin Robot Technology, Jack O'Quin - * Copyright (C) 2011 Jesse Vera - * Copyright (C) 2012 Austin Robot Technology, Jack O'Quin - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** @file - - This class converts raw Velodyne 3D LIDAR packets to PointCloud2. - -*/ - -#include "convert.h" - -#include - -namespace velodyne_pointcloud -{ - /** @brief Constructor. */ - Convert::Convert(ros::NodeHandle node, ros::NodeHandle private_nh): - data_(new velodyne_rawdata::RawData()) - { - data_->setup(private_nh); - - - // advertise output point cloud (before subscribing to input data) - output_ = - node.advertise("velodyne_points", 10); - - srv_ = boost::make_shared > (private_nh); - dynamic_reconfigure::Server:: - CallbackType f; - f = boost::bind (&Convert::callback, this, _1, _2); - srv_->setCallback (f); - - // subscribe to VelodyneScan packets - velodyne_scan_ = - node.subscribe("velodyne_packets", 10, - &Convert::processScan, (Convert *) this, - ros::TransportHints().tcpNoDelay(true)); - } - - void Convert::callback(velodyne_pointcloud::CloudNodeConfig &config, - uint32_t level) - { - ROS_INFO("Reconfigure Request"); - data_->setParameters(config.min_range, config.max_range, config.view_direction, - config.view_width); - } - - /** @brief Callback for raw scan messages. */ - void Convert::processScan(const velodyne_msgs::VelodyneScan::ConstPtr &scanMsg) - { - if (output_.getNumSubscribers() == 0) // no one listening? - return; // avoid much work - - // allocate a point cloud with same time and frame ID as raw data - velodyne_rawdata::VPointCloud::Ptr - outMsg(new velodyne_rawdata::VPointCloud()); - // outMsg's header is a pcl::PCLHeader, convert it before stamp assignment - outMsg->header.stamp = pcl_conversions::toPCL(scanMsg->header).stamp; - outMsg->header.frame_id = scanMsg->header.frame_id; - outMsg->height = 1; - - // process each packet provided by the driver - for (size_t i = 0; i < scanMsg->packets.size(); ++i) - { - data_->unpack(scanMsg->packets[i], *outMsg, scanMsg->packets.size()); - } - - // publish the accumulated cloud message - ROS_DEBUG_STREAM("Publishing " << outMsg->height * outMsg->width - << " Velodyne points, time: " << outMsg->header.stamp); - output_.publish(outMsg); - } - -} // namespace velodyne_pointcloud diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/convert.h b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/convert.h deleted file mode 100644 index 953a6cac6a0..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/convert.h +++ /dev/null @@ -1,60 +0,0 @@ -/* -*- mode: C++ -*- */ -/* - * Copyright (C) 2009, 2010 Austin Robot Technology, Jack O'Quin - * Copyright (C) 2011 Jesse Vera - * Copyright (C) 2012 Austin Robot Technology, Jack O'Quin - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** @file - - This class converts raw Velodyne 3D LIDAR packets to PointCloud2. - -*/ - -#ifndef _VELODYNE_POINTCLOUD_CONVERT_H_ -#define _VELODYNE_POINTCLOUD_CONVERT_H_ 1 - -#include - -#include -#include - -#include -#include - -namespace velodyne_pointcloud -{ - class Convert - { - public: - - Convert(ros::NodeHandle node, ros::NodeHandle private_nh); - ~Convert() {} - - private: - - void callback(velodyne_pointcloud::CloudNodeConfig &config, - uint32_t level); - void processScan(const velodyne_msgs::VelodyneScan::ConstPtr &scanMsg); - - ///Pointer to dynamic reconfigure service srv_ - boost::shared_ptr > srv_; - - boost::shared_ptr data_; - ros::Subscriber velodyne_scan_; - ros::Publisher output_; - - /// configuration parameters - typedef struct { - int npackets; ///< number of packets to combine - } Config; - Config config_; - }; - -} // namespace velodyne_pointcloud - -#endif // _VELODYNE_POINTCLOUD_CONVERT_H_ diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/ringcolors_node.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/ringcolors_node.cc deleted file mode 100644 index 1bc652348f2..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/ringcolors_node.cc +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (C) 2012 Austin Robot Technology, Jack O'Quin - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** @file - - This ROS node converts a Velodyne 3D LIDAR PointXYZIR cloud to - PointXYZRGB, assigning colors for visualization of the laser - rings. - -*/ - -#include -#include "colors.h" - -/** Main node entry point. */ -int main(int argc, char **argv) -{ - ros::init(argc, argv, "colors_node"); - ros::NodeHandle node; - ros::NodeHandle priv_nh("~"); - - // create conversion class, which subscribes to input messages - velodyne_pointcloud::RingColors colors(node, priv_nh); - - // handle callbacks until shut down - ros::spin(); - - return 0; -} diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/ringcolors_nodelet.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/ringcolors_nodelet.cc deleted file mode 100644 index 65993be0edb..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/ringcolors_nodelet.cc +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (C) 2012 Austin Robot Technology, Jack O'Quin - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** @file - - This ROS nodelet converts a Velodyne 3D LIDAR PointXYZIR cloud to - PointXYZRGB, assigning colors for visualization of the laser - rings. - -*/ - -#include -#include -#include - -#include "colors.h" - -namespace velodyne_pointcloud -{ - class RingColorsNodelet: public nodelet::Nodelet - { - public: - - RingColorsNodelet() {} - ~RingColorsNodelet() {} - - private: - - virtual void onInit(); - boost::shared_ptr colors_; - }; - - /** @brief Nodelet initialization. */ - void RingColorsNodelet::onInit() - { - colors_.reset(new RingColors(getNodeHandle(), getPrivateNodeHandle())); - } - -} // namespace velodyne_pointcloud - - -// Register this plugin with pluginlib. Names must match nodelets.xml. -// -// parameters: class type, base class type -PLUGINLIB_EXPORT_CLASS(velodyne_pointcloud::RingColorsNodelet, nodelet::Nodelet) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/transform.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/transform.cc deleted file mode 100644 index 3c0ab28ae81..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/transform.cc +++ /dev/null @@ -1,138 +0,0 @@ -/* - * Copyright (C) 2009, 2010 Austin Robot Technology, Jack O'Quin - * Copyright (C) 2011 Jesse Vera - * Copyright (C) 2012 Austin Robot Technology, Jack O'Quin - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** @file - - This class transforms raw Velodyne 3D LIDAR packets to PointCloud2 - in the /odom frame of reference. - - @author Jack O'Quin - @author Jesse Vera - -*/ - -#include "transform.h" - -#include - -namespace velodyne_pointcloud -{ - /** @brief Constructor. */ - Transform::Transform(ros::NodeHandle node, ros::NodeHandle private_nh): - tf_prefix_(tf::getPrefixParam(private_nh)), - data_(new velodyne_rawdata::RawData()) - { - // Read calibration. - data_->setup(private_nh); - - // advertise output point cloud (before subscribing to input data) - output_ = - node.advertise("velodyne_points", 10); - - srv_ = boost::make_shared > (private_nh); - dynamic_reconfigure::Server:: - CallbackType f; - f = boost::bind (&Transform::reconfigure_callback, this, _1, _2); - srv_->setCallback (f); - - // subscribe to VelodyneScan packets using transform filter - velodyne_scan_.subscribe(node, "velodyne_packets", 10); - tf_filter_ = - new tf::MessageFilter(velodyne_scan_, - listener_, - config_.frame_id, 10); - tf_filter_->registerCallback(boost::bind(&Transform::processScan, this, _1)); - } - - void Transform::reconfigure_callback( - velodyne_pointcloud::TransformNodeConfig &config, uint32_t level) - { - ROS_INFO_STREAM("Reconfigure request."); - data_->setParameters(config.min_range, config.max_range, - config.view_direction, config.view_width); - config_.frame_id = tf::resolve(tf_prefix_, config.frame_id); - ROS_INFO_STREAM("Target frame ID: " << config_.frame_id); - } - - /** @brief Callback for raw scan messages. - * - * @pre TF message filter has already waited until the transform to - * the configured @c frame_id can succeed. - */ - void - Transform::processScan(const velodyne_msgs::VelodyneScan::ConstPtr &scanMsg) - { - if (output_.getNumSubscribers() == 0) // no one listening? - return; // avoid much work - - // allocate an output point cloud with same time as raw data - VPointCloud::Ptr outMsg(new VPointCloud()); - outMsg->header.stamp = pcl_conversions::toPCL(scanMsg->header).stamp; - outMsg->header.frame_id = config_.frame_id; - outMsg->height = 1; - - // process each packet provided by the driver - for (size_t next = 0; next < scanMsg->packets.size(); ++next) - { - // clear input point cloud to handle this packet - inPc_.points.clear(); - inPc_.width = 0; - inPc_.height = 1; - std_msgs::Header header; - header.stamp = scanMsg->packets[next].stamp; - header.frame_id = scanMsg->header.frame_id; - pcl_conversions::toPCL(header, inPc_.header); - - // unpack the raw data - data_->unpack(scanMsg->packets[next], inPc_, scanMsg->packets.size()); - - // clear transform point cloud for this packet - tfPc_.points.clear(); // is this needed? - tfPc_.width = 0; - tfPc_.height = 1; - header.stamp = scanMsg->packets[next].stamp; - pcl_conversions::toPCL(header, tfPc_.header); - tfPc_.header.frame_id = config_.frame_id; - - // transform the packet point cloud into the target frame - try - { - ROS_DEBUG_STREAM("transforming from " << inPc_.header.frame_id - << " to " << config_.frame_id); - pcl_ros::transformPointCloud(config_.frame_id, inPc_, tfPc_, - listener_); -#if 0 // use the latest transform available, should usually work fine - pcl_ros::transformPointCloud(inPc_.header.frame_id, - ros::Time(0), inPc_, - config_.frame_id, - tfPc_, listener_); -#endif - } - catch (tf::TransformException &ex) - { - // only log tf error once every 100 times - ROS_WARN_THROTTLE(100, "%s", ex.what()); - continue; // skip this packet - } - - // append transformed packet data to end of output message - outMsg->points.insert(outMsg->points.end(), - tfPc_.points.begin(), - tfPc_.points.end()); - outMsg->width += tfPc_.points.size(); - } - - // publish the accumulated cloud message - ROS_DEBUG_STREAM("Publishing " << outMsg->height * outMsg->width - << " Velodyne points, time: " << outMsg->header.stamp); - output_.publish(outMsg); - } - -} // namespace velodyne_pointcloud diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/transform.h b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/transform.h deleted file mode 100644 index 3ee0c3f7d2d..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/transform.h +++ /dev/null @@ -1,87 +0,0 @@ -/* -*- mode: C++ -*- */ -/* - * Copyright (C) 2009, 2010 Austin Robot Technology, Jack O'Quin - * Copyright (C) 2011 Jesse Vera - * Copyright (C) 2012 Austin Robot Technology, Jack O'Quin - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** @file - - This class transforms raw Velodyne 3D LIDAR packets to PointCloud2 - in the /odom frame of reference. - -*/ - -#ifndef _VELODYNE_POINTCLOUD_TRANSFORM_H_ -#define _VELODYNE_POINTCLOUD_TRANSFORM_H_ 1 - -#include -#include "tf/message_filter.h" -#include "message_filters/subscriber.h" -#include - -#include -#include - -#include -#include - -// include template implementations to transform a custom point cloud -#include - -/** types of point and cloud to work with */ -typedef velodyne_rawdata::VPoint VPoint; -typedef velodyne_rawdata::VPointCloud VPointCloud; - -// instantiate template for transforming a VPointCloud -template bool - pcl_ros::transformPointCloud(const std::string &, - const VPointCloud &, - VPointCloud &, - const tf::TransformListener &); - -namespace velodyne_pointcloud -{ - class Transform - { - public: - - Transform(ros::NodeHandle node, ros::NodeHandle private_nh); - ~Transform() {} - - private: - - void processScan(const velodyne_msgs::VelodyneScan::ConstPtr &scanMsg); - - ///Pointer to dynamic reconfigure service srv_ - boost::shared_ptr > srv_; - void reconfigure_callback(velodyne_pointcloud::TransformNodeConfig &config, - uint32_t level); - - const std::string tf_prefix_; - boost::shared_ptr data_; - message_filters::Subscriber velodyne_scan_; - tf::MessageFilter *tf_filter_; - ros::Publisher output_; - tf::TransformListener listener_; - - /// configuration parameters - typedef struct { - std::string frame_id; ///< target frame ID - } Config; - Config config_; - - // Point cloud buffers for collecting points within a packet. The - // inPc_ and tfPc_ are class members only to avoid reallocation on - // every message. - VPointCloud inPc_; ///< input packet point cloud - VPointCloud tfPc_; ///< transformed packet point cloud - }; - -} // namespace velodyne_pointcloud - -#endif // _VELODYNE_POINTCLOUD_TRANSFORM_H_ diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/transform_node.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/transform_node.cc deleted file mode 100644 index cf7975baaaa..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/transform_node.cc +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (C) 2012 Austin Robot Technology, Jack O'Quin - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** \file - - This ROS node transforms raw Velodyne LIDAR packets to PointCloud2 - in the /odom frame of reference. - -*/ - -#include -#include "transform.h" - -/** Main node entry point. */ -int main(int argc, char **argv) -{ - ros::init(argc, argv, "transform_node"); - - // create conversion class, which subscribes to raw data - velodyne_pointcloud::Transform transform(ros::NodeHandle(), - ros::NodeHandle("~")); - - // handle callbacks until shut down - ros::spin(); - - return 0; -} diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/transform_nodelet.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/transform_nodelet.cc deleted file mode 100644 index ef268fbe940..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/conversions/transform_nodelet.cc +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (C) 2012 Austin Robot Technology, Jack O'Quin - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** @file - - This ROS nodelet transforms raw Velodyne 3D LIDAR packets to a - PointCloud2 in the /odom frame. - -*/ - -#include -#include -#include - -#include "transform.h" - -namespace velodyne_pointcloud -{ - class TransformNodelet: public nodelet::Nodelet - { - public: - - TransformNodelet() {} - ~TransformNodelet() {} - - private: - - virtual void onInit(); - boost::shared_ptr tf_; - }; - - /** @brief Nodelet initialization. */ - void TransformNodelet::onInit() - { - tf_.reset(new Transform(getNodeHandle(), getPrivateNodeHandle())); - } - -} // namespace velodyne_pointcloud - - -// Register this plugin with pluginlib. Names must match nodelets.xml. -// -// parameters: class type, base class type -PLUGINLIB_EXPORT_CLASS(velodyne_pointcloud::TransformNodelet, nodelet::Nodelet) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/lib/CMakeLists.txt b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/lib/CMakeLists.txt deleted file mode 100644 index 72d42751741..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/lib/CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ -find_package(vector_map_msgs REQUIRED) - -add_library(velodyne_rawdata rawdata.cc calibration.cc) - -add_dependencies(velodyne_rawdata - ${vector_map_msgs_EXPORTED_TARGETS} -) -target_link_libraries(velodyne_rawdata - ${catkin_LIBRARIES} - ${YAML_CPP_LIBRARIES}) -install(TARGETS velodyne_rawdata - RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} - ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/lib/calibration.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/lib/calibration.cc deleted file mode 100644 index c470c5918d6..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/lib/calibration.cc +++ /dev/null @@ -1,270 +0,0 @@ -/** - * \file calibration.cc - * \brief - * - * \author Piyush Khandelwal (piyushk@cs.utexas.edu) - * Copyright (C) 2012, Austin Robot Technology, - * The University of Texas at Austin - * - * License: Modified BSD License - * - * $ Id: 02/14/2012 11:36:36 AM piyushk $ - */ - -#include -#include -#include -#include -#include -#include - -#ifdef HAVE_NEW_YAMLCPP -namespace YAML { - - // The >> operator disappeared in yaml-cpp 0.5, so this function is - // added to provide support for code written under the yaml-cpp 0.3 API. - template - void operator >> (const YAML::Node& node, T& i) { - i = node.as(); - } -} /* YAML */ -#endif // HAVE_NEW_YAMLCPP - -#include -#include - -namespace velodyne_pointcloud -{ - - const std::string NUM_LASERS = "num_lasers"; - const std::string LASERS = "lasers"; - const std::string LASER_ID = "laser_id"; - const std::string ROT_CORRECTION = "rot_correction"; - const std::string VERT_CORRECTION = "vert_correction"; - const std::string DIST_CORRECTION = "dist_correction"; - const std::string TWO_PT_CORRECTION_AVAILABLE = - "two_pt_correction_available"; - const std::string DIST_CORRECTION_X = "dist_correction_x"; - const std::string DIST_CORRECTION_Y = "dist_correction_y"; - const std::string VERT_OFFSET_CORRECTION = "vert_offset_correction"; - const std::string HORIZ_OFFSET_CORRECTION = "horiz_offset_correction"; - const std::string MAX_INTENSITY = "max_intensity"; - const std::string MIN_INTENSITY = "min_intensity"; - const std::string FOCAL_DISTANCE = "focal_distance"; - const std::string FOCAL_SLOPE = "focal_slope"; - - /** Read calibration for a single laser. */ - void operator >> (const YAML::Node& node, - std::pair& correction) - { - node[LASER_ID] >> correction.first; - node[ROT_CORRECTION] >> correction.second.rot_correction; - node[VERT_CORRECTION] >> correction.second.vert_correction; - node[DIST_CORRECTION] >> correction.second.dist_correction; -#ifdef HAVE_NEW_YAMLCPP - if (node[TWO_PT_CORRECTION_AVAILABLE]) - node[TWO_PT_CORRECTION_AVAILABLE] >> - correction.second.two_pt_correction_available; -#else - if (const YAML::Node *pName = node.FindValue(TWO_PT_CORRECTION_AVAILABLE)) - *pName >> correction.second.two_pt_correction_available; -#endif - else - correction.second.two_pt_correction_available = false; - node[DIST_CORRECTION_X] >> correction.second.dist_correction_x; - node[DIST_CORRECTION_Y] >> correction.second.dist_correction_y; - node[VERT_OFFSET_CORRECTION] >> correction.second.vert_offset_correction; -#ifdef HAVE_NEW_YAMLCPP - if (node[HORIZ_OFFSET_CORRECTION]) - node[HORIZ_OFFSET_CORRECTION] >> - correction.second.horiz_offset_correction; -#else - if (const YAML::Node *pName = node.FindValue(HORIZ_OFFSET_CORRECTION)) - *pName >> correction.second.horiz_offset_correction; -#endif - else - correction.second.horiz_offset_correction = 0; - - const YAML::Node * max_intensity_node = NULL; -#ifdef HAVE_NEW_YAMLCPP - if (node[MAX_INTENSITY]) { - const YAML::Node max_intensity_node_ref = node[MAX_INTENSITY]; - max_intensity_node = &max_intensity_node_ref; - } -#else - if (const YAML::Node *pName = node.FindValue(MAX_INTENSITY)) - max_intensity_node = pName; -#endif - if (max_intensity_node) { - float max_intensity_float; - *max_intensity_node >> max_intensity_float; - correction.second.max_intensity = floor(max_intensity_float); - } - else { - correction.second.max_intensity = 255; - } - - const YAML::Node * min_intensity_node = NULL; -#ifdef HAVE_NEW_YAMLCPP - if (node[MIN_INTENSITY]) { - const YAML::Node min_intensity_node_ref = node[MIN_INTENSITY]; - min_intensity_node = &min_intensity_node_ref; - } -#else - if (const YAML::Node *pName = node.FindValue(MIN_INTENSITY)) - min_intensity_node = pName; -#endif - if (min_intensity_node) { - float min_intensity_float; - *min_intensity_node >> min_intensity_float; - correction.second.min_intensity = floor(min_intensity_float); - } - else { - correction.second.min_intensity = 0; - } - node[FOCAL_DISTANCE] >> correction.second.focal_distance; - node[FOCAL_SLOPE] >> correction.second.focal_slope; - - // Calculate cached values - correction.second.cos_rot_correction = - cosf(correction.second.rot_correction); - correction.second.sin_rot_correction = - sinf(correction.second.rot_correction); - correction.second.cos_vert_correction = - cosf(correction.second.vert_correction); - correction.second.sin_vert_correction = - sinf(correction.second.vert_correction); - - correction.second.laser_ring = 0; // clear initially (set later) - } - - /** Read entire calibration file. */ - void operator >> (const YAML::Node& node, Calibration& calibration) - { - int num_lasers; - node[NUM_LASERS] >> num_lasers; - const YAML::Node& lasers = node[LASERS]; - calibration.laser_corrections.clear(); - calibration.num_lasers = num_lasers; - for (int i = 0; i < num_lasers; i++) { - std::pair correction; - lasers[i] >> correction; - calibration.laser_corrections.insert(correction); - } - - // For each laser ring, find the next-smallest vertical angle. - // - // This implementation is simple, but not efficient. That is OK, - // since it only runs while starting up. - double next_angle = -std::numeric_limits::infinity(); - for (int ring = 0; ring < num_lasers; ++ring) { - - // find minimum remaining vertical offset correction - double min_seen = std::numeric_limits::infinity(); - int next_index = num_lasers; - for (int j = 0; j < num_lasers; ++j) { - - double angle = calibration.laser_corrections[j].vert_correction; - if (next_angle < angle && angle < min_seen) { - min_seen = angle; - next_index = j; - } - } - - if (next_index < num_lasers) { // anything found in this ring? - - // store this ring number with its corresponding laser number - calibration.laser_corrections[next_index].laser_ring = ring; - next_angle = min_seen; - if (calibration.ros_info) { - ROS_INFO("laser_ring[%2u] = %2u, angle = %+.6f", - next_index, ring, next_angle); - } - } - } - } - - YAML::Emitter& operator << (YAML::Emitter& out, - const std::pair correction) - { - out << YAML::BeginMap; - out << YAML::Key << LASER_ID << YAML::Value << correction.first; - out << YAML::Key << ROT_CORRECTION << - YAML::Value << correction.second.rot_correction; - out << YAML::Key << VERT_CORRECTION << - YAML::Value << correction.second.vert_correction; - out << YAML::Key << DIST_CORRECTION << - YAML::Value << correction.second.dist_correction; - out << YAML::Key << TWO_PT_CORRECTION_AVAILABLE << - YAML::Value << correction.second.two_pt_correction_available; - out << YAML::Key << DIST_CORRECTION_X << - YAML::Value << correction.second.dist_correction_x; - out << YAML::Key << DIST_CORRECTION_Y << - YAML::Value << correction.second.dist_correction_y; - out << YAML::Key << VERT_OFFSET_CORRECTION << - YAML::Value << correction.second.vert_offset_correction; - out << YAML::Key << HORIZ_OFFSET_CORRECTION << - YAML::Value << correction.second.horiz_offset_correction; - out << YAML::Key << MAX_INTENSITY << - YAML::Value << correction.second.max_intensity; - out << YAML::Key << MIN_INTENSITY << - YAML::Value << correction.second.min_intensity; - out << YAML::Key << FOCAL_DISTANCE << - YAML::Value << correction.second.focal_distance; - out << YAML::Key << FOCAL_SLOPE << - YAML::Value << correction.second.focal_slope; - out << YAML::EndMap; - return out; - } - - YAML::Emitter& operator << - (YAML::Emitter& out, const Calibration& calibration) - { - out << YAML::BeginMap; - out << YAML::Key << NUM_LASERS << - YAML::Value << calibration.laser_corrections.size(); - out << YAML::Key << LASERS << YAML::Value << YAML::BeginSeq; - for (std::map::const_iterator - it = calibration.laser_corrections.begin(); - it != calibration.laser_corrections.end(); it++) - { - out << *it; - } - out << YAML::EndSeq; - out << YAML::EndMap; - return out; - } - - void Calibration::read(const std::string& calibration_file) { - std::ifstream fin(calibration_file.c_str()); - if (!fin.is_open()) { - initialized = false; - return; - } - initialized = true; - try { - YAML::Node doc; -#ifdef HAVE_NEW_YAMLCPP - fin.close(); - doc = YAML::LoadFile(calibration_file); -#else - YAML::Parser parser(fin); - parser.GetNextDocument(doc); -#endif - doc >> *this; - } catch (YAML::Exception &e) { - std::cerr << "YAML Exception: " << e.what() << std::endl; - initialized = false; - } - fin.close(); - } - - void Calibration::write(const std::string& calibration_file) { - std::ofstream fout(calibration_file.c_str()); - YAML::Emitter out; - out << *this; - fout << out.c_str(); - fout.close(); - } - -} /* velodyne_pointcloud */ diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/lib/rawdata.cc b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/lib/rawdata.cc deleted file mode 100755 index e4f9514ae34..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/src/lib/rawdata.cc +++ /dev/null @@ -1,495 +0,0 @@ -/* - * Copyright (C) 2007 Austin Robot Technology, Patrick Beeson - * Copyright (C) 2009, 2010, 2012 Austin Robot Technology, Jack O'Quin - * - * License: Modified BSD Software License Agreement - * - * $Id$ - */ - -/** - * @file - * - * Velodyne 3D LIDAR data accessor class implementation. - * - * Class for unpacking raw Velodyne LIDAR packets into useful - * formats. - * - * Derived classes accept raw Velodyne data for either single packets - * or entire rotations, and provide it in various formats for either - * on-line or off-line processing. - * - * @author Patrick Beeson - * @author Jack O'Quin - * - * HDL-64E S2 calibration support provided by Nick Hillier - */ - -#include -#include - -#include -#include -#include - -#include - -namespace velodyne_rawdata -{ - //////////////////////////////////////////////////////////////////////// - // - // RawData base class implementation - // - //////////////////////////////////////////////////////////////////////// - - RawData::RawData() {} - - /** Update parameters: conversions and update */ - void RawData::setParameters(double min_range, - double max_range, - double view_direction, - double view_width) - { - config_.min_range = min_range; - config_.max_range = max_range; - - //converting angle parameters into the velodyne reference (rad) - config_.tmp_min_angle = view_direction + view_width/2; - config_.tmp_max_angle = view_direction - view_width/2; - - //computing positive modulo to keep theses angles into [0;2*M_PI] - config_.tmp_min_angle = fmod(fmod(config_.tmp_min_angle,2*M_PI) + 2*M_PI,2*M_PI); - config_.tmp_max_angle = fmod(fmod(config_.tmp_max_angle,2*M_PI) + 2*M_PI,2*M_PI); - - //converting into the hardware velodyne ref (negative yaml and degrees) - //adding 0.5 perfomrs a centered double to int conversion - config_.min_angle = 100 * (2*M_PI - config_.tmp_min_angle) * 180 / M_PI + 0.5; - config_.max_angle = 100 * (2*M_PI - config_.tmp_max_angle) * 180 / M_PI + 0.5; - if (config_.min_angle == config_.max_angle) - { - //avoid returning empty cloud if min_angle = max_angle - config_.min_angle = 0; - config_.max_angle = 36000; - } - } - - /** Set up for on-line operation. */ - int RawData::setup(ros::NodeHandle private_nh) - { - // get path to angles.config file for this device - if (!private_nh.getParam("calibration", config_.calibrationFile)) - { - ROS_ERROR_STREAM("No calibration angles specified! Using test values!"); - - // have to use something: grab unit test version as a default - std::string pkgPath = ros::package::getPath("velodyne_pointcloud"); - config_.calibrationFile = pkgPath + "/params/64e_utexas.yaml"; - } - - ROS_INFO_STREAM("correction angles: " << config_.calibrationFile); - - calibration_.read(config_.calibrationFile); - if (!calibration_.initialized) { - ROS_ERROR_STREAM("Unable to open calibration file: " << - config_.calibrationFile); - return -1; - } - - ROS_INFO_STREAM("Number of lasers: " << calibration_.num_lasers << "."); - - // Set up cached values for sin and cos of all the possible headings - for (uint16_t rot_index = 0; rot_index < ROTATION_MAX_UNITS; ++rot_index) { - float rotation = angles::from_degrees(ROTATION_RESOLUTION * rot_index); - cos_rot_table_[rot_index] = cosf(rotation); - sin_rot_table_[rot_index] = sinf(rotation); - } - return 0; - } - - - /** Set up for offline operation */ - int RawData::setupOffline(std::string calibration_file, double max_range_, double min_range_) - { - - config_.max_range = max_range_; - config_.min_range = min_range_; - ROS_INFO_STREAM("data ranges to publish: [" - << config_.min_range << ", " - << config_.max_range << "]"); - - config_.calibrationFile = calibration_file; - - ROS_INFO_STREAM("correction angles: " << config_.calibrationFile); - - calibration_.read(config_.calibrationFile); - if (!calibration_.initialized) { - ROS_ERROR_STREAM("Unable to open calibration file: " << - config_.calibrationFile); - return -1; - } - - // Set up cached values for sin and cos of all the possible headings - for (uint16_t rot_index = 0; rot_index < ROTATION_MAX_UNITS; ++rot_index) { - float rotation = angles::from_degrees(ROTATION_RESOLUTION * rot_index); - cos_rot_table_[rot_index] = cosf(rotation); - sin_rot_table_[rot_index] = sinf(rotation); - } - return 0; - } - - - /** @brief convert raw packet to point cloud - * - * @param pkt raw packet to unpack - * @param pc shared pointer to point cloud (points are appended) - */ - void RawData::unpack(const velodyne_msgs::VelodynePacket &pkt, - VPointCloud &pc, int packets_num) - { - ROS_DEBUG_STREAM("Received packet, time: " << pkt.stamp); - - /** special parsing for the VLP16 **/ - if (calibration_.num_lasers == 16) - { - unpack_vlp16(pkt, pc); - return; - } - - const raw_packet_t *raw = (const raw_packet_t *) &pkt.data[0]; - - for (int i = 0; i < BLOCKS_PER_PACKET; i++) { - - // upper bank lasers are numbered [0..31] - // NOTE: this is a change from the old velodyne_common implementation - int bank_origin = 0; - if (raw->blocks[i].header == LOWER_BANK) { - // lower bank lasers are [32..63] - bank_origin = 32; - } - - for (int j = 0, k = 0; j < SCANS_PER_BLOCK; j++, k += RAW_SCAN_SIZE) { - - float x, y, z; - float intensity; - uint8_t laser_number; ///< hardware laser number - - laser_number = j + bank_origin; - velodyne_pointcloud::LaserCorrection &corrections = - calibration_.laser_corrections[laser_number]; - - /** Position Calculation */ - - union two_bytes tmp; - tmp.bytes[0] = raw->blocks[i].data[k]; - tmp.bytes[1] = raw->blocks[i].data[k+1]; - /*condition added to avoid calculating points which are not - in the interesting defined area (min_angle < area < max_angle)*/ - if ((raw->blocks[i].rotation >= config_.min_angle - && raw->blocks[i].rotation <= config_.max_angle - && config_.min_angle < config_.max_angle) - ||(config_.min_angle > config_.max_angle - && (raw->blocks[i].rotation <= config_.max_angle - || raw->blocks[i].rotation >= config_.min_angle))){ - - float distance; - if (packets_num==(int) ceil(1507.0 / 10)) - distance = tmp.uint * DISTANCE_RESOLUTION * 2; - else - distance = tmp.uint * DISTANCE_RESOLUTION; - - distance += corrections.dist_correction; - - float cos_vert_angle = corrections.cos_vert_correction; - float sin_vert_angle = corrections.sin_vert_correction; - float cos_rot_correction = corrections.cos_rot_correction; - float sin_rot_correction = corrections.sin_rot_correction; - - // cos(a-b) = cos(a)*cos(b) + sin(a)*sin(b) - // sin(a-b) = sin(a)*cos(b) - cos(a)*sin(b) - float cos_rot_angle = - cos_rot_table_[raw->blocks[i].rotation] * cos_rot_correction + - sin_rot_table_[raw->blocks[i].rotation] * sin_rot_correction; - float sin_rot_angle = - sin_rot_table_[raw->blocks[i].rotation] * cos_rot_correction - - cos_rot_table_[raw->blocks[i].rotation] * sin_rot_correction; - - float horiz_offset = corrections.horiz_offset_correction; - float vert_offset = corrections.vert_offset_correction; - - // Compute the distance in the xy plane (w/o accounting for rotation) - /**the new term of 'vert_offset * sin_vert_angle' - * was added to the expression due to the mathemathical - * model we used. - */ - float xy_distance = distance * cos_vert_angle - vert_offset * sin_vert_angle; - - // Calculate temporal X, use absolute value. - float xx = xy_distance * sin_rot_angle - horiz_offset * cos_rot_angle; - // Calculate temporal Y, use absolute value - float yy = xy_distance * cos_rot_angle + horiz_offset * sin_rot_angle; - if (xx < 0) xx=-xx; - if (yy < 0) yy=-yy; - - // Get 2points calibration values,Linear interpolation to get distance - // correction for X and Y, that means distance correction use - // different value at different distance - float distance_corr_x = 0; - float distance_corr_y = 0; - if (corrections.two_pt_correction_available) { - distance_corr_x = - (corrections.dist_correction - corrections.dist_correction_x) - * (xx - 2.4) / (25.04 - 2.4) - + corrections.dist_correction_x; - distance_corr_x -= corrections.dist_correction; - distance_corr_y = - (corrections.dist_correction - corrections.dist_correction_y) - * (yy - 1.93) / (25.04 - 1.93) - + corrections.dist_correction_y; - distance_corr_y -= corrections.dist_correction; - } - - float distance_x = distance + distance_corr_x; - /**the new term of 'vert_offset * sin_vert_angle' - * was added to the expression due to the mathemathical - * model we used. - */ - xy_distance = distance_x * cos_vert_angle - vert_offset * sin_vert_angle ; - ///the expression wiht '-' is proved to be better than the one with '+' - x = xy_distance * sin_rot_angle - horiz_offset * cos_rot_angle; - - float distance_y = distance + distance_corr_y; - xy_distance = distance_y * cos_vert_angle - vert_offset * sin_vert_angle ; - /**the new term of 'vert_offset * sin_vert_angle' - * was added to the expression due to the mathemathical - * model we used. - */ - y = xy_distance * cos_rot_angle + horiz_offset * sin_rot_angle; - - // Using distance_y is not symmetric, but the velodyne manual - // does this. - /**the new term of 'vert_offset * cos_vert_angle' - * was added to the expression due to the mathemathical - * model we used. - */ - z = distance_y * sin_vert_angle + vert_offset*cos_vert_angle; - - /** Use standard ROS coordinate system (right-hand rule) */ - float x_coord = y; - float y_coord = -x; - float z_coord = z; - - /** Intensity Calculation */ - - float min_intensity = corrections.min_intensity; - float max_intensity = corrections.max_intensity; - - intensity = raw->blocks[i].data[k+2]; - - float focal_offset = 256 - * (1 - corrections.focal_distance / 13100) - * (1 - corrections.focal_distance / 13100); - float focal_slope = corrections.focal_slope; - intensity += focal_slope * (std::abs(focal_offset - 256 * - (1 - static_cast(tmp.uint)/65535)*(1 - static_cast(tmp.uint)/65535))); - intensity = (intensity < min_intensity) ? min_intensity : intensity; - intensity = (intensity > max_intensity) ? max_intensity : intensity; - - if (pointInRange(distance)) { - - // convert polar coordinates to Euclidean XYZ - VPoint point; - point.ring = corrections.laser_ring; - point.x = x_coord; - point.y = y_coord; - point.z = z_coord; - point.intensity = intensity; - - // append this point to the cloud - pc.points.push_back(point); - ++pc.width; - } - } - } - } - } - - /** @brief convert raw VLP16 packet to point cloud - * - * @param pkt raw packet to unpack - * @param pc shared pointer to point cloud (points are appended) - */ - void RawData::unpack_vlp16(const velodyne_msgs::VelodynePacket &pkt, - VPointCloud &pc) - { - float azimuth; - float azimuth_diff; - float last_azimuth_diff=0; - float azimuth_corrected_f; - int azimuth_corrected; - float x, y, z; - float intensity; - - const raw_packet_t *raw = (const raw_packet_t *) &pkt.data[0]; - - for (int block = 0; block < BLOCKS_PER_PACKET; block++) { - - // ignore packets with mangled or otherwise different contents - if (UPPER_BANK != raw->blocks[block].header) { - // Do not flood the log with messages, only issue at most one - // of these warnings per minute. - ROS_WARN_STREAM_THROTTLE(60, "skipping invalid VLP-16 packet: block " - << block << " header value is " - << raw->blocks[block].header); - return; // bad packet: skip the rest - } - - // Calculate difference between current and next block's azimuth angle. - azimuth = (float)(raw->blocks[block].rotation); - if (block < (BLOCKS_PER_PACKET-1)){ - azimuth_diff = (float)((36000 + raw->blocks[block+1].rotation - raw->blocks[block].rotation)%36000); - last_azimuth_diff = azimuth_diff; - }else{ - azimuth_diff = last_azimuth_diff; - } - - for (int firing=0, k=0; firing < VLP16_FIRINGS_PER_BLOCK; firing++){ - for (int dsr=0; dsr < VLP16_SCANS_PER_FIRING; dsr++, k+=RAW_SCAN_SIZE){ - velodyne_pointcloud::LaserCorrection &corrections = - calibration_.laser_corrections[dsr]; - - /** Position Calculation */ - union two_bytes tmp; - tmp.bytes[0] = raw->blocks[block].data[k]; - tmp.bytes[1] = raw->blocks[block].data[k+1]; - - /** correct for the laser rotation as a function of timing during the firings **/ - azimuth_corrected_f = azimuth + (azimuth_diff * ((dsr*VLP16_DSR_TOFFSET) + (firing*VLP16_FIRING_TOFFSET)) / VLP16_BLOCK_TDURATION); - azimuth_corrected = ((int)round(azimuth_corrected_f)) % 36000; - - /*condition added to avoid calculating points which are not - in the interesting defined area (min_angle < area < max_angle)*/ - if ((azimuth_corrected >= config_.min_angle - && azimuth_corrected <= config_.max_angle - && config_.min_angle < config_.max_angle) - ||(config_.min_angle > config_.max_angle - && (azimuth_corrected <= config_.max_angle - || azimuth_corrected >= config_.min_angle))){ - - // convert polar coordinates to Euclidean XYZ - float distance = tmp.uint * DISTANCE_RESOLUTION; - distance += corrections.dist_correction; - - float cos_vert_angle = corrections.cos_vert_correction; - float sin_vert_angle = corrections.sin_vert_correction; - float cos_rot_correction = corrections.cos_rot_correction; - float sin_rot_correction = corrections.sin_rot_correction; - - // cos(a-b) = cos(a)*cos(b) + sin(a)*sin(b) - // sin(a-b) = sin(a)*cos(b) - cos(a)*sin(b) - float cos_rot_angle = - cos_rot_table_[azimuth_corrected] * cos_rot_correction + - sin_rot_table_[azimuth_corrected] * sin_rot_correction; - float sin_rot_angle = - sin_rot_table_[azimuth_corrected] * cos_rot_correction - - cos_rot_table_[azimuth_corrected] * sin_rot_correction; - - float horiz_offset = corrections.horiz_offset_correction; - float vert_offset = corrections.vert_offset_correction; - - // Compute the distance in the xy plane (w/o accounting for rotation) - /**the new term of 'vert_offset * sin_vert_angle' - * was added to the expression due to the mathemathical - * model we used. - */ - float xy_distance = distance * cos_vert_angle - vert_offset * sin_vert_angle; - - // Calculate temporal X, use absolute value. - float xx = xy_distance * sin_rot_angle - horiz_offset * cos_rot_angle; - // Calculate temporal Y, use absolute value - float yy = xy_distance * cos_rot_angle + horiz_offset * sin_rot_angle; - if (xx < 0) xx=-xx; - if (yy < 0) yy=-yy; - - // Get 2points calibration values,Linear interpolation to get distance - // correction for X and Y, that means distance correction use - // different value at different distance - float distance_corr_x = 0; - float distance_corr_y = 0; - if (corrections.two_pt_correction_available) { - distance_corr_x = - (corrections.dist_correction - corrections.dist_correction_x) - * (xx - 2.4) / (25.04 - 2.4) - + corrections.dist_correction_x; - distance_corr_x -= corrections.dist_correction; - distance_corr_y = - (corrections.dist_correction - corrections.dist_correction_y) - * (yy - 1.93) / (25.04 - 1.93) - + corrections.dist_correction_y; - distance_corr_y -= corrections.dist_correction; - } - - float distance_x = distance + distance_corr_x; - /**the new term of 'vert_offset * sin_vert_angle' - * was added to the expression due to the mathemathical - * model we used. - */ - xy_distance = distance_x * cos_vert_angle - vert_offset * sin_vert_angle ; - x = xy_distance * sin_rot_angle - horiz_offset * cos_rot_angle; - - float distance_y = distance + distance_corr_y; - /**the new term of 'vert_offset * sin_vert_angle' - * was added to the expression due to the mathemathical - * model we used. - */ - xy_distance = distance_y * cos_vert_angle - vert_offset * sin_vert_angle ; - y = xy_distance * cos_rot_angle + horiz_offset * sin_rot_angle; - - // Using distance_y is not symmetric, but the velodyne manual - // does this. - /**the new term of 'vert_offset * cos_vert_angle' - * was added to the expression due to the mathemathical - * model we used. - */ - z = distance_y * sin_vert_angle + vert_offset*cos_vert_angle; - - - /** Use standard ROS coordinate system (right-hand rule) */ - float x_coord = y; - float y_coord = -x; - float z_coord = z; - - /** Intensity Calculation */ - float min_intensity = corrections.min_intensity; - float max_intensity = corrections.max_intensity; - - intensity = raw->blocks[block].data[k+2]; - - float focal_offset = 256 - * (1 - corrections.focal_distance / 13100) - * (1 - corrections.focal_distance / 13100); - float focal_slope = corrections.focal_slope; - intensity += focal_slope * (std::abs(focal_offset - 256 * - (1 - tmp.uint/65535)*(1 - tmp.uint/65535))); - intensity = (intensity < min_intensity) ? min_intensity : intensity; - intensity = (intensity > max_intensity) ? max_intensity : intensity; - - if (pointInRange(distance)) { - - // append this point to the cloud - VPoint point; - point.ring = corrections.laser_ring; - point.x = x_coord; - point.y = y_coord; - point.z = z_coord; - point.intensity = intensity; - - pc.points.push_back(point); - ++pc.width; - } - } - } - } - } - } - -} // namespace velodyne_rawdata diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/32db.xml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/32db.xml deleted file mode 100644 index b462c71e60c..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/32db.xml +++ /dev/null @@ -1,1709 +0,0 @@ - - - - - 0.2 - - - 3 - 0 - 0 - 0 - - - - - 3 - 0 - 0 - 0 - - - - 64 - 0 - - - 3 - 0.84018773 - 0.39438292 - 0.78309923 - - - - - 3 - 0.840177 - 0.77233541 - 0.39436942 - - - - - 3 - 0.08879225 - 0.8096742 - 0.71766233 - - - - - 3 - 0.70946825 - 0.40906385 - 0.82345313 - - - - - 3 - 0.5796597 - 0.9642939 - 0.064805068 - - - - - 3 - 0.32542917 - 0.69379723 - 1 - - - - - 3 - 0.96250856 - 0.7900511 - 0.13542382 - - - - - 3 - 0.91102463 - 0.34070343 - 0.050705731 - - - - - 3 - 0.35276073 - 0.78958958 - 0.90582585 - - - - - 3 - 0.21438926 - 0.69950408 - 0.20341802 - - - - - 3 - 0.085374229 - 0.94720376 - 0.88781565 - - - - - 3 - 0.98643476 - 0.97503626 - 0.034851607 - - - - - 3 - 0.7856003 - 0.44017774 - 0.11511882 - - - - - 3 - 0.63264316 - 0.34141558 - 0.9041099 - - - - - 3 - 0.94122225 - 0.072755016 - 0.85761809 - - - - - 3 - 0.95754939 - 0.9211719 - 0.21469444 - - - - - 3 - 0.94947737 - 0.55008775 - 0.44551766 - - - - - 3 - 0.89275962 - 0.85084307 - 0.01608301 - - - - - 3 - 0.91799802 - 0.49231708 - 0.78014803 - - - - - 3 - 0.55109483 - 0.75539786 - 0.21551843 - - - - - 3 - 0.14881226 - 0.7401194 - 0.53116983 - - - - - 3 - 0.93394369 - 0.39975587 - 0.67215991 - - - - - 3 - 0.86502695 - 0.56639397 - 0.63385367 - - - - - 3 - 0.50551611 - 0.94326693 - 0.48421454 - - - - - 3 - 0.087714233 - 0.89877903 - 0.2479341 - - - - - 3 - 0.93935621 - 0.80573922 - 0.04233218 - - - - - 3 - 0.09033341 - 0.87373161 - 0.9662928 - - - - - 3 - 0.13539331 - 0.65983063 - 0.28789195 - - - - - 3 - 0.96635383 - 0.28834975 - 0.057038225 - - - - - 3 - 0.600824 - 0.96617073 - 0.10191501 - - - - - 3 - 0.90740824 - 0.95980775 - 0.95391774 - - - - - 3 - 0.59211904 - 0.78711683 - 0.86269605 - - - - - 3 - 0.028625926 - 0.98828107 - 0.30778974 - - - - - 3 - 0.59491873 - 0.35182726 - 0.87454033 - - - - - 3 - 0.7464866 - 0.51860839 - 0.8450141 - - - - - 3 - 0.32484931 - 0.38410011 - 0.86562908 - - - - - 3 - 0.96064699 - 0.052674145 - 0.67904174 - - - - - 3 - 0.31248951 - 0.92227054 - 0.48648813 - - - - - 3 - 0.054489966 - 0.95574886 - 0.28729686 - - - - - 3 - 0.95848018 - 0.93113601 - 0.10840009 - - - - - 3 - 0.95097274 - 0.94096285 - 0.32806897 - - - - - 3 - 0.9619745 - 0.034027617 - 0.78579384 - - - - - 3 - 0.94944686 - 0.82970929 - 0.037186235 - - - - - 3 - 0.97222859 - 0.62723738 - 0.065781645 - - - - - 3 - 0.92346072 - 0.96305794 - 0.93403524 - - - - - 3 - 0.98861676 - 0 - 0.76792556 - - - - - 3 - 0.26213473 - 0.95156789 - 0.94323641 - - - - - 3 - 0.41365683 - 0.97004652 - 0.078889146 - - - - - 3 - 0.85752654 - 0.1990692 - 0.22206454 - - - - - 3 - 0.053299762 - 0.93763638 - 0.99444574 - - - - - 3 - 0.8943212 - 0.62864298 - 0.10409617 - - - - - 3 - 0.76058036 - 0.048754983 - 0.91462308 - - - - - 3 - 0.83480585 - 0.70650798 - 0.51032275 - - - - - 3 - 0.89080644 - 0.12384222 - 0.26840618 - - - - - 3 - 0.32953385 - 0.81698328 - 0.51252002 - - - - - 3 - 0.39465934 - 0.75048447 - 0.75953305 - - - - - 3 - 0.92498666 - 0.94149691 - 0.12957962 - - - - - 3 - 0.91115069 - 0.52652103 - 0.73026121 - - - - - 3 - 0.76655 - 0.93766737 - 0.031084489 - - - - - 3 - 0.12669764 - 0.85318863 - 0.33537352 - - - - - 3 - 0.9853164 - 0.26496059 - 0.13821837 - - - - - 3 - 0.84317338 - 0.17844476 - 0.94212615 - - - - - 3 - 0.69955063 - 0.59048992 - 0.74391818 - - - - - 3 - 0.67139697 - 0.87832457 - 0.69022661 - - - - - 64 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 64 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 64 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 64 - 0 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - - - 64 - 1 - - - 0 - 0 - -30.67 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 1 - 0 - -9.3299999 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 2 - 0 - -29.33 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 3 - 0 - -8 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 4 - 0 - -28 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 5 - 0 - -6.6700001 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 6 - 0 - -26.67 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 7 - 0 - -5.3299999 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 8 - 0 - -25.33 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 9 - 0 - -4 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 10 - 0 - -24 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 11 - 0 - -2.6700001 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 12 - 0 - -22.67 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 13 - 0 - -1.33 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 14 - 0 - -21.33 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 15 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 16 - 0 - -20 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 17 - 0 - 1.33 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 18 - 0 - -18.67 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 19 - 0 - 2.6700001 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 20 - 0 - -17.33 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 21 - 0 - 4 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 22 - 0 - -16 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 23 - 0 - 5.3299999 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 24 - 0 - -14.67 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 25 - 0 - 6.6700001 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 26 - 0 - -13.33 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 27 - 0 - 8 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 28 - 0 - -12 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 29 - 0 - 9.3299999 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 30 - 0 - -10.67 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 31 - 0 - 10.67 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 32 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 33 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 34 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 35 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 36 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 37 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 38 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 39 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 40 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 41 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 42 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 43 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 44 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 45 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 46 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 47 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 48 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 49 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 50 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 51 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 52 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 53 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 54 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 55 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 56 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 57 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 58 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 59 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 60 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 61 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 62 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - 63 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/64e_s2.1-sztaki.xml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/64e_s2.1-sztaki.xml deleted file mode 100644 index 6f5bdca7023..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/64e_s2.1-sztaki.xml +++ /dev/null @@ -1,1709 +0,0 @@ - - - - - 0.2 - - - 3 - 0 - 0 - 0 - - - - - 3 - 0 - 0 - 0 - - - - 64 - 0 - - - 3 - 0.84018773 - 0.39438292 - 0.78309923 - - - - - 3 - 0.840177 - 0.77233541 - 0.39436942 - - - - - 3 - 0.08879225 - 0.8096742 - 0.71766233 - - - - - 3 - 0.70946825 - 0.40906385 - 0.82345313 - - - - - 3 - 0.5796597 - 0.9642939 - 0.064805068 - - - - - 3 - 0.32542917 - 0.69379723 - 1 - - - - - 3 - 0.96250856 - 0.7900511 - 0.13542382 - - - - - 3 - 0.91102463 - 0.34070343 - 0.050705731 - - - - - 3 - 0.35276073 - 0.78958958 - 0.90582585 - - - - - 3 - 0.20696545 - 0.6995154 - 0.20343073 - - - - - 3 - 0.085374229 - 0.94720376 - 0.88781565 - - - - - 3 - 0.98643476 - 0.97503626 - 0.034851607 - - - - - 3 - 0.7856003 - 0.44017774 - 0.11511882 - - - - - 3 - 0.63264316 - 0.34141558 - 0.9041099 - - - - - 3 - 0.94122225 - 0.072755016 - 0.85761809 - - - - - 3 - 0.95754939 - 0.9211719 - 0.21469444 - - - - - 3 - 0.94947737 - 0.55008775 - 0.44551766 - - - - - 3 - 0.89275962 - 0.85084307 - 0.01608301 - - - - - 3 - 0.91799802 - 0.49231708 - 0.78014803 - - - - - 3 - 0.55109483 - 0.75539786 - 0.21551843 - - - - - 3 - 0.14881226 - 0.7401194 - 0.53116983 - - - - - 3 - 0.93394369 - 0.39975587 - 0.67215991 - - - - - 3 - 0.86502695 - 0.56639397 - 0.63385367 - - - - - 3 - 0.50551611 - 0.94326693 - 0.48421454 - - - - - 3 - 0.087714233 - 0.89877903 - 0.2479341 - - - - - 3 - 0.93935621 - 0.80573922 - 0.04233218 - - - - - 3 - 0.09033341 - 0.87373161 - 0.9662928 - - - - - 3 - 0.13539331 - 0.65983063 - 0.28789195 - - - - - 3 - 0.96635383 - 0.28834975 - 0.057038225 - - - - - 3 - 0.600824 - 0.96617073 - 0.10191501 - - - - - 3 - 0.90740824 - 0.95980775 - 0.95391774 - - - - - 3 - 0.59211904 - 0.78711683 - 0.86269605 - - - - - 3 - 0.028625926 - 0.98828107 - 0.30778974 - - - - - 3 - 0.59491873 - 0.35182726 - 0.87454033 - - - - - 3 - 0.7464866 - 0.51860839 - 0.8450141 - - - - - 3 - 0.32484931 - 0.38410011 - 0.86562908 - - - - - 3 - 0.96064699 - 0.052674145 - 0.67904174 - - - - - 3 - 0.31248951 - 0.92227054 - 0.48648813 - - - - - 3 - 0.054489966 - 0.95574886 - 0.28729686 - - - - - 3 - 0.95848018 - 0.93113601 - 0.10840009 - - - - - 3 - 0.95097274 - 0.94096285 - 0.32806897 - - - - - 3 - 0.9619745 - 0.034027617 - 0.78579384 - - - - - 3 - 0.94944686 - 0.82970929 - 0.037186235 - - - - - 3 - 0.97222859 - 0.62723738 - 0.065781645 - - - - - 3 - 0.92346072 - 0.96305794 - 0.93403524 - - - - - 3 - 0.98861676 - 0 - 0.76792556 - - - - - 3 - 0.26213473 - 0.95156789 - 0.94323641 - - - - - 3 - 0.41365683 - 0.97004652 - 0.078889146 - - - - - 3 - 0.85752654 - 0.1990692 - 0.22206454 - - - - - 3 - 0.053299762 - 0.93763638 - 0.99444574 - - - - - 3 - 0.8943212 - 0.62864298 - 0.10409617 - - - - - 3 - 0.76058036 - 0.048754983 - 0.91462308 - - - - - 3 - 0.83480585 - 0.70650798 - 0.51032275 - - - - - 3 - 0.89080644 - 0.12384222 - 0.26840618 - - - - - 3 - 0.32953385 - 0.81698328 - 0.51252002 - - - - - 3 - 0.39465934 - 0.75048447 - 0.75953305 - - - - - 3 - 0.92498666 - 0.94149691 - 0.12957962 - - - - - 3 - 0.91115069 - 0.52652103 - 0.73026121 - - - - - 3 - 0.76655 - 0.93766737 - 0.031084489 - - - - - 3 - 0.12669764 - 0.85318863 - 0.33537352 - - - - - 3 - 0.9853164 - 0.26496059 - 0.13821837 - - - - - 3 - 0.84317338 - 0.17844476 - 0.94212615 - - - - - 3 - 0.69955063 - 0.59048992 - 0.74391818 - - - - - 3 - 0.67139697 - 0.87832457 - 0.69022661 - - - - - 64 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - - - 64 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - - - 64 - 0 - 0 - 30 - 40 - 0 - 60 - 20 - 50 - 30 - 65 - 10 - 30 - 10 - 0 - 35 - 0 - 30 - 50 - 30 - 20 - 30 - 40 - 0 - 55 - 0 - 10 - 30 - 0 - 45 - 35 - 40 - 0 - 55 - 0 - 25 - 50 - 0 - 30 - 0 - 30 - 50 - 40 - 0 - 90 - 5 - 0 - 45 - 0 - 35 - 20 - 25 - 0 - 0 - 35 - 0 - 30 - 0 - 0 - 55 - 0 - 40 - 25 - 50 - 10 - 35 - - - 64 - 0 - 235 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - 220 - 255 - 255 - 255 - 255 - 255 - 255 - 255 - - - 64 - 1 - - - 0 - -7.1559157 - -8.7686234 - 151.95264 - 155.00304 - 152.31381 - 19.548199 - 2.5999999 - 1200 - 1.4 - - - - - 1 - -3.967427 - -8.3563347 - 151.45139 - 152.5696 - 154.91043 - 19.601112 - -2.5999999 - 500 - 1 - - - - - 2 - 4.7212691 - 2.486347 - 149.63768 - 155.71011 - 154.56783 - 20.96954 - 2.5999999 - 500 - 0.89999998 - - - - - 3 - 7.8958368 - 2.9771359 - 137.71207 - 141.03835 - 143.43457 - 21.031273 - -2.5999999 - 950 - 1.1 - - - - - 4 - -0.64169002 - -7.7822719 - 129.47885 - 137.20456 - 140.25244 - 19.674604 - 2.5999999 - 1000 - 1 - - - - - 5 - 2.623884 - -7.2642641 - 143.95787 - 148.01956 - 150.74649 - 19.740747 - -2.5999999 - 700 - 1 - - - - - 6 - -1.8131849 - -10.860783 - 136.18773 - 140.04077 - 139.00876 - 19.277746 - 2.5999999 - 500 - 1.1 - - - - - 7 - 1.3411983 - -10.362929 - 153.25716 - 153.37143 - 154.52948 - 19.342419 - -2.5999999 - 600 - 1 - - - - - 8 - 5.7673278 - -6.860538 - 137.43323 - 144.74606 - 145.33472 - 19.792192 - 2.5999999 - 600 - 1 - - - - - 9 - 9.1652756 - -6.2594609 - 149.69112 - 147.54176 - 148.88799 - 19.868624 - -2.5999999 - 500 - 1 - - - - - 10 - 4.7631793 - -9.8180084 - 143.4263 - 149.57901 - 151.91893 - 19.412971 - 2.5999999 - 500 - 0.89999998 - - - - - 11 - 7.9426689 - -9.3397217 - 155.00841 - 154.2697 - 157.16737 - 19.474705 - -2.5999999 - 800 - 1.2 - - - - - 12 - -7.1952329 - -2.5933869 - 137.25992 - 143.53555 - 139.32405 - 20.331627 - 2.5999999 - 1100 - 1.1 - - - - - 13 - -3.8482759 - -2.0555191 - 131.11591 - 134.70857 - 136.52054 - 20.399239 - -2.5999999 - 600 - 0.69999999 - - - - - 14 - -8.3530884 - -5.6685958 - 153.60803 - 155.28035 - 156.66801 - 19.943586 - 2.5999999 - 800 - 1.1 - - - - - 15 - -5.0952554 - -5.1927018 - 147.55449 - 150.32428 - 153.26752 - 20.003851 - -2.5999999 - 500 - 0.89999998 - - - - - 16 - -0.74519908 - -1.587509 - 144.10587 - 148.70845 - 146.27965 - 20.458033 - 2.5999999 - 1800 - 0.5 - - - - - 17 - 2.6336744 - -1.15441 - 144.34521 - 148.97508 - 147.91382 - 20.512417 - -2.5999999 - 1100 - 0.80000001 - - - - - 18 - -1.854838 - -4.7044559 - 132.43448 - 138.16666 - 136.47719 - 20.065582 - 2.5999999 - 1200 - 1 - - - - - 19 - 1.3930181 - -4.1689248 - 145.65854 - 143.40645 - 145.50516 - 20.133196 - -2.5999999 - 2000 - 0.69999999 - - - - - 20 - 5.746419 - -0.568941 - 133.13776 - 138.19601 - 138.47791 - 20.585909 - 2.5999999 - 500 - 0.89999998 - - - - - 21 - 9.0916338 - -0.217594 - 137.87535 - 139.78789 - 142.57806 - 20.630005 - -2.5999999 - 1000 - 1.1 - - - - - 22 - 4.6091719 - -3.714313 - 134.19412 - 140.59189 - 141.13303 - 20.190519 - 2.5999999 - 1100 - 1 - - - - - 23 - 7.9456115 - -3.1891811 - 143.38304 - 142.12059 - 149.00565 - 20.256662 - -2.5999999 - 1100 - 1.1 - - - - - 24 - -7.1650081 - 3.5024951 - 149.30911 - 155.72188 - 151.82672 - 21.097416 - 2.5999999 - 500 - 1 - - - - - 25 - -3.904608 - 4.0039558 - 143.67653 - 146.14236 - 145.87589 - 21.16062 - -2.5999999 - 300 - 1 - - - - - 26 - -8.3260279 - 0.50854403 - 152.79892 - 156.86108 - 155.737 - 20.721134 - 2.5999999 - 750 - 1 - - - - - 27 - -5.1018195 - 0.97694802 - 150.77638 - 154.53738 - 154.83368 - 20.779928 - -2.5999999 - 400 - 0.89999998 - - - - - 28 - -0.69107699 - 4.4931631 - 136.27797 - 142.32985 - 141.16524 - 21.222351 - 2.5999999 - 400 - 1 - - - - - 29 - 2.5148804 - 4.9700899 - 137.49608 - 140.45798 - 140.06631 - 21.282616 - -2.5999999 - 400 - 1.1 - - - - - 30 - -1.8946992 - 1.445222 - 129.40709 - 139.2794 - 132.25565 - 20.838722 - 2.5999999 - 800 - 0.89999998 - - - - - 31 - 1.4630644 - 1.971796 - 139.07666 - 143.65166 - 145.01437 - 20.904865 - -2.5999999 - 900 - 1 - - - - - 32 - -7.6260486 - -22.727167 - 134.61819 - 136.78523 - 135.52881 - 10.812235 - 2.5999999 - 1100 - 1.5 - - - - - 33 - -4.1488786 - -22.35751 - 124.87466 - 129.29747 - 134.38803 - 10.859233 - -2.5999999 - 500 - 0.89999998 - - - - - 34 - 4.7513733 - -11.520303 - 150.16498 - 153.84891 - 155.06186 - 12.148494 - 2.5999999 - 450 - 1 - - - - - 35 - 8.0251369 - -10.945655 - 124.95708 - 128.91127 - 129.43669 - 12.213274 - -2.5999999 - 1100 - 1.3 - - - - - 36 - -0.68779838 - -21.885101 - 126.74536 - 132.98663 - 135.77469 - 10.918932 - 2.5999999 - 600 - 0.89999998 - - - - - 37 - 2.7686412 - -21.307959 - 124.81956 - 128.627 - 129.235 - 10.991334 - -2.5999999 - 1450 - 1.5 - - - - - 38 - -2.052953 - -24.845081 - 145.16722 - 148.42308 - 148.68384 - 10.53787 - 2.5999999 - 400 - 1.1 - - - - - 39 - 1.5403103 - -24.419271 - 138.43004 - 140.10727 - 143.32016 - 10.593759 - -2.5999999 - 650 - 1.3 - - - - - 40 - 6.1668367 - -20.859316 - 124.4738 - 131.31859 - 135.4245 - 11.047223 - 2.5999999 - 650 - 1 - - - - - 41 - 9.621645 - -20.119377 - 132.84543 - 132.95518 - 138.09489 - 11.138678 - -2.5999999 - 1250 - 1.7 - - - - - 42 - 4.9340644 - -23.853561 - 140.55542 - 144.26663 - 143.0847 - 10.667431 - 2.5999999 - 150 - 1.1 - - - - - 43 - 8.6081295 - -23.183969 - 135.29747 - 138.34918 - 140.29074 - 10.753805 - -2.5999999 - 600 - 1.2 - - - - - 44 - -7.4476075 - -16.55401 - 124.0738 - 131.71521 - 128.364 - 11.568009 - 2.5999999 - 1500 - 1.6 - - - - - 45 - -4.0160227 - -16.111792 - 152.88052 - 159.04514 - 162.88455 - 11.620087 - -2.5999999 - 1000 - 0.89999998 - - - - - 46 - -8.7875204 - -19.570175 - 154.23979 - 159.19412 - 161.0177 - 11.205999 - 2.5999999 - 1300 - 1.7 - - - - - 47 - -5.3164234 - -19.184532 - 130.86253 - 137.37134 - 141.77727 - 11.252997 - -2.5999999 - 550 - 0.89999998 - - - - - 48 - -0.6877985 - -15.689306 - 134.0533 - 145.12436 - 144.71468 - 11.669625 - 2.5999999 - 1350 - 1 - - - - - 49 - 2.7199085 - -15.177824 - 129.94545 - 139.71344 - 136.849 - 11.729325 - -2.5999999 - 1400 - 1 - - - - - 50 - -1.9355294 - -18.723572 - 144.99763 - 151.11346 - 154.2395 - 11.308886 - 2.5999999 - 1300 - 1.2 - - - - - 51 - 1.4515518 - -18.217821 - 135.16956 - 142.31837 - 143.01146 - 11.369856 - -2.5999999 - 1300 - 1.1 - - - - - 52 - 6.0057297 - -14.598064 - 123.74236 - 130.8008 - 135.49429 - 11.796646 - 2.5999999 - 500 - 0.89999998 - - - - - 53 - 9.3459244 - -14.081364 - 137.30562 - 140.3678 - 143.47415 - 11.856346 - -2.5999999 - 1300 - 1.4 - - - - - 54 - 4.804235 - -17.762243 - 144.45888 - 150.25624 - 151.89749 - 11.424475 - 2.5999999 - 1000 - 1 - - - - - 55 - 8.2360468 - -17.111965 - 138.61449 - 142.28815 - 146.20186 - 11.501958 - -2.5999999 - 1500 - 1.6 - - - - - 56 - -7.3005872 - -10.538668 - 146.35341 - 152.32283 - 150.63837 - 12.259002 - 2.5999999 - 1300 - 1.3 - - - - - 57 - -3.926554 - -9.9943476 - 137.15826 - 141.86972 - 143.28435 - 12.319972 - -2.5999999 - 350 - 1 - - - - - 58 - -8.578989 - -13.407262 - 146.44832 - 150.95984 - 151.49265 - 11.933828 - 2.5999999 - 1100 - 1.4 - - - - - 59 - -5.1414781 - -12.974276 - 130.74548 - 135.21214 - 138.30151 - 11.983367 - -2.5999999 - 500 - 0.89999998 - - - - - 60 - -0.67333692 - -9.6190624 - 143.78391 - 147.99687 - 148.89211 - 12.361888 - 2.5999999 - 500 - 1.1 - - - - - 61 - 2.5721638 - -9.0717077 - 135.85466 - 141.35242 - 141.70488 - 12.422858 - -2.5999999 - 200 - 0.89999998 - - - - - 62 - -1.9503998 - -12.416959 - 144.78067 - 154.42529 - 155.12207 - 12.046877 - 2.5999999 - 1000 - 1 - - - - - 63 - 1.4242532 - -12.070212 - 143.29738 - 148.17114 - 149.54124 - 12.086253 - -2.5999999 - 900 - 0.80000001 - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/CMakeLists.txt b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/CMakeLists.txt deleted file mode 100644 index a8f7ac14e7e..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/CMakeLists.txt +++ /dev/null @@ -1,52 +0,0 @@ -### Unit tests -# -# Only configured when CATKIN_ENABLE_TESTING is true. - -# these dependencies are only needed for unit testing -find_package(roslaunch REQUIRED) -find_package(rostest REQUIRED) -find_package(tf2_ros REQUIRED) - -# C++ gtests -catkin_add_gtest(test_calibration test_calibration.cpp) -add_dependencies(test_calibration ${catkin_EXPORTED_TARGETS}) -target_link_libraries(test_calibration velodyne_rawdata ${catkin_LIBRARIES}) - -# Download packet capture (PCAP) files containing test data. -# Store them in devel-space, so rostest can easily find them. -catkin_download_test_data( - ${PROJECT_NAME}_tests_class.pcap - http://download.ros.org/data/velodyne/class.pcap - DESTINATION ${CATKIN_DEVEL_PREFIX}/${CATKIN_PACKAGE_SHARE_DESTINATION}/tests - MD5 65808d25772101358a3719b451b3d015) -catkin_download_test_data( - ${PROJECT_NAME}_tests_32e.pcap - http://download.ros.org/data/velodyne/32e.pcap - DESTINATION ${CATKIN_DEVEL_PREFIX}/${CATKIN_PACKAGE_SHARE_DESTINATION}/tests - MD5 e41d02aac34f0967c03a5597e1d554a9) -catkin_download_test_data( - ${PROJECT_NAME}_tests_64e_s2.1-300-sztaki.pcap - http://download.ros.org/data/velodyne/64e_s2.1-300-sztaki.pcap - DESTINATION ${CATKIN_DEVEL_PREFIX}/${CATKIN_PACKAGE_SHARE_DESTINATION}/tests - MD5 176c900ffb698f9b948a13e281ffc1a2) -catkin_download_test_data( - ${PROJECT_NAME}_tests_vlp16.pcap - http://download.ros.org/data/velodyne/vlp16.pcap - DESTINATION ${CATKIN_DEVEL_PREFIX}/${CATKIN_PACKAGE_SHARE_DESTINATION}/tests - MD5 f45c2bb1d7ee358274e423ea3b66fd73) - -# run rostests -add_rostest(cloud_node_hz.test) -add_rostest(cloud_nodelet_hz.test) -add_rostest(cloud_node_32e_hz.test) -add_rostest(cloud_nodelet_32e_hz.test) -add_rostest(cloud_node_64e_s2.1_hz.test) -add_rostest(cloud_nodelet_64e_s2.1_hz.test) -add_rostest(cloud_node_vlp16_hz.test) -add_rostest(cloud_nodelet_vlp16_hz.test) -add_rostest(transform_node_hz.test) -add_rostest(transform_nodelet_hz.test) -add_rostest(two_nodelet_managers.test) - -# parse check all the launch/*.launch files -roslaunch_add_file_check(../launch) diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/angles-calibrated.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/angles-calibrated.yaml deleted file mode 100644 index 91d0f113e8f..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/angles-calibrated.yaml +++ /dev/null @@ -1,834 +0,0 @@ -num_lasers: 64 -lasers: - - laser_id: 0 - rot_correction: -0.122173048555851 - vert_correction: -0.401850968599319 - dist_correction: 0.119999997317791 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 1 - rot_correction: -0.0610865242779255 - vert_correction: -0.39391815662384 - dist_correction: 0.0199999995529652 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 2 - rot_correction: 0.0959931090474129 - vert_correction: -0.200955957174301 - dist_correction: 0.100000001490116 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 3 - rot_correction: 0.148352980613708 - vert_correction: -0.188023120164871 - dist_correction: 0.230000004172325 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 4 - rot_correction: -0.00872664619237185 - vert_correction: -0.384992778301239 - dist_correction: 0.170000001788139 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 5 - rot_correction: 0.0610865242779255 - vert_correction: -0.379074156284332 - dist_correction: 0.150000005960464 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 6 - rot_correction: -0.0174532923847437 - vert_correction: -0.445288896560669 - dist_correction: 0.0500000007450581 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 7 - rot_correction: 0.0349065847694874 - vert_correction: -0.43470174074173 - dist_correction: 0.270000010728836 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 8 - rot_correction: 0.122173048555851 - vert_correction: -0.3671615421772 - dist_correction: 0.180000007152557 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 9 - rot_correction: 0.174532920122147 - vert_correction: -0.357254236936569 - dist_correction: 0.189999997615814 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 10 - rot_correction: 0.104719758033752 - vert_correction: -0.423742026090622 - dist_correction: 0.100000001490116 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 11 - rot_correction: 0.165806278586388 - vert_correction: -0.414792060852051 - dist_correction: 0.200000002980232 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 12 - rot_correction: -0.113446399569511 - vert_correction: -0.288992017507553 - dist_correction: 0.219999998807907 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 13 - rot_correction: -0.0567231997847557 - vert_correction: -0.28310164809227 - dist_correction: 0.200000002980232 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 14 - rot_correction: -0.13962633907795 - vert_correction: -0.347351551055908 - dist_correction: 0.150000005960464 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 15 - rot_correction: -0.0872664600610733 - vert_correction: -0.332452714443207 - dist_correction: 0.219999998807907 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 16 - rot_correction: 0 - vert_correction: -0.274210214614868 - dist_correction: 0.0599999986588955 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 17 - rot_correction: 0.0558505356311798 - vert_correction: -0.266317009925842 - dist_correction: 0.129999995231628 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 18 - rot_correction: -0.0174532923847437 - vert_correction: -0.331895291805267 - dist_correction: 0.00999999977648258 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 19 - rot_correction: 0.0349065847694874 - vert_correction: -0.323663860559464 - dist_correction: 0.150000005960464 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 20 - rot_correction: 0.122173048555851 - vert_correction: -0.256421387195587 - dist_correction: 0.200000002980232 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 21 - rot_correction: 0.165806278586388 - vert_correction: -0.244522526860237 - dist_correction: 0.239999994635582 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 22 - rot_correction: 0.104719758033752 - vert_correction: -0.31077241897583 - dist_correction: 0.180000007152557 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 23 - rot_correction: 0.157079637050629 - vert_correction: -0.302882075309753 - dist_correction: 0.219999998807907 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 24 - rot_correction: -0.104719758033752 - vert_correction: -0.180082052946091 - dist_correction: 0.140000000596046 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 25 - rot_correction: -0.0610865242779255 - vert_correction: -0.172132045030594 - dist_correction: 0.319999992847443 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 26 - rot_correction: -0.13962633907795 - vert_correction: -0.235619828104973 - dist_correction: 0.200000002980232 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 27 - rot_correction: -0.0785398185253143 - vert_correction: -0.228712558746338 - dist_correction: 0.25 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 28 - rot_correction: 0 - vert_correction: -0.16517236828804 - dist_correction: 0.170000001788139 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 29 - rot_correction: 0.0436332300305367 - vert_correction: -0.154202222824097 - dist_correction: 0.230000004172325 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 30 - rot_correction: -0.0174532923847437 - vert_correction: -0.219799935817719 - dist_correction: 0.150000005960464 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 31 - rot_correction: 0.0314159244298935 - vert_correction: -0.21088133752346 - dist_correction: 0.230000004172325 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 32 - rot_correction: -0.0698131695389748 - vert_correction: -0.121932752430439 - dist_correction: 0.100000001490116 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 33 - rot_correction: -0.0392699092626572 - vert_correction: -0.113993428647518 - dist_correction: 0.280000001192093 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 34 - rot_correction: 0.0698131695389748 - vert_correction: 0.0055470340885222 - dist_correction: 0.319999992847443 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 35 - rot_correction: 0.104719758033752 - vert_correction: 0.0114863449707627 - dist_correction: 0.230000004172325 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 36 - rot_correction: 0.013962633907795 - vert_correction: -0.109056323766708 - dist_correction: 0.0700000002980232 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 37 - rot_correction: 0.0392699092626572 - vert_correction: -0.104121200740337 - dist_correction: 0.0900000035762787 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 38 - rot_correction: 0 - vert_correction: -0.14471623301506 - dist_correction: 0.119999997317791 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 39 - rot_correction: 0.0226892791688442 - vert_correction: -0.1387659907341 - dist_correction: 0.200000002980232 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 40 - rot_correction: 0.0820304751396179 - vert_correction: -0.0981878563761711 - dist_correction: 0.129999995231628 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 41 - rot_correction: 0.113446399569511 - vert_correction: -0.0952560678124428 - dist_correction: 0.159999996423721 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 42 - rot_correction: 0.0698131695389748 - vert_correction: -0.132818818092346 - dist_correction: 0.159999996423721 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 43 - rot_correction: 0.104719758033752 - vert_correction: -0.127874463796616 - dist_correction: 0.159999996423721 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 44 - rot_correction: -0.068067841231823 - vert_correction: -0.05375986546278 - dist_correction: 0.129999995231628 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 45 - rot_correction: -0.0349065847694874 - vert_correction: -0.0478330813348293 - dist_correction: 0.200000002980232 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 46 - rot_correction: -0.0837758108973503 - vert_correction: -0.0893256440758705 - dist_correction: 0.170000001788139 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 47 - rot_correction: -0.0479965545237064 - vert_correction: -0.0833963677287102 - dist_correction: 0.239999994635582 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 48 - rot_correction: 0.00872664619237185 - vert_correction: -0.0419059917330742 - dist_correction: 0.180000007152557 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 49 - rot_correction: 0.0392699092626572 - vert_correction: -0.035978376865387 - dist_correction: 0.0599999986588955 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 50 - rot_correction: 0 - vert_correction: -0.0774680152535439 - dist_correction: 0.140000000596046 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 51 - rot_correction: 0.0305432621389627 - vert_correction: -0.0715404152870178 - dist_correction: 0.150000005960464 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 52 - rot_correction: 0.0855211317539215 - vert_correction: -0.0300500374287367 - dist_correction: 0.219999998807907 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 53 - rot_correction: 0.109083078801632 - vert_correction: -0.024120757356286 - dist_correction: 0.140000000596046 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 54 - rot_correction: 0.0698131695389748 - vert_correction: -0.0656133219599724 - dist_correction: 0.0799999982118607 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 55 - rot_correction: 0.104719758033752 - vert_correction: -0.0596865378320217 - dist_correction: 0.159999996423721 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 56 - rot_correction: -0.0610865242779255 - vert_correction: 0.0174280721694231 - dist_correction: 0.119999997317791 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 57 - rot_correction: -0.0349065847694874 - vert_correction: 0.0233724191784859 - dist_correction: 0.219999998807907 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 58 - rot_correction: -0.0785398185253143 - vert_correction: -0.0181903336197138 - dist_correction: 0.159999996423721 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 59 - rot_correction: -0.0471238903701305 - vert_correction: -0.0122585473582149 - dist_correction: 0.259999990463257 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 60 - rot_correction: 0.0104719763621688 - vert_correction: 0.0293195936828852 - dist_correction: 0.140000000596046 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 61 - rot_correction: 0.0349065847694874 - vert_correction: 0.0352698266506195 - dist_correction: 0.219999998807907 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 62 - rot_correction: -0.00436332309618592 - vert_correction: -0.00632520206272602 - dist_correction: 0.209999993443489 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 - - laser_id: 63 - rot_correction: 0.0296705979853868 - vert_correction: -0.000390077300835401 - dist_correction: 0.140000000596046 - two_pt_correction_available: false - dist_correction_x: 0 - dist_correction_y: 0 - vert_offset_correction: 0 - vert_offset_correction: 0 - max_intensity: 255 - min_intensity: 0 - focal_distance: 0 - focal_slope: 0 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/angles.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/angles.yaml deleted file mode 100644 index bd5aa5a823d..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/angles.yaml +++ /dev/null @@ -1,257 +0,0 @@ -lasers: -- {dist_correction: 0.100000001490116, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 0, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0698131695389748, two_pt_correction_available: false, vert_correction: -0.124932751059532, - vert_offset_correction: 0} -- {dist_correction: 0.280000001192093, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 1, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0392699092626572, two_pt_correction_available: false, vert_correction: -0.118993431329727, - vert_offset_correction: 0} -- {dist_correction: 0.319999992847443, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 2, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0698131695389748, two_pt_correction_available: false, vert_correction: 0.0055470340885222, - vert_offset_correction: 0} -- {dist_correction: 0.230000004172325, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 3, max_intensity: 255, min_intensity: 0, - rot_correction: 0.104719758033752, two_pt_correction_available: false, vert_correction: 0.0114863449707627, - vert_offset_correction: 0} -- {dist_correction: 0.0700000002980232, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 4, max_intensity: 255, min_intensity: 0, - rot_correction: 0.013962633907795, two_pt_correction_available: false, vert_correction: -0.113056324422359, - vert_offset_correction: 0} -- {dist_correction: 0.0900000035762787, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 5, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0392699092626572, two_pt_correction_available: false, vert_correction: -0.107121199369431, - vert_offset_correction: 0} -- {dist_correction: 0.119999997317791, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 6, max_intensity: 255, min_intensity: 0, - rot_correction: 0, two_pt_correction_available: false, vert_correction: -0.148716226220131, - vert_offset_correction: 0} -- {dist_correction: 0.200000002980232, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 7, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0226892791688442, two_pt_correction_available: false, vert_correction: -0.142765983939171, - vert_offset_correction: 0} -- {dist_correction: 0.129999995231628, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 8, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0820304751396179, two_pt_correction_available: false, vert_correction: -0.101187855005264, - vert_offset_correction: 0} -- {dist_correction: 0.159999996423721, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 9, max_intensity: 255, min_intensity: 0, - rot_correction: 0.113446399569511, two_pt_correction_available: false, vert_correction: -0.0952560678124428, - vert_offset_correction: 0} -- {dist_correction: 0.159999996423721, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 10, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0698131695389748, two_pt_correction_available: false, vert_correction: -0.136818811297417, - vert_offset_correction: 0} -- {dist_correction: 0.159999996423721, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 11, max_intensity: 255, min_intensity: 0, - rot_correction: 0.104719758033752, two_pt_correction_available: false, vert_correction: -0.130874469876289, - vert_offset_correction: 0} -- {dist_correction: 0.129999995231628, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 12, max_intensity: 255, min_intensity: 0, - rot_correction: -0.068067841231823, two_pt_correction_available: false, vert_correction: -0.05375986546278, - vert_offset_correction: 0} -- {dist_correction: 0.200000002980232, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 13, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0349065847694874, two_pt_correction_available: false, vert_correction: -0.0478330813348293, - vert_offset_correction: 0} -- {dist_correction: 0.170000001788139, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 14, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0837758108973503, two_pt_correction_available: false, vert_correction: -0.0893256440758705, - vert_offset_correction: 0} -- {dist_correction: 0.239999994635582, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 15, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0479965545237064, two_pt_correction_available: false, vert_correction: -0.0833963677287102, - vert_offset_correction: 0} -- {dist_correction: 0.180000007152557, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 16, max_intensity: 255, min_intensity: 0, - rot_correction: 0.00872664619237185, two_pt_correction_available: false, vert_correction: -0.0419059917330742, - vert_offset_correction: 0} -- {dist_correction: 0.0599999986588955, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 17, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0392699092626572, two_pt_correction_available: false, vert_correction: -0.035978376865387, - vert_offset_correction: 0} -- {dist_correction: 0.140000000596046, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 18, max_intensity: 255, min_intensity: 0, - rot_correction: 0, two_pt_correction_available: false, vert_correction: -0.0774680152535439, - vert_offset_correction: 0} -- {dist_correction: 0.150000005960464, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 19, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0305432621389627, two_pt_correction_available: false, vert_correction: -0.0715404152870178, - vert_offset_correction: 0} -- {dist_correction: 0.219999998807907, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 20, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0855211317539215, two_pt_correction_available: false, vert_correction: -0.0300500374287367, - vert_offset_correction: 0} -- {dist_correction: 0.140000000596046, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 21, max_intensity: 255, min_intensity: 0, - rot_correction: 0.109083078801632, two_pt_correction_available: false, vert_correction: -0.024120757356286, - vert_offset_correction: 0} -- {dist_correction: 0.0799999982118607, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 22, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0698131695389748, two_pt_correction_available: false, vert_correction: -0.0656133219599724, - vert_offset_correction: 0} -- {dist_correction: 0.159999996423721, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 23, max_intensity: 255, min_intensity: 0, - rot_correction: 0.104719758033752, two_pt_correction_available: false, vert_correction: -0.0596865378320217, - vert_offset_correction: 0} -- {dist_correction: 0.119999997317791, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 24, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0610865242779255, two_pt_correction_available: false, vert_correction: 0.0174280721694231, - vert_offset_correction: 0} -- {dist_correction: 0.219999998807907, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 25, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0349065847694874, two_pt_correction_available: false, vert_correction: 0.0233724191784859, - vert_offset_correction: 0} -- {dist_correction: 0.159999996423721, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 26, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0785398185253143, two_pt_correction_available: false, vert_correction: -0.0181903336197138, - vert_offset_correction: 0} -- {dist_correction: 0.259999990463257, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 27, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0471238903701305, two_pt_correction_available: false, vert_correction: -0.0122585473582149, - vert_offset_correction: 0} -- {dist_correction: 0.140000000596046, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 28, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0104719763621688, two_pt_correction_available: false, vert_correction: 0.0293195936828852, - vert_offset_correction: 0} -- {dist_correction: 0.219999998807907, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 29, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0349065847694874, two_pt_correction_available: false, vert_correction: 0.0352698266506195, - vert_offset_correction: 0} -- {dist_correction: 0.209999993443489, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 30, max_intensity: 255, min_intensity: 0, - rot_correction: -0.00436332309618592, two_pt_correction_available: false, vert_correction: -0.00632520206272602, - vert_offset_correction: 0} -- {dist_correction: 0.140000000596046, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 31, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0296705979853868, two_pt_correction_available: false, vert_correction: -0.000390077300835401, - vert_offset_correction: 0} -- {dist_correction: 0.119999997317791, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 32, max_intensity: 255, min_intensity: 0, - rot_correction: -0.122173048555851, two_pt_correction_available: false, vert_correction: -0.396850973367691, - vert_offset_correction: 0} -- {dist_correction: 0.0199999995529652, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 33, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0610865242779255, two_pt_correction_available: false, vert_correction: -0.387918144464493, - vert_offset_correction: 0} -- {dist_correction: 0.100000001490116, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 34, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0959931090474129, two_pt_correction_available: false, vert_correction: -0.200955957174301, - vert_offset_correction: 0} -- {dist_correction: 0.230000004172325, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 35, max_intensity: 255, min_intensity: 0, - rot_correction: 0.148352980613708, two_pt_correction_available: false, vert_correction: -0.192023113369942, - vert_offset_correction: 0} -- {dist_correction: 0.170000001788139, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 36, max_intensity: 255, min_intensity: 0, - rot_correction: -0.00872664619237185, two_pt_correction_available: false, vert_correction: -0.378992766141891, - vert_offset_correction: 0} -- {dist_correction: 0.150000005960464, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 37, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0610865242779255, two_pt_correction_available: false, vert_correction: -0.370074152946472, - vert_offset_correction: 0} -- {dist_correction: 0.0500000007450581, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 38, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0174532923847437, two_pt_correction_available: false, vert_correction: -0.43128889799118, - vert_offset_correction: 0} -- {dist_correction: 0.270000010728836, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 39, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0349065847694874, two_pt_correction_available: false, vert_correction: -0.423701733350754, - vert_offset_correction: 0} -- {dist_correction: 0.180000007152557, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 40, max_intensity: 255, min_intensity: 0, - rot_correction: 0.122173048555851, two_pt_correction_available: false, vert_correction: -0.361161530017853, - vert_offset_correction: 0} -- {dist_correction: 0.189999997615814, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 41, max_intensity: 255, min_intensity: 0, - rot_correction: 0.174532920122147, two_pt_correction_available: false, vert_correction: -0.352254241704941, - vert_offset_correction: 0} -- {dist_correction: 0.100000001490116, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 42, max_intensity: 255, min_intensity: 0, - rot_correction: 0.104719758033752, two_pt_correction_available: false, vert_correction: -0.414742022752762, - vert_offset_correction: 0} -- {dist_correction: 0.200000002980232, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 43, max_intensity: 255, min_intensity: 0, - rot_correction: 0.165806278586388, two_pt_correction_available: false, vert_correction: -0.405792057514191, - vert_offset_correction: 0} -- {dist_correction: 0.219999998807907, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 44, max_intensity: 255, min_intensity: 0, - rot_correction: -0.113446399569511, two_pt_correction_available: false, vert_correction: -0.28999200463295, - vert_offset_correction: 0} -- {dist_correction: 0.200000002980232, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 45, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0567231997847557, two_pt_correction_available: false, vert_correction: -0.281101644039154, - vert_offset_correction: 0} -- {dist_correction: 0.150000005960464, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 46, max_intensity: 255, min_intensity: 0, - rot_correction: -0.13962633907795, two_pt_correction_available: false, vert_correction: -0.343351542949677, - vert_offset_correction: 0} -- {dist_correction: 0.219999998807907, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 47, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0872664600610733, two_pt_correction_available: false, vert_correction: -0.334452718496323, - vert_offset_correction: 0} -- {dist_correction: 0.0599999986588955, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 48, max_intensity: 255, min_intensity: 0, - rot_correction: 0, two_pt_correction_available: false, vert_correction: -0.272210210561752, - vert_offset_correction: 0} -- {dist_correction: 0.129999995231628, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 49, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0558505356311798, two_pt_correction_available: false, vert_correction: -0.26331701874733, - vert_offset_correction: 0} -- {dist_correction: 0.00999999977648258, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 50, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0174532923847437, two_pt_correction_available: false, vert_correction: -0.323895305395126, - vert_offset_correction: 0} -- {dist_correction: 0.150000005960464, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 51, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0349065847694874, two_pt_correction_available: false, vert_correction: -0.316663861274719, - vert_offset_correction: 0} -- {dist_correction: 0.200000002980232, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 52, max_intensity: 255, min_intensity: 0, - rot_correction: 0.122173048555851, two_pt_correction_available: false, vert_correction: -0.254421383142471, - vert_offset_correction: 0} -- {dist_correction: 0.239999994635582, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 53, max_intensity: 255, min_intensity: 0, - rot_correction: 0.165806278586388, two_pt_correction_available: false, vert_correction: -0.245522528886795, - vert_offset_correction: 0} -- {dist_correction: 0.180000007152557, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 54, max_intensity: 255, min_intensity: 0, - rot_correction: 0.104719758033752, two_pt_correction_available: false, vert_correction: -0.307772427797318, - vert_offset_correction: 0} -- {dist_correction: 0.219999998807907, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 55, max_intensity: 255, min_intensity: 0, - rot_correction: 0.157079637050629, two_pt_correction_available: false, vert_correction: -0.298882067203522, - vert_offset_correction: 0} -- {dist_correction: 0.140000000596046, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 56, max_intensity: 255, min_intensity: 0, - rot_correction: -0.104719758033752, two_pt_correction_available: false, vert_correction: -0.183082059025764, - vert_offset_correction: 0} -- {dist_correction: 0.319999992847443, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 57, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0610865242779255, two_pt_correction_available: false, vert_correction: -0.17413204908371, - vert_offset_correction: 0} -- {dist_correction: 0.200000002980232, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 58, max_intensity: 255, min_intensity: 0, - rot_correction: -0.13962633907795, two_pt_correction_available: false, vert_correction: -0.236619830131531, - vert_offset_correction: 0} -- {dist_correction: 0.25, dist_correction_x: 0, dist_correction_y: 0, focal_distance: 0, - focal_slope: 0, laser_id: 59, max_intensity: 255, min_intensity: 0, rot_correction: -0.0785398185253143, - two_pt_correction_available: false, vert_correction: -0.22771255671978, vert_offset_correction: 0} -- {dist_correction: 0.170000001788139, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 60, max_intensity: 255, min_intensity: 0, - rot_correction: 0, two_pt_correction_available: false, vert_correction: -0.16517236828804, - vert_offset_correction: 0} -- {dist_correction: 0.230000004172325, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 61, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0436332300305367, two_pt_correction_available: false, vert_correction: -0.156202226877213, - vert_offset_correction: 0} -- {dist_correction: 0.150000005960464, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 62, max_intensity: 255, min_intensity: 0, - rot_correction: -0.0174532923847437, two_pt_correction_available: false, vert_correction: -0.218799933791161, - vert_offset_correction: 0} -- {dist_correction: 0.230000004172325, dist_correction_x: 0, dist_correction_y: 0, - focal_distance: 0, focal_slope: 0, laser_id: 63, max_intensity: 255, min_intensity: 0, - rot_correction: 0.0314159244298935, two_pt_correction_available: false, vert_correction: -0.209881335496902, - vert_offset_correction: 0} -num_lasers: 64 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_node_32e_hz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_node_32e_hz.test deleted file mode 100644 index 2844b89ce99..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_node_32e_hz.test +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_node_64e_s2.1_hz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_node_64e_s2.1_hz.test deleted file mode 100644 index 245f8a92c04..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_node_64e_s2.1_hz.test +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_node_hz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_node_hz.test deleted file mode 100644 index 834f01fda59..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_node_hz.test +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_node_vlp16_hz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_node_vlp16_hz.test deleted file mode 100644 index e922d476101..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_node_vlp16_hz.test +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_nodelet_32e_hz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_nodelet_32e_hz.test deleted file mode 100644 index 3f28ee12735..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_nodelet_32e_hz.test +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_nodelet_64e_s2.1_hz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_nodelet_64e_s2.1_hz.test deleted file mode 100644 index 9470ea60d55..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_nodelet_64e_s2.1_hz.test +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_nodelet_hz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_nodelet_hz.test deleted file mode 100644 index e06648c3b82..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_nodelet_hz.test +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_nodelet_vlp16_hz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_nodelet_vlp16_hz.test deleted file mode 100644 index 55ff3b77eeb..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/cloud_nodelet_vlp16_hz.test +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/issue_84_float_intensities.yaml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/issue_84_float_intensities.yaml deleted file mode 100644 index 6c5f572b17d..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/issue_84_float_intensities.yaml +++ /dev/null @@ -1,239 +0,0 @@ -# test data from an HDL-64E S2 containing float min_intensity values -# causes issue #84 failure -lasers: -- {dist_correction: 1.1897507, dist_correction_x: 1.2184412, dist_correction_y: 1.1993269, - focal_distance: 22.5, focal_slope: 1.1, horiz_offset_correction: 0.025999999, laser_id: 0, - min_intensity: 40.0, rot_correction: -0.08193448173487379, vert_correction: -0.12118950050089745, - vert_offset_correction: 0.21533014000000003} -- {dist_correction: 1.4128801999999998, dist_correction_x: 1.4313695000000002, dist_correction_y: 1.4312958, - focal_distance: 24.0, focal_slope: 0.80000001, horiz_offset_correction: -0.025999999, - laser_id: 1, min_intensity: 40.0, rot_correction: -0.04631400641637322, vert_correction: -0.1154246814722187, - vert_offset_correction: 0.21490976} -- {dist_correction: 1.352054, dist_correction_x: 1.3625516, dist_correction_y: 1.3604144, - focal_distance: 22.0, focal_slope: 1.15, horiz_offset_correction: 0.025999999, laser_id: 2, - min_intensity: 40.0, rot_correction: 0.05367805144003262, vert_correction: 0.007649359057937743, - vert_offset_correction: 0.20602308000000003} -- {dist_correction: 1.3877103, dist_correction_x: 1.4052618000000001, dist_correction_y: 1.4102048999999999, - focal_distance: 21.0, focal_slope: 1.2, horiz_offset_correction: -0.025999999, laser_id: 3, - min_intensity: 20.0, rot_correction: 0.09201863985105889, vert_correction: 0.01508908679395137, - vert_offset_correction: 0.20548805000000003} -- {dist_correction: 1.2740263, dist_correction_x: 1.2988675, dist_correction_y: 1.2487833000000002, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: 0.025999999, laser_id: 4, - min_intensity: 10.0, rot_correction: -0.007693320585669901, vert_correction: -0.1102984033676868, - vert_offset_correction: 0.21453644000000002} -- {dist_correction: 1.2418116000000001, dist_correction_x: 1.252481, dist_correction_y: 1.2255676, - focal_distance: 24.0, focal_slope: 1.38, horiz_offset_correction: -0.025999999, - laser_id: 5, min_intensity: 28.0, rot_correction: 0.032006458688310216, vert_correction: -0.10399361088436754, - vert_offset_correction: 0.21407784} -- {dist_correction: 1.3176793, dist_correction_x: 1.3353647000000002, dist_correction_y: 1.3361707999999999, - focal_distance: 24.0, focal_slope: 1.2, horiz_offset_correction: 0.025999999, laser_id: 6, - min_intensity: 40.0, rot_correction: -0.021861479338351635, vert_correction: -0.14544533071754853, - vert_offset_correction: 0.21710571} -- {dist_correction: 1.3708466000000001, dist_correction_x: 1.3905527000000002, dist_correction_y: 1.3970328, - focal_distance: 24.0, focal_slope: 0.89999998, horiz_offset_correction: -0.025999999, - laser_id: 7, min_intensity: 40.0, rot_correction: 0.01761759781572604, vert_correction: -0.139035509555832, - vert_offset_correction: 0.21663536} -- {dist_correction: 1.2544352, dist_correction_x: 1.2857481000000002, dist_correction_y: 1.2282503, - focal_distance: 24.0, focal_slope: 1.22, horiz_offset_correction: 0.025999999, laser_id: 8, - min_intensity: 40.0, rot_correction: 0.06658719948349573, vert_correction: -0.09889517252673422, - vert_offset_correction: 0.21370745} -- {dist_correction: 1.3738158999999999, dist_correction_x: 1.3938158000000003, dist_correction_y: 1.3844524000000002, - focal_distance: 24.0, focal_slope: 1.15, horiz_offset_correction: -0.025999999, - laser_id: 9, min_intensity: 40.0, rot_correction: 0.10588806804896926, vert_correction: -0.09225143361201914, - vert_offset_correction: 0.21322533} -- {dist_correction: 1.3156921, dist_correction_x: 1.3354019, dist_correction_y: 1.2833449, - focal_distance: 24.0, focal_slope: 1.3200001, horiz_offset_correction: 0.025999999, - laser_id: 10, min_intensity: 40.0, rot_correction: 0.052778260906800954, vert_correction: -0.134421316289823, - vert_offset_correction: 0.2162973} -- {dist_correction: 1.3696194, dist_correction_x: 1.3846521, dist_correction_y: 1.3639107000000001, - focal_distance: 20.0, focal_slope: 1.25, horiz_offset_correction: -0.025999999, - laser_id: 11, min_intensity: 40.0, rot_correction: 0.09284370411236641, vert_correction: -0.12714737563412706, - vert_offset_correction: 0.21576523000000003} -- {dist_correction: 1.2275657, dist_correction_x: 1.2543072, dist_correction_y: 1.2294422, - focal_distance: 24.0, focal_slope: 1.0700001, horiz_offset_correction: 0.025999999, - laser_id: 12, min_intensity: 40.0, rot_correction: -0.08319450648038783, vert_correction: -0.0502394945048745, - vert_offset_correction: 0.21018864} -- {dist_correction: 1.3757889, dist_correction_x: 1.3849341999999998, dist_correction_y: 1.3686421000000002, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: -0.025999999, laser_id: 13, - min_intensity: 40.0, rot_correction: -0.04344974309026683, vert_correction: -0.04379427282993976, - vert_offset_correction: 0.20972416} -- {dist_correction: 1.3319664, dist_correction_x: 1.3705452, dist_correction_y: 1.3209669, - focal_distance: 24.0, focal_slope: 1.05, horiz_offset_correction: 0.025999999, laser_id: 14, - min_intensity: 40.0, rot_correction: -0.09661677957860802, vert_correction: -0.08535601123784947, - vert_offset_correction: 0.21272558} -- {dist_correction: 1.3714989, dist_correction_x: 1.3624129999999999, dist_correction_y: 1.3403807, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: -0.025999999, laser_id: 15, - min_intensity: 40.0, rot_correction: -0.056929933194385184, vert_correction: -0.07898063589425029, - vert_offset_correction: 0.21226404} -- {dist_correction: 1.2595838000000001, dist_correction_x: 1.2785926, dist_correction_y: 1.2370594, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: 0.025999999, laser_id: 16, - min_intensity: 40.0, rot_correction: -0.008102055927068873, vert_correction: -0.03910078576535417, - vert_offset_correction: 0.20938608} -- {dist_correction: 1.3786241000000001, dist_correction_x: 1.3948055, dist_correction_y: 1.3862044, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: -0.025999999, laser_id: 17, - min_intensity: 40.0, rot_correction: 0.03149012048240021, vert_correction: -0.03191447983673011, - vert_offset_correction: 0.20886870999999999} -- {dist_correction: 1.3628464, dist_correction_x: 1.3785178, dist_correction_y: 1.3152992000000001, - focal_distance: 20.5, focal_slope: 1.2, horiz_offset_correction: 0.025999999, laser_id: 18, - min_intensity: 10.0, rot_correction: -0.021944024685324706, vert_correction: -0.07495714058693254, - vert_offset_correction: 0.21197302} -- {dist_correction: 1.394641, dist_correction_x: 1.3899173999999999, dist_correction_y: 1.370442, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: -0.025999999, laser_id: 19, - min_intensity: 10.0, rot_correction: 0.01766883719190609, vert_correction: -0.06771695808962866, - vert_offset_correction: 0.21144976000000001} -- {dist_correction: 1.2123122, dist_correction_x: 1.2413981, dist_correction_y: 1.2070784, - focal_distance: 23.5, focal_slope: 1.1, horiz_offset_correction: 0.025999999, laser_id: 20, - min_intensity: 5.0, rot_correction: 0.06651143299533739, vert_correction: -0.027462144914892576, - vert_offset_correction: 0.20854828000000003} -- {dist_correction: 1.2599731, dist_correction_x: 1.2764229, dist_correction_y: 1.2986679, - focal_distance: 21.0, focal_slope: 1.2, horiz_offset_correction: -0.025999999, laser_id: 21, - min_intensity: 5.0, rot_correction: 0.10511566735251142, vert_correction: -0.020434314882349612, - vert_offset_correction: 0.20804264} -- {dist_correction: 1.3053941, dist_correction_x: 1.3411044, dist_correction_y: 1.2835222, - focal_distance: 24.0, focal_slope: 1.42, horiz_offset_correction: 0.025999999, laser_id: 22, - min_intensity: 30.0, rot_correction: 0.052657269447064954, vert_correction: -0.06262826041455072, - vert_offset_correction: 0.21108229} -- {dist_correction: 1.2550185, dist_correction_x: 1.2702521, dist_correction_y: 1.2836005000000001, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: -0.025999999, laser_id: 23, - min_intensity: 40.0, rot_correction: 0.09175727679557273, vert_correction: -0.05606926072567847, - vert_offset_correction: 0.21060900000000002} -- {dist_correction: 1.2748341, dist_correction_x: 1.3196121, dist_correction_y: 1.2784751, - focal_distance: 20.5, focal_slope: 1.25, horiz_offset_correction: 0.025999999, laser_id: 24, - min_intensity: 10.0, rot_correction: -0.08344753035270795, vert_correction: 0.020524792750772996, - vert_offset_correction: 0.20509708000000001} -- {dist_correction: 1.3777713, dist_correction_x: 1.3645123000000001, dist_correction_y: 1.3802203, - focal_distance: 24.0, focal_slope: 1.3, horiz_offset_correction: -0.025999999, laser_id: 25, - max_intensity: 230.0, rot_correction: -0.04351660490858147, vert_correction: 0.02702150163864157, - vert_offset_correction: 0.20462966999999999} -- {dist_correction: 1.3718602000000002, dist_correction_x: 1.4046102999999999, dist_correction_y: 1.3834868, - focal_distance: 19.0, focal_slope: 1.35, horiz_offset_correction: 0.025999999, laser_id: 26, - max_intensity: 245.0, rot_correction: -0.09689230074498635, vert_correction: -0.014916840599137901, - vert_offset_correction: 0.2076458} -- {dist_correction: 1.3833778, dist_correction_x: 1.375231, dist_correction_y: 1.3606032, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: -0.025999999, laser_id: 27, - max_intensity: 240.0, rot_correction: -0.057451870416535586, vert_correction: -0.00817206789015045, - vert_offset_correction: 0.20716073999999998} -- {dist_correction: 1.2951183000000002, dist_correction_x: 1.3258408, dist_correction_y: 1.2997318999999998, - focal_distance: 24.0, focal_slope: 1.4, horiz_offset_correction: 0.025999999, laser_id: 28, - max_intensity: 240.0, rot_correction: -0.008271954654038412, vert_correction: 0.032168250709970085, - vert_offset_correction: 0.20425926} -- {dist_correction: 1.4026823, dist_correction_x: 1.4151775000000002, dist_correction_y: 1.4065117, - focal_distance: 24.0, focal_slope: 1.05, horiz_offset_correction: -0.025999999, - laser_id: 29, rot_correction: 0.03059445241686176, vert_correction: 0.03821143404637868, - vert_offset_correction: 0.2038242} -- {dist_correction: 1.3756502000000002, dist_correction_x: 1.3986545000000001, dist_correction_y: 1.3567966000000002, - focal_distance: 24.0, focal_slope: 1.37, horiz_offset_correction: 0.025999999, laser_id: 30, - rot_correction: -0.022168507188386963, vert_correction: -0.003020972948984465, vert_offset_correction: 0.20679033000000002} -- {dist_correction: 1.4303774999999999, dist_correction_x: 1.4219699000000001, dist_correction_y: 1.4110721000000002, - focal_distance: 24.0, focal_slope: 1.38, horiz_offset_correction: -0.025999999, - laser_id: 31, rot_correction: 0.017020332183059567, vert_correction: 0.0032341127317709376, - vert_offset_correction: 0.20634056} -- {dist_correction: 1.2299187999999999, dist_correction_x: 1.221242, dist_correction_y: 1.159202, - focal_distance: 12.8, focal_slope: 2.0, horiz_offset_correction: 0.025999999, laser_id: 32, - rot_correction: -0.13428924897065386, vert_correction: -0.3917846862503118, vert_offset_correction: 0.15982219} -- {dist_correction: 1.3144859, dist_correction_x: 1.3336081, dist_correction_y: 1.3461792, - focal_distance: 0.25, focal_slope: 1.02, horiz_offset_correction: -0.025999999, - laser_id: 33, rot_correction: -0.07421947892390637, vert_correction: -0.3836205247016729, - vert_offset_correction: 0.15923027} -- {dist_correction: 1.2725937999999999, dist_correction_x: 1.2842772, dist_correction_y: 1.3025389, - focal_distance: 0.25, focal_slope: 0.94999999, horiz_offset_correction: 0.025999999, - laser_id: 34, rot_correction: 0.08138446391038806, vert_correction: -0.1992609420279063, - vert_offset_correction: 0.14669841} -- {dist_correction: 1.3357777, dist_correction_x: 1.3343283, dist_correction_y: 1.3631558000000001, - focal_distance: 9.0, focal_slope: 1.5, horiz_offset_correction: -0.025999999, laser_id: 35, - rot_correction: 0.1383208914749199, vert_correction: -0.18701489169116567, vert_offset_correction: 0.14590834} -- {dist_correction: 1.1742934, dist_correction_x: 1.2244499, dist_correction_y: 1.1818057, - focal_distance: 10.8, focal_slope: 1.38, horiz_offset_correction: 0.025999999, laser_id: 36, - rot_correction: -0.013445351586919306, vert_correction: -0.37738235143590226, vert_offset_correction: 0.15878062} -- {dist_correction: 1.090762, dist_correction_x: 1.1042352, dist_correction_y: 1.0975322, - focal_distance: 12.5, focal_slope: 1.55, horiz_offset_correction: -0.025999999, - laser_id: 37, rot_correction: 0.04734804593033903, vert_correction: -0.3673083633532685, - vert_offset_correction: 0.15805914} -- {dist_correction: 1.2801097, dist_correction_x: 1.2734876, dist_correction_y: 1.2697346, - focal_distance: 6.0, focal_slope: 1.1, horiz_offset_correction: 0.025999999, laser_id: 38, - rot_correction: -0.03680020095578886, vert_correction: -0.4294796616630621, vert_offset_correction: 0.16260902000000002} -- {dist_correction: 1.2865338, dist_correction_x: 1.2686511, dist_correction_y: 1.29416, - focal_distance: 0.25, focal_slope: 1.0, horiz_offset_correction: -0.025999999, laser_id: 39, - rot_correction: 0.025992554995433074, vert_correction: -0.42099842614921335, vert_offset_correction: 0.16197392000000002} -- {dist_correction: 1.2932777, dist_correction_x: 1.3400191000000001, dist_correction_y: 1.3263618, - focal_distance: 0.25, focal_slope: 1.02, horiz_offset_correction: 0.025999999, laser_id: 40, - rot_correction: 0.10601307725664336, vert_correction: -0.3565455112681652, vert_offset_correction: 0.15729448} -- {dist_correction: 1.2614787, dist_correction_x: 1.2626826, dist_correction_y: 1.267609, - focal_distance: 8.5, focal_slope: 1.65, horiz_offset_correction: -0.025999999, laser_id: 41, - rot_correction: 0.16733068965072595, vert_correction: -0.3479014190818128, vert_offset_correction: 0.15668478} -- {dist_correction: 1.2428966, dist_correction_x: 1.2460679000000001, dist_correction_y: 1.2397518, - focal_distance: 0.25, focal_slope: 1.2, horiz_offset_correction: 0.025999999, laser_id: 42, - rot_correction: 0.08594727468321833, vert_correction: -0.4110102035460227, vert_offset_correction: 0.16123213} -- {dist_correction: 1.3061783, dist_correction_x: 1.2655383, dist_correction_y: 1.2857359, - focal_distance: 10.0, focal_slope: 1.6799999, horiz_offset_correction: -0.025999999, - laser_id: 43, rot_correction: 0.1464050331680134, vert_correction: -0.4015579191962419, - vert_offset_correction: 0.16053604} -- {dist_correction: 1.2317036000000001, dist_correction_x: 1.2393882, dist_correction_y: 1.2123593, - focal_distance: 12.5, focal_slope: 2.0, horiz_offset_correction: 0.025999999, laser_id: 44, - rot_correction: -0.13261467013054762, vert_correction: -0.2838808920696538, vert_offset_correction: 0.1522797} -- {dist_correction: 1.2567677000000002, dist_correction_x: 1.2904861, dist_correction_y: 1.2915567, - focal_distance: 0.25, focal_slope: 0.47999999, horiz_offset_correction: -0.025999999, - laser_id: 45, rot_correction: -0.07009130400404175, vert_correction: -0.276291415083819, - vert_offset_correction: 0.15176907} -- {dist_correction: 1.2793438000000001, dist_correction_x: 1.2915629999999998, dist_correction_y: 1.2718159, - focal_distance: 12.0, focal_slope: 2.0, horiz_offset_correction: 0.025999999, laser_id: 46, - rot_correction: -0.15533259824081613, vert_correction: -0.33574467724289675, vert_offset_correction: 0.15583374} -- {dist_correction: 1.2330788, dist_correction_x: 1.2624972, dist_correction_y: 1.2636649, - focal_distance: 2.0, focal_slope: 0.89999998, horiz_offset_correction: -0.025999999, - laser_id: 47, rot_correction: -0.09347288483573485, vert_correction: -0.3300846093852642, - vert_offset_correction: 0.15543998} -- {dist_correction: 1.1445625, dist_correction_x: 1.2045525000000001, dist_correction_y: 1.1558383, - focal_distance: 23.2, focal_slope: 0.75, horiz_offset_correction: 0.025999999, laser_id: 48, - rot_correction: -0.014086204897792162, vert_correction: -0.2692770589931014, vert_offset_correction: 0.15129910000000002} -- {dist_correction: 1.2741866, dist_correction_x: 1.2946111, dist_correction_y: 1.2808211, - focal_distance: 18.0, focal_slope: 0.92000002, horiz_offset_correction: -0.025999999, - laser_id: 49, rot_correction: 0.04602459591980752, vert_correction: -0.25952585210233153, - vert_offset_correction: 0.15064875} -- {dist_correction: 1.2584636, dist_correction_x: 1.2985907, dist_correction_y: 1.2481342, - focal_distance: 15.8, focal_slope: 1.28, horiz_offset_correction: 0.025999999, laser_id: 50, - rot_correction: -0.035928232716163244, vert_correction: -0.3234839312338543, vert_offset_correction: 0.1549827} -- {dist_correction: 1.1207238, dist_correction_x: 1.1458776000000002, dist_correction_y: 1.1290197000000002, - focal_distance: 18.0, focal_slope: 0.89999998, horiz_offset_correction: -0.025999999, - laser_id: 51, rot_correction: 0.025398581053735863, vert_correction: -0.3141198558244693, - vert_offset_correction: 0.15433743} -- {dist_correction: 1.3357715, dist_correction_x: 1.3748308, dist_correction_y: 1.3750087, - focal_distance: 2.2, focal_slope: 0.64999998, horiz_offset_correction: 0.025999999, - laser_id: 52, rot_correction: 0.10206324357040601, vert_correction: -0.2503763474711867, - vert_offset_correction: 0.15004159} -- {dist_correction: 1.2831325000000002, dist_correction_x: 1.2906917000000002, dist_correction_y: 1.3047183000000002, - focal_distance: 8.2, focal_slope: 1.65, horiz_offset_correction: -0.025999999, laser_id: 53, - rot_correction: 0.16118048446991431, vert_correction: -0.2388694789792507, vert_offset_correction: 0.14928201} -- {dist_correction: 1.4319325, dist_correction_x: 1.470513, dist_correction_y: 1.4623492, - focal_distance: 6.0, focal_slope: 0.51999998, horiz_offset_correction: 0.025999999, - laser_id: 54, rot_correction: 0.08241589764778065, vert_correction: -0.30499605989320633, - vert_offset_correction: 0.15371249} -- {dist_correction: 1.2852434, dist_correction_x: 1.2985229, dist_correction_y: 1.271758, - focal_distance: 12.5, focal_slope: 2.0, horiz_offset_correction: -0.025999999, laser_id: 55, - rot_correction: 0.142266131454566, vert_correction: -0.2947717466020984, vert_offset_correction: 0.15301642} -- {dist_correction: 1.4007397000000001, dist_correction_x: 1.4001398, dist_correction_y: 1.3912132, - focal_distance: 8.5, focal_slope: 1.7, horiz_offset_correction: 0.025999999, laser_id: 56, - rot_correction: -0.12786652808043583, vert_correction: -0.17641617036891985, vert_offset_correction: 0.14522751} -- {dist_correction: 1.2880724000000001, dist_correction_x: 1.3014014, dist_correction_y: 1.3205367000000001, - focal_distance: 0.25, focal_slope: 1.2, horiz_offset_correction: -0.025999999, laser_id: 57, - rot_correction: -0.07017803115990259, vert_correction: -0.17070459784506095, vert_offset_correction: 0.14486169000000002} -- {dist_correction: 1.4760434, dist_correction_x: 1.4308182, dist_correction_y: 1.4627808, - focal_distance: 11.5, focal_slope: 2.0, horiz_offset_correction: 0.025999999, laser_id: 58, - rot_correction: -0.15113763829712393, vert_correction: -0.2281125435603116, vert_offset_correction: 0.14857577} -- {dist_correction: 1.303936, dist_correction_x: 1.3230009, dist_correction_y: 1.3335196, - focal_distance: 0.25, focal_slope: 0.64999998, horiz_offset_correction: -0.025999999, - laser_id: 59, rot_correction: -0.0918767934520908, vert_correction: -0.2232191988430801, - vert_offset_correction: 0.14825568} -- {dist_correction: 1.3472046, dist_correction_x: 1.3541069, dist_correction_y: 1.3651146, - focal_distance: 3.5, focal_slope: 1.38, horiz_offset_correction: 0.025999999, laser_id: 60, - rot_correction: -0.013572408240338915, vert_correction: -0.16291245497181386, vert_offset_correction: 0.14436376} -- {dist_correction: 1.3001047000000001, dist_correction_x: 1.3096320000000001, dist_correction_y: 1.3519560000000002, - focal_distance: 3.5, focal_slope: 1.35, horiz_offset_correction: -0.025999999, laser_id: 61, - rot_correction: 0.04349449333228796, vert_correction: -0.1540625535600664, vert_offset_correction: 0.14379979} -- {dist_correction: 1.2880972, dist_correction_x: 1.2842999000000002, dist_correction_y: 1.2916876, - focal_distance: 12.0, focal_slope: 1.35, horiz_offset_correction: 0.025999999, laser_id: 62, - rot_correction: -0.03466167345792974, vert_correction: -0.21484439350701803, vert_offset_correction: 0.14770949} -- {dist_correction: 1.3186316, dist_correction_x: 1.3250179, dist_correction_y: 1.3431560999999999, - focal_distance: 10.5, focal_slope: 0.60000002, horiz_offset_correction: -0.025999999, - laser_id: 63, rot_correction: 0.02351688573662471, vert_correction: -0.20683046990039078, - vert_offset_correction: 0.14718871} -num_lasers: 64 diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/static_vehicle_tf.launch b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/static_vehicle_tf.launch deleted file mode 100644 index 9e35585be3e..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/static_vehicle_tf.launch +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/test_calibration.cpp b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/test_calibration.cpp deleted file mode 100644 index 5139eca04b5..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/test_calibration.cpp +++ /dev/null @@ -1,164 +0,0 @@ -// -// C++ unit tests for calibration interface. -// - -#include - -#include -#include -using namespace velodyne_pointcloud; - -// global test data -std::string g_package_name("velodyne_pointcloud"); -std::string g_package_path; - -void init_global_data(void) -{ - g_package_path = ros::package::getPath(g_package_name); -} - -/////////////////////////////////////////////////////////////// -// Test cases -/////////////////////////////////////////////////////////////// - -TEST(Calibration, missing_file) -{ - Calibration calibration(false); - calibration.read("./no_such_file.yaml"); - EXPECT_FALSE(calibration.initialized); -} - -TEST(Calibration, vlp16) -{ - Calibration calibration(g_package_path + "/params/VLP16db.yaml", false); - EXPECT_TRUE(calibration.initialized); - ASSERT_EQ(calibration.num_lasers, 16); - - // check some values for the first laser: - LaserCorrection laser = calibration.laser_corrections[0]; - EXPECT_FALSE(laser.two_pt_correction_available); - EXPECT_FLOAT_EQ(laser.vert_correction, -0.2617993877991494); - EXPECT_FLOAT_EQ(laser.horiz_offset_correction, 0.0); - EXPECT_EQ(laser.max_intensity, 255); - EXPECT_EQ(laser.min_intensity, 0); - - // check similar values for the last laser: - laser = calibration.laser_corrections[15]; - EXPECT_FALSE(laser.two_pt_correction_available); - EXPECT_FLOAT_EQ(laser.vert_correction, 0.2617993877991494); - EXPECT_FLOAT_EQ(laser.horiz_offset_correction, 0.0); - EXPECT_EQ(laser.max_intensity, 255); - EXPECT_EQ(laser.min_intensity, 0); -} - -TEST(Calibration, hdl32e) -{ - Calibration calibration(g_package_path + "/params/32db.yaml", false); - EXPECT_TRUE(calibration.initialized); - ASSERT_EQ(calibration.num_lasers, 32); - - // check some values for the first laser: - LaserCorrection laser = calibration.laser_corrections[0]; - EXPECT_FALSE(laser.two_pt_correction_available); - EXPECT_FLOAT_EQ(laser.vert_correction, -0.5352924815866609); - EXPECT_FLOAT_EQ(laser.horiz_offset_correction, 0.0); - EXPECT_EQ(laser.max_intensity, 255); - EXPECT_EQ(laser.min_intensity, 0); - - // check similar values for the last laser: - laser = calibration.laser_corrections[31]; - EXPECT_FALSE(laser.two_pt_correction_available); - EXPECT_FLOAT_EQ(laser.vert_correction, 0.18622663118779495); - EXPECT_FLOAT_EQ(laser.horiz_offset_correction, 0.0); - EXPECT_EQ(laser.max_intensity, 255); - EXPECT_EQ(laser.min_intensity, 0); -} - -TEST(Calibration, hdl64e) -{ - Calibration calibration(g_package_path + "/params/64e_utexas.yaml", false); - EXPECT_TRUE(calibration.initialized); - ASSERT_EQ(calibration.num_lasers, 64); - - // check some values for the first laser: - LaserCorrection laser = calibration.laser_corrections[0]; - EXPECT_FALSE(laser.two_pt_correction_available); - EXPECT_FLOAT_EQ(laser.vert_correction, -0.124932751059532); - EXPECT_FLOAT_EQ(laser.horiz_offset_correction, 0.0); - EXPECT_EQ(laser.max_intensity, 255); - EXPECT_EQ(laser.min_intensity, 0); - - // check similar values for the last laser: - laser = calibration.laser_corrections[63]; - EXPECT_FALSE(laser.two_pt_correction_available); - EXPECT_FLOAT_EQ(laser.vert_correction, -0.209881335496902); - EXPECT_FLOAT_EQ(laser.horiz_offset_correction, 0.0); - EXPECT_EQ(laser.max_intensity, 255); - EXPECT_EQ(laser.min_intensity, 0); -} - -TEST(Calibration, hdl64e_s21) -{ - Calibration calibration(g_package_path + "/params/64e_s2.1-sztaki.yaml", - false); - EXPECT_TRUE(calibration.initialized); - ASSERT_EQ(calibration.num_lasers, 64); - - // check some values for the first laser: - LaserCorrection laser = calibration.laser_corrections[0]; - EXPECT_FALSE(laser.two_pt_correction_available); - EXPECT_FLOAT_EQ(laser.vert_correction, -0.15304134919741974); - EXPECT_FLOAT_EQ(laser.horiz_offset_correction, 0.025999999); - EXPECT_EQ(laser.max_intensity, 235); - EXPECT_EQ(laser.min_intensity, 30); - - // check similar values for the last laser: - laser = calibration.laser_corrections[63]; - EXPECT_FALSE(laser.two_pt_correction_available); - EXPECT_FLOAT_EQ(laser.vert_correction, -0.2106649408137298); - EXPECT_FLOAT_EQ(laser.horiz_offset_correction, -0.025999999); - EXPECT_EQ(laser.max_intensity, 255); - EXPECT_EQ(laser.min_intensity, 0); -} - -TEST(Calibration, hdl64e_s2_float_intensities) -{ - Calibration calibration(g_package_path + - "/tests/issue_84_float_intensities.yaml", - false); - EXPECT_TRUE(calibration.initialized); - ASSERT_EQ(calibration.num_lasers, 64); - - // check some values for the first laser: - LaserCorrection laser = calibration.laser_corrections[0]; - EXPECT_FALSE(laser.two_pt_correction_available); - EXPECT_FLOAT_EQ(laser.vert_correction, -0.12118950050089745); - EXPECT_FLOAT_EQ(laser.horiz_offset_correction, 0.025999999); - EXPECT_EQ(laser.max_intensity, 255); - EXPECT_EQ(laser.min_intensity, 40); - - // check similar values for laser 26: - laser = calibration.laser_corrections[26]; - EXPECT_FALSE(laser.two_pt_correction_available); - EXPECT_FLOAT_EQ(laser.vert_correction, -0.014916840599137901); - EXPECT_FLOAT_EQ(laser.horiz_offset_correction, 0.025999999); - EXPECT_EQ(laser.max_intensity, 245); - EXPECT_EQ(laser.min_intensity, 0); - - // check similar values for the last laser: - laser = calibration.laser_corrections[63]; - EXPECT_FALSE(laser.two_pt_correction_available); - EXPECT_FLOAT_EQ(laser.vert_correction, -0.20683046990039078); - EXPECT_FLOAT_EQ(laser.horiz_offset_correction, -0.025999999); - EXPECT_EQ(laser.max_intensity, 255); - EXPECT_EQ(laser.min_intensity, 0); -} - -// Run all the tests that were declared with TEST() -int main(int argc, char **argv) -{ - testing::InitGoogleTest(&argc, argv); - init_global_data(); - return RUN_ALL_TESTS(); -} - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/test_db_without_intensities.xml b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/test_db_without_intensities.xml deleted file mode 100644 index e1a72e43698..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/test_db_without_intensities.xml +++ /dev/null @@ -1,906 +0,0 @@ - - - - - - 64 - 1 - - - 0 - -5.3328056 - -7.2988362 - 111 - 118 - 118 - 19.736338 - 2.5999999 - 0 - 0 - - - - - 1 - -3.2344019 - -6.9644198 - 146 - 149 - 151 - 19.778963 - -2.5999999 - 0 - 0 - - - - - 2 - 2.4376695 - 0.250889 - 131.76823 - 136 - 136 - 20.688799 - 2.5999999 - 0 - 0 - - - - - 3 - 4.7373252 - 0.55538797 - 138.12656 - 142 - 144 - 20.727015 - -2.5999999 - 0 - 0 - - - - - 4 - -1.0502493 - -6.6410818 - 119 - 127 - 128 - 19.82012 - 2.5999999 - 0 - 0 - - - - - 5 - 1.2386309 - -6.2594609 - 135 - 140 - 144 - 19.868624 - -2.5999999 - 0 - 0 - - - - - 6 - -1.8405367 - -8.6656351 - 132 - 135 - 137 - 19.561426 - 2.5999999 - 0 - 0 - - - - - 7 - 0.4511103 - -8.3104696 - 145 - 145 - 149 - 19.606993 - -2.5999999 - 0 - 0 - - - - - 8 - 3.2611551 - -5.9352221 - 116 - 122 - 121 - 19.909781 - 2.5999999 - 0 - 0 - - - - - 9 - 5.4685535 - -5.587399 - 133.99889 - 140 - 142 - 19.953875 - -2.5999999 - 0 - 0 - - - - - 10 - 2.4743285 - -7.9891219 - 117 - 125 - 123 - 19.648148 - 2.5999999 - 0 - 0 - - - - - 11 - 4.7189918 - -7.644258 - 145 - 146 - 151 - 19.692244 - -2.5999999 - 0 - 0 - - - - - 12 - -5.3511744 - -3.2475569 - 118.71672 - 124 - 123 - 20.249313 - 2.5999999 - 0 - 0 - - - - - 13 - -3.1158857 - -2.850472 - 142.90839 - 148 - 149 - 20.29929 - -2.5999999 - 0 - 0 - - - - - 14 - -6.1270261 - -5.204318 - 120 - 127 - 124 - 20.00238 - 2.5999999 - 0 - 0 - - - - - 15 - -3.852011 - -4.9137921 - 137 - 144 - 144 - 20.039125 - -2.5999999 - 0 - 0 - - - - - 16 - -1.1109436 - -2.4998751 - 101.71324 - 111 - 109 - 20.343384 - 2.5999999 - 0 - 0 - - - - - 17 - 1.1519098 - -2.184176 - 145.31258 - 153 - 157 - 20.38307 - -2.5999999 - 0 - 0 - - - - - 18 - -1.8682934 - -4.5764661 - 130 - 135 - 134 - 20.081753 - 2.5999999 - 0 - 0 - - - - - 19 - 0.43604341 - -4.2038751 - 147 - 149 - 152 - 20.128786 - -2.5999999 - 0 - 0 - - - - - 20 - 3.1763444 - -1.798143 - 115.82812 - 124 - 123 - 20.431576 - 2.5999999 - 0 - 0 - - - - - 21 - 5.4284201 - -1.49388 - 146 - 152 - 154 - 20.469791 - -2.5999999 - 0 - 0 - - - - - 22 - 2.4024715 - -1.877563 - 129.29713 - 137 - 136 - 20.169943 - 2.5999999 - 0 - 0 - - - - - 23 - 4.6698937 - -3.492661 - 157.97737 - 162 - 165 - 20.218447 - -2.5999999 - 0 - 0 - - - - - 24 - -5.3977456 - 0.88327599 - 124.12312 - 132 - 129 - 20.768169 - 2.5999999 - 0 - 0 - - - - - 25 - -3.1504908 - 1.234519 - 128 - 135 - 138 - 20.812265 - -2.5999999 - 0 - 0 - - - - - 26 - -6.1759849 - -1.177825 - 133 - 140 - 139 - 20.509478 - 2.5999999 - 0 - 0 - - - - - 27 - -3.8819003 - -0.86169797 - 130 - 135 - 134 - 20.549164 - -2.5999999 - 0 - 0 - - - - - 28 - -1.1136208 - 1.585669 - 131 - 137 - 137 - 20.856361 - 2.5999999 - 0 - 0 - - - - - 29 - 1.0969903 - 1.925001 - 131 - 139 - 142 - 20.898987 - -2.5999999 - 0 - 0 - - - - - 30 - -1.9088749 - -0.486963 - 138.48773 - 145 - 143 - 20.596197 - 2.5999999 - 0 - 0 - - - - - 31 - 0.36758029 - -0.123898 - 137.21994 - 143 - 145 - 20.641764 - -2.5999999 - 0 - 0 - - - - - 32 - -8.3386211 - -22.597513 - 117 - 124 - 125 - 10.828748 - 2.5999999 - 0 - 0 - - - - - 33 - -4.7629819 - -22.397568 - 100 - 109 - 110 - 10.854152 - -2.5999999 - 0 - 0 - - - - - 34 - 4.1516571 - -11.576517 - 130 - 128 - 130 - 12.142142 - 2.5999999 - 0 - 0 - - - - - 35 - 7.3577185 - -10.877901 - 102 - 108 - 109 - 12.220895 - -2.5999999 - 0 - 0 - - - - - 36 - -1.2630961 - -21.935509 - 106 - 112 - 113 - 10.912581 - 2.5999999 - 0 - 0 - - - - - 37 - 2.1595552 - -21.409546 - 91 - 100 - 101 - 10.978632 - -2.5999999 - 0 - 0 - - - - - 38 - -2.6141083 - -25.066507 - 127 - 126 - 126 - 10.508655 - 2.5999999 - 0 - 0 - - - - - 39 - 0.95595688 - -24.458101 - 95 - 99 - 102 - 10.588678 - -2.5999999 - 0 - 0 - - - - - 40 - 5.5369682 - -20.777454 - 106 - 114 - 114 - 11.057385 - 2.5999999 - 0 - 0 - - - - - 41 - 8.9712191 - -20.243195 - 97 - 104 - 105 - 11.123436 - -2.5999999 - 0 - 0 - - - - - 42 - 4.4757471 - -23.863358 - 115 - 118 - 120 - 10.666161 - 2.5999999 - 0 - 0 - - - - - 43 - 7.8848143 - -23.352007 - 92 - 95 - 100 - 10.732212 - -2.5999999 - 0 - 0 - - - - - 44 - -8.0466499 - -16.629311 - 135 - 135 - 137 - 11.559117 - 2.5999999 - 0 - 0 - - - - - 45 - -4.595552 - -16.230633 - 108 - 112 - 115 - 11.606115 - -2.5999999 - 0 - 0 - - - - - 46 - -9.3918352 - -19.788239 - 135 - 135 - 138 - 11.179325 - 2.5999999 - 0 - 0 - - - - - 47 - -5.9566336 - -19.21587 - 98 - 105 - 108 - 11.249186 - -2.5999999 - 0 - 0 - - - - - 48 - -1.3779737 - -15.754419 - 116 - 120 - 123 - 11.662004 - 2.5999999 - 0 - 0 - - - - - 49 - 2.0754263 - -15.166914 - 105 - 110 - 110 - 11.730595 - -2.5999999 - 0 - 0 - - - - - 50 - -2.5654242 - -18.828558 - 138 - 133 - 134.53442 - 11.296184 - 2.5999999 - 0 - 0 - - - - - 51 - 0.87227631 - -18.312876 - 105 - 110 - 111 - 11.358424 - -2.5999999 - 0 - 0 - - - - - 52 - 5.2989287 - -14.641928 - 123 - 125 - 126 - 11.791565 - 2.5999999 - 0 - 0 - - - - - 53 - 8.7970304 - -14.048302 - 86 - 90 - 95 - 11.860156 - -2.5999999 - 0 - 0 - - - - - 54 - 4.1742177 - -17.687857 - 135 - 135 - 133.33524 - 11.433367 - 2.5999999 - 0 - 0 - - - - - 55 - 7.5869775 - -17.16544 - 92 - 98 - 100 - 11.495607 - -2.5999999 - 0 - 0 - - - - - 56 - -7.8831077 - -10.436752 - 121 - 126 - 128 - 12.270433 - 2.5999999 - 0 - 0 - - - - - 57 - -4.5919614 - -10.085198 - 103 - 106 - 108 - 12.30981 - -2.5999999 - 0 - 0 - - - - - 58 - -9.1805763 - -13.484814 - 146 - 142 - 145 - 11.924937 - 2.5999999 - 0 - 0 - - - - - 59 - -5.7835727 - -13.107666 - 99 - 106 - 106 - 11.968124 - -2.5999999 - 0 - 0 - - - - - 60 - -1.2335371 - -9.5621262 - 123 - 127 - 128 - 12.368239 - 2.5999999 - 0 - 0 - - - - - 61 - 1.9424959 - -9.0374413 - 106 - 108 - 111 - 12.426669 - -2.5999999 - 0 - 0 - - - - - 62 - -2.5727935 - -12.651329 - 134 - 135 - 134 - 12.020203 - 2.5999999 - 0 - 0 - - - - - 63 - 0.81118912 - -12.115005 - 104 - 107 - 112 - 12.081173 - -2.5999999 - 0 - 0 - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/transform_node_hz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/transform_node_hz.test deleted file mode 100644 index 08f045ce110..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/transform_node_hz.test +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/transform_nodelet_hz.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/transform_nodelet_hz.test deleted file mode 100644 index 61501417af8..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/transform_nodelet_hz.test +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/two_nodelet_managers.test b/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/two_nodelet_managers.test deleted file mode 100644 index 03b7c4183ef..00000000000 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/tests/two_nodelet_managers.test +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/sensing/filters/packages/image_processor/CMakeLists.txt b/ros/src/sensing/filters/packages/image_processor/CMakeLists.txt index c9e5126b1cc..58887e15555 100644 --- a/ros/src/sensing/filters/packages/image_processor/CMakeLists.txt +++ b/ros/src/sensing/filters/packages/image_processor/CMakeLists.txt @@ -69,10 +69,6 @@ install(TARGETS image_rotator image_rectifier RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) -install(FILES - launch/image_rotator.launch - launch/image_rotator_ladybug.launch - launch/image_rectifier.launch - launch/image_rectifier_ladybug.launch - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} - ) +install(DIRECTORY launch + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/sensing/filters/packages/points_downsampler/CMakeLists.txt b/ros/src/sensing/filters/packages/points_downsampler/CMakeLists.txt index 54284f87b0b..d8d9cf30387 100644 --- a/ros/src/sensing/filters/packages/points_downsampler/CMakeLists.txt +++ b/ros/src/sensing/filters/packages/points_downsampler/CMakeLists.txt @@ -57,3 +57,13 @@ target_link_libraries(voxel_grid_filter ${catkin_LIBRARIES}) target_link_libraries(ring_filter ${catkin_LIBRARIES}) target_link_libraries(distance_filter ${catkin_LIBRARIES}) target_link_libraries(random_filter ${catkin_LIBRARIES}) + +install(TARGETS voxel_grid_filter ring_filter distance_filter random_filter + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + +install(DIRECTORY launch + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/sensing/filters/packages/points_preprocessor/CMakeLists.txt b/ros/src/sensing/filters/packages/points_preprocessor/CMakeLists.txt index c7315e3428f..1de4d8283e1 100644 --- a/ros/src/sensing/filters/packages/points_preprocessor/CMakeLists.txt +++ b/ros/src/sensing/filters/packages/points_preprocessor/CMakeLists.txt @@ -14,6 +14,7 @@ find_package(catkin REQUIRED COMPONENTS cv_bridge velodyne_pointcloud tf + autoware_health_checker ) catkin_package(CATKIN_DEPENDS @@ -26,6 +27,7 @@ catkin_package(CATKIN_DEPENDS velodyne_pointcloud autoware_config_msgs tf + autoware_health_checker ) find_package(Qt5Core REQUIRED) @@ -188,7 +190,14 @@ add_dependencies(compare_map_filter ${catkin_EXPORTED_TARGETS}) #endif () -install(TARGETS cloud_transformer points_concat_filter ray_ground_filter ring_ground_filter space_filter compare_map_filter +install(TARGETS + cloud_transformer + points_concat_filter + ray_ground_filter_lib + ray_ground_filter + ring_ground_filter + space_filter + compare_map_filter ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} @@ -198,3 +207,6 @@ install(DIRECTORY include/ DESTINATION ${CATKIN_GLOBAL_INCLUDE_DESTINATION} PATTERN ".svn" EXCLUDE ) +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/sensing/filters/packages/points_preprocessor/nodes/ray_ground_filter/include/ray_ground_filter.h b/ros/src/sensing/filters/packages/points_preprocessor/nodes/ray_ground_filter/include/ray_ground_filter.h index f4f2a572085..ca195bac9d6 100644 --- a/ros/src/sensing/filters/packages/points_preprocessor/nodes/ray_ground_filter/include/ray_ground_filter.h +++ b/ros/src/sensing/filters/packages/points_preprocessor/nodes/ray_ground_filter/include/ray_ground_filter.h @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include @@ -32,6 +33,9 @@ #include #include "autoware_config_msgs/ConfigRayGroundFilter.h" +//headers in Autoware Health Checker +#include + #include #if (CV_MAJOR_VERSION == 3) #include "gencolors.cpp" @@ -42,7 +46,7 @@ class RayGroundFilter { private: - + std::shared_ptr node_status_pub_ptr_; ros::NodeHandle node_handle_; ros::Subscriber points_node_sub_; ros::Subscriber config_node_sub_; diff --git a/ros/src/sensing/filters/packages/points_preprocessor/nodes/ray_ground_filter/ray_ground_filter.cpp b/ros/src/sensing/filters/packages/points_preprocessor/nodes/ray_ground_filter/ray_ground_filter.cpp index 250cdefe8aa..3bca79e5793 100644 --- a/ros/src/sensing/filters/packages/points_preprocessor/nodes/ray_ground_filter/ray_ground_filter.cpp +++ b/ros/src/sensing/filters/packages/points_preprocessor/nodes/ray_ground_filter/ray_ground_filter.cpp @@ -283,6 +283,8 @@ void RayGroundFilter::RemovePointsUpTo(const pcl::PointCloud::Pt void RayGroundFilter::CloudCallback(const sensor_msgs::PointCloud2ConstPtr &in_sensor_cloud) { + node_status_pub_ptr_->NODE_ACTIVATE(); + node_status_pub_ptr_->CHECK_RATE("/topic/rate/points_raw/slow",8,5,1,"topic points_raw subscribe rate low."); pcl::PointCloud::Ptr current_sensor_cloud_ptr(new pcl::PointCloud); pcl::fromROSMsg(*in_sensor_cloud, *current_sensor_cloud_ptr); @@ -327,6 +329,10 @@ void RayGroundFilter::CloudCallback(const sensor_msgs::PointCloud2ConstPtr &in_s RayGroundFilter::RayGroundFilter():node_handle_("~") { + ros::NodeHandle nh; + ros::NodeHandle pnh("~"); + node_status_pub_ptr_ = std::make_shared(nh,pnh); + node_status_pub_ptr_->ENABLE(); } void RayGroundFilter::Run() diff --git a/ros/src/sensing/filters/packages/points_preprocessor/package.xml b/ros/src/sensing/filters/packages/points_preprocessor/package.xml index 27dd2e9e118..c0db40b4428 100644 --- a/ros/src/sensing/filters/packages/points_preprocessor/package.xml +++ b/ros/src/sensing/filters/packages/points_preprocessor/package.xml @@ -27,6 +27,7 @@ rostest gtest yaml-cpp + autoware_health_checker autoware_config_msgs cv_bridge @@ -40,6 +41,7 @@ velodyne_pointcloud libqt5-core yaml-cpp + autoware_health_checker roslaunch rosunit diff --git a/ros/src/sensing/fusion/packages/autoware_camera_lidar_calibrator/CMakeLists.txt b/ros/src/sensing/fusion/packages/autoware_camera_lidar_calibrator/CMakeLists.txt index a5472bc1f19..f29d6fbd400 100644 --- a/ros/src/sensing/fusion/packages/autoware_camera_lidar_calibrator/CMakeLists.txt +++ b/ros/src/sensing/fusion/packages/autoware_camera_lidar_calibrator/CMakeLists.txt @@ -66,3 +66,7 @@ catkin_install_python(PROGRAMS scripts/tarfile_calibration.py DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/sensing/fusion/packages/multi_lidar_calibrator/CMakeLists.txt b/ros/src/sensing/fusion/packages/multi_lidar_calibrator/CMakeLists.txt index 7874c7b6e7f..d49eb3e56aa 100644 --- a/ros/src/sensing/fusion/packages/multi_lidar_calibrator/CMakeLists.txt +++ b/ros/src/sensing/fusion/packages/multi_lidar_calibrator/CMakeLists.txt @@ -18,9 +18,7 @@ catkin_package(CATKIN_DEPENDS geometry_msgs ) -find_package(Qt5Core REQUIRED) find_package(OpenCV REQUIRED) -find_package(PCL 1.7 REQUIRED) ########### ## Build ## @@ -33,8 +31,6 @@ include_directories( SET(CMAKE_CXX_FLAGS "-O2 -g -Wall ${CMAKE_CXX_FLAGS}") -link_directories(${PCL_LIBRARY_DIRS}) - # MultiLidar Calibrator add_library(multi_lidar_calibrator_lib SHARED src/multi_lidar_calibrator.cpp @@ -42,13 +38,10 @@ add_library(multi_lidar_calibrator_lib SHARED target_include_directories(multi_lidar_calibrator_lib PRIVATE ${OpenCV_INCLUDE_DIRS} - ${PCL_INCLUDE_DIRS} ) target_link_libraries(multi_lidar_calibrator_lib ${catkin_LIBRARIES} - ${PCL_LIBRARIES} - ${Qt5Core_LIBRARIES} ) add_executable(multi_lidar_calibrator @@ -60,3 +53,13 @@ target_include_directories(multi_lidar_calibrator PRIVATE target_link_libraries(multi_lidar_calibrator multi_lidar_calibrator_lib) + +install(TARGETS + multi_lidar_calibrator multi_lidar_calibrator_lib + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/README.md b/ros/src/simulation/gazebo_simulator/README.md new file mode 100644 index 00000000000..9f171f0d0c5 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/README.md @@ -0,0 +1,74 @@ +# Overview +Autonomous driving car simulator based on gazebo. +![screenshot from 2019-01-11 00-42-10-min](https://user-images.githubusercontent.com/8327598/50984661-bed3f780-1545-11e9-9af6-071ddd1cec76.png) + +## Sensors +- velodyne (VLP-16, HDL-32E) +- camera +- imu + +## Input, Output +![arch](https://user-images.githubusercontent.com/8327598/52900689-1861cd00-323c-11e9-84cc-ecf7bf15ee6a.png) +- Input : + - Autoware + - vehicle_cmd : select field twist_cmd (default) or ctrl_cmd + - Debug + - cmd_vel : for teleop +- Output : + - Autoware + - /vehicle_status : CAN data + - /image_raw : Image data + - /camera_info : Camera infomation + - /points_raw : Lidar data + - /imu : Imu data + - Debug (Ground Truth) + - /gazebo_vehicle/pose : base_link pose + - /gazebo_vehicle/twist : base_link twist + - /gazebo_vehicle/velocity : vechicle velocity[m/s] + - /gazebo_vehicle/steering_angle : vehicle steering angle[rad] + - ground truth pose tf : default disable + +# **Requirements** +- ROS (higher kinetic) +- gazebo (higher version 7) +- CUDA (Optional but requires GPU by default) + +# Setup +1. upgrade gazebo version and download gazebo models(**only once**) + - reason : https://bitbucket.org/DataspeedInc/velodyne_simulator/src/56d11e899ce0a198e7206298b3aaaf8004f3a2c6/gazebo_upgrade.md?fileviewer=file-view-default +``` +$ rosrun vehicle_gazebo_simulation_launcher setup.sh +``` + +# Some example +## **Citysim** : http://gazebosim.org/blog/car_sim +``` +$ roslaunch vehicle_gazebo_simulation_launcher gazebo_launcher.launch world_name:=citysim_gazebo7 gpu:=true +``` + +If you use gazebo9, simulate traffic lights and moving objects. +Build according to the [readme](https://github.com/CPFL/osrf_citysim) and execute the following command +``` +$ roslaunch vehicle_gazebo_simulation_launcher gazebo_launcher.launch world_name:=citysim_gazebo9 gpu:=true +``` + +![screenshot from 2019-01-11 00-40-35-min](https://user-images.githubusercontent.com/8327598/50985197-19ba1e80-1547-11e9-98d1-284b3172c064.png) +## **mcity(car_demo)** : https://github.com/osrf/car_demo +``` +$ roslaunch vehicle_gazebo_simulation_launcher gazebo_launcher.launch world_name:=mcity gpu:=true +``` +![screenshot from 2019-01-11 00-38-49-min](https://user-images.githubusercontent.com/8327598/50985258-3e15fb00-1547-11e9-91d4-3b826b82136e.png) + +## **simple** : +``` +$ roslaunch vehicle_gazebo_simulation_launcher gazebo_launcher.launch world_name:=simple gpu:=true +``` +[![](https://img.youtube.com/vi/wIzZ25XJI2M/0.jpg)](https://www.youtube.com/watch?v=wIzZ25XJI2M) + +## Download pointcloud map +If you need pointcloud map and path files, you can [download](https://drive.google.com/open?id=1yu8s885HDkJp3IbMV06KWim2ZdUxIoIF). + +# How to change vehicle info +You can customize sensor position and vehicle info. +- sensor position: vehicle/vehicle_model/config/caibration.yaml +- vehicle info: vehicle/vehicle_model/config/vehicle_info.yaml diff --git a/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/CMakeLists.txt b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/CMakeLists.txt new file mode 100644 index 00000000000..db10e4ad901 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/CMakeLists.txt @@ -0,0 +1,20 @@ +cmake_minimum_required(VERSION 2.8.3) +project(vehicle_gazebo_simulation_launcher) + +find_package(catkin REQUIRED + controller_manager + controller_manager + robot_state_publisher + joint_state_controller +) + +catkin_package( + CATKIN_DEPENDS + controller_manager + robot_state_publisher + joint_state_controller +) +install(DIRECTORY launch + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) +install(DIRECTORY scripts + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) diff --git a/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/launch/gazebo_launcher.launch b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/launch/gazebo_launcher.launch new file mode 100644 index 00000000000..fe2317cd65e --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/launch/gazebo_launcher.launch @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/launch/rviz_test.launch b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/launch/rviz_test.launch new file mode 100644 index 00000000000..97225f83c4d --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/launch/rviz_test.launch @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/launch/world_test.launch b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/launch/world_test.launch new file mode 100644 index 00000000000..5a59622d0c4 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/launch/world_test.launch @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/package.xml b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/package.xml new file mode 100644 index 00000000000..8d7c38e78c8 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/package.xml @@ -0,0 +1,27 @@ + + + vehicle_gazebo_simulation_launcher + 0.0.0 + The vehicle_gazebo_simulation_launcher package + + yukihiro saito + + Apache 2 + + catkin + + controller_manager + robot_state_publisher + joint_state_controller + controller_manager + robot_state_publisher + joint_state_controller + controller_manager + robot_state_publisher + joint_state_controller + velodyne_description + mercurial + + + + diff --git a/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/scripts/download_model.sh b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/scripts/download_model.sh new file mode 100755 index 00000000000..65f50a82445 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/scripts/download_model.sh @@ -0,0 +1,25 @@ +#!/bin/sh + +mkdir -p ~/.gazebo/models +echo "Download generic gazebo models" +if [ -e /tmp/gazebo_models ]; then + echo "Already exist /tmp/gazebo_models" + echo "removing /tmp/gazebo_models" + rm -r /tmp/gazebo_models +fi +hg clone https://bitbucket.org/osrf/gazebo_models /tmp/gazebo_models + +if [ -e /tmp/gazebo_models ]; then + echo "Install generic gazebo models" + mv -n /tmp/gazebo_models/* ~/.gazebo/models/ + echo "Completed" +else + echo "Error" +fi + +echo "Install osrf_citysim models" +SCRIPT_DIR=$(cd $(dirname $0); pwd) +cp -rn $SCRIPT_DIR/../../../worlds/external/osrf_citysim/models/* ~/.gazebo/models/ + +echo "Install car_demo models" +cp -rn $SCRIPT_DIR/../../../worlds/external/car_demo/car_demo/models/* ~/.gazebo/models/ diff --git a/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/scripts/integrate_world_files.sh b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/scripts/integrate_world_files.sh new file mode 100755 index 00000000000..f2a75ec7969 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/scripts/integrate_world_files.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +SCRIPT_DIR=$(cd $(dirname $0); pwd) +echo "Copy world file to gazebo_world_description" +cp -n $SCRIPT_DIR/../../../worlds/external/osrf_citysim/worlds/citysim_gazebo7.world $SCRIPT_DIR/../../../worlds/gazebo_world_description/worlds/ +cp -n $SCRIPT_DIR/../../../worlds/external/osrf_citysim/worlds/citysim_gazebo9.world $SCRIPT_DIR/../../../worlds/gazebo_world_description/worlds/ +cp -n $SCRIPT_DIR/../../../worlds/external/car_demo/car_demo/worlds/mcity.world $SCRIPT_DIR/../../../worlds/gazebo_world_description/worlds/ +cp -n $SCRIPT_DIR/../../../worlds/external/car_demo/car_demo/worlds/mcity_r1.world $SCRIPT_DIR/../../../worlds/gazebo_world_description/worlds/ diff --git a/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/scripts/setup.sh b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/scripts/setup.sh new file mode 100755 index 00000000000..93db79d1371 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/scripts/setup.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +SCRIPT_DIR=$(cd $(dirname $0); pwd) +$SCRIPT_DIR/download_model.sh +$SCRIPT_DIR/upgrade_gazebo_stable_version.sh +$SCRIPT_DIR/integrate_world_files.sh \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/scripts/upgrade_gazebo_stable_version.sh b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/scripts/upgrade_gazebo_stable_version.sh new file mode 100755 index 00000000000..a7e52932da6 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/launcher/vehicle_gazebo_simulation_launcher/scripts/upgrade_gazebo_stable_version.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +sudo sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/gazebo-stable.list' +sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D2486D2DD83DB69272AFE98867170598AF249743 +sudo apt update +sudo apt install gazebo7 gazebo7-common gazebo7-plugin-base libgazebo7 libgazebo7-dev libignition-math2 libignition-math2-dev libsdformat4 libsdformat4-dev sdformat-sdf diff --git a/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/camera/gazebo_camera_description/CMakeLists.txt b/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/camera/gazebo_camera_description/CMakeLists.txt new file mode 100644 index 00000000000..b3d93c659fa --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/camera/gazebo_camera_description/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 2.8.3) +project(gazebo_camera_description) + +find_package(catkin REQUIRED) + +catkin_package() + +install(DIRECTORY urdf + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +) diff --git a/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/camera/gazebo_camera_description/package.xml b/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/camera/gazebo_camera_description/package.xml new file mode 100644 index 00000000000..5927e50240d --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/camera/gazebo_camera_description/package.xml @@ -0,0 +1,15 @@ + + + gazebo_camera_description + 0.0.0 + The gazebo_camera_description package + + yukihiro saito + + Apache 2 + + catkin + + + + diff --git a/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/camera/gazebo_camera_description/urdf/monocular_camera.xacro b/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/camera/gazebo_camera_description/urdf/monocular_camera.xacro new file mode 100644 index 00000000000..3d17b525bad --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/camera/gazebo_camera_description/urdf/monocular_camera.xacro @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gazebo/Black + + ${fps} + + ${fov} + + ${width} + ${height} + R8G8B8 + + + 0.02 + 300 + + + gaussian + + 0.0 + 0.007 + + + + true + 0.0 + ${namespace} + image_raw + camera_info + ${suffix}_optical_link + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + + + + + \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/imu/gazebo_imu_description/CMakeLists.txt b/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/imu/gazebo_imu_description/CMakeLists.txt new file mode 100644 index 00000000000..0df554dd9d3 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/imu/gazebo_imu_description/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 2.8.3) +project(gazebo_imu_description) + +find_package(catkin REQUIRED) + +catkin_package() + +install(DIRECTORY urdf + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +) diff --git a/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/imu/gazebo_imu_description/package.xml b/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/imu/gazebo_imu_description/package.xml new file mode 100644 index 00000000000..e664e55db79 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/imu/gazebo_imu_description/package.xml @@ -0,0 +1,15 @@ + + + gazebo_imu_description + 0.0.0 + The gazebo_imu_description package + + yukihiro saito + + Apache 2 + + catkin + + + + diff --git a/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/imu/gazebo_imu_description/urdf/imu.xacro b/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/imu/gazebo_imu_description/urdf/imu.xacro new file mode 100644 index 00000000000..b9343464d32 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/sensor_model/imu/gazebo_imu_description/urdf/imu.xacro @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + true + ${fps} + true + __default_topic__ + + ${suffix} + ${suffix}_link + 10.0 + 0.0 + 0 0 0 + 0 0 0 + imu_link + + 0 0 0 0 0 0 + + + + \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_gazebo_simulation_interface/CMakeLists.txt b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_gazebo_simulation_interface/CMakeLists.txt new file mode 100644 index 00000000000..1370e835a9e --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_gazebo_simulation_interface/CMakeLists.txt @@ -0,0 +1,46 @@ +cmake_minimum_required(VERSION 2.8.3) +project(vehicle_gazebo_simulation_interface) + +add_compile_options(-std=c++11) + +find_package(catkin REQUIRED + geometry_msgs + roscpp + sensor_msgs + std_msgs + gazebo_msgs + autoware_msgs + tf2_ros + tf2 + autoware_build_flags +) + +catkin_package( + CATKIN_DEPENDS + geometry_msgs + roscpp + sensor_msgs + std_msgs + gazebo_msgs + autoware_msgs + tf2_ros + tf2 +) + +include_directories( + ${catkin_INCLUDE_DIRS} +) + +add_executable(vehicle_gazebo_input_subscriber src/vehicle_gazebo_input_subscriber.cpp) +add_dependencies(vehicle_gazebo_input_subscriber ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) +target_link_libraries(vehicle_gazebo_input_subscriber ${catkin_LIBRARIES}) + +add_executable(vehicle_gazebo_info_publisher src/vehicle_gazebo_info_publisher.cpp) +add_dependencies(vehicle_gazebo_info_publisher ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) +target_link_libraries(vehicle_gazebo_info_publisher ${catkin_LIBRARIES}) + +install(TARGETS vehicle_gazebo_input_subscriber vehicle_gazebo_info_publisher + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_gazebo_simulation_interface/package.xml b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_gazebo_simulation_interface/package.xml new file mode 100644 index 00000000000..2e4ec45c27d --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_gazebo_simulation_interface/package.xml @@ -0,0 +1,39 @@ + + + vehicle_gazebo_simulation_interface + 0.0.0 + The vehicle_gazebo_simulation_interface package + yukihiro saito + + Apache 2 + + catkin + autoware_build_flags + geometry_msgs + roscpp + sensor_msgs + std_msgs + gazebo_msgs + autoware_msgs + tf2_ros + tf2 + geometry_msgs + roscpp + sensor_msgs + std_msgs + gazebo_msgs + autoware_msgs + tf2_ros + tf2 + geometry_msgs + roscpp + sensor_msgs + std_msgs + gazebo_msgs + autoware_msgs + tf2_ros + tf2 + + + + diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_gazebo_simulation_interface/src/vehicle_gazebo_info_publisher.cpp b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_gazebo_simulation_interface/src/vehicle_gazebo_info_publisher.cpp new file mode 100644 index 00000000000..41ff33671a4 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_gazebo_simulation_interface/src/vehicle_gazebo_info_publisher.cpp @@ -0,0 +1,166 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +class VehicleGazeboInfoPublisher +{ + private: + ros::NodeHandle nh_; + ros::NodeHandle pnh_; + ros::ServiceClient client_; + ros::Publisher vehicle_pose_pub_; + ros::Publisher vehicle_twist_pub_; + ros::Publisher vehicle_vel_pub_; + ros::Publisher steering_angle_pub_; + ros::Publisher vehicle_status_pub_; + ros::Timer publish_timer_; // publish timer + ros::Subscriber odom_sub_; + tf2_ros::TransformBroadcaster tf_broadcaster_; + tf2_ros::Buffer tf_buffer_; + tf2_ros::TransformListener tf_listener_; + double wheel_radius_; + double wheel_base_; + std::string ns_; + bool enable_base_link_tf_; + void publishTimerCallback(const ros::TimerEvent &e); + void jointStateCallback(const sensor_msgs::JointState::ConstPtr &input_msg); + + public: + VehicleGazeboInfoPublisher(); + ~VehicleGazeboInfoPublisher(){}; +}; + +VehicleGazeboInfoPublisher::VehicleGazeboInfoPublisher() : nh_(""), pnh_("~"), tf_listener_(tf_buffer_) +{ + client_ = nh_.serviceClient("/gazebo/get_link_state"); + vehicle_pose_pub_ = nh_.advertise("/gazebo_vehicle/pose", 1); + vehicle_twist_pub_ = nh_.advertise("/gazebo_vehicle/twist", 1); + vehicle_vel_pub_ = nh_.advertise("/gazebo_vehicle/velocity", 1); + steering_angle_pub_ = nh_.advertise("/gazebo_vehicle/steering_angle", 1); + vehicle_status_pub_ = nh_.advertise("/vehicle_status", 1); + double publish_pose_rate; + pnh_.param("publish_pose_rate", publish_pose_rate, double(10.0)); + pnh_.param("/vehicle_info/wheel_radius", wheel_radius_, 0.341); + pnh_.param("/vehicle_info/wheel_base", wheel_base_, 2.95); + pnh_.param("ns", ns_, std::string("autoware_gazebo")); + pnh_.param("enable_base_link_tf", enable_base_link_tf_, false); + + publish_timer_ = nh_.createTimer(ros::Duration(1.0 / publish_pose_rate), &VehicleGazeboInfoPublisher::publishTimerCallback, this); + odom_sub_ = nh_.subscribe("joint_states", 1, &VehicleGazeboInfoPublisher::jointStateCallback, this); +} + +void VehicleGazeboInfoPublisher::publishTimerCallback(const ros::TimerEvent &e) +{ + gazebo_msgs::GetLinkState base_link_srv; + base_link_srv.request.link_name = ns_ + "::base_link"; + base_link_srv.request.reference_frame = ""; + ros::Time current_time = ros::Time::now(); + client_.call(base_link_srv); + + geometry_msgs::PoseStamped output_pose; + output_pose.header.frame_id = "world"; + output_pose.header.stamp = current_time; + output_pose.pose = base_link_srv.response.link_state.pose; + + vehicle_pose_pub_.publish(output_pose); + + if (enable_base_link_tf_) + { + tf2::Transform tf_world2map, tf_world2base_link, tf_map2base_link; + + try + { + geometry_msgs::TransformStamped ros_world2map; + ros_world2map = tf_buffer_.lookupTransform("world", "map", ros::Time(0)); + tf2::fromMsg(ros_world2map.transform, tf_world2map); + } + catch (tf2::TransformException &ex) + { + ROS_WARN("%s", ex.what()); + return; + } + + { + geometry_msgs::Pose ros_world2base_link; + ros_world2base_link.position.x = output_pose.pose.position.x; + ros_world2base_link.position.y = output_pose.pose.position.y; + ros_world2base_link.position.z = output_pose.pose.position.z; + ros_world2base_link.orientation.x = output_pose.pose.orientation.x; + ros_world2base_link.orientation.y = output_pose.pose.orientation.y; + ros_world2base_link.orientation.z = output_pose.pose.orientation.z; + ros_world2base_link.orientation.w = output_pose.pose.orientation.w; + tf2::fromMsg(ros_world2base_link, tf_world2base_link); + } + + tf_map2base_link = tf_world2map.inverse() * tf_world2base_link; + + geometry_msgs::TransformStamped ros_map2base_link; + ros_map2base_link.header.frame_id = "map"; + ros_map2base_link.child_frame_id = "base_link"; + ros_map2base_link.header.stamp = current_time; + ros_map2base_link.transform = tf2::toMsg(tf_map2base_link); + tf_broadcaster_.sendTransform(ros_map2base_link); + } +} + +void VehicleGazeboInfoPublisher::jointStateCallback(const sensor_msgs::JointState::ConstPtr &input_msg) +{ + std_msgs::Float64 output_vel, output_steering_angle; + geometry_msgs::TwistStamped output_twiststamped; + autoware_msgs::VehicleStatus output_vehicle_status; + double steering_right_front_angle = 0; + double steering_left_front_angle = 0; + double wheel_right_rear_vel = 0; + double wheel_left_rear_vel = 0; + for (size_t i = 0; i < input_msg->name.size(); ++i) + { + if (input_msg->name.at(i) == std::string("steering_right_front_joint")) + steering_right_front_angle = input_msg->position.at(i); + if (input_msg->name.at(i) == std::string("steering_left_front_joint")) + steering_left_front_angle = input_msg->position.at(i); + if (input_msg->name.at(i) == std::string("wheel_right_rear_joint")) + wheel_right_rear_vel = input_msg->velocity.at(i); + if (input_msg->name.at(i) == std::string("wheel_left_rear_joint")) + wheel_left_rear_vel = input_msg->velocity.at(i); + } + ros::Time current_time = ros::Time::now(); + output_vel.data = wheel_radius_ * (wheel_left_rear_vel + wheel_right_rear_vel) / 2.0; + output_steering_angle.data = (steering_right_front_angle + steering_left_front_angle) / 2.0; + output_vehicle_status.header.stamp = current_time; + output_vehicle_status.header.frame_id = "base_link"; + output_vehicle_status.speed = output_vel.data * 3.6; //km/h + output_vehicle_status.angle = output_steering_angle.data * 180.0 / M_PI; //degree + + output_twiststamped.header.stamp = current_time; + output_twiststamped.header.frame_id = "base_link"; + output_twiststamped.twist.linear.x = output_vel.data; + output_twiststamped.twist.angular.z = std::tan(output_steering_angle.data) * output_vel.data / wheel_base_; + vehicle_twist_pub_.publish(output_twiststamped); + vehicle_vel_pub_.publish(output_vel); + steering_angle_pub_.publish(output_steering_angle); + vehicle_status_pub_.publish(output_vehicle_status); +} + +int main(int argc, char *argv[]) +{ + ros::init(argc, argv, "vehicle_gazebo_info_publisher"); + + VehicleGazeboInfoPublisher node; + ros::spin(); + + return 0; +} diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_gazebo_simulation_interface/src/vehicle_gazebo_input_subscriber.cpp b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_gazebo_simulation_interface/src/vehicle_gazebo_input_subscriber.cpp new file mode 100644 index 00000000000..c00a76127db --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_gazebo_simulation_interface/src/vehicle_gazebo_input_subscriber.cpp @@ -0,0 +1,184 @@ +#include +#include +#include +#include +#include +#include +#include + +class VehicleGazeboInputSubscriber +{ + private: + ros::NodeHandle nh_; + ros::NodeHandle pnh_; + ros::Publisher wheel_right_rear_pub_; + ros::Publisher wheel_left_rear_pub_; + ros::Publisher steering_right_front_pub_; + ros::Publisher steering_left_front_pub_; + ros::Subscriber twist_sub_; + ros::Subscriber steering_angle_sub_; + ros::Subscriber velocity_sub_; + ros::Subscriber vehicle_cmd_sub_; + + void twistCallback(const geometry_msgs::Twist::ConstPtr &input_twist_msg); + void sterringAngleCallback(const std_msgs::Float64::ConstPtr &input_steering_angle_msg); + void velocityCallback(const std_msgs::Float64::ConstPtr &input_velocity_msg); + void vehicleCmdCallback(const autoware_msgs::VehicleCmd::ConstPtr &input_msg); + void publishControlCommandStamped2Gazebo(const autoware_msgs::ControlCommand &input_msg); + void publishTwistStamped2Gazebo(const geometry_msgs::TwistStamped &input_twist_msg); + double wheel_base_; + double wheel_tread_; + double wheel_radius_; + bool twiststamped_; + bool ctrl_cmd_; + + public: + VehicleGazeboInputSubscriber(); + ~VehicleGazeboInputSubscriber(){}; +}; + +VehicleGazeboInputSubscriber::VehicleGazeboInputSubscriber() : nh_(""), pnh_("~") +{ + + pnh_.param("/vehicle_info/wheel_base", wheel_base_, 2.95); + pnh_.param("/vehicle_info/wheel_radius", wheel_radius_, 0.341); + pnh_.param("/vehicle_info/wheel_tread", wheel_tread_, 1.55); + pnh_.param("twiststamped", twiststamped_, true); + pnh_.param("ctrl_cmd", ctrl_cmd_, false); + wheel_right_rear_pub_ = nh_.advertise("wheel_right_rear_velocity_controller/command", 1, true); + wheel_left_rear_pub_ = nh_.advertise("wheel_left_rear_velocity_controller/command", 1, true); + steering_right_front_pub_ = nh_.advertise("steering_right_front_position_controller/command", 1, true); + steering_left_front_pub_ = nh_.advertise("steering_left_front_position_controller/command", 1, true); + + bool twist_sub, steering_angle_sub, velocity_sub; + pnh_.param("twist_sub", twist_sub, true); + pnh_.param("steering_angle_sub", steering_angle_sub, false); + pnh_.param("velocity_sub", velocity_sub, false); + if (twist_sub) + twist_sub_ = nh_.subscribe("/cmd_vel", 1, &VehicleGazeboInputSubscriber::twistCallback, this); + if (steering_angle_sub) + steering_angle_sub_ = nh_.subscribe("/steering_angle", 1, &VehicleGazeboInputSubscriber::sterringAngleCallback, this); + if (velocity_sub) + velocity_sub_ = nh_.subscribe("/velocity", 1, &VehicleGazeboInputSubscriber::velocityCallback, this); + vehicle_cmd_sub_ = nh_.subscribe("/vehicle_cmd", 1, &VehicleGazeboInputSubscriber::vehicleCmdCallback, this); +} + +void VehicleGazeboInputSubscriber::twistCallback(const geometry_msgs::Twist::ConstPtr &input_twist_msg) +{ + std_msgs::Float64 output_wheel_rear, output_steering_right_front, output_steering_left_front; + output_wheel_rear.data = input_twist_msg->linear.x / wheel_radius_; + + double vref_rear = input_twist_msg->linear.x; + constexpr double min_vref_rear = 0.01; + if (std::fabs(vref_rear) < min_vref_rear) // Prevent zero division when calculating ackerman steering + { + vref_rear = 0.0 < vref_rear ? min_vref_rear : -min_vref_rear; + } + + double delta_ref = std::atan(input_twist_msg->angular.z * wheel_base_ / vref_rear); + delta_ref = 0.0 < vref_rear ? delta_ref : -delta_ref; + constexpr double max_delta_ref = M_PI / 4.0; + if (max_delta_ref < std::fabs(delta_ref)) // It is a constraint that the theory does not turn more than 90 degrees + { + delta_ref = 0.0 < delta_ref ? max_delta_ref : -max_delta_ref; + } + + output_steering_right_front.data = std::atan(std::tan(delta_ref) / (1.0 + (wheel_tread_ / (2.0 * wheel_base_)) * std::tan(delta_ref))); + output_steering_left_front.data = std::atan(std::tan(delta_ref) / (1.0 - (wheel_tread_ / (2.0 * wheel_base_)) * std::tan(delta_ref))); + + wheel_right_rear_pub_.publish(output_wheel_rear); + wheel_left_rear_pub_.publish(output_wheel_rear); + steering_right_front_pub_.publish(output_steering_right_front); + steering_left_front_pub_.publish(output_steering_left_front); +} + +void VehicleGazeboInputSubscriber::sterringAngleCallback(const std_msgs::Float64::ConstPtr &input_steering_angle_msg) +{ + std_msgs::Float64 output_steering_right_front, output_steering_left_front; + + double delta_ref = input_steering_angle_msg->data; + constexpr double max_delta_ref = M_PI / 4.0; + if (max_delta_ref < std::fabs(delta_ref)) // It is a constraint that the theory does not turn more than 90 degrees + { + delta_ref = 0.0 < delta_ref ? max_delta_ref : -max_delta_ref; + } + output_steering_right_front.data = std::atan(std::tan(delta_ref) / (1.0 + (wheel_tread_ / (2.0 * wheel_base_)) * std::tan(delta_ref))); + output_steering_left_front.data = std::atan(std::tan(delta_ref) / (1.0 - (wheel_tread_ / (2.0 * wheel_base_)) * std::tan(delta_ref))); + + steering_right_front_pub_.publish(output_steering_right_front); + steering_left_front_pub_.publish(output_steering_left_front); +} + +void VehicleGazeboInputSubscriber::velocityCallback(const std_msgs::Float64::ConstPtr &input_velocity_msg) +{ + std_msgs::Float64 output_wheel_rear; + output_wheel_rear.data = input_velocity_msg->data / wheel_radius_; + wheel_right_rear_pub_.publish(output_wheel_rear); + wheel_left_rear_pub_.publish(output_wheel_rear); +} + +void VehicleGazeboInputSubscriber::vehicleCmdCallback(const autoware_msgs::VehicleCmd::ConstPtr &input_msg) +{ + if (twiststamped_) + publishTwistStamped2Gazebo(input_msg->twist_cmd); + if (ctrl_cmd_) + publishControlCommandStamped2Gazebo(input_msg->ctrl_cmd); +} + +void VehicleGazeboInputSubscriber::publishControlCommandStamped2Gazebo(const autoware_msgs::ControlCommand &input_msg) +{ + std_msgs::Float64 output_wheel_rear, output_steering_right_front, output_steering_left_front; + + double delta_ref = input_msg.steering_angle; + constexpr double max_delta_ref = M_PI / 4.0; + if (max_delta_ref < std::fabs(delta_ref)) // It is a constraint that the theory does not turn more than 90 degrees + { + delta_ref = 0.0 < delta_ref ? max_delta_ref : -max_delta_ref; + } + output_steering_right_front.data = std::atan(std::tan(delta_ref) / (1.0 + (wheel_tread_ / (2.0 * wheel_base_)) * std::tan(delta_ref))); + output_steering_left_front.data = std::atan(std::tan(delta_ref) / (1.0 - (wheel_tread_ / (2.0 * wheel_base_)) * std::tan(delta_ref))); + output_wheel_rear.data = input_msg.linear_velocity / wheel_radius_; + wheel_right_rear_pub_.publish(output_wheel_rear); + wheel_left_rear_pub_.publish(output_wheel_rear); + steering_right_front_pub_.publish(output_steering_right_front); + steering_left_front_pub_.publish(output_steering_left_front); +} + +void VehicleGazeboInputSubscriber::publishTwistStamped2Gazebo(const geometry_msgs::TwistStamped &input_twist_msg) +{ + std_msgs::Float64 output_wheel_rear, output_steering_right_front, output_steering_left_front; + output_wheel_rear.data = input_twist_msg.twist.linear.x / wheel_radius_; + + double vref_rear = input_twist_msg.twist.linear.x; + constexpr double min_vref_rear = 0.01; + if (std::fabs(vref_rear) < min_vref_rear) // Prevent zero division when calculating ackerman steering + { + vref_rear = 0.0 < vref_rear ? min_vref_rear : -min_vref_rear; + } + + double delta_ref = std::atan(input_twist_msg.twist.angular.z * wheel_base_ / vref_rear); + delta_ref = 0.0 < vref_rear ? delta_ref : -delta_ref; + constexpr double max_delta_ref = M_PI / 4.0; + if (max_delta_ref < std::fabs(delta_ref)) // It is a constraint that the theory does not turn more than 90 degrees + { + delta_ref = 0.0 < delta_ref ? max_delta_ref : -max_delta_ref; + } + + output_steering_right_front.data = std::atan(std::tan(delta_ref) / (1.0 + (wheel_tread_ / (2.0 * wheel_base_)) * std::tan(delta_ref))); + output_steering_left_front.data = std::atan(std::tan(delta_ref) / (1.0 - (wheel_tread_ / (2.0 * wheel_base_)) * std::tan(delta_ref))); + + wheel_right_rear_pub_.publish(output_wheel_rear); + wheel_left_rear_pub_.publish(output_wheel_rear); + steering_right_front_pub_.publish(output_steering_right_front); + steering_left_front_pub_.publish(output_steering_left_front); +} + +int main(int argc, char *argv[]) +{ + ros::init(argc, argv, "vehicle_gazebo_input_subscriber"); + + VehicleGazeboInputSubscriber node; + ros::spin(); + + return 0; +} diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/CMakeLists.txt b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/CMakeLists.txt new file mode 100644 index 00000000000..2d24e53f8f7 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/CMakeLists.txt @@ -0,0 +1,21 @@ +cmake_minimum_required(VERSION 2.8.3) +project(vehicle_model) + +add_compile_options(-std=c++11) + +find_package(catkin REQUIRED + autoware_build_flags +) + +catkin_package( + CATKIN_DEPENDS +) + +install(DIRECTORY mesh + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) + +install(DIRECTORY urdf + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) + +install(DIRECTORY config + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/config/calibration.yaml b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/config/calibration.yaml new file mode 100644 index 00000000000..7ab9465a309 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/config/calibration.yaml @@ -0,0 +1,21 @@ +base_link2camera: + x: 2.0 + y: 0.0 + z: 1.35 + roll: 0.0 + pitch: 0.0 + yaw: 0.0 +base_link2velodyne: + x: 1.2 + y: 0.0 + z: 2.0 + roll: 0.0 + pitch: 0.0 + yaw: 0.0 +base_link2imu: + x: 1.2 + y: 0.0 + z: 1.8 + roll: 0.0 + pitch: 0.0 + yaw: 0.0 diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/config/controller.yaml b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/config/controller.yaml new file mode 100644 index 00000000000..c9fdd0a4349 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/config/controller.yaml @@ -0,0 +1,20 @@ +joint_state_controller: + type: joint_state_controller/JointStateController + publish_rate: 50 + +steering_left_front_position_controller: + type: effort_controllers/JointPositionController + joint: steering_left_front_joint + pid: {p: 100000.0, i: 100.0, d: 10.0} +steering_right_front_position_controller: + type: effort_controllers/JointPositionController + joint: steering_right_front_joint + pid: {p: 100000.0, i: 100.0, d: 10.0} +wheel_left_rear_velocity_controller: + type: velocity_controllers/JointVelocityController + joint: wheel_left_rear_joint + pid: {p: 10.0, i: 0.01, d: 10.0} +wheel_right_rear_velocity_controller: + type: velocity_controllers/JointVelocityController + joint: wheel_right_rear_joint + pid: {p: 10.0, i: 0.01, d: 10.0} \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/config/vehicle_info.yaml b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/config/vehicle_info.yaml new file mode 100644 index 00000000000..bda2bc1c216 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/config/vehicle_info.yaml @@ -0,0 +1,10 @@ +wheel_radius: 0.341 +wheel_width: 0.225 +wheel_base: 2.950 +wheel_tread: 1.55 +vehicle_mass: 5000.0 +vehicle_length: 4.82 +vehicle_width: 1.81 +vehicle_height: 1.5 +minimum_turning_radius: 2.950 +maximum_steering_angle: 97.3 #deg \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/README.md b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/README.md new file mode 100644 index 00000000000..3eb8295fa1f --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/README.md @@ -0,0 +1 @@ +Please put dae files \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/_51225ex1diffuse.jpeg b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/_51225ex1diffuse.jpeg new file mode 100755 index 00000000000..6ef012e085a Binary files /dev/null and b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/_51225ex1diffuse.jpeg differ diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/_51225ex2diffuse.jpeg b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/_51225ex2diffuse.jpeg new file mode 100755 index 00000000000..5294f7c89d1 Binary files /dev/null and b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/_51225ex2diffuse.jpeg differ diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/body.dae b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/body.dae new file mode 100644 index 00000000000..d0ce9a756ac --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/body.dae @@ -0,0 +1,8448 @@ + + + + + Blender User + Blender 2.79.0 commit date:2018-03-22, commit time:14:10, hash:f4dc9f9d68b + + 2019-01-08T15:40:46 + 2019-01-08T15:40:46 + + Z_UP + + + + + + + 49.13434 + 1.777778 + 0.1 + 100 + + + + + + 0 + 0 + 0 + + + + + + + + 49.13434 + 1.777778 + 0.1 + 100 + + + + + + 0 + 0 + 0 + + + + + + + + + 1 1 1 + 1 + 0 + 0.00111109 + + + + + 0 + 0 + 8192 + 1 + 1 + 1 + 1 + 0 + 0 + 0 + 1 + 29.99998 + 75 + 0.15 + 1 + 0 + 1 + 2 + 1.000799 + 30.002 + 1 + 3 + 0.04999995 + 2880 + 3 + 1 + 0 + 0 + 2 + 1 + 1 + 1 + 0 + 1 + 0.1 + 0.1 + 1 + 0.000999987 + 1 + 0 + 0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 2 + 1 + 1 + 1 + 1 + 0 + + + + + + + 1 1 1 + 1 + 0 + 0.00111109 + + + + + 0 + 0 + 8192 + 1 + 1 + 1 + 1 + 0 + 0 + 0 + 1 + 29.99998 + 75 + 0.15 + 1 + 0 + 1 + 2 + 1.000799 + 30.002 + 1 + 3 + 0.04999995 + 2880 + 3 + 1 + 0 + 0 + 2 + 1 + 1 + 1 + 0 + 1 + 0.1 + 0.1 + 1 + 9.99987e-4 + 1 + 0 + 0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 2 + 1 + 1 + 1 + 1 + 0 + + + + + + + + + + 0 70.75601 -204.999 63.1562 70.75601 -204.999 0 70.7621 -204.788 63.1562 70.7621 -204.788 0 70.735 -204.716 63.1562 70.735 -204.716 0 70.71611 -204.696 63.1562 70.71611 -204.696 0 70.6957 -204.687 63.1562 70.6957 -204.687 31.5781 70.75601 -204.999 31.5781 70.6957 -204.687 0 70.6957 -204.687 63.1562 70.6957 -204.687 0 70.5333 -204.654 63.1562 70.5333 -204.654 31.5781 70.6957 -204.687 31.5781 70.5333 -204.654 0 70.5333 -204.654 63.1562 70.5333 -204.654 0 70.51091 -204.655 63.1562 70.51091 -204.655 0 70.4859 -204.666 63.1562 70.4859 -204.666 0 70.4332 -204.722 63.1562 70.4332 -204.722 0 70.3581 -204.92 63.1562 70.3581 -204.92 31.5781 70.3581 -204.92 31.5781 70.5333 -204.654 0 70.3581 -204.92 0 70.1745 -207.07 0 69.88111 -208.953 0 69.47811 -210.569 0 68.9653 -211.918 0 68.9591 -212.129 0 68.9863 -212.201 0 69.0051 -212.221 0 69.0256 -212.23 0 69.1068 -212.246 0 69.1879 -212.262 0 69.2103 -212.262 0 69.2353 -212.251 0 69.2881 -212.194 0 69.3632 -211.997 0 70.3051 -208.554 0 70.75601 -204.999 0 70.7621 -204.788 0 70.735 -204.716 0 70.71611 -204.696 0 70.6957 -204.687 0 70.5333 -204.654 0 70.51091 -204.655 0 70.4859 -204.666 0 70.4332 -204.722 63.1562 69.5328 -211.497 63.1562 69.14891 -211.497 59.9626 69.0541 -211.721 56.7671 68.9653 -211.918 54.632 68.9522 -212.031 53.5641 68.9532 -212.082 52.496 68.9591 -212.129 51.08 68.97631 -212.184 50.372 68.9915 -212.208 49.6645 69.0256 -212.23 49.0913 69.1068 -212.246 48.4522 69.1879 -212.262 48.4215 69.1929 -212.263 48.4137 69.1957 -212.263 48.4123 69.1969 -212.263 48.4121 69.1975 -212.263 48.4121 69.1981 -212.263 48.4124 69.1986 -212.263 48.4142 69.20001 -212.263 48.4175 69.2013 -212.263 48.4265 69.2037 -212.263 48.4382 69.20571 -212.263 48.4607 69.2087 -212.262 48.483 69.2111 -212.262 48.5213 69.2144 -212.261 48.595 69.2196 -212.259 48.741 69.2275 -212.255 49.0322 69.2397 -212.248 49.6141 69.2585 -212.232 50.7775 69.2881 -212.194 51.9105 69.3119 -212.153 53.0433 69.3323 -212.106 55.3086 69.3632 -211.997 59.2339 69.442 -211.769 0 70.3581 -204.92 63.1562 70.3581 -204.92 0 70.1745 -207.07 63.1562 70.1745 -207.07 0 69.88111 -208.953 63.1562 69.88111 -208.953 0 69.47811 -210.569 0 68.9653 -211.918 28.3835 68.9653 -211.918 56.7671 68.9653 -211.918 63.1562 69.14891 -211.497 31.5781 70.3581 -204.92 59.9626 69.0541 -211.721 0 68.9653 -211.918 56.7671 68.9653 -211.918 0 68.9591 -212.129 0 68.9863 -212.201 0 69.0051 -212.221 0 69.0256 -212.23 28.3835 68.9653 -211.918 24.8323 69.0256 -212.23 49.6645 69.0256 -212.23 50.372 68.9915 -212.208 51.08 68.97631 -212.184 52.496 68.9591 -212.129 53.5641 68.9532 -212.082 54.632 68.9522 -212.031 0 69.0256 -212.23 49.6645 69.0256 -212.23 0 69.1068 -212.246 0 69.1879 -212.262 24.8323 69.0256 -212.23 24.2261 69.1879 -212.262 48.4522 69.1879 -212.262 49.0913 69.1068 -212.246 0 69.1879 -212.262 0 69.2103 -212.262 0 69.2353 -212.251 0 69.2881 -212.194 0 69.3632 -211.997 55.3086 69.3632 -211.997 48.4522 69.1879 -212.262 24.2261 69.1879 -212.262 27.6543 69.3632 -211.997 53.0433 69.3323 -212.106 51.9105 69.3119 -212.153 50.7775 69.2881 -212.194 49.6141 69.2585 -212.232 49.0322 69.2397 -212.248 48.741 69.2275 -212.255 48.595 69.2196 -212.259 48.5213 69.2144 -212.261 48.483 69.2111 -212.262 48.4607 69.2087 -212.262 48.4382 69.20571 -212.263 48.4265 69.2037 -212.263 48.4175 69.2013 -212.263 48.4142 69.20001 -212.263 48.4124 69.1986 -212.263 48.4121 69.1981 -212.263 48.4121 69.1975 -212.263 48.4123 69.1969 -212.263 48.4137 69.1957 -212.263 48.4215 69.1929 -212.263 0 69.3632 -211.997 0 70.3051 -208.554 63.1562 70.3051 -208.554 0 70.75601 -204.999 63.1562 70.75601 -204.999 55.3086 69.3632 -211.997 27.6543 69.3632 -211.997 31.5781 70.75601 -204.999 63.1562 69.5328 -211.497 59.2339 69.442 -211.769 63.1562 70.3581 -204.92 63.1562 70.1745 -207.07 63.1562 69.88111 -208.953 63.1562 69.14891 -211.497 63.1562 70.75601 -204.999 63.1562 70.7621 -204.788 63.1562 70.735 -204.716 63.1562 70.71611 -204.696 63.1562 70.6957 -204.687 63.1562 70.5333 -204.654 63.1562 70.51091 -204.655 63.1562 70.4859 -204.666 63.1562 70.4332 -204.722 63.1562 69.5328 -211.497 63.1562 70.3051 -208.554 + + + + + + + + + + 0 0.9995841 -0.0288403 0 0.9863164 0.1648642 0 0.986337 0.1647405 0 0.8480601 0.5299002 0 0.8480018 0.5299935 0 0.403801 0.9148469 0 0.5767575 0.8169154 0 0.5766329 0.8170034 0 0.1990665 0.979986 0 0.1990665 0.979986 0 0.1990665 0.979986 0 -0.04422259 0.9990218 0 -0.04425305 0.9990204 0 -0.2273685 0.9738088 0 -0.2273396 0.9738156 0 -0.5770965 0.816676 0 -0.577027 0.8167251 0 -0.935007 0.3546294 0 -0.8479212 0.5301224 0 -0.9350273 0.3545761 0 -0.8478851 0.53018 -1 0 0 0.04735171 -0.01932072 -0.9986915 0.008070468 -0.04987305 -0.998723 -0.002148211 0 -0.9999977 0.02939343 -0.03829824 -0.998834 0.03049927 -0.04077315 -0.9987029 0.02905672 -0.03878015 -0.9988253 0.02457362 -0.003115713 -0.9996932 -0.002655148 0 -0.9999966 -0.003112912 0 -0.9999952 0.00250256 0 -0.9999969 0 0 -1 0.1104181 0 -0.9938852 -0.02951204 0 -0.9995644 -0.001398563 0 -0.9999991 0.03204447 -0.01408201 -0.9993873 0.02414608 -0.004263639 -0.9996994 0.03390616 0.001678466 -0.9994236 0.03894168 -0.002075254 -0.9992393 0.03586018 0.001586973 -0.9993556 0.03274685 -0.02056974 -0.9992521 0.0270096 -0.003112971 -0.9996303 0.04425299 -0.001037657 -0.9990199 0.04147565 -6.40904e-4 -0.9991394 0.06921684 4.88302e-4 -0.9976015 0.06009256 -0.0107733 -0.9981347 0.06915611 0 -0.9976059 0.0488004 0.002105832 -0.9988064 0.05270612 -0.001464903 -0.998609 0.0679056 0.005157768 -0.9976784 0.02969497 0.01101732 -0.9994984 0.03186142 0.003601193 -0.9994859 0.03386008 8.32282e-4 -0.9994263 0.06012248 0.0222789 -0.9979423 0.04394996 -0.00288546 -0.9990296 0.04766249 0.002287626 -0.998861 0.02548301 -0.003692746 -0.9996685 0 -0.9963737 0.08508604 0 -0.9928252 0.1195748 -7.0193e-4 -0.9800773 0.1986156 0 -0.9764642 0.2156797 4.88313e-4 -0.9311814 0.3645558 -7.32464e-4 -0.9543395 0.2987232 0 -0.9347394 0.3553341 0 -0.959452 0.2818722 1.52596e-4 -0.9216504 0.3880215 0 -0.9116633 0.4109382 0 -0.99359 0.1130439 0 -0.9933591 0.1150562 -1.52596e-4 -0.9995644 0.02951204 -1.22078e-4 -0.986265 -0.165171 0 -0.9933567 0.115077 -9.15559e-5 -0.9998205 -0.01895201 0 -0.9919078 -0.1269603 0 -0.9534562 -0.3015316 0 -0.8405016 -0.5418092 -3.05188e-5 -0.8482708 -0.5295627 0 -0.5769025 -0.8168131 6.10385e-5 -0.4929772 -0.8700423 0 -0.4022753 -0.9155188 0 -0.5421081 -0.8403087 0 -0.1934271 -0.9811146 0 -0.1934242 -0.9811152 0 -0.1933854 -0.9811229 0 -0.1934475 -0.9811106 0 -0.1934455 -0.9811111 0 -0.193467 -0.9811068 -4.13798e-5 -4.91385e-5 -1 -4.2364e-5 5.38376e-5 -1 0 -0.1771932 -0.9841762 -3.05185e-5 -9.15555e-5 -1 -1.47326e-5 0 -1 -3.82966e-5 2.45337e-5 -1 -6.05854e-5 -1.36317e-5 -1 0 0.2055152 -0.978654 0 0.01400828 -0.9999019 0 -0.1973367 -0.9803358 -4.70923e-5 1.55737e-4 -1 -2.44151e-4 0.3035098 -0.9528284 -3.05194e-5 2.13636e-4 -1 -3.07579e-5 1.06932e-4 -1 0 0.27821 -0.9605203 0 0.3569229 -0.9341339 0 0.4492389 -0.8934117 -1.22078e-4 0.8495379 -0.5275277 0 0.7872029 -0.6166942 -3.05195e-5 0.5801147 -0.8145349 0 0.9615724 -0.2745518 -1.83114e-4 0.9344611 -0.3560652 0 0.9621034 -0.2726849 0 0.4963625 -0.8681154 0 0.6464579 -0.7629497 -9.15568e-5 0.9177041 -0.3972648 0 0.8639593 -0.5035617 0 0.962096 -0.2727109 -4.88305e-4 0.9816754 -0.1905608 -0.00100708 0.9666692 -0.2560266 0 0.9645587 -0.2638688 0 0.9451246 -0.3267101 -6.1039e-5 0.9488815 -0.3156326 0 0.9807388 -0.1953237 0 0.9920518 -0.1258299 1 0 0 1 -3.59648e-5 0 1 1.78527e-4 0 1 -8.36628e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 0 0 1 2 1 2 3 2 3 2 1 4 4 3 5 3 2 6 4 3 7 5 4 8 1 0 9 10 0 10 3 2 11 2 1 12 3 2 13 10 0 14 11 5 15 6 6 16 8 5 17 7 7 18 6 6 19 11 5 20 6 6 21 7 7 22 5 4 23 6 6 24 5 4 25 4 3 26 11 5 27 9 5 28 7 7 29 16 8 30 12 8 31 14 8 32 16 8 33 14 8 34 17 8 35 13 9 36 16 9 37 17 9 38 13 10 39 17 10 40 15 10 41 29 11 42 18 12 43 20 13 44 21 14 45 20 13 46 22 15 47 21 14 48 22 15 49 23 16 50 19 12 51 29 11 52 21 14 53 20 13 54 21 14 55 29 11 56 28 17 57 24 18 58 26 19 59 25 20 60 24 18 61 28 17 62 24 18 63 25 20 64 23 16 65 24 18 66 23 16 67 22 15 68 28 17 69 27 19 70 25 20 71 36 21 72 35 21 73 34 21 74 36 21 75 34 21 76 33 21 77 38 21 78 37 21 79 33 21 80 33 21 81 37 21 82 36 21 83 39 21 84 38 21 85 33 21 86 54 21 87 53 21 88 30 21 89 31 21 90 53 21 91 52 21 92 31 21 93 52 21 94 51 21 95 31 21 96 30 21 97 53 21 98 33 21 99 40 21 100 39 21 101 41 21 102 33 21 103 42 21 104 42 21 105 33 21 106 43 21 107 33 21 108 44 21 109 43 21 110 33 21 111 32 21 112 44 21 113 45 21 114 44 21 115 32 21 116 50 21 117 49 21 118 31 21 119 48 21 120 31 21 121 49 21 122 51 21 123 50 21 124 31 21 125 31 21 126 48 21 127 46 21 128 46 21 129 48 21 130 47 21 131 46 21 132 32 21 133 31 21 134 46 21 135 45 21 136 32 21 137 41 21 138 40 21 139 33 21 140 77 22 141 66 22 142 76 22 143 76 23 144 66 23 145 75 23 146 78 24 147 66 24 148 77 24 149 66 25 150 80 25 151 81 25 152 80 26 153 66 26 154 79 26 155 79 27 156 66 27 157 78 27 158 81 28 159 65 28 160 66 28 161 74 29 162 70 30 163 71 31 164 70 32 165 74 32 166 69 32 167 72 33 168 73 34 169 71 31 170 69 32 171 74 32 172 68 32 173 68 32 174 74 32 175 67 32 176 67 35 177 74 35 178 75 35 179 67 36 180 75 36 181 66 36 182 73 34 183 74 29 184 71 31 185 65 37 186 81 37 187 82 37 188 84 38 189 85 39 190 62 40 191 83 41 192 84 38 193 65 42 194 86 43 195 61 44 196 85 39 197 56 45 198 88 46 199 55 47 200 59 48 201 86 43 202 87 49 203 87 49 204 88 46 205 57 50 206 88 46 207 56 45 208 57 50 209 64 51 210 65 42 211 84 38 212 63 52 213 64 51 214 84 38 215 84 53 216 62 53 217 63 53 218 87 49 219 58 54 220 59 48 221 61 44 222 62 40 223 85 39 224 86 55 225 60 55 226 61 55 227 86 56 228 59 56 229 60 56 230 87 49 231 57 50 232 58 54 233 82 57 234 83 41 235 65 42 236 100 58 237 89 58 238 91 59 239 92 59 240 91 59 241 93 60 242 92 59 243 93 60 244 94 61 245 90 58 246 100 58 247 92 59 248 91 59 249 92 59 250 100 58 251 97 62 252 95 63 253 96 64 254 99 65 255 95 63 256 97 62 257 99 65 258 94 61 259 93 60 260 99 65 261 93 60 262 95 63 263 101 66 264 99 65 265 97 62 266 101 66 267 97 62 268 98 67 269 115 68 270 108 69 271 102 70 272 104 71 273 115 68 274 102 70 275 115 72 276 103 72 277 108 72 278 114 73 279 115 68 280 104 71 281 114 73 282 104 71 283 113 74 284 113 74 285 104 71 286 112 75 287 111 76 288 105 77 289 106 78 290 109 79 291 106 78 292 107 80 293 111 76 294 112 75 295 105 77 296 111 76 297 109 79 298 110 81 299 111 76 300 106 78 301 109 79 302 104 71 303 105 77 304 112 75 305 120 82 306 116 82 307 118 82 308 120 83 309 123 83 310 117 83 311 123 84 312 120 84 313 118 84 314 118 85 315 121 85 316 123 85 317 121 86 318 122 86 319 123 86 320 119 87 321 121 87 322 118 87 323 151 88 324 131 88 325 150 88 326 131 89 327 146 89 328 147 89 329 152 90 330 131 32 331 151 91 332 131 92 333 148 92 334 149 92 335 147 93 336 148 93 337 131 93 338 131 94 339 149 94 340 150 94 341 125 95 342 142 96 343 131 32 344 131 32 345 152 90 346 130 97 347 131 98 348 144 98 349 145 98 350 131 32 351 142 96 352 143 99 353 143 99 354 144 100 355 131 32 356 145 101 357 146 101 358 131 101 359 125 95 360 131 32 361 124 32 362 141 102 363 125 95 364 140 103 365 125 95 366 139 104 367 140 103 368 142 96 369 125 95 370 141 102 371 127 105 372 136 106 373 126 107 374 133 108 375 127 105 376 128 109 377 139 104 378 125 95 379 126 107 380 128 109 381 132 110 382 133 108 383 126 107 384 138 111 385 139 104 386 126 107 387 136 106 388 137 112 389 137 112 390 138 111 391 126 107 392 134 113 393 135 114 394 127 105 395 127 105 396 133 108 397 134 113 398 132 115 399 129 115 400 133 115 401 135 114 402 136 106 403 127 105 404 155 116 405 161 117 406 159 118 407 158 119 408 159 118 409 162 120 410 161 117 411 162 120 412 159 118 413 154 121 414 159 118 415 153 118 416 160 122 417 154 121 418 156 122 419 157 122 420 155 116 421 160 122 422 154 121 423 160 122 424 155 116 425 159 118 426 154 121 427 155 116 428 175 123 429 164 123 430 174 123 431 163 123 432 164 123 433 175 123 434 173 123 435 174 123 436 164 123 437 173 123 438 164 123 439 172 123 440 172 123 441 164 123 442 171 123 443 168 123 444 165 123 445 167 123 446 176 124 447 167 124 448 165 124 449 167 123 450 176 123 451 177 123 452 176 123 453 165 123 454 166 123 455 171 123 456 164 123 457 170 123 458 169 123 459 170 123 460 164 123 461 165 125 462 168 125 463 169 125 464 169 126 465 164 126 466 165 126 467

+
+
+
+ + + + 0 73.4634 -204.999 63.1562 73.4634 -204.999 0 73.4696 -204.788 63.1562 73.4696 -204.788 0 73.4424 -204.716 63.1562 73.4424 -204.716 0 73.4236 -204.696 63.1562 73.4236 -204.696 0 73.4031 -204.687 63.1562 73.4031 -204.687 31.5781 73.4634 -204.999 31.5781 73.4031 -204.687 0 73.4031 -204.687 63.1562 73.4031 -204.687 0 73.2408 -204.654 63.1562 73.2408 -204.654 31.5781 73.4031 -204.687 31.5781 73.2408 -204.654 0 73.2408 -204.654 63.1562 73.2408 -204.654 0 73.2184 -204.655 63.1562 73.2184 -204.655 0 73.1934 -204.666 63.1562 73.1934 -204.666 0 73.1406 -204.722 63.1562 73.1406 -204.722 0 73.0655 -204.92 63.1562 73.0655 -204.92 31.5781 73.0655 -204.92 31.5781 73.2408 -204.654 0 73.0655 -204.92 0 72.8819 -207.07 0 72.5886 -208.953 0 72.1855 -210.569 0 71.6727 -211.918 0 71.66661 -212.129 0 71.69371 -212.201 0 71.7126 -212.221 0 71.733 -212.23 0 71.8142 -212.246 0 71.8954 -212.262 0 71.9178 -212.262 0 71.94281 -212.251 0 71.9955 -212.194 0 72.07061 -211.997 0 73.0125 -208.554 0 73.4634 -204.999 0 73.4696 -204.788 0 73.4424 -204.716 0 73.4236 -204.696 0 73.4031 -204.687 0 73.2408 -204.654 0 73.2184 -204.655 0 73.1934 -204.666 0 73.1406 -204.722 63.1562 72.2402 -211.497 63.1562 71.8564 -211.497 59.9626 71.7615 -211.721 56.7671 71.6727 -211.918 54.632 71.6596 -212.031 53.5641 71.6606 -212.082 52.496 71.66661 -212.129 51.08 71.6837 -212.184 50.372 71.6989 -212.208 49.6645 71.733 -212.23 49.0913 71.8142 -212.246 48.4522 71.8954 -212.262 48.4215 71.9003 -212.263 48.4137 71.9031 -212.263 48.4123 71.9043 -212.263 48.4121 71.9049 -212.263 48.4121 71.9055 -212.263 48.4124 71.90602 -212.263 48.4142 71.9074 -212.263 48.4175 71.9088 -212.263 48.4265 71.9111 -212.263 48.4382 71.9132 -212.263 48.4607 71.9162 -212.262 48.483 71.91851 -212.262 48.5213 71.9218 -212.261 48.595 71.927 -212.259 48.741 71.9349 -212.255 49.0322 71.9471 -212.248 49.6141 71.9659 -212.232 50.7775 71.9955 -212.194 51.9105 72.0193 -212.153 53.0433 72.03981 -212.106 55.3086 72.07061 -211.997 59.2339 72.1494 -211.769 0 73.0655 -204.92 63.1562 73.0655 -204.92 0 72.8819 -207.07 63.1562 72.8819 -207.07 0 72.5886 -208.953 63.1562 72.5886 -208.953 0 72.1855 -210.569 0 71.6727 -211.918 28.3835 71.6727 -211.918 56.7671 71.6727 -211.918 63.1562 71.8564 -211.497 31.5781 73.0655 -204.92 59.9626 71.7615 -211.721 0 71.6727 -211.918 56.7671 71.6727 -211.918 0 71.66661 -212.129 0 71.69371 -212.201 0 71.7126 -212.221 0 71.733 -212.23 28.3835 71.6727 -211.918 24.8323 71.733 -212.23 49.6645 71.733 -212.23 50.372 71.6989 -212.208 51.08 71.6837 -212.184 52.496 71.66661 -212.129 53.5641 71.6606 -212.082 54.632 71.6596 -212.031 0 71.733 -212.23 49.6645 71.733 -212.23 0 71.8142 -212.246 0 71.8954 -212.262 24.8323 71.733 -212.23 24.2261 71.8954 -212.262 48.4522 71.8954 -212.262 49.0913 71.8142 -212.246 0 71.8954 -212.262 0 71.9178 -212.262 0 71.94281 -212.251 0 71.9955 -212.194 0 72.07061 -211.997 55.3086 72.07061 -211.997 48.4522 71.8954 -212.262 24.2261 71.8954 -212.262 27.6543 72.07061 -211.997 53.0433 72.03981 -212.106 51.9105 72.0193 -212.153 50.7775 71.9955 -212.194 49.6141 71.9659 -212.232 49.0322 71.9471 -212.248 48.741 71.9349 -212.255 48.595 71.927 -212.259 48.5213 71.9218 -212.261 48.483 71.91851 -212.262 48.4607 71.9162 -212.262 48.4382 71.9132 -212.263 48.4265 71.9111 -212.263 48.4175 71.9088 -212.263 48.4142 71.9074 -212.263 48.4124 71.90602 -212.263 48.4121 71.9055 -212.263 48.4121 71.9049 -212.263 48.4123 71.9043 -212.263 48.4137 71.9031 -212.263 48.4215 71.9003 -212.263 0 72.07061 -211.997 0 73.0125 -208.554 63.1562 73.0125 -208.554 0 73.4634 -204.999 63.1562 73.4634 -204.999 55.3086 72.07061 -211.997 27.6543 72.07061 -211.997 31.5781 73.4634 -204.999 63.1562 72.2402 -211.497 59.2339 72.1494 -211.769 63.1562 73.0655 -204.92 63.1562 72.8819 -207.07 63.1562 72.5886 -208.953 63.1562 71.8564 -211.497 63.1562 73.4634 -204.999 63.1562 73.4696 -204.788 63.1562 73.4424 -204.716 63.1562 73.4236 -204.696 63.1562 73.4031 -204.687 63.1562 73.2408 -204.654 63.1562 73.2184 -204.655 63.1562 73.1934 -204.666 63.1562 73.1406 -204.722 63.1562 72.2402 -211.497 63.1562 73.0125 -208.554 + + + + + + + + + + 0 0.9995689 -0.02935957 0 0.9995707 -0.0292986 0 0.98626 0.1652007 0 0.848401 0.5293542 0 0.8485311 0.5291455 0 0.4017872 0.9157331 0 0.5770821 0.8166861 0 0.4022753 0.9155188 0 0.5772762 0.816549 0 0.1991758 0.9799638 0 0.199194 0.9799602 0 0.1991757 0.9799638 0 0.199194 0.9799602 0 -0.04422259 0.9990218 0 -0.04425305 0.9990204 0 -0.227491 0.9737802 0 -0.227246 0.9738374 0 -0.576833 0.8168622 0 -0.5766329 0.8170034 0 -0.935007 0.3546294 0 -0.8476604 0.5305393 0 -0.9349829 0.3546929 0 -0.8476518 0.5305531 -1 0 0 0.04735171 -0.01932072 -0.9986915 0.00802195 -0.04957342 -0.9987383 0 0 -1 0.0294736 -0.03840261 -0.9988276 0.03004533 -0.04096966 -0.9987086 0.02796536 -0.03894633 -0.99885 0.024589 -0.00311762 -0.9996928 0.002258419 0 -0.9999975 0.006073236 0 -0.9999817 0.01471012 0 -0.9998919 0.004333615 0 -0.9999907 6.9541e-4 0 -0.9999998 0.03075158 -0.01410144 -0.9994277 0.02415072 -0.004264473 -0.9996993 0.03390616 0.001678466 -0.9994236 0.03894168 -0.002075254 -0.9992393 0.03586018 0.001586973 -0.9993556 0.03271633 -0.0205698 -0.999253 0.02694857 -0.003112971 -0.999632 0.04425299 -0.001037657 -0.9990199 0.04147565 -6.40904e-4 -0.9991394 0.06921684 4.88302e-4 -0.9976015 0.06009256 -0.0107733 -0.9981347 0.06918644 0 -0.9976038 0.0488004 0.002105832 -0.9988064 0.05270612 -0.001464903 -0.998609 0.0679056 0.005157768 -0.9976784 0.02969497 0.01101732 -0.9994984 0.03186142 0.003601193 -0.9994859 0.03386008 8.32282e-4 -0.9994263 0.06012248 0.02230936 -0.9979417 0.04392379 -0.002884984 -0.9990307 0.04768759 0.00228703 -0.9988598 0.02545255 -0.003692746 -0.9996692 0 -0.9963763 0.08505576 0 -0.9963737 0.08508604 0 -0.9928289 0.1195448 -7.0193e-4 -0.9800773 0.1986156 0 -0.9764707 0.2156506 4.88307e-4 -0.9311711 0.3645823 -7.32457e-4 -0.9543309 0.298751 0 -0.9347394 0.3553341 0 -0.9594414 0.2819086 1.52594e-4 -0.9214854 0.3884131 0 -0.9116467 0.410975 0 -0.99359 0.1130439 0 -0.993366 0.1149959 -1.52593e-4 -0.9995788 0.02902323 -1.22078e-4 -0.9863312 -0.1647751 0 -0.9933567 0.115077 -9.15583e-5 -0.9998163 -0.01916617 0 -0.9916638 -0.1288525 0 -0.9539583 -0.2999393 0 -0.8403456 -0.5420511 -3.0519e-5 -0.8480018 -0.5299935 0 -0.5766185 -0.8170135 6.10388e-5 -0.49356 -0.8697118 0 -0.4037386 -0.9148744 0 -0.5422361 -0.8402263 0 -0.193382 -0.9811236 0 -0.193377 -0.9811246 0 -0.1934196 -0.9811161 0 -0.1932421 -0.9811511 0 -0.1932179 -0.9811559 0 -0.1932128 -0.9811569 -4.1032e-5 -4.87255e-5 -1 -3.96753e-5 5.50045e-5 -1 0 -0.1807624 -0.9835268 -3.05194e-5 -9.15583e-5 -1 -6.10352e-5 0 -1 -3.75601e-5 2.40619e-5 -1 -4.48751e-5 -1.37685e-5 -1 0 0.2054567 -0.9786662 0 0.01397776 -0.9999024 0 -0.2012723 -0.9795354 -3.96388e-5 1.62974e-4 -1 -2.44151e-4 0.3028383 -0.953042 -3.05194e-5 2.13636e-4 -1 -4.21538e-5 9.77002e-5 -1 0 0.2785441 -0.9604235 0 0.3571031 -0.9340651 0 0.4497023 -0.8931787 -1.22078e-4 0.8497835 -0.5271319 0 0.7870972 -0.6168291 -3.05189e-5 0.5804383 -0.8143043 0 0.9618159 -0.2736971 -1.83114e-4 0.9344611 -0.3560652 0 0.9623272 -0.2718943 0 0.4972757 -0.8675926 0 0.646276 -0.7631037 -9.15573e-5 0.916855 -0.3992204 0 0.8638697 -0.5037155 0 0.9623462 -0.2718271 -4.88305e-4 0.9816754 -0.1905608 -0.00100708 0.9666692 -0.2560266 0 0.9645587 -0.2638688 0 0.9451467 -0.3266462 -6.1039e-5 0.9488815 -0.3156326 0 0.9807388 -0.1953237 0 0.9920557 -0.1258 0 0.9920518 -0.1258299 1 0 0 1 -3.59932e-5 0 1 1.78092e-4 0 1 -8.36138e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 0 1 1 2 2 2 3 2 3 2 2 4 4 3 5 3 2 6 4 3 7 5 4 8 1 1 9 10 0 10 3 2 11 2 2 12 3 2 13 10 0 14 11 5 15 6 6 16 8 7 17 7 8 18 6 6 19 11 5 20 6 6 21 7 8 22 5 4 23 6 6 24 5 4 25 4 3 26 11 5 27 9 7 28 7 8 29 16 9 30 12 9 31 14 9 32 16 10 33 14 10 34 17 10 35 13 11 36 16 11 37 17 11 38 13 12 39 17 12 40 15 12 41 29 13 42 18 14 43 20 15 44 21 16 45 20 15 46 22 17 47 21 16 48 22 17 49 23 18 50 19 14 51 29 13 52 21 16 53 20 15 54 21 16 55 29 13 56 28 19 57 24 20 58 26 21 59 25 22 60 24 20 61 28 19 62 24 20 63 25 22 64 23 18 65 24 20 66 23 18 67 22 17 68 28 19 69 27 21 70 25 22 71 36 23 72 35 23 73 34 23 74 36 23 75 34 23 76 33 23 77 38 23 78 37 23 79 33 23 80 33 23 81 37 23 82 36 23 83 39 23 84 38 23 85 33 23 86 54 23 87 53 23 88 30 23 89 31 23 90 53 23 91 52 23 92 31 23 93 52 23 94 51 23 95 31 23 96 30 23 97 53 23 98 33 23 99 40 23 100 39 23 101 41 23 102 33 23 103 42 23 104 42 23 105 33 23 106 43 23 107 33 23 108 44 23 109 43 23 110 33 23 111 32 23 112 44 23 113 45 23 114 44 23 115 32 23 116 50 23 117 49 23 118 31 23 119 48 23 120 31 23 121 49 23 122 51 23 123 50 23 124 31 23 125 31 23 126 48 23 127 46 23 128 46 23 129 48 23 130 47 23 131 46 23 132 32 23 133 31 23 134 46 23 135 45 23 136 32 23 137 41 23 138 40 23 139 33 23 140 77 24 141 66 24 142 76 24 143 76 25 144 66 25 145 75 25 146 78 26 147 66 26 148 77 26 149 66 27 150 80 27 151 81 27 152 80 28 153 66 28 154 79 28 155 79 29 156 66 29 157 78 29 158 81 30 159 65 30 160 66 30 161 74 31 162 70 32 163 71 33 164 70 26 165 74 26 166 69 26 167 72 26 168 73 26 169 71 33 170 69 26 171 74 26 172 68 26 173 68 34 174 74 34 175 67 34 176 67 35 177 74 35 178 75 35 179 67 36 180 75 36 181 66 36 182 73 26 183 74 31 184 71 33 185 65 37 186 81 37 187 82 37 188 84 38 189 85 39 190 62 40 191 83 41 192 84 38 193 65 42 194 86 43 195 61 44 196 85 39 197 56 45 198 88 46 199 55 47 200 59 48 201 86 43 202 87 49 203 87 49 204 88 46 205 57 50 206 88 46 207 56 45 208 57 50 209 64 51 210 65 42 211 84 38 212 63 52 213 64 51 214 84 38 215 84 53 216 62 53 217 63 53 218 87 49 219 58 54 220 59 48 221 61 44 222 62 40 223 85 39 224 86 55 225 60 55 226 61 55 227 86 56 228 59 56 229 60 56 230 87 49 231 57 50 232 58 54 233 82 57 234 83 41 235 65 42 236 100 58 237 89 59 238 91 60 239 92 60 240 91 60 241 93 61 242 92 60 243 93 61 244 94 62 245 90 59 246 100 58 247 92 60 248 91 60 249 92 60 250 100 58 251 97 63 252 95 64 253 96 65 254 99 66 255 95 64 256 97 63 257 99 66 258 94 62 259 93 61 260 99 66 261 93 61 262 95 64 263 101 67 264 99 66 265 97 63 266 101 67 267 97 63 268 98 68 269 115 69 270 108 70 271 102 71 272 104 72 273 115 69 274 102 71 275 115 73 276 103 73 277 108 73 278 114 74 279 115 69 280 104 72 281 114 74 282 104 72 283 113 75 284 113 75 285 104 72 286 112 76 287 111 77 288 105 78 289 106 79 290 109 80 291 106 79 292 107 81 293 111 77 294 112 76 295 105 78 296 111 77 297 109 80 298 110 82 299 111 77 300 106 79 301 109 80 302 104 72 303 105 78 304 112 76 305 120 83 306 116 83 307 118 83 308 120 84 309 123 84 310 117 84 311 123 85 312 120 85 313 118 85 314 118 86 315 121 86 316 123 86 317 121 87 318 122 87 319 123 87 320 119 88 321 121 88 322 118 88 323 151 89 324 131 89 325 150 89 326 131 90 327 146 90 328 147 90 329 152 91 330 131 26 331 151 92 332 131 93 333 148 93 334 149 93 335 147 94 336 148 94 337 131 94 338 131 95 339 149 95 340 150 95 341 125 96 342 142 97 343 131 26 344 131 26 345 152 91 346 130 98 347 131 99 348 144 99 349 145 99 350 131 26 351 142 97 352 143 100 353 143 100 354 144 101 355 131 26 356 145 102 357 146 102 358 131 102 359 125 96 360 131 26 361 124 26 362 141 103 363 125 96 364 140 104 365 125 96 366 139 105 367 140 104 368 142 97 369 125 96 370 141 103 371 127 106 372 136 107 373 126 108 374 133 109 375 127 106 376 128 110 377 139 105 378 125 96 379 126 108 380 128 110 381 132 111 382 133 109 383 126 108 384 138 112 385 139 105 386 126 108 387 136 107 388 137 113 389 137 113 390 138 112 391 126 108 392 134 114 393 135 115 394 127 106 395 127 106 396 133 109 397 134 114 398 132 116 399 129 116 400 133 116 401 135 115 402 136 107 403 127 106 404 155 117 405 161 118 406 159 119 407 158 120 408 159 119 409 162 121 410 161 118 411 162 121 412 159 119 413 154 122 414 159 119 415 153 119 416 160 123 417 154 122 418 156 124 419 157 124 420 155 117 421 160 123 422 154 122 423 160 123 424 155 117 425 159 119 426 154 122 427 155 117 428 175 125 429 164 125 430 174 125 431 163 125 432 164 125 433 175 125 434 173 125 435 174 125 436 164 125 437 173 125 438 164 125 439 172 125 440 172 125 441 164 125 442 171 125 443 168 125 444 165 125 445 167 125 446 176 126 447 167 126 448 165 126 449 167 125 450 176 125 451 177 125 452 176 125 453 165 125 454 166 125 455 171 125 456 164 125 457 170 125 458 169 125 459 170 125 460 164 125 461 165 127 462 168 127 463 169 127 464 169 128 465 164 128 466 165 128 467

+
+
+
+ + + + 0 76.1709 -204.999 63.1562 76.1709 -204.999 0 76.177 -204.788 63.1562 76.177 -204.788 0 76.14981 -204.716 63.1562 76.14981 -204.716 0 76.13101 -204.696 63.1562 76.13101 -204.696 0 76.1105 -204.687 63.1562 76.1105 -204.687 31.5781 76.1709 -204.999 31.5781 76.1105 -204.687 0 76.1105 -204.687 63.1562 76.1105 -204.687 0 75.9482 -204.654 63.1562 75.9482 -204.654 31.5781 76.1105 -204.687 31.5781 75.9482 -204.654 0 75.9482 -204.654 63.1562 75.9482 -204.654 0 75.9258 -204.655 63.1562 75.9258 -204.655 0 75.90081 -204.666 63.1562 75.90081 -204.666 0 75.8481 -204.722 63.1562 75.8481 -204.722 0 75.77291 -204.92 63.1562 75.77291 -204.92 31.5781 75.77291 -204.92 31.5781 75.9482 -204.654 0 75.77291 -204.92 0 75.5893 -207.07 0 75.29602 -208.953 0 74.8929 -210.569 0 74.3801 -211.918 0 74.374 -212.129 0 74.4011 -212.201 0 74.42 -212.221 0 74.4405 -212.23 0 74.5216 -212.246 0 74.6028 -212.262 0 74.6252 -212.262 0 74.6502 -212.251 0 74.70291 -212.194 0 74.778 -211.997 0 75.7199 -208.554 0 76.1709 -204.999 0 76.177 -204.788 0 76.14981 -204.716 0 76.13101 -204.696 0 76.1105 -204.687 0 75.9482 -204.654 0 75.9258 -204.655 0 75.90081 -204.666 0 75.8481 -204.722 63.1562 74.9477 -211.497 63.1562 74.5638 -211.497 59.9626 74.469 -211.721 56.7671 74.3801 -211.918 54.632 74.36711 -212.031 53.5641 74.36801 -212.082 52.496 74.374 -212.129 51.08 74.3911 -212.184 50.372 74.40631 -212.208 49.6645 74.4405 -212.23 49.0913 74.5216 -212.246 48.4522 74.6028 -212.262 48.4215 74.60781 -212.263 48.4137 74.6105 -212.263 48.4123 74.6118 -212.263 48.4121 74.6124 -212.263 48.4121 74.6129 -212.263 48.4124 74.61341 -212.263 48.4142 74.6148 -212.263 48.4175 74.61621 -212.263 48.4265 74.6185 -212.263 48.4382 74.6206 -212.263 48.4607 74.6236 -212.262 48.483 74.6259 -212.262 48.5213 74.62931 -212.261 48.595 74.6344 -212.259 48.741 74.64231 -212.255 49.0322 74.65451 -212.248 49.6141 74.6733 -212.232 50.7775 74.70291 -212.194 51.9105 74.7268 -212.153 53.0433 74.7472 -212.106 55.3086 74.778 -211.997 59.2339 74.8568 -211.769 0 75.77291 -204.92 63.1562 75.77291 -204.92 0 75.5893 -207.07 63.1562 75.5893 -207.07 0 75.29602 -208.953 63.1562 75.29602 -208.953 0 74.8929 -210.569 0 74.3801 -211.918 28.3835 74.3801 -211.918 56.7671 74.3801 -211.918 63.1562 74.5638 -211.497 31.5781 75.77291 -204.92 59.9626 74.469 -211.721 0 74.3801 -211.918 56.7671 74.3801 -211.918 0 74.374 -212.129 0 74.4011 -212.201 0 74.42 -212.221 0 74.4405 -212.23 28.3835 74.3801 -211.918 24.8323 74.4405 -212.23 49.6645 74.4405 -212.23 50.372 74.40631 -212.208 51.08 74.3911 -212.184 52.496 74.374 -212.129 53.5641 74.36801 -212.082 54.632 74.36711 -212.031 0 74.4405 -212.23 49.6645 74.4405 -212.23 0 74.5216 -212.246 0 74.6028 -212.262 24.8323 74.4405 -212.23 24.2261 74.6028 -212.262 48.4522 74.6028 -212.262 49.0913 74.5216 -212.246 0 74.6028 -212.262 0 74.6252 -212.262 0 74.6502 -212.251 0 74.70291 -212.194 0 74.778 -211.997 55.3086 74.778 -211.997 48.4522 74.6028 -212.262 24.2261 74.6028 -212.262 27.6543 74.778 -211.997 53.0433 74.7472 -212.106 51.9105 74.7268 -212.153 50.7775 74.70291 -212.194 49.6141 74.6733 -212.232 49.0322 74.65451 -212.248 48.741 74.64231 -212.255 48.595 74.6344 -212.259 48.5213 74.62931 -212.261 48.483 74.6259 -212.262 48.4607 74.6236 -212.262 48.4382 74.6206 -212.263 48.4265 74.6185 -212.263 48.4175 74.61621 -212.263 48.4142 74.6148 -212.263 48.4124 74.61341 -212.263 48.4121 74.6129 -212.263 48.4121 74.6124 -212.263 48.4123 74.6118 -212.263 48.4137 74.6105 -212.263 48.4215 74.60781 -212.263 0 74.778 -211.997 0 75.7199 -208.554 63.1562 75.7199 -208.554 0 76.1709 -204.999 63.1562 76.1709 -204.999 55.3086 74.778 -211.997 27.6543 74.778 -211.997 31.5781 76.1709 -204.999 63.1562 74.9477 -211.497 59.2339 74.8568 -211.769 63.1562 75.77291 -204.92 63.1562 75.5893 -207.07 63.1562 75.29602 -208.953 63.1562 74.5638 -211.497 63.1562 76.1709 -204.999 63.1562 76.177 -204.788 63.1562 76.14981 -204.716 63.1562 76.13101 -204.696 63.1562 76.1105 -204.687 63.1562 75.9482 -204.654 63.1562 75.9258 -204.655 63.1562 75.90081 -204.666 63.1562 75.8481 -204.722 63.1562 74.9477 -211.497 63.1562 75.7199 -208.554 + + + + + + + + + + 0 0.9995841 -0.0288403 0 0.9995815 -0.02893179 0 0.9862451 0.1652897 0 0.9862145 0.1654728 0 0.8486697 0.5289232 0 0.848365 0.5294118 0 0.4020256 0.9156284 0 0.5770821 0.8166861 0 0.401512 0.9158539 0 0.5767779 0.8169011 0 0.199194 0.9799602 0 0.199194 0.9799602 0 0.199194 0.9799602 0 -0.04425305 0.9990204 0 -0.04422259 0.9990218 0 -0.2273685 0.9738088 0 -0.2274553 0.9737886 0 -0.577027 0.8167251 0 -0.577172 0.8166226 0 -0.9348562 0.3550269 0 -0.8477548 0.5303885 0 -0.8477908 0.5303308 -1 0 0 0.04732626 -0.01931029 -0.9986928 0.00802195 -0.04957342 -0.9987383 0 0 -1 0.02952188 -0.03846555 -0.9988238 0.03035426 -0.04057931 -0.9987152 0.02808469 -0.03911256 -0.9988401 0.02458512 -0.003117144 -0.9996929 0.03974127 0 -0.9992101 0.001404464 0 -0.9999991 0.03100013 -0.0142154 -0.9994183 -0.03569149 0 -0.999363 0.0241484 -0.004264056 -0.9996994 0.03393661 0.001678466 -0.9994227 0.03894168 -0.002075254 -0.9992393 0.03586018 0.001586973 -0.9993556 0.03274685 -0.02056974 -0.9992521 0.0270096 -0.003112971 -0.9996303 0.04425299 -0.001037657 -0.9990199 0.04144519 -6.40905e-4 -0.9991406 0.06921684 4.88302e-4 -0.9976015 0.06009256 -0.0107733 -0.9981347 0.06915611 0 -0.9976059 0.0488004 0.002105832 -0.9988064 0.05270612 -0.001464903 -0.998609 0.0679056 0.005157768 -0.9976784 0.02969497 0.01101732 -0.9994984 0.03183096 0.003601193 -0.9994868 0.03387206 8.32252e-4 -0.9994258 0.06012248 0.0222789 -0.9979423 0.04391717 -0.002885103 -0.9990311 0.04769426 0.002286791 -0.9988594 0.02548301 -0.003692746 -0.9996685 0 -0.9963737 0.08508604 0 -0.9928289 0.1195448 -7.0193e-4 -0.9800773 0.1986156 0 -0.9764707 0.2156506 4.88307e-4 -0.9311711 0.3645823 -7.32457e-4 -0.9543309 0.298751 0 -0.9347394 0.3553341 0 -0.9594438 0.2819003 1.52597e-4 -0.9216239 0.3880842 0 -0.9114837 0.4113365 0 -0.9936872 0.1121865 0 -0.9934437 0.1143229 -1.52594e-4 -0.9995815 0.02893179 -1.22077e-4 -0.9863213 -0.1648344 0 -0.9934599 0.1141816 -9.1556e-5 -0.9998524 -0.01718199 0 -0.9916877 -0.1286685 0 -0.9539092 -0.3000956 0 -0.8404788 -0.5418447 -3.0519e-5 -0.8480018 -0.5299935 0 -0.5759544 -0.8174818 6.10393e-5 -0.4920382 -0.8705737 0 -0.4022753 -0.9155188 0 -0.5412326 -0.8408729 0 -0.1936302 -0.9810746 0 -0.1936203 -0.9810766 0 -0.1936252 -0.9810756 0 -0.1932535 -0.9811488 0 -0.1932042 -0.9811586 0 -0.1931897 -0.9811614 -3.72734e-5 -4.42621e-5 -1 -4.4408e-5 5.41777e-5 -1 0 -0.1778943 -0.9840496 -3.05185e-5 -9.15555e-5 -1 -5.7373e-5 0 -1 0 2.50244e-5 -1 -4.82039e-5 -1.41468e-5 -1 0 0.2054567 -0.9786662 0 0.01397776 -0.9999024 0 -0.1973954 -0.980324 -4.49138e-5 1.62679e-4 -1 -2.44151e-4 0.3028383 -0.953042 -3.05194e-5 2.13636e-4 -1 -4.21538e-5 9.77002e-5 -1 0 0.2709179 -0.9626024 0 0.3624124 -0.9320179 0 0.4494584 -0.8933013 -1.22078e-4 0.8497835 -0.5271319 0 0.7870972 -0.6168291 -3.05189e-5 0.5804383 -0.8143043 0 0.9618079 -0.2737253 -1.83117e-4 0.9344471 -0.3561019 0 0.9623454 -0.2718298 0 0.4972757 -0.8675926 0 0.646276 -0.7631037 -9.15582e-5 0.9176881 -0.3973017 0 0.863083 -0.5050623 0 0.9623283 -0.2718902 -4.88307e-4 0.981681 -0.1905314 -0.00100708 0.9666789 -0.2559906 0 0.9645587 -0.2638688 0 0.9451467 -0.3266462 -6.1039e-5 0.9487596 -0.3159989 0 0.9807388 -0.1953237 0 0.9920518 -0.1258299 1 0 0 1 -3.59686e-5 0 1 1.78092e-4 0 1 -8.36068e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 0 1 1 2 2 2 3 3 3 2 2 4 4 4 5 3 3 6 4 4 7 5 5 8 1 1 9 10 0 10 3 3 11 2 2 12 3 3 13 10 0 14 11 6 15 6 7 16 8 8 17 7 9 18 6 7 19 11 6 20 6 7 21 7 9 22 5 5 23 6 7 24 5 5 25 4 4 26 11 6 27 9 8 28 7 9 29 16 10 30 12 10 31 14 10 32 16 10 33 14 10 34 17 10 35 13 11 36 16 11 37 17 11 38 13 12 39 17 12 40 15 12 41 29 13 42 18 14 43 20 15 44 21 16 45 20 15 46 22 17 47 21 16 48 22 17 49 23 18 50 19 14 51 29 13 52 21 16 53 20 15 54 21 16 55 29 13 56 28 19 57 24 20 58 26 19 59 25 21 60 24 20 61 28 19 62 24 20 63 25 21 64 23 18 65 24 20 66 23 18 67 22 17 68 28 19 69 27 19 70 25 21 71 36 22 72 35 22 73 34 22 74 36 22 75 34 22 76 33 22 77 38 22 78 37 22 79 33 22 80 33 22 81 37 22 82 36 22 83 39 22 84 38 22 85 33 22 86 54 22 87 53 22 88 30 22 89 31 22 90 53 22 91 52 22 92 31 22 93 52 22 94 51 22 95 31 22 96 30 22 97 53 22 98 33 22 99 40 22 100 39 22 101 41 22 102 33 22 103 42 22 104 42 22 105 33 22 106 43 22 107 33 22 108 44 22 109 43 22 110 33 22 111 32 22 112 44 22 113 45 22 114 44 22 115 32 22 116 50 22 117 49 22 118 31 22 119 48 22 120 31 22 121 49 22 122 51 22 123 50 22 124 31 22 125 31 22 126 48 22 127 46 22 128 46 22 129 48 22 130 47 22 131 46 22 132 32 22 133 31 22 134 46 22 135 45 22 136 32 22 137 41 22 138 40 22 139 33 22 140 77 23 141 66 23 142 76 23 143 76 24 144 66 24 145 75 24 146 78 25 147 66 25 148 77 25 149 66 26 150 80 26 151 81 26 152 80 27 153 66 27 154 79 27 155 79 28 156 66 28 157 78 28 158 81 29 159 65 29 160 66 29 161 74 30 162 70 30 163 71 30 164 70 25 165 74 25 166 69 25 167 72 25 168 73 25 169 71 25 170 69 25 171 74 25 172 68 25 173 68 25 174 74 25 175 67 25 176 67 31 177 74 31 178 75 31 179 67 32 180 75 32 181 66 32 182 73 33 183 74 33 184 71 33 185 65 34 186 81 34 187 82 34 188 84 35 189 85 36 190 62 37 191 83 38 192 84 35 193 65 39 194 86 40 195 61 41 196 85 36 197 56 42 198 88 43 199 55 44 200 59 45 201 86 40 202 87 46 203 87 46 204 88 43 205 57 47 206 88 43 207 56 42 208 57 47 209 64 48 210 65 39 211 84 35 212 63 49 213 64 48 214 84 35 215 84 50 216 62 50 217 63 50 218 87 46 219 58 51 220 59 45 221 61 41 222 62 37 223 85 36 224 86 52 225 60 52 226 61 52 227 86 53 228 59 53 229 60 53 230 87 46 231 57 47 232 58 51 233 82 54 234 83 38 235 65 39 236 100 55 237 89 55 238 91 56 239 92 56 240 91 56 241 93 57 242 92 56 243 93 57 244 94 58 245 90 55 246 100 55 247 92 56 248 91 56 249 92 56 250 100 55 251 97 59 252 95 60 253 96 61 254 99 62 255 95 60 256 97 59 257 99 62 258 94 58 259 93 57 260 99 62 261 93 57 262 95 60 263 101 63 264 99 62 265 97 59 266 101 63 267 97 59 268 98 64 269 115 65 270 108 66 271 102 67 272 104 68 273 115 65 274 102 67 275 115 69 276 103 69 277 108 69 278 114 70 279 115 65 280 104 68 281 114 70 282 104 68 283 113 71 284 113 71 285 104 68 286 112 72 287 111 73 288 105 74 289 106 75 290 109 76 291 106 75 292 107 77 293 111 73 294 112 72 295 105 74 296 111 73 297 109 76 298 110 78 299 111 73 300 106 75 301 109 76 302 104 68 303 105 74 304 112 72 305 120 79 306 116 79 307 118 79 308 120 80 309 123 80 310 117 80 311 123 81 312 120 81 313 118 81 314 118 82 315 121 82 316 123 82 317 121 83 318 122 83 319 123 83 320 119 84 321 121 84 322 118 84 323 151 85 324 131 85 325 150 85 326 131 86 327 146 86 328 147 86 329 152 87 330 131 25 331 151 88 332 131 89 333 148 89 334 149 89 335 147 90 336 148 90 337 131 90 338 131 91 339 149 91 340 150 91 341 125 92 342 142 93 343 131 25 344 131 25 345 152 87 346 130 94 347 131 95 348 144 95 349 145 95 350 131 25 351 142 93 352 143 96 353 143 96 354 144 97 355 131 25 356 145 98 357 146 98 358 131 98 359 125 92 360 131 25 361 124 25 362 141 99 363 125 92 364 140 100 365 125 92 366 139 101 367 140 100 368 142 93 369 125 92 370 141 99 371 127 102 372 136 103 373 126 104 374 133 105 375 127 102 376 128 106 377 139 101 378 125 92 379 126 104 380 128 106 381 132 107 382 133 105 383 126 104 384 138 108 385 139 101 386 126 104 387 136 103 388 137 109 389 137 109 390 138 108 391 126 104 392 134 110 393 135 111 394 127 102 395 127 102 396 133 105 397 134 110 398 132 112 399 129 112 400 133 112 401 135 111 402 136 103 403 127 102 404 155 113 405 161 114 406 159 115 407 158 116 408 159 115 409 162 117 410 161 114 411 162 117 412 159 115 413 154 118 414 159 115 415 153 115 416 160 119 417 154 118 418 156 119 419 157 119 420 155 113 421 160 119 422 154 118 423 160 119 424 155 113 425 159 115 426 154 118 427 155 113 428 175 120 429 164 120 430 174 120 431 163 120 432 164 120 433 175 120 434 173 120 435 174 120 436 164 120 437 173 120 438 164 120 439 172 120 440 172 120 441 164 120 442 171 120 443 168 120 444 165 120 445 167 120 446 176 121 447 167 121 448 165 121 449 167 120 450 176 120 451 177 120 452 176 120 453 165 120 454 166 120 455 171 120 456 164 120 457 170 120 458 169 120 459 170 120 460 164 120 461 165 122 462 168 122 463 169 122 464 169 123 465 164 123 466 165 123 467

+
+
+
+ + + + 0 78.87831 -204.999 63.1562 78.87831 -204.999 0 78.8844 -204.788 63.1562 78.8844 -204.788 0 78.8573 -204.716 63.1562 78.8573 -204.716 0 78.8384 -204.696 63.1562 78.8384 -204.696 0 78.8179 -204.687 63.1562 78.8179 -204.687 31.5781 78.87831 -204.999 31.5781 78.8179 -204.687 0 78.8179 -204.687 63.1562 78.8179 -204.687 0 78.6556 -204.654 63.1562 78.6556 -204.654 31.5781 78.8179 -204.687 31.5781 78.6556 -204.654 0 78.6556 -204.654 63.1562 78.6556 -204.654 0 78.6332 -204.655 63.1562 78.6332 -204.655 0 78.6082 -204.666 63.1562 78.6082 -204.666 0 78.5555 -204.722 63.1562 78.5555 -204.722 0 78.4804 -204.92 63.1562 78.4804 -204.92 31.5781 78.4804 -204.92 31.5781 78.6556 -204.654 0 78.4804 -204.92 0 78.2968 -207.07 0 78.00341 -208.953 0 77.60031 -210.569 0 77.0875 -211.918 0 77.0814 -212.129 0 77.1086 -212.201 0 77.12741 -212.221 0 77.14791 -212.23 0 77.22911 -212.246 0 77.31021 -212.262 0 77.33261 -212.262 0 77.3576 -212.251 0 77.4103 -212.194 0 77.4855 -211.997 0 78.4273 -208.554 0 78.87831 -204.999 0 78.8844 -204.788 0 78.8573 -204.716 0 78.8384 -204.696 0 78.8179 -204.687 0 78.6556 -204.654 0 78.6332 -204.655 0 78.6082 -204.666 0 78.5555 -204.722 63.1562 77.6551 -211.497 63.1562 77.2712 -211.497 59.9626 77.1764 -211.721 56.7671 77.0875 -211.918 54.632 77.0745 -212.031 53.5641 77.0755 -212.082 52.496 77.0814 -212.129 51.08 77.0986 -212.184 50.372 77.1137 -212.208 49.6645 77.14791 -212.23 49.0913 77.22911 -212.246 48.4522 77.31021 -212.262 48.4215 77.3152 -212.263 48.4137 77.318 -212.263 48.4123 77.3192 -212.263 48.4121 77.3198 -212.263 48.4121 77.3203 -212.263 48.4124 77.3209 -212.263 48.4142 77.32231 -212.263 48.4175 77.3236 -212.263 48.4265 77.3259 -212.263 48.4382 77.32801 -212.263 48.4607 77.331 -212.262 48.483 77.3334 -212.262 48.5213 77.3367 -212.261 48.595 77.3418 -212.259 48.741 77.3498 -212.255 49.0322 77.3619 -212.248 49.6141 77.3808 -212.232 50.7775 77.4103 -212.194 51.9105 77.4342 -212.153 53.0433 77.4546 -212.106 55.3086 77.4855 -211.997 59.2339 77.5643 -211.769 0 78.4804 -204.92 63.1562 78.4804 -204.92 0 78.2968 -207.07 63.1562 78.2968 -207.07 0 78.00341 -208.953 63.1562 78.00341 -208.953 0 77.60031 -210.569 0 77.0875 -211.918 28.3835 77.0875 -211.918 56.7671 77.0875 -211.918 63.1562 77.2712 -211.497 31.5781 78.4804 -204.92 59.9626 77.1764 -211.721 0 77.0875 -211.918 56.7671 77.0875 -211.918 0 77.0814 -212.129 0 77.1086 -212.201 0 77.12741 -212.221 0 77.14791 -212.23 28.3835 77.0875 -211.918 24.8323 77.14791 -212.23 49.6645 77.14791 -212.23 50.372 77.1137 -212.208 51.08 77.0986 -212.184 52.496 77.0814 -212.129 53.5641 77.0755 -212.082 54.632 77.0745 -212.031 0 77.14791 -212.23 49.6645 77.14791 -212.23 0 77.22911 -212.246 0 77.31021 -212.262 24.8323 77.14791 -212.23 24.2261 77.31021 -212.262 48.4522 77.31021 -212.262 49.0913 77.22911 -212.246 0 77.31021 -212.262 0 77.33261 -212.262 0 77.3576 -212.251 0 77.4103 -212.194 0 77.4855 -211.997 55.3086 77.4855 -211.997 48.4522 77.31021 -212.262 24.2261 77.31021 -212.262 27.6543 77.4855 -211.997 53.0433 77.4546 -212.106 51.9105 77.4342 -212.153 50.7775 77.4103 -212.194 49.6141 77.3808 -212.232 49.0322 77.3619 -212.248 48.741 77.3498 -212.255 48.595 77.3418 -212.259 48.5213 77.3367 -212.261 48.483 77.3334 -212.262 48.4607 77.331 -212.262 48.4382 77.32801 -212.263 48.4265 77.3259 -212.263 48.4175 77.3236 -212.263 48.4142 77.32231 -212.263 48.4124 77.3209 -212.263 48.4121 77.3203 -212.263 48.4121 77.3198 -212.263 48.4123 77.3192 -212.263 48.4137 77.318 -212.263 48.4215 77.3152 -212.263 0 77.4855 -211.997 0 78.4273 -208.554 63.1562 78.4273 -208.554 0 78.87831 -204.999 63.1562 78.87831 -204.999 55.3086 77.4855 -211.997 27.6543 77.4855 -211.997 31.5781 78.87831 -204.999 63.1562 77.6551 -211.497 59.2339 77.5643 -211.769 63.1562 78.4804 -204.92 63.1562 78.2968 -207.07 63.1562 78.00341 -208.953 63.1562 77.2712 -211.497 63.1562 78.87831 -204.999 63.1562 78.8844 -204.788 63.1562 78.8573 -204.716 63.1562 78.8384 -204.696 63.1562 78.8179 -204.687 63.1562 78.6556 -204.654 63.1562 78.6332 -204.655 63.1562 78.6082 -204.666 63.1562 78.5555 -204.722 63.1562 77.6551 -211.497 63.1562 78.4273 -208.554 + + + + + + + + + + 0 0.9995815 -0.02893179 0 0.9995841 -0.0288403 0 0.9863164 0.1648642 0 0.986337 0.1647405 0 0.8480601 0.5299002 0 0.8480018 0.5299935 0 0.4022753 0.9155188 0 0.5759544 0.8174818 0 0.4020256 0.9156284 0 0.5758298 0.8175696 0 0.199194 0.9799602 0 0.1991758 0.9799638 0 0.199194 0.9799602 0 0.1991758 0.9799638 0 -0.04425305 0.9990204 0 -0.04422259 0.9990218 0 -0.227246 0.9738374 0 -0.2274553 0.9737886 0 -0.5769923 0.8167497 0 -0.5771169 0.8166617 0 -0.935007 0.3546294 0 -0.8479212 0.5301224 0 -0.9350273 0.3545761 0 -0.8478851 0.53018 -1 0 0 0.04735171 -0.01932072 -0.9986915 0.01002728 -0.04957246 -0.9987202 0 0 -1 0.02951425 -0.03863447 -0.9988175 0.02977728 -0.04060417 -0.9987315 0.02909189 -0.03882706 -0.9988224 0.02457362 -0.003115713 -0.9996932 -9.76622e-4 0 -0.9999995 0.001861631 0 -0.9999983 0.001953184 0 -0.9999981 -0.02920621 0 -0.9995735 0.001404464 0 -0.9999991 0.02963358 -0.0142064 -0.9994599 0.02415966 -0.004268169 -0.999699 0.03393661 0.001678466 -0.9994227 0.03891122 -0.002075254 -0.9992405 0.03586018 0.001617491 -0.9993556 0.03271633 -0.0205698 -0.999253 0.02697908 -0.003112971 -0.9996312 0.04425299 -0.001037657 -0.9990199 0.04147565 -6.40904e-4 -0.9991394 0.06921684 4.88302e-4 -0.9976015 0.06009256 -0.0107733 -0.9981347 0.06915611 0 -0.9976059 0.0488004 0.002105832 -0.9988064 0.05270612 -0.001464903 -0.998609 0.06793594 0.005157709 -0.9976764 0.02969497 0.01101732 -0.9994984 0.03186142 0.003601193 -0.9994859 0.03389805 8.32457e-4 -0.999425 0.06012248 0.0222789 -0.9979423 0.04394829 -0.002885341 -0.9990297 0.0476607 0.002287566 -0.998861 0.02545255 -0.003692746 -0.9996692 0 -0.9963737 0.08508604 0 -0.9928252 0.1195748 -7.01947e-4 -0.9800701 0.1986508 0 -0.9764642 0.2156797 4.88307e-4 -0.9311711 0.3645823 -7.32457e-4 -0.9543309 0.298751 0 -0.9347394 0.3553341 0 -0.9594438 0.2819003 1.52597e-4 -0.9216239 0.3880842 0 -0.9114837 0.4113365 0 -0.9936733 0.1123105 0 -0.9934611 0.1141723 -1.52593e-4 -0.9995779 0.02905374 -1.22077e-4 -0.9862294 -0.1653838 0 -0.9934428 0.1143308 -9.15559e-5 -0.9998205 -0.01895201 0 -0.9919078 -0.1269603 0 -0.9534678 -0.301495 0 -0.8421628 -0.5392234 -3.05189e-5 -0.8482125 -0.529656 0 -0.5766533 -0.8169891 6.10376e-5 -0.4922986 -0.8704264 0 -0.4019376 -0.9156671 0 -0.5410121 -0.8410148 0 -0.193382 -0.9811236 0 -0.1933658 -0.9811267 0 -0.193431 -0.9811139 0 -0.1934475 -0.9811106 0 -0.1934606 -0.9811081 0 -0.1934439 -0.9811114 -4.13798e-5 -4.91385e-5 -1 -4.93547e-5 5.37614e-5 -1 0 -0.177623 -0.9840987 -3.05185e-5 -9.15555e-5 -1 -4.11053e-5 0 -1 -3.20184e-5 2.05118e-5 -1 -4.42837e-5 -1.3587e-5 -1 0 0.2055152 -0.978654 0 0.01400828 -0.9999019 0 -0.1978237 -0.9802377 -3.64524e-5 1.63098e-4 -1 -2.44154e-4 0.3036659 -0.9527786 -3.05194e-5 2.13636e-4 -1 -4.54215e-5 1.05274e-4 -1 0 0.2774207 -0.9607486 0 0.3634475 -0.9316147 0 0.4455525 -0.8952558 -1.22077e-4 0.8496538 -0.5273408 0 0.788222 -0.6153911 -3.05193e-5 0.5805076 -0.8142549 0 0.9615827 -0.2745156 -1.83115e-4 0.9342855 -0.3565258 0 0.9621377 -0.2725639 0 0.4995992 -0.8662567 0 0.6441922 -0.7648637 -9.15568e-5 0.9177041 -0.3972648 0 0.8631862 -0.5048859 0 0.9621012 -0.2726929 -4.88307e-4 0.981681 -0.1905314 -0.00100708 0.9666789 -0.2559906 0 0.9645664 -0.2638404 0 0.9451246 -0.3267101 -6.10384e-5 0.9489029 -0.3155685 0 0.9807388 -0.1953237 0 0.9920518 -0.1258299 1 0 0 1 -3.59648e-5 0 1 1.78527e-4 0 1 -8.36628e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 0 1 1 2 2 2 3 3 3 2 2 4 4 4 5 3 3 6 4 4 7 5 5 8 1 1 9 10 0 10 3 3 11 2 2 12 3 3 13 10 0 14 11 6 15 6 7 16 8 8 17 7 9 18 6 7 19 11 6 20 6 7 21 7 9 22 5 5 23 6 7 24 5 5 25 4 4 26 11 6 27 9 8 28 7 9 29 16 10 30 12 10 31 14 10 32 16 11 33 14 11 34 17 11 35 13 12 36 16 12 37 17 12 38 13 13 39 17 13 40 15 13 41 29 14 42 18 15 43 20 16 44 21 17 45 20 16 46 22 18 47 21 17 48 22 18 49 23 19 50 19 15 51 29 14 52 21 17 53 20 16 54 21 17 55 29 14 56 28 20 57 24 21 58 26 22 59 25 23 60 24 21 61 28 20 62 24 21 63 25 23 64 23 19 65 24 21 66 23 19 67 22 18 68 28 20 69 27 22 70 25 23 71 36 24 72 35 24 73 34 24 74 36 24 75 34 24 76 33 24 77 38 24 78 37 24 79 33 24 80 33 24 81 37 24 82 36 24 83 39 24 84 38 24 85 33 24 86 54 24 87 53 24 88 30 24 89 31 24 90 53 24 91 52 24 92 31 24 93 52 24 94 51 24 95 31 24 96 30 24 97 53 24 98 33 24 99 40 24 100 39 24 101 41 24 102 33 24 103 42 24 104 42 24 105 33 24 106 43 24 107 33 24 108 44 24 109 43 24 110 33 24 111 32 24 112 44 24 113 45 24 114 44 24 115 32 24 116 50 24 117 49 24 118 31 24 119 48 24 120 31 24 121 49 24 122 51 24 123 50 24 124 31 24 125 31 24 126 48 24 127 46 24 128 46 24 129 48 24 130 47 24 131 46 24 132 32 24 133 31 24 134 46 24 135 45 24 136 32 24 137 41 24 138 40 24 139 33 24 140 77 25 141 66 25 142 76 25 143 76 26 144 66 26 145 75 26 146 78 27 147 66 27 148 77 27 149 66 28 150 80 28 151 81 28 152 80 29 153 66 29 154 79 29 155 79 30 156 66 30 157 78 30 158 81 31 159 65 31 160 66 31 161 74 32 162 70 33 163 71 34 164 70 27 165 74 27 166 69 27 167 72 27 168 73 35 169 71 34 170 69 27 171 74 32 172 68 27 173 68 27 174 74 27 175 67 27 176 67 36 177 74 36 178 75 36 179 67 37 180 75 37 181 66 37 182 73 35 183 74 32 184 71 34 185 65 38 186 81 38 187 82 38 188 84 39 189 85 40 190 62 41 191 83 42 192 84 39 193 65 43 194 86 44 195 61 45 196 85 40 197 56 46 198 88 47 199 55 48 200 59 49 201 86 44 202 87 50 203 87 50 204 88 47 205 57 51 206 88 47 207 56 46 208 57 51 209 64 52 210 65 43 211 84 39 212 63 53 213 64 52 214 84 39 215 84 54 216 62 54 217 63 54 218 87 50 219 58 55 220 59 49 221 61 45 222 62 41 223 85 40 224 86 56 225 60 56 226 61 56 227 86 57 228 59 57 229 60 57 230 87 50 231 57 51 232 58 55 233 82 58 234 83 42 235 65 43 236 100 59 237 89 59 238 91 60 239 92 60 240 91 60 241 93 61 242 92 60 243 93 61 244 94 62 245 90 59 246 100 59 247 92 60 248 91 60 249 92 60 250 100 59 251 97 63 252 95 64 253 96 65 254 99 66 255 95 64 256 97 63 257 99 66 258 94 62 259 93 61 260 99 66 261 93 61 262 95 64 263 101 67 264 99 66 265 97 63 266 101 67 267 97 63 268 98 68 269 115 69 270 108 70 271 102 71 272 104 72 273 115 69 274 102 71 275 115 73 276 103 73 277 108 73 278 114 74 279 115 69 280 104 72 281 114 74 282 104 72 283 113 75 284 113 75 285 104 72 286 112 76 287 111 77 288 105 78 289 106 79 290 109 80 291 106 79 292 107 81 293 111 77 294 112 76 295 105 78 296 111 77 297 109 80 298 110 82 299 111 77 300 106 79 301 109 80 302 104 72 303 105 78 304 112 76 305 120 83 306 116 83 307 118 83 308 120 84 309 123 84 310 117 84 311 123 85 312 120 85 313 118 85 314 118 86 315 121 86 316 123 86 317 121 87 318 122 87 319 123 87 320 119 88 321 121 88 322 118 88 323 151 89 324 131 89 325 150 89 326 131 90 327 146 90 328 147 90 329 152 91 330 131 27 331 151 92 332 131 93 333 148 93 334 149 93 335 147 94 336 148 94 337 131 94 338 131 95 339 149 95 340 150 95 341 125 96 342 142 97 343 131 27 344 131 27 345 152 91 346 130 98 347 131 99 348 144 99 349 145 99 350 131 27 351 142 97 352 143 100 353 143 100 354 144 101 355 131 27 356 145 102 357 146 102 358 131 102 359 125 96 360 131 27 361 124 27 362 141 103 363 125 96 364 140 104 365 125 96 366 139 105 367 140 104 368 142 97 369 125 96 370 141 103 371 127 106 372 136 107 373 126 108 374 133 109 375 127 106 376 128 110 377 139 105 378 125 96 379 126 108 380 128 110 381 132 111 382 133 109 383 126 108 384 138 112 385 139 105 386 126 108 387 136 107 388 137 113 389 137 113 390 138 112 391 126 108 392 134 114 393 135 115 394 127 106 395 127 106 396 133 109 397 134 114 398 132 116 399 129 116 400 133 116 401 135 115 402 136 107 403 127 106 404 155 117 405 161 118 406 159 119 407 158 120 408 159 119 409 162 121 410 161 118 411 162 121 412 159 119 413 154 122 414 159 119 415 153 119 416 160 123 417 154 122 418 156 123 419 157 123 420 155 117 421 160 123 422 154 122 423 160 123 424 155 117 425 159 119 426 154 122 427 155 117 428 175 124 429 164 124 430 174 124 431 163 124 432 164 124 433 175 124 434 173 124 435 174 124 436 164 124 437 173 124 438 164 124 439 172 124 440 172 124 441 164 124 442 171 124 443 168 124 444 165 124 445 167 124 446 176 125 447 167 125 448 165 125 449 167 124 450 176 124 451 177 124 452 176 124 453 165 124 454 166 124 455 171 124 456 164 124 457 170 124 458 169 124 459 170 124 460 164 124 461 165 126 462 168 126 463 169 126 464 169 127 465 164 127 466 165 127 467

+
+
+
+ + + + 0 81.5857 -204.999 63.1562 81.5857 -204.999 0 81.5918 -204.788 63.1562 81.5918 -204.788 0 81.5647 -204.716 63.1562 81.5647 -204.716 0 81.5458 -204.696 63.1562 81.5458 -204.696 0 81.5254 -204.687 63.1562 81.5254 -204.687 31.5781 81.5857 -204.999 31.5781 81.5254 -204.687 0 81.5254 -204.687 63.1562 81.5254 -204.687 0 81.36301 -204.654 63.1562 81.36301 -204.654 31.5781 81.5254 -204.687 31.5781 81.36301 -204.654 0 81.36301 -204.654 63.1562 81.36301 -204.654 0 81.3406 -204.655 63.1562 81.3406 -204.655 0 81.3156 -204.666 63.1562 81.3156 -204.666 0 81.2629 -204.722 63.1562 81.2629 -204.722 0 81.1878 -204.92 63.1562 81.1878 -204.92 31.5781 81.1878 -204.92 31.5781 81.36301 -204.654 0 81.1878 -204.92 0 81.00421 -207.07 0 80.7108 -208.953 0 80.3078 -210.569 0 79.79502 -211.918 0 79.78881 -212.129 0 79.816 -212.201 0 79.8348 -212.221 0 79.8553 -212.23 0 79.9365 -212.246 0 80.0177 -212.262 0 80.04 -212.262 0 80.06501 -212.251 0 80.1178 -212.194 0 80.1929 -211.997 0 81.13481 -208.554 0 81.5857 -204.999 0 81.5918 -204.788 0 81.5647 -204.716 0 81.5458 -204.696 0 81.5254 -204.687 0 81.36301 -204.654 0 81.3406 -204.655 0 81.3156 -204.666 0 81.2629 -204.722 63.1562 80.36251 -211.497 63.1562 79.9786 -211.497 59.9626 79.8838 -211.721 56.7671 79.79502 -211.918 54.632 79.7819 -212.031 53.5641 79.7829 -212.082 52.496 79.78881 -212.129 51.08 79.80601 -212.184 50.372 79.8212 -212.208 49.6645 79.8553 -212.23 49.0913 79.9365 -212.246 48.4522 80.0177 -212.262 48.4215 80.0226 -212.263 48.4137 80.0254 -212.263 48.4123 80.02661 -212.263 48.4121 80.0272 -212.263 48.4121 80.0278 -212.263 48.4124 80.0283 -212.263 48.4142 80.0297 -212.263 48.4175 80.03102 -212.263 48.4265 80.0334 -212.263 48.4382 80.0354 -212.263 48.4607 80.0384 -212.262 48.483 80.0408 -212.262 48.5213 80.0441 -212.261 48.595 80.0493 -212.259 48.741 80.0572 -212.255 49.0322 80.0694 -212.248 49.6141 80.08821 -212.232 50.7775 80.1178 -212.194 51.9105 80.1416 -212.153 53.0433 80.16201 -212.106 55.3086 80.1929 -211.997 59.2339 80.2717 -211.769 0 81.1878 -204.92 63.1562 81.1878 -204.92 0 81.00421 -207.07 63.1562 81.00421 -207.07 0 80.7108 -208.953 63.1562 80.7108 -208.953 0 80.3078 -210.569 0 79.79502 -211.918 28.3835 79.79502 -211.918 56.7671 79.79502 -211.918 63.1562 79.9786 -211.497 31.5781 81.1878 -204.92 59.9626 79.8838 -211.721 0 79.79502 -211.918 56.7671 79.79502 -211.918 0 79.78881 -212.129 0 79.816 -212.201 0 79.8348 -212.221 0 79.8553 -212.23 28.3835 79.79502 -211.918 24.8323 79.8553 -212.23 49.6645 79.8553 -212.23 50.372 79.8212 -212.208 51.08 79.80601 -212.184 52.496 79.78881 -212.129 53.5641 79.7829 -212.082 54.632 79.7819 -212.031 0 79.8553 -212.23 49.6645 79.8553 -212.23 0 79.9365 -212.246 0 80.0177 -212.262 24.8323 79.8553 -212.23 24.2261 80.0177 -212.262 48.4522 80.0177 -212.262 49.0913 79.9365 -212.246 0 80.0177 -212.262 0 80.04 -212.262 0 80.06501 -212.251 0 80.1178 -212.194 0 80.1929 -211.997 55.3086 80.1929 -211.997 48.4522 80.0177 -212.262 24.2261 80.0177 -212.262 27.6543 80.1929 -211.997 53.0433 80.16201 -212.106 51.9105 80.1416 -212.153 50.7775 80.1178 -212.194 49.6141 80.08821 -212.232 49.0322 80.0694 -212.248 48.741 80.0572 -212.255 48.595 80.0493 -212.259 48.5213 80.0441 -212.261 48.483 80.0408 -212.262 48.4607 80.0384 -212.262 48.4382 80.0354 -212.263 48.4265 80.0334 -212.263 48.4175 80.03102 -212.263 48.4142 80.0297 -212.263 48.4124 80.0283 -212.263 48.4121 80.0278 -212.263 48.4121 80.0272 -212.263 48.4123 80.02661 -212.263 48.4137 80.0254 -212.263 48.4215 80.0226 -212.263 0 80.1929 -211.997 0 81.13481 -208.554 63.1562 81.13481 -208.554 0 81.5857 -204.999 63.1562 81.5857 -204.999 55.3086 80.1929 -211.997 27.6543 80.1929 -211.997 31.5781 81.5857 -204.999 63.1562 80.36251 -211.497 59.2339 80.2717 -211.769 63.1562 81.1878 -204.92 63.1562 81.00421 -207.07 63.1562 80.7108 -208.953 63.1562 79.9786 -211.497 63.1562 81.5857 -204.999 63.1562 81.5918 -204.788 63.1562 81.5647 -204.716 63.1562 81.5458 -204.696 63.1562 81.5254 -204.687 63.1562 81.36301 -204.654 63.1562 81.3406 -204.655 63.1562 81.3156 -204.666 63.1562 81.2629 -204.722 63.1562 80.36251 -211.497 63.1562 81.13481 -208.554 + + + + + + + + + + 0 0.9995815 -0.02893179 0 0.9995859 -0.02877932 0 0.9863262 0.1648048 0 0.9863114 0.1648939 0 0.848096 0.5298426 0 0.8480738 0.5298783 0 0.4035515 0.9149569 0 0.5767575 0.8169154 0 0.403801 0.9148469 0 0.5767779 0.8169011 0 0.1990665 0.979986 0 0.1990846 0.9799823 0 0.1990665 0.979986 0 0.1990847 0.9799823 0 -0.04419213 0.9990231 0 -0.04425305 0.9990204 0 -0.2273685 0.9738088 0 -0.2273396 0.9738156 0 -0.5770965 0.816676 0 -0.5770821 0.8166861 0 -0.935007 0.3546294 0 -0.8479075 0.5301443 -1 0 0 0.04652792 -0.01942604 -0.9987281 0.008103132 -0.05007487 -0.9987127 0.002163887 0 -0.9999977 0.02948963 -0.03842359 -0.9988263 0.03000932 -0.04092055 -0.9987117 0.02798235 -0.03896999 -0.9988486 0.024589 -0.00311762 -0.9996928 -6.40908e-4 0 -0.9999999 0.006256341 0 -0.9999805 -0.001617491 0 -0.9999987 0 0 -1 -0.124031 0 -0.9922783 -0.03619551 0 -0.9993448 0.001398563 0 -0.9999991 0.03077214 -0.01411086 -0.9994269 0.02415072 -0.004264473 -0.9996993 0.03390616 0.001678466 -0.9994236 0.03894168 -0.002075254 -0.9992393 0.03586018 0.001586973 -0.9993556 0.03268587 -0.0205698 -0.999254 0.0270096 -0.003112971 -0.9996303 0.04425299 -0.001037657 -0.9990199 0.04144519 -6.40905e-4 -0.9991406 0.06921684 4.88302e-4 -0.9976015 0.06009256 -0.0107733 -0.9981347 0.06918644 0 -0.9976038 0.0488004 0.002105832 -0.9988064 0.05270612 -0.001464903 -0.998609 0.06793594 0.005157709 -0.9976764 0.02969497 0.01101732 -0.9994984 0.03186142 0.003601193 -0.9994859 0.03384464 8.32283e-4 -0.9994269 0.06012248 0.02230936 -0.9979417 0.04391455 -0.002885341 -0.9990311 0.04769831 0.002287566 -0.9988592 0.02548301 -0.003692746 -0.9996685 0 -0.9963763 0.08505576 0 -0.9928252 0.1195748 -7.0193e-4 -0.9800773 0.1986156 0 -0.9764642 0.2156797 4.88304e-4 -0.9311959 0.364519 -7.32471e-4 -0.9543483 0.2986955 0 -0.9347496 0.3553074 0 -0.9594438 0.2819003 1.52593e-4 -0.9216021 0.3881362 0 -0.9116913 0.410876 0 -0.9935588 0.1133185 0 -0.9933412 0.1152102 -1.52596e-4 -0.9995654 0.02948153 -1.22075e-4 -0.9862708 -0.1651363 0 -0.993322 0.1153754 -9.15559e-5 -0.9998205 -0.01895201 0 -0.9919314 -0.1267763 0 -0.9533601 -0.3018353 0 -0.8405016 -0.5418092 -3.05194e-5 -0.8483788 -0.5293899 0 -0.5768677 -0.8168376 6.10385e-5 -0.4929772 -0.8700423 0 -0.4019376 -0.9156671 0 -0.5421081 -0.8403087 0 -0.193382 -0.9811236 0 -0.1933876 -0.9811225 0 -0.193431 -0.9811139 0 -0.1932421 -0.9811511 0 -0.1932107 -0.9811573 0 -0.1932128 -0.9811569 -4.03538e-5 -4.79202e-5 -1 -3.52366e-5 5.37358e-5 -1 0 -0.1808564 -0.9835096 -3.05185e-5 -9.15555e-5 -1 -6.10352e-5 0 -1 -3.98597e-5 2.55351e-5 -1 -3.15461e-5 -1.41958e-5 -1 0 0.2053629 -0.9786859 0 0.01409983 -0.9999007 0 -0.2013661 -0.979516 -4.32425e-5 1.56625e-4 -1 -2.44154e-4 0.3054678 -0.9522025 -3.05194e-5 2.13636e-4 -1 -4.50721e-5 1.04464e-4 -1 0 0.2789428 -0.9603078 0 0.3576801 -0.9338442 0 0.4498485 -0.8931049 -1.22077e-4 0.8495959 -0.5274343 0 0.7871913 -0.616709 -3.05193e-5 0.58008 -0.8145596 0 0.9615908 -0.2744874 -1.83114e-4 0.9344611 -0.3560652 0 0.9621034 -0.2726849 0 0.4970031 -0.8677488 0 0.64593 -0.7633967 -9.15577e-5 0.9175305 -0.3976657 0 0.8638697 -0.5037155 0 0.9621088 -0.2726658 -4.88307e-4 0.981681 -0.1905314 -0.00100708 0.9666692 -0.2560266 0 0.9645587 -0.2638688 0 0.9451689 -0.3265822 -6.10378e-5 0.9488632 -0.3156875 0 0.9807388 -0.1953237 0 0.9920557 -0.1258 0 0.9920518 -0.1258299 1 0 0 1 -3.2476e-5 0 1 -1.54895e-4 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 0 1 1 2 2 2 3 3 3 2 2 4 4 4 5 3 3 6 4 4 7 5 5 8 1 1 9 10 0 10 3 3 11 2 2 12 3 3 13 10 0 14 11 6 15 6 7 16 8 8 17 7 9 18 6 7 19 11 6 20 6 7 21 7 9 22 5 5 23 6 7 24 5 5 25 4 4 26 11 6 27 9 8 28 7 9 29 16 10 30 12 10 31 14 10 32 16 11 33 14 11 34 17 11 35 13 12 36 16 12 37 17 12 38 13 13 39 17 13 40 15 13 41 29 14 42 18 15 43 20 16 44 21 17 45 20 16 46 22 18 47 21 17 48 22 18 49 23 19 50 19 15 51 29 14 52 21 17 53 20 16 54 21 17 55 29 14 56 28 20 57 24 21 58 26 20 59 25 21 60 24 21 61 28 20 62 24 21 63 25 21 64 23 19 65 24 21 66 23 19 67 22 18 68 28 20 69 27 20 70 25 21 71 36 22 72 35 22 73 34 22 74 37 22 75 36 22 76 34 22 77 33 22 78 38 22 79 34 22 80 37 22 81 34 22 82 38 22 83 39 22 84 38 22 85 33 22 86 54 22 87 53 22 88 30 22 89 52 22 90 30 22 91 53 22 92 52 22 93 51 22 94 30 22 95 30 22 96 51 22 97 31 22 98 33 22 99 40 22 100 39 22 101 33 22 102 45 22 103 44 22 104 44 22 105 41 22 106 33 22 107 44 22 108 43 22 109 42 22 110 41 22 111 44 22 112 42 22 113 32 22 114 45 22 115 33 22 116 49 22 117 46 22 118 50 22 119 31 22 120 50 22 121 46 22 122 51 22 123 50 22 124 31 22 125 49 22 126 48 22 127 46 22 128 46 22 129 48 22 130 47 22 131 45 22 132 31 22 133 46 22 134 45 22 135 32 22 136 31 22 137 33 22 138 41 22 139 40 22 140 77 23 141 66 23 142 76 23 143 76 24 144 66 24 145 75 24 146 78 25 147 66 25 148 77 25 149 66 26 150 80 26 151 81 26 152 80 27 153 66 27 154 79 27 155 79 28 156 66 28 157 78 28 158 81 29 159 65 29 160 66 29 161 74 30 162 70 31 163 71 32 164 70 33 165 74 33 166 69 33 167 72 34 168 73 35 169 71 32 170 69 33 171 74 30 172 68 33 173 68 33 174 74 33 175 67 33 176 67 36 177 74 36 178 75 36 179 67 37 180 75 37 181 66 37 182 73 35 183 74 30 184 71 32 185 65 38 186 81 38 187 82 38 188 84 39 189 85 40 190 62 41 191 83 42 192 84 39 193 65 43 194 86 44 195 61 45 196 85 40 197 56 46 198 88 47 199 55 48 200 59 49 201 86 44 202 87 50 203 87 50 204 88 47 205 57 51 206 88 47 207 56 46 208 57 51 209 64 52 210 65 43 211 84 39 212 63 53 213 64 52 214 84 39 215 84 54 216 62 54 217 63 54 218 87 50 219 58 55 220 59 49 221 61 45 222 62 41 223 85 40 224 86 56 225 60 56 226 61 56 227 86 57 228 59 57 229 60 57 230 87 50 231 57 51 232 58 55 233 82 58 234 83 42 235 65 43 236 100 59 237 89 59 238 91 60 239 92 60 240 91 60 241 93 61 242 92 60 243 93 61 244 94 62 245 90 59 246 100 59 247 92 60 248 91 60 249 92 60 250 100 59 251 97 63 252 95 64 253 96 65 254 99 66 255 95 64 256 97 63 257 99 66 258 94 62 259 93 61 260 99 66 261 93 61 262 95 64 263 101 67 264 99 66 265 97 63 266 101 67 267 97 63 268 98 68 269 115 69 270 108 70 271 102 71 272 104 72 273 115 69 274 102 71 275 115 73 276 103 73 277 108 73 278 114 74 279 115 69 280 104 72 281 114 74 282 104 72 283 113 75 284 113 75 285 104 72 286 112 76 287 111 77 288 105 78 289 106 79 290 109 80 291 106 79 292 107 81 293 111 77 294 112 76 295 105 78 296 111 77 297 109 80 298 110 82 299 111 77 300 106 79 301 109 80 302 104 72 303 105 78 304 112 76 305 120 83 306 116 83 307 118 83 308 120 84 309 123 84 310 117 84 311 123 85 312 120 85 313 118 85 314 118 86 315 121 86 316 123 86 317 121 87 318 122 87 319 123 87 320 119 88 321 121 88 322 118 88 323 151 89 324 131 89 325 150 89 326 131 90 327 146 90 328 147 90 329 152 91 330 131 33 331 151 92 332 131 93 333 148 93 334 149 93 335 147 94 336 148 94 337 131 94 338 131 95 339 149 95 340 150 95 341 125 96 342 142 97 343 131 33 344 131 33 345 152 91 346 130 98 347 131 99 348 144 99 349 145 99 350 131 33 351 142 97 352 143 100 353 143 100 354 144 101 355 131 33 356 145 102 357 146 102 358 131 102 359 125 96 360 131 33 361 124 33 362 141 103 363 125 96 364 140 104 365 125 96 366 139 105 367 140 104 368 142 97 369 125 96 370 141 103 371 127 106 372 136 107 373 126 108 374 133 109 375 127 106 376 128 110 377 139 105 378 125 96 379 126 108 380 128 110 381 132 111 382 133 109 383 126 108 384 138 112 385 139 105 386 126 108 387 136 107 388 137 113 389 137 113 390 138 112 391 126 108 392 134 114 393 135 115 394 127 106 395 127 106 396 133 109 397 134 114 398 132 116 399 129 116 400 133 116 401 135 115 402 136 107 403 127 106 404 155 117 405 161 118 406 159 119 407 158 120 408 159 119 409 162 121 410 161 118 411 162 121 412 159 119 413 154 122 414 159 119 415 153 119 416 160 123 417 154 122 418 156 124 419 157 124 420 155 117 421 160 123 422 154 122 423 160 123 424 155 117 425 159 119 426 154 122 427 155 117 428 174 125 429 163 125 430 164 125 431 174 125 432 175 125 433 163 125 434 173 125 435 174 125 436 164 125 437 173 125 438 164 125 439 172 125 440 172 125 441 164 125 442 171 125 443 167 125 444 169 125 445 164 125 446 177 125 447 167 125 448 165 125 449 165 126 450 176 126 451 177 126 452 176 125 453 165 125 454 166 125 455 171 125 456 164 125 457 170 125 458 169 125 459 170 125 460 164 125 461 167 127 462 168 127 463 169 127 464 167 125 465 164 125 466 165 125 467

+
+
+
+ + + + 0 84.2931 -204.999 63.1562 84.2931 -204.999 0 84.2993 -204.788 63.1562 84.2993 -204.788 0 84.2721 -204.716 63.1562 84.2721 -204.716 0 84.25331 -204.696 63.1562 84.25331 -204.696 0 84.23281 -204.687 63.1562 84.23281 -204.687 31.5781 84.2931 -204.999 31.5781 84.23281 -204.687 0 84.23281 -204.687 63.1562 84.23281 -204.687 0 84.07051 -204.654 63.1562 84.07051 -204.654 31.5781 84.23281 -204.687 31.5781 84.07051 -204.654 0 84.07051 -204.654 63.1562 84.07051 -204.654 0 84.04811 -204.655 63.1562 84.04811 -204.655 0 84.0231 -204.666 63.1562 84.0231 -204.666 0 83.9703 -204.722 63.1562 83.9703 -204.722 0 83.89521 -204.92 63.1562 83.89521 -204.92 31.5781 83.89521 -204.92 31.5781 84.07051 -204.654 0 83.89521 -204.92 0 83.7116 -207.07 0 83.4183 -208.953 0 83.0152 -210.569 0 82.50241 -211.918 0 82.4963 -212.129 0 82.5234 -212.201 0 82.5423 -212.221 0 82.5627 -212.23 0 82.6439 -212.246 0 82.7251 -212.262 0 82.7475 -212.262 0 82.7725 -212.251 0 82.82521 -212.194 0 82.9003 -211.997 0 83.8422 -208.554 0 84.2931 -204.999 0 84.2993 -204.788 0 84.2721 -204.716 0 84.25331 -204.696 0 84.23281 -204.687 0 84.07051 -204.654 0 84.04811 -204.655 0 84.0231 -204.666 0 83.9703 -204.722 63.1562 83.0699 -211.497 63.1562 82.6861 -211.497 59.9626 82.5912 -211.721 56.7671 82.50241 -211.918 54.632 82.48931 -212.031 53.5641 82.49031 -212.082 52.496 82.4963 -212.129 51.08 82.5134 -212.184 50.372 82.52861 -212.208 49.6645 82.5627 -212.23 49.0913 82.6439 -212.246 48.4522 82.7251 -212.262 48.4215 82.73001 -212.263 48.4137 82.73281 -212.263 48.4123 82.7341 -212.263 48.4121 82.7346 -212.263 48.4121 82.7352 -212.263 48.4124 82.73571 -212.263 48.4142 82.7371 -212.263 48.4175 82.73851 -212.263 48.4265 82.7408 -212.263 48.4382 82.7429 -212.263 48.4607 82.74591 -212.262 48.483 82.7482 -212.262 48.5213 82.75151 -212.261 48.595 82.7567 -212.259 48.741 82.76461 -212.255 49.0322 82.7768 -212.248 49.6141 82.7956 -212.232 50.7775 82.82521 -212.194 51.9105 82.84901 -212.153 53.0433 82.8695 -212.106 55.3086 82.9003 -211.997 59.2339 82.97911 -211.769 0 83.89521 -204.92 63.1562 83.89521 -204.92 0 83.7116 -207.07 63.1562 83.7116 -207.07 0 83.4183 -208.953 63.1562 83.4183 -208.953 0 83.0152 -210.569 0 82.50241 -211.918 28.3835 82.50241 -211.918 56.7671 82.50241 -211.918 63.1562 82.6861 -211.497 31.5781 83.89521 -204.92 59.9626 82.5912 -211.721 0 82.50241 -211.918 56.7671 82.50241 -211.918 0 82.4963 -212.129 0 82.5234 -212.201 0 82.5423 -212.221 0 82.5627 -212.23 28.3835 82.50241 -211.918 24.8323 82.5627 -212.23 49.6645 82.5627 -212.23 50.372 82.52861 -212.208 51.08 82.5134 -212.184 52.496 82.4963 -212.129 53.5641 82.49031 -212.082 54.632 82.48931 -212.031 0 82.5627 -212.23 49.6645 82.5627 -212.23 0 82.6439 -212.246 0 82.7251 -212.262 24.8323 82.5627 -212.23 24.2261 82.7251 -212.262 48.4522 82.7251 -212.262 49.0913 82.6439 -212.246 0 82.7251 -212.262 0 82.7475 -212.262 0 82.7725 -212.251 0 82.82521 -212.194 0 82.9003 -211.997 55.3086 82.9003 -211.997 48.4522 82.7251 -212.262 24.2261 82.7251 -212.262 27.6543 82.9003 -211.997 53.0433 82.8695 -212.106 51.9105 82.84901 -212.153 50.7775 82.82521 -212.194 49.6141 82.7956 -212.232 49.0322 82.7768 -212.248 48.741 82.76461 -212.255 48.595 82.7567 -212.259 48.5213 82.75151 -212.261 48.483 82.7482 -212.262 48.4607 82.74591 -212.262 48.4382 82.7429 -212.263 48.4265 82.7408 -212.263 48.4175 82.73851 -212.263 48.4142 82.7371 -212.263 48.4124 82.73571 -212.263 48.4121 82.7352 -212.263 48.4121 82.7346 -212.263 48.4123 82.7341 -212.263 48.4137 82.73281 -212.263 48.4215 82.73001 -212.263 0 82.9003 -211.997 0 83.8422 -208.554 63.1562 83.8422 -208.554 0 84.2931 -204.999 63.1562 84.2931 -204.999 55.3086 82.9003 -211.997 27.6543 82.9003 -211.997 31.5781 84.2931 -204.999 63.1562 83.0699 -211.497 59.2339 82.97911 -211.769 63.1562 83.89521 -204.92 63.1562 83.7116 -207.07 63.1562 83.4183 -208.953 63.1562 82.6861 -211.497 63.1562 84.2931 -204.999 63.1562 84.2993 -204.788 63.1562 84.2721 -204.716 63.1562 84.25331 -204.696 63.1562 84.23281 -204.687 63.1562 84.07051 -204.654 63.1562 84.04811 -204.655 63.1562 84.0231 -204.666 63.1562 83.9703 -204.722 63.1562 83.0699 -211.497 63.1562 83.8422 -208.554 + + + + + + + + + + 0 0.9995707 -0.0292986 0 0.9995672 -0.02942055 0 0.9862906 0.1650176 0 0.98626 0.1652007 0 0.8484593 0.5292608 0 0.8484814 0.5292251 0 0.4020256 0.9156284 0 0.576972 0.816764 0 0.5771516 0.816637 0 0.199194 0.9799602 0 0.199194 0.9799602 0 0.199194 0.9799602 0 -0.04422259 0.9990218 0 -0.2273685 0.9738088 0 -0.2274553 0.9737886 0 -0.5766881 0.8169646 0 -0.5767431 0.8169256 0 -0.9350273 0.3545761 0 -0.8476381 0.5305749 0 -0.935007 0.3546294 -1 0 0 0.04842537 -0.01931971 -0.99864 0.00802195 -0.04957342 -0.9987383 0 0 -1 0.02952188 -0.03846555 -0.9988238 0.03000932 -0.04092055 -0.9987117 0.02919793 -0.03896862 -0.9988138 0.02458131 -0.003116667 -0.999693 -4.27272e-4 0 -1 0.006317377 0 -0.9999801 0.01248222 0 -0.9999222 -0.03473031 0 -0.9993968 0.002075314 0 -0.9999979 0.004324257 0 -0.9999907 -0.001388847 0 -0.9999991 0.03081333 -0.01412975 -0.9994253 0.0241484 -0.004264056 -0.9996994 0.03393661 0.001678466 -0.9994227 0.03894168 -0.002075254 -0.9992393 0.03586018 0.001586973 -0.9993556 0.03274685 -0.02056974 -0.9992521 0.0270096 -0.003112971 -0.9996303 0.04425299 -0.001037657 -0.9990199 0.04147565 -6.40904e-4 -0.9991394 0.06918644 4.88303e-4 -0.9976037 0.06009256 -0.0107733 -0.9981347 0.06915611 0 -0.9976059 0.0488004 0.002105832 -0.9988064 0.05270612 -0.001464903 -0.998609 0.06793594 0.005157709 -0.9976764 0.02969497 0.01101732 -0.9994984 0.03186142 0.003601193 -0.9994859 0.03387326 8.32282e-4 -0.9994258 0.06012248 0.0222789 -0.9979423 0.04391962 -0.002884984 -0.9990309 0.04769116 0.002287209 -0.9988596 0.02548301 -0.003692746 -0.9996685 0 -0.9963737 0.08508604 0 -0.9928289 0.1195448 -7.0193e-4 -0.9800773 0.1986156 0 -0.9764707 0.2156506 4.88307e-4 -0.9311711 0.3645823 -7.32457e-4 -0.9543309 0.298751 0 -0.9347394 0.3553341 0 -0.9594414 0.2819086 1.52595e-4 -0.9214326 0.3885386 0 -0.9116913 0.410876 0 -0.9935764 0.1131644 0 -0.9933412 0.1152102 -1.52594e-4 -0.9995805 0.02896225 -1.22075e-4 -0.986337 -0.1647405 0 -0.9933394 0.1152262 -9.15558e-5 -0.9998199 -0.01898252 0 -0.9916405 -0.1290326 0 -0.9538627 -0.3002432 0 -0.8403456 -0.5420511 -3.05191e-5 -0.848096 -0.5298426 0 -0.5767922 -0.816891 6.10379e-5 -0.4933691 -0.8698202 0 -0.403889 -0.9148081 0 -0.5422361 -0.8402263 0 -0.193382 -0.9811236 0 -0.1934102 -0.9811181 0 -0.1934196 -0.9811161 0 -0.1932421 -0.9811511 0 -0.1932208 -0.9811553 0 -0.1932128 -0.9811569 -4.54215e-5 -4.49484e-5 -1 -4.43447e-5 5.41005e-5 -1 0 -0.1801556 -0.9836382 -3.05185e-5 -9.15555e-5 -1 -6.10352e-5 0 -1 0 2.50244e-5 -1 -4.15777e-5 -1.7009e-5 -1 0 0.2054567 -0.9786662 0 0.01391679 -0.9999032 0 -0.2006039 -0.9796724 -4.48678e-5 1.62512e-4 -1 -2.44156e-4 0.3010437 -0.9536103 -3.05194e-5 2.13636e-4 -1 -4.24592e-5 9.84081e-5 -1 0 0.2785805 -0.960413 0 0.3566425 -0.9342409 0 0.4493975 -0.893332 -1.22077e-4 0.8498056 -0.5270962 0 0.787003 -0.6169491 -3.05191e-5 0.5804729 -0.8142796 0 0.9618079 -0.2737253 -1.83114e-4 0.9344611 -0.3560652 0 0.9623454 -0.2718298 0 0.4969801 -0.8677619 0 0.6463266 -0.7630609 -9.15579e-5 0.9170134 -0.3988567 0 0.8638697 -0.5037155 0 0.9623335 -0.2718722 -4.88307e-4 0.981681 -0.1905314 -0.00100708 0.9666692 -0.2560266 0 0.9645587 -0.2638688 0 0.9451689 -0.3265822 -6.10378e-5 0.9488632 -0.3156875 0 0.9807388 -0.1953237 0 0.9920518 -0.1258299 0 0.9920557 -0.1258 1 0 0 1 -3.59932e-5 0 1 1.78122e-4 0 1 -8.36138e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 0 1 1 2 2 2 3 3 3 2 2 4 4 4 5 3 3 6 4 4 7 5 5 8 1 1 9 10 0 10 3 3 11 2 2 12 3 3 13 10 0 14 11 6 15 6 7 16 8 6 17 7 8 18 6 7 19 11 6 20 6 7 21 7 8 22 5 5 23 6 7 24 5 5 25 4 4 26 11 6 27 9 6 28 7 8 29 16 9 30 12 9 31 14 9 32 16 9 33 14 9 34 17 9 35 13 10 36 16 10 37 17 10 38 13 11 39 17 11 40 15 11 41 29 12 42 18 12 43 20 13 44 21 14 45 20 13 46 22 15 47 21 14 48 22 15 49 23 16 50 19 12 51 29 12 52 21 14 53 20 13 54 21 14 55 29 12 56 28 17 57 24 18 58 26 19 59 25 18 60 24 18 61 28 17 62 24 18 63 25 18 64 23 16 65 24 18 66 23 16 67 22 15 68 28 17 69 27 19 70 25 18 71 36 20 72 35 20 73 34 20 74 36 20 75 34 20 76 33 20 77 38 20 78 37 20 79 33 20 80 33 20 81 37 20 82 36 20 83 39 20 84 38 20 85 33 20 86 54 20 87 53 20 88 30 20 89 31 20 90 53 20 91 52 20 92 31 20 93 52 20 94 51 20 95 31 20 96 30 20 97 53 20 98 33 20 99 40 20 100 39 20 101 41 20 102 33 20 103 42 20 104 42 20 105 33 20 106 43 20 107 33 20 108 44 20 109 43 20 110 33 20 111 32 20 112 44 20 113 45 20 114 44 20 115 32 20 116 50 20 117 49 20 118 31 20 119 48 20 120 31 20 121 49 20 122 51 20 123 50 20 124 31 20 125 31 20 126 48 20 127 46 20 128 46 20 129 48 20 130 47 20 131 46 20 132 32 20 133 31 20 134 46 20 135 45 20 136 32 20 137 41 20 138 40 20 139 33 20 140 77 21 141 66 21 142 76 21 143 76 22 144 66 22 145 75 22 146 78 23 147 66 23 148 77 23 149 66 24 150 80 24 151 81 24 152 80 25 153 66 25 154 79 25 155 79 26 156 66 26 157 78 26 158 81 27 159 65 27 160 66 27 161 74 28 162 70 29 163 71 30 164 70 23 165 74 23 166 69 23 167 72 23 168 73 31 169 71 30 170 69 23 171 74 28 172 68 32 173 68 33 174 74 33 175 67 33 176 67 34 177 74 34 178 75 34 179 67 35 180 75 35 181 66 35 182 73 31 183 74 28 184 71 30 185 65 36 186 81 36 187 82 36 188 84 37 189 85 38 190 62 39 191 83 40 192 84 37 193 65 41 194 86 42 195 61 43 196 85 38 197 56 44 198 88 45 199 55 46 200 59 47 201 86 42 202 87 48 203 87 48 204 88 45 205 57 49 206 88 45 207 56 44 208 57 49 209 64 50 210 65 41 211 84 37 212 63 51 213 64 50 214 84 37 215 84 52 216 62 52 217 63 52 218 87 48 219 58 53 220 59 47 221 61 43 222 62 39 223 85 38 224 86 54 225 60 54 226 61 54 227 86 55 228 59 55 229 60 55 230 87 48 231 57 49 232 58 53 233 82 56 234 83 40 235 65 41 236 100 57 237 89 57 238 91 58 239 92 58 240 91 58 241 93 59 242 92 58 243 93 59 244 94 60 245 90 57 246 100 57 247 92 58 248 91 58 249 92 58 250 100 57 251 97 61 252 95 62 253 96 63 254 99 64 255 95 62 256 97 61 257 99 64 258 94 60 259 93 59 260 99 64 261 93 59 262 95 62 263 101 65 264 99 64 265 97 61 266 101 65 267 97 61 268 98 66 269 115 67 270 108 68 271 102 69 272 104 70 273 115 67 274 102 69 275 115 71 276 103 71 277 108 71 278 114 72 279 115 67 280 104 70 281 114 72 282 104 70 283 113 73 284 113 73 285 104 70 286 112 74 287 111 75 288 105 76 289 106 77 290 109 78 291 106 77 292 107 79 293 111 75 294 112 74 295 105 76 296 111 75 297 109 78 298 110 80 299 111 75 300 106 77 301 109 78 302 104 70 303 105 76 304 112 74 305 120 81 306 116 81 307 118 81 308 120 82 309 123 82 310 117 82 311 123 83 312 120 83 313 118 83 314 118 84 315 121 84 316 123 84 317 121 85 318 122 85 319 123 85 320 119 86 321 121 86 322 118 86 323 151 87 324 131 87 325 150 87 326 131 88 327 146 88 328 147 88 329 152 89 330 131 23 331 151 90 332 131 91 333 148 91 334 149 91 335 147 92 336 148 92 337 131 92 338 131 93 339 149 93 340 150 93 341 125 94 342 142 95 343 131 23 344 131 23 345 152 89 346 130 96 347 131 97 348 144 97 349 145 97 350 131 23 351 142 95 352 143 98 353 143 98 354 144 99 355 131 23 356 145 100 357 146 100 358 131 100 359 125 94 360 131 23 361 124 23 362 141 101 363 125 94 364 140 102 365 125 94 366 139 103 367 140 102 368 142 95 369 125 94 370 141 101 371 127 104 372 136 105 373 126 106 374 133 107 375 127 104 376 128 108 377 139 103 378 125 94 379 126 106 380 128 108 381 132 109 382 133 107 383 126 106 384 138 110 385 139 103 386 126 106 387 136 105 388 137 111 389 137 111 390 138 110 391 126 106 392 134 112 393 135 113 394 127 104 395 127 104 396 133 107 397 134 112 398 132 114 399 129 114 400 133 114 401 135 113 402 136 105 403 127 104 404 155 115 405 161 116 406 159 117 407 158 118 408 159 117 409 162 119 410 161 116 411 162 119 412 159 117 413 154 120 414 159 117 415 153 117 416 160 121 417 154 120 418 156 122 419 157 122 420 155 115 421 160 121 422 154 120 423 160 121 424 155 115 425 159 117 426 154 120 427 155 115 428 175 123 429 164 123 430 174 123 431 163 123 432 164 123 433 175 123 434 173 123 435 174 123 436 164 123 437 173 123 438 164 123 439 172 123 440 172 123 441 164 123 442 171 123 443 168 123 444 165 123 445 167 123 446 176 124 447 167 124 448 165 124 449 167 123 450 176 123 451 177 123 452 176 123 453 165 123 454 166 123 455 171 123 456 164 123 457 170 123 458 169 123 459 170 123 460 164 123 461 165 125 462 168 125 463 169 125 464 169 126 465 164 126 466 165 126 467

+
+
+
+ + + + 0 87.00061 -204.999 63.1562 87.00061 -204.999 0 87.0067 -204.788 63.1562 87.0067 -204.788 0 86.9796 -204.716 63.1562 86.9796 -204.716 0 86.9607 -204.696 63.1562 86.9607 -204.696 0 86.9402 -204.687 63.1562 86.9402 -204.687 31.5781 87.00061 -204.999 31.5781 86.9402 -204.687 0 86.9402 -204.687 63.1562 86.9402 -204.687 0 86.7779 -204.654 63.1562 86.7779 -204.654 31.5781 86.9402 -204.687 31.5781 86.7779 -204.654 0 86.7779 -204.654 63.1562 86.7779 -204.654 0 86.7555 -204.655 63.1562 86.7555 -204.655 0 86.7305 -204.666 63.1562 86.7305 -204.666 0 86.67781 -204.722 63.1562 86.67781 -204.722 0 86.6026 -204.92 63.1562 86.6026 -204.92 31.5781 86.6026 -204.92 31.5781 86.7779 -204.654 0 86.6026 -204.92 0 86.41901 -207.07 0 86.1257 -208.953 0 85.72261 -210.569 0 85.2098 -211.918 0 85.2037 -212.129 0 85.2308 -212.201 0 85.24971 -212.221 0 85.27021 -212.23 0 85.35131 -212.246 0 85.43251 -212.262 0 85.45491 -212.262 0 85.4799 -212.251 0 85.5326 -212.194 0 85.6077 -211.997 0 86.5496 -208.554 0 87.00061 -204.999 0 87.0067 -204.788 0 86.9796 -204.716 0 86.9607 -204.696 0 86.9402 -204.687 0 86.7779 -204.654 0 86.7555 -204.655 0 86.7305 -204.666 0 86.67781 -204.722 63.1562 85.7774 -211.497 63.1562 85.3935 -211.497 59.9626 85.2987 -211.721 56.7671 85.2098 -211.918 54.632 85.1968 -212.031 53.5641 85.1978 -212.082 52.496 85.2037 -212.129 51.08 85.2209 -212.184 50.372 85.23601 -212.208 49.6645 85.27021 -212.23 49.0913 85.35131 -212.246 48.4522 85.43251 -212.262 48.4215 85.4375 -212.263 48.4137 85.4402 -212.263 48.4123 85.4415 -212.263 48.4121 85.4421 -212.263 48.4121 85.4426 -212.263 48.4124 85.4431 -212.263 48.4142 85.44451 -212.263 48.4175 85.4459 -212.263 48.4265 85.4482 -212.263 48.4382 85.4503 -212.263 48.4607 85.4533 -212.262 48.483 85.4556 -212.262 48.5213 85.45901 -212.261 48.595 85.46411 -212.259 48.741 85.47201 -212.255 49.0322 85.4842 -212.248 49.6141 85.5031 -212.232 50.7775 85.5326 -212.194 51.9105 85.55651 -212.153 53.0433 85.5769 -212.106 55.3086 85.6077 -211.997 59.2339 85.6865 -211.769 0 86.6026 -204.92 63.1562 86.6026 -204.92 0 86.41901 -207.07 63.1562 86.41901 -207.07 0 86.1257 -208.953 63.1562 86.1257 -208.953 0 85.72261 -210.569 0 85.2098 -211.918 28.3835 85.2098 -211.918 56.7671 85.2098 -211.918 63.1562 85.3935 -211.497 31.5781 86.6026 -204.92 59.9626 85.2987 -211.721 0 85.2098 -211.918 56.7671 85.2098 -211.918 0 85.2037 -212.129 0 85.2308 -212.201 0 85.24971 -212.221 0 85.27021 -212.23 28.3835 85.2098 -211.918 24.8323 85.27021 -212.23 49.6645 85.27021 -212.23 50.372 85.23601 -212.208 51.08 85.2209 -212.184 52.496 85.2037 -212.129 53.5641 85.1978 -212.082 54.632 85.1968 -212.031 0 85.27021 -212.23 49.6645 85.27021 -212.23 0 85.35131 -212.246 0 85.43251 -212.262 24.8323 85.27021 -212.23 24.2261 85.43251 -212.262 48.4522 85.43251 -212.262 49.0913 85.35131 -212.246 0 85.43251 -212.262 0 85.45491 -212.262 0 85.4799 -212.251 0 85.5326 -212.194 0 85.6077 -211.997 55.3086 85.6077 -211.997 48.4522 85.43251 -212.262 24.2261 85.43251 -212.262 27.6543 85.6077 -211.997 53.0433 85.5769 -212.106 51.9105 85.55651 -212.153 50.7775 85.5326 -212.194 49.6141 85.5031 -212.232 49.0322 85.4842 -212.248 48.741 85.47201 -212.255 48.595 85.46411 -212.259 48.5213 85.45901 -212.261 48.483 85.4556 -212.262 48.4607 85.4533 -212.262 48.4382 85.4503 -212.263 48.4265 85.4482 -212.263 48.4175 85.4459 -212.263 48.4142 85.44451 -212.263 48.4124 85.4431 -212.263 48.4121 85.4426 -212.263 48.4121 85.4421 -212.263 48.4123 85.4415 -212.263 48.4137 85.4402 -212.263 48.4215 85.4375 -212.263 0 85.6077 -211.997 0 86.5496 -208.554 63.1562 86.5496 -208.554 0 87.00061 -204.999 63.1562 87.00061 -204.999 55.3086 85.6077 -211.997 27.6543 85.6077 -211.997 31.5781 87.00061 -204.999 63.1562 85.7774 -211.497 59.2339 85.6865 -211.769 63.1562 86.6026 -204.92 63.1562 86.41901 -207.07 63.1562 86.1257 -208.953 63.1562 85.3935 -211.497 63.1562 87.00061 -204.999 63.1562 87.0067 -204.788 63.1562 86.9796 -204.716 63.1562 86.9607 -204.696 63.1562 86.9402 -204.687 63.1562 86.7779 -204.654 63.1562 86.7555 -204.655 63.1562 86.7305 -204.666 63.1562 86.67781 -204.722 63.1562 85.7774 -211.497 63.1562 86.5496 -208.554 + + + + + + + + + + 0 0.9995815 -0.02893179 0 0.9995841 -0.0288403 0 0.9863164 0.1648642 0 0.9863213 0.1648344 0 0.8481544 0.5297493 0 0.8479658 0.5300511 0 0.4022753 0.9155188 0 0.5761343 0.8173551 0 0.4020256 0.9156284 0 0.5758298 0.8175696 0 0.199194 0.9799602 0 0.1991758 0.9799638 0 0.199194 0.9799602 0 0.1991758 0.9799638 0 -0.04425305 0.9990204 0 -0.04422259 0.9990218 0 -0.227246 0.9738374 0 -0.2274553 0.9737886 0 -0.5769372 0.8167886 0 -0.5772415 0.8165736 0 -0.9348321 0.3550903 0 -0.8477548 0.5303885 0 -0.9348562 0.3550269 0 -0.8478268 0.5302733 -1 0 0 0.04740267 -0.01934146 -0.9986886 0.01002728 -0.04957246 -0.9987202 0 0 -1 0.02952188 -0.03846555 -0.9988238 0.0303362 -0.04055517 -0.9987167 0.02808469 -0.03911256 -0.9988401 0.02459287 -0.003118157 -0.9996927 -9.76622e-4 0 -0.9999995 0.001861631 0 -0.9999983 0.001953184 0 -0.9999981 -0.03412061 0 -0.9994178 0.001404464 0 -0.9999991 0.02963358 -0.0142064 -0.9994599 0.02413398 -0.004263639 -0.9996997 0.03393661 0.001678466 -0.9994227 0.03894168 -0.002075254 -0.9992393 0.03589069 0.001617491 -0.9993545 0.03271633 -0.0205698 -0.999253 0.02694857 -0.003112971 -0.999632 0.04425299 -0.001037657 -0.9990199 0.04147565 -6.40904e-4 -0.9991394 0.06921684 4.88302e-4 -0.9976015 0.06009256 -0.0107733 -0.9981347 0.06915611 0 -0.9976059 0.0488004 0.002105832 -0.9988064 0.05270612 -0.001464903 -0.998609 0.06793594 0.005157709 -0.9976764 0.02969497 0.01101732 -0.9994984 0.03186142 0.003601193 -0.9994859 0.0339123 8.32427e-4 -0.9994245 0.06012248 0.0222789 -0.9979423 0.04394829 -0.002885341 -0.9990297 0.0476607 0.002287566 -0.998861 0.02542203 -0.003692746 -0.99967 0 -0.9963737 0.08508604 0 -0.9963763 0.08505576 0 -0.9928289 0.1195448 -7.0193e-4 -0.9800773 0.1986156 0 -0.9764642 0.2156797 4.88307e-4 -0.9311711 0.3645823 -7.32457e-4 -0.9543309 0.298751 0 -0.9347394 0.3553341 0 -0.9594438 0.2819003 1.52597e-4 -0.9216239 0.3880842 0 -0.9114837 0.4113365 0 -0.9936906 0.1121564 0 -0.9934437 0.1143229 -1.52594e-4 -0.9995805 0.02896225 -1.22076e-4 -0.9863164 -0.1648642 0 -0.9934599 0.1141816 -9.15559e-5 -0.9998205 -0.01895201 0 -0.9919314 -0.1267763 0 -0.9535057 -0.3013753 0 -0.841861 -0.5396944 -3.05194e-5 -0.8477686 -0.5303665 0 -0.5755048 -0.8177985 6.10388e-5 -0.4924303 -0.8703519 0 -0.4019376 -0.9156671 0 -0.5411262 -0.8409415 0 -0.1936528 -0.9810702 0 -0.1936076 -0.9810791 0 -0.193648 -0.9810711 0 -0.1931966 -0.9811601 0 -0.1932288 -0.9811538 0 -0.1932128 -0.9811569 -3.8147e-5 -4.52995e-5 -1 -3.54588e-5 5.40746e-5 -1 0 -0.1783241 -0.9839719 -3.05185e-5 -9.15555e-5 -1 -4.19617e-5 0 -1 -3.75601e-5 2.40619e-5 -1 -4.4139e-5 -1.35427e-5 -1 0 0.2056674 -0.9786219 0 0.01406931 -0.9999011 0 -0.1979176 -0.9802187 -3.65753e-5 1.63648e-4 -1 -2.44157e-4 0.3046772 -0.9524557 -3.05185e-5 2.1363e-4 -1 -4.24592e-5 9.84081e-5 -1 0 0.2709462 -0.9625945 0 0.3619263 -0.9322068 0 0.4487267 -0.893669 -1.22076e-4 0.8497698 -0.527154 0 0.7881281 -0.6155114 -3.0519e-5 0.5805625 -0.8142157 0 0.9618504 -0.2735762 -1.83114e-4 0.9344611 -0.3560652 0 0.9623454 -0.2718298 0 0.496967 -0.8677695 0 0.6443895 -0.7646975 -9.15568e-5 0.9177041 -0.3972648 0 0.8630142 -0.5051798 0 0.9623767 -0.2717188 -4.88307e-4 0.981681 -0.1905314 -0.00100708 0.9666789 -0.2559906 0 0.9645587 -0.2638688 0 0.9451467 -0.3266462 -6.10378e-5 0.9487413 -0.3160538 0 0.9807388 -0.1953237 0 0.9920518 -0.1258299 1 0 0 1 1.24439e-5 0 1 -1.34613e-5 0 1 -3.24865e-5 0 0.9999999 6.52103e-4 0 1 -1.93461e-4 0 1 -1.54895e-4 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 0 1 1 2 2 2 3 3 3 2 2 4 4 4 5 3 3 6 4 4 7 5 5 8 1 1 9 10 0 10 3 3 11 2 2 12 3 3 13 10 0 14 11 6 15 6 7 16 8 8 17 7 9 18 6 7 19 11 6 20 6 7 21 7 9 22 5 5 23 6 7 24 5 5 25 4 4 26 11 6 27 9 8 28 7 9 29 16 10 30 12 10 31 14 10 32 16 11 33 14 11 34 17 11 35 13 12 36 16 12 37 17 12 38 13 13 39 17 13 40 15 13 41 29 14 42 18 15 43 20 16 44 21 17 45 20 16 46 22 18 47 21 17 48 22 18 49 23 19 50 19 15 51 29 14 52 21 17 53 20 16 54 21 17 55 29 14 56 28 20 57 24 21 58 26 22 59 25 23 60 24 21 61 28 20 62 24 21 63 25 23 64 23 19 65 24 21 66 23 19 67 22 18 68 28 20 69 27 22 70 25 23 71 36 24 72 35 24 73 34 24 74 37 24 75 36 24 76 34 24 77 33 24 78 38 24 79 34 24 80 37 24 81 34 24 82 38 24 83 39 24 84 38 24 85 33 24 86 54 24 87 53 24 88 30 24 89 52 24 90 30 24 91 53 24 92 52 24 93 51 24 94 30 24 95 30 24 96 51 24 97 31 24 98 33 24 99 40 24 100 39 24 101 33 24 102 45 24 103 44 24 104 44 24 105 41 24 106 33 24 107 44 24 108 43 24 109 42 24 110 41 24 111 44 24 112 42 24 113 32 24 114 45 24 115 33 24 116 49 24 117 46 24 118 50 24 119 31 24 120 50 24 121 46 24 122 51 24 123 50 24 124 31 24 125 49 24 126 48 24 127 46 24 128 46 24 129 48 24 130 47 24 131 45 24 132 31 24 133 46 24 134 45 24 135 32 24 136 31 24 137 33 24 138 41 24 139 40 24 140 77 25 141 66 25 142 76 25 143 76 26 144 66 26 145 75 26 146 78 27 147 66 27 148 77 27 149 66 28 150 80 28 151 81 28 152 80 29 153 66 29 154 79 29 155 79 30 156 66 30 157 78 30 158 81 31 159 65 31 160 66 31 161 74 32 162 70 33 163 71 34 164 70 27 165 74 27 166 69 27 167 72 27 168 73 35 169 71 34 170 69 27 171 74 27 172 68 27 173 68 27 174 74 27 175 67 27 176 67 36 177 74 36 178 75 36 179 67 37 180 75 37 181 66 37 182 73 35 183 74 32 184 71 34 185 65 38 186 81 38 187 82 38 188 84 39 189 85 40 190 62 41 191 83 42 192 84 39 193 65 43 194 86 44 195 61 45 196 85 40 197 56 46 198 88 47 199 55 48 200 59 49 201 86 44 202 87 50 203 87 50 204 88 47 205 57 51 206 88 47 207 56 46 208 57 51 209 64 52 210 65 43 211 84 39 212 63 53 213 64 52 214 84 39 215 84 54 216 62 54 217 63 54 218 87 50 219 58 55 220 59 49 221 61 45 222 62 41 223 85 40 224 86 56 225 60 56 226 61 56 227 86 57 228 59 57 229 60 57 230 87 50 231 57 51 232 58 55 233 82 58 234 83 42 235 65 43 236 100 59 237 89 60 238 91 61 239 92 61 240 91 61 241 93 62 242 92 61 243 93 62 244 94 63 245 90 60 246 100 59 247 92 61 248 91 61 249 92 61 250 100 59 251 97 64 252 95 65 253 96 66 254 99 67 255 95 65 256 97 64 257 99 67 258 94 63 259 93 62 260 99 67 261 93 62 262 95 65 263 101 68 264 99 67 265 97 64 266 101 68 267 97 64 268 98 69 269 115 70 270 108 71 271 102 72 272 104 73 273 115 70 274 102 72 275 115 74 276 103 74 277 108 74 278 114 75 279 115 70 280 104 73 281 114 75 282 104 73 283 113 76 284 113 76 285 104 73 286 112 77 287 111 78 288 105 79 289 106 80 290 109 81 291 106 80 292 107 82 293 111 78 294 112 77 295 105 79 296 111 78 297 109 81 298 110 83 299 111 78 300 106 80 301 109 81 302 104 73 303 105 79 304 112 77 305 120 84 306 116 84 307 118 84 308 120 85 309 123 85 310 117 85 311 123 86 312 120 86 313 118 86 314 118 87 315 121 87 316 123 87 317 121 88 318 122 88 319 123 88 320 119 89 321 121 89 322 118 89 323 151 90 324 131 90 325 150 90 326 131 91 327 146 91 328 147 91 329 152 92 330 131 27 331 151 93 332 131 94 333 148 94 334 149 94 335 147 95 336 148 95 337 131 95 338 131 96 339 149 96 340 150 96 341 125 97 342 142 98 343 131 27 344 131 27 345 152 92 346 130 99 347 131 100 348 144 100 349 145 100 350 131 27 351 142 98 352 143 101 353 143 101 354 144 102 355 131 27 356 145 103 357 146 103 358 131 103 359 125 97 360 131 27 361 124 27 362 141 104 363 125 97 364 140 105 365 125 97 366 139 106 367 140 105 368 142 98 369 125 97 370 141 104 371 127 107 372 136 108 373 126 109 374 133 110 375 127 107 376 128 111 377 139 106 378 125 97 379 126 109 380 128 111 381 132 112 382 133 110 383 126 109 384 138 113 385 139 106 386 126 109 387 136 108 388 137 114 389 137 114 390 138 113 391 126 109 392 134 115 393 135 116 394 127 107 395 127 107 396 133 110 397 134 115 398 132 117 399 129 117 400 133 117 401 135 116 402 136 108 403 127 107 404 155 118 405 161 119 406 159 120 407 158 121 408 159 120 409 162 122 410 161 119 411 162 122 412 159 120 413 154 123 414 159 120 415 153 120 416 160 124 417 154 123 418 156 124 419 157 124 420 155 118 421 160 124 422 154 123 423 160 124 424 155 118 425 159 120 426 154 123 427 155 118 428 172 125 429 163 125 430 164 125 431 174 125 432 175 125 433 163 125 434 173 125 435 174 125 436 163 125 437 173 125 438 163 125 439 172 125 440 172 125 441 164 125 442 171 125 443 164 126 444 167 126 445 171 126 446 167 127 447 164 127 448 177 127 449 165 128 450 176 128 451 177 128 452 176 125 453 165 125 454 166 125 455 170 129 456 171 129 457 167 129 458 167 130 459 169 130 460 170 130 461 167 131 462 168 131 463 169 131 464 177 125 465 164 125 466 165 125 467

+
+
+
+ + + + 0 89.70801 -204.999 63.1562 89.70801 -204.999 0 89.71411 -204.788 63.1562 89.71411 -204.788 0 89.68701 -204.716 63.1562 89.68701 -204.716 0 89.6681 -204.696 63.1562 89.6681 -204.696 0 89.6477 -204.687 63.1562 89.6477 -204.687 31.5781 89.70801 -204.999 31.5781 89.6477 -204.687 0 89.6477 -204.687 63.1562 89.6477 -204.687 0 89.4853 -204.654 63.1562 89.4853 -204.654 31.5781 89.6477 -204.687 31.5781 89.4853 -204.654 0 89.4853 -204.654 63.1562 89.4853 -204.654 0 89.4629 -204.655 63.1562 89.4629 -204.655 0 89.4379 -204.666 63.1562 89.4379 -204.666 0 89.3852 -204.722 63.1562 89.3852 -204.722 0 89.3101 -204.92 63.1562 89.3101 -204.92 31.5781 89.3101 -204.92 31.5781 89.4853 -204.654 0 89.3101 -204.92 0 89.12651 -207.07 0 88.8331 -208.953 0 88.43 -210.569 0 87.9172 -211.918 0 87.9111 -212.129 0 87.9383 -212.201 0 87.9571 -212.221 0 87.9776 -212.23 0 88.0588 -212.246 0 88.1399 -212.262 0 88.1623 -212.262 0 88.1873 -212.251 0 88.2401 -212.194 0 88.3152 -211.997 0 89.25701 -208.554 0 89.70801 -204.999 0 89.71411 -204.788 0 89.68701 -204.716 0 89.6681 -204.696 0 89.6477 -204.687 0 89.4853 -204.654 0 89.4629 -204.655 0 89.4379 -204.666 0 89.3852 -204.722 63.1562 88.4848 -211.497 63.1562 88.1009 -211.497 59.9626 88.00611 -211.721 56.7671 87.9172 -211.918 54.632 87.9042 -212.031 53.5641 87.9052 -212.082 52.496 87.9111 -212.129 51.08 87.9283 -212.184 50.372 87.9435 -212.208 49.6645 87.9776 -212.23 49.0913 88.0588 -212.246 48.4522 88.1399 -212.262 48.4215 88.1449 -212.263 48.4137 88.1477 -212.263 48.4123 88.14891 -212.263 48.4121 88.1495 -212.263 48.4121 88.15 -212.263 48.4124 88.1506 -212.263 48.4142 88.152 -212.263 48.4175 88.1533 -212.263 48.4265 88.1556 -212.263 48.4382 88.1577 -212.263 48.4607 88.1607 -212.262 48.483 88.1631 -212.262 48.5213 88.1664 -212.261 48.595 88.1715 -212.259 48.741 88.1795 -212.255 49.0322 88.1916 -212.248 49.6141 88.21051 -212.232 50.7775 88.2401 -212.194 51.9105 88.2639 -212.153 53.0433 88.2843 -212.106 55.3086 88.3152 -211.997 59.2339 88.39402 -211.769 0 89.3101 -204.92 63.1562 89.3101 -204.92 0 89.12651 -207.07 63.1562 89.12651 -207.07 0 88.8331 -208.953 63.1562 88.8331 -208.953 0 88.43 -210.569 0 87.9172 -211.918 28.3835 87.9172 -211.918 56.7671 87.9172 -211.918 63.1562 88.1009 -211.497 31.5781 89.3101 -204.92 59.9626 88.00611 -211.721 0 87.9172 -211.918 56.7671 87.9172 -211.918 0 87.9111 -212.129 0 87.9383 -212.201 0 87.9571 -212.221 0 87.9776 -212.23 28.3835 87.9172 -211.918 24.8323 87.9776 -212.23 49.6645 87.9776 -212.23 50.372 87.9435 -212.208 51.08 87.9283 -212.184 52.496 87.9111 -212.129 53.5641 87.9052 -212.082 54.632 87.9042 -212.031 0 87.9776 -212.23 49.6645 87.9776 -212.23 0 88.0588 -212.246 0 88.1399 -212.262 24.8323 87.9776 -212.23 24.2261 88.1399 -212.262 48.4522 88.1399 -212.262 49.0913 88.0588 -212.246 0 88.1399 -212.262 0 88.1623 -212.262 0 88.1873 -212.251 0 88.2401 -212.194 0 88.3152 -211.997 55.3086 88.3152 -211.997 48.4522 88.1399 -212.262 24.2261 88.1399 -212.262 27.6543 88.3152 -211.997 53.0433 88.2843 -212.106 51.9105 88.2639 -212.153 50.7775 88.2401 -212.194 49.6141 88.21051 -212.232 49.0322 88.1916 -212.248 48.741 88.1795 -212.255 48.595 88.1715 -212.259 48.5213 88.1664 -212.261 48.483 88.1631 -212.262 48.4607 88.1607 -212.262 48.4382 88.1577 -212.263 48.4265 88.1556 -212.263 48.4175 88.1533 -212.263 48.4142 88.152 -212.263 48.4124 88.1506 -212.263 48.4121 88.15 -212.263 48.4121 88.1495 -212.263 48.4123 88.14891 -212.263 48.4137 88.1477 -212.263 48.4215 88.1449 -212.263 0 88.3152 -211.997 0 89.25701 -208.554 63.1562 89.25701 -208.554 0 89.70801 -204.999 63.1562 89.70801 -204.999 55.3086 88.3152 -211.997 27.6543 88.3152 -211.997 31.5781 89.70801 -204.999 63.1562 88.4848 -211.497 59.2339 88.39402 -211.769 63.1562 89.3101 -204.92 63.1562 89.12651 -207.07 63.1562 88.8331 -208.953 63.1562 88.1009 -211.497 63.1562 89.70801 -204.999 63.1562 89.71411 -204.788 63.1562 89.68701 -204.716 63.1562 89.6681 -204.696 63.1562 89.6477 -204.687 63.1562 89.4853 -204.654 63.1562 89.4629 -204.655 63.1562 89.4379 -204.666 63.1562 89.3852 -204.722 63.1562 88.4848 -211.497 63.1562 89.25701 -208.554 + + + + + + + + + + 0 0.9995841 -0.0288403 0 0.9995815 -0.02893179 0 0.986342 0.1647107 0 0.8478851 0.53018 0 0.8480018 0.5299935 0 0.403801 0.9148469 0 0.5764387 0.8171404 0 0.5766329 0.8170034 0 0.1990665 0.979986 0 0.1990665 0.979986 0 0.1990665 0.979986 0 -0.04422259 0.9990218 0 -0.04425305 0.9990204 0 -0.2273685 0.9738088 0 -0.2273396 0.9738156 0 -0.5770965 0.816676 0 -0.5770821 0.8166861 0 -0.935007 0.3546294 0 -0.8479075 0.5301443 -1 0 0 0.04740267 -0.01934146 -0.9986886 0.008005917 -0.04947429 -0.9987434 -0.002153396 0 -0.9999977 0.02951425 -0.03863447 -0.9988175 0.02975958 -0.04058003 -0.998733 0.02907431 -0.03880357 -0.9988238 0.02457362 -0.003115713 -0.9996932 -0.001892149 0 -0.9999982 0.01815879 0 -0.9998351 -0.004272639 0 -0.9999909 0.03028911 0 -0.9995412 0 0 -1 -0.01913523 0 -0.9998169 -0.002106726 0 -0.9999978 0.03097927 -0.01420581 -0.9994191 0.02415966 -0.004268169 -0.999699 0.03390616 0.001678466 -0.9994236 0.03894168 -0.002075254 -0.9992393 0.03586018 0.001586973 -0.9993556 0.03268587 -0.0205698 -0.999254 0.02697908 -0.003112971 -0.9996312 0.04425299 -0.001037657 -0.9990199 0.04144519 -6.40905e-4 -0.9991406 0.06921684 4.88302e-4 -0.9976015 0.06009256 -0.0107733 -0.9981347 0.06915611 0 -0.9976059 0.0488004 0.002105832 -0.9988064 0.05270612 -0.001464903 -0.998609 0.06793594 0.005157709 -0.9976764 0.02969497 0.01101732 -0.9994984 0.03186142 0.003601193 -0.9994859 0.03386008 8.32282e-4 -0.9994263 0.06012248 0.0222789 -0.9979423 0.04391455 -0.002885341 -0.9990311 0.0477001 0.002287626 -0.9988591 0.02545255 -0.003692746 -0.9996692 0 -0.9963737 0.08508604 0 -0.9963763 0.08505576 0 -0.9928252 0.1195748 -7.01947e-4 -0.9800701 0.1986508 0 -0.9764642 0.2156797 4.88307e-4 -0.9311711 0.3645823 -7.32457e-4 -0.9543309 0.298751 0 -0.9347394 0.3553341 0 -0.9594438 0.2819003 1.52596e-4 -0.9216504 0.3880215 0 -0.9114837 0.4113365 0 -0.9936733 0.1123105 0 -0.9934611 0.1141723 -1.52594e-4 -0.9995805 0.02896225 -1.22076e-4 -0.9862194 -0.1654431 0 -0.9934428 0.1143308 -9.15559e-5 -0.9998205 -0.01895201 0 -0.9919314 -0.1267763 0 -0.9534096 -0.3016791 0 -0.8403456 -0.5420511 -3.05188e-5 -0.8482708 -0.5295627 0 -0.5767575 -0.8169154 6.1038e-5 -0.4930958 -0.8699752 0 -0.4019376 -0.9156671 0 -0.5419941 -0.8403823 0 -0.1934271 -0.9811146 0 -0.1933988 -0.9811203 0 -0.1934196 -0.9811161 0 -0.1934475 -0.9811106 0 -0.1934404 -0.9811121 0 -0.1934439 -0.9811114 -3.25521e-5 -4.83195e-5 -1 -4.89091e-5 5.32759e-5 -1 0 -0.1774054 -0.9841379 -3.05185e-5 -9.15555e-5 -1 -5.7373e-5 0 -1 0 2.08537e-5 -1 -4.90478e-5 -1.43945e-5 -1 0 0.2055152 -0.978654 0 0.0140388 -0.9999015 0 -0.1975773 -0.9802874 -3.93837e-5 1.61925e-4 -1 -2.44149e-4 0.3038133 -0.9527316 -3.05194e-5 2.13636e-4 -1 -4.57764e-5 1.06096e-4 -1 0 0.2781818 -0.9605284 0 0.3629985 -0.9317897 0 0.4456992 -0.8951828 -1.22074e-4 0.8495464 -0.5275141 0 0.7871765 -0.6167279 -3.05197e-5 0.5801493 -0.8145102 0 0.9615562 -0.2746083 -1.83113e-4 0.9344269 -0.3561552 0 0.9621377 -0.2725639 0 0.499327 -0.8664137 0 0.6446225 -0.7645011 -9.15564e-5 0.9177311 -0.3972023 0 0.8636904 -0.5040228 0 0.9620731 -0.2727921 -4.88307e-4 0.981681 -0.1905314 -0.00100708 0.9666789 -0.2559906 0 0.9645664 -0.2638404 0 0.9451467 -0.3266462 -6.1039e-5 0.9488815 -0.3156326 0 0.9807388 -0.1953237 0 0.9920518 -0.1258299 1 0 0 1 1.24526e-5 0 1 -1.34649e-5 0 1 -3.24855e-5 0 0.9999998 6.55093e-4 0 1 -1.9333e-4 0 1 -1.54943e-4 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 0 1 1 2 2 2 3 2 3 2 2 4 4 3 5 3 2 6 4 3 7 5 4 8 1 1 9 10 0 10 3 2 11 2 2 12 3 2 13 10 0 14 11 5 15 6 6 16 8 5 17 7 7 18 6 6 19 11 5 20 6 6 21 7 7 22 5 4 23 6 6 24 5 4 25 4 3 26 11 5 27 9 5 28 7 7 29 16 8 30 12 8 31 14 8 32 16 8 33 14 8 34 17 8 35 13 9 36 16 9 37 17 9 38 13 10 39 17 10 40 15 10 41 29 11 42 18 12 43 20 13 44 21 14 45 20 13 46 22 15 47 21 14 48 22 15 49 23 16 50 19 12 51 29 11 52 21 14 53 20 13 54 21 14 55 29 11 56 28 17 57 24 18 58 26 17 59 25 18 60 24 18 61 28 17 62 24 18 63 25 18 64 23 16 65 24 18 66 23 16 67 22 15 68 28 17 69 27 17 70 25 18 71 36 19 72 35 19 73 34 19 74 37 19 75 36 19 76 34 19 77 33 19 78 38 19 79 34 19 80 37 19 81 34 19 82 38 19 83 39 19 84 38 19 85 33 19 86 54 19 87 53 19 88 30 19 89 52 19 90 30 19 91 53 19 92 52 19 93 51 19 94 30 19 95 30 19 96 51 19 97 31 19 98 33 19 99 40 19 100 39 19 101 33 19 102 45 19 103 44 19 104 44 19 105 41 19 106 33 19 107 44 19 108 43 19 109 42 19 110 41 19 111 44 19 112 42 19 113 32 19 114 45 19 115 33 19 116 49 19 117 46 19 118 50 19 119 31 19 120 50 19 121 46 19 122 51 19 123 50 19 124 31 19 125 49 19 126 48 19 127 46 19 128 46 19 129 48 19 130 47 19 131 45 19 132 31 19 133 46 19 134 45 19 135 32 19 136 31 19 137 33 19 138 41 19 139 40 19 140 77 20 141 66 20 142 76 20 143 76 21 144 66 21 145 75 21 146 78 22 147 66 22 148 77 22 149 66 23 150 80 23 151 81 23 152 80 24 153 66 24 154 79 24 155 79 25 156 66 25 157 78 25 158 81 26 159 65 26 160 66 26 161 74 27 162 70 28 163 71 29 164 70 30 165 74 30 166 69 30 167 72 31 168 73 31 169 71 31 170 69 32 171 74 32 172 68 32 173 68 31 174 74 31 175 67 31 176 67 33 177 74 33 178 75 33 179 67 34 180 75 34 181 66 34 182 73 31 183 74 31 184 71 31 185 65 35 186 81 35 187 82 35 188 84 36 189 85 37 190 62 38 191 83 39 192 84 36 193 65 40 194 86 41 195 61 42 196 85 37 197 56 43 198 88 44 199 55 45 200 59 46 201 86 41 202 87 47 203 87 47 204 88 44 205 57 48 206 88 44 207 56 43 208 57 48 209 64 49 210 65 40 211 84 36 212 63 50 213 64 49 214 84 36 215 84 51 216 62 51 217 63 51 218 87 47 219 58 52 220 59 46 221 61 42 222 62 38 223 85 37 224 86 53 225 60 53 226 61 53 227 86 54 228 59 54 229 60 54 230 87 47 231 57 48 232 58 52 233 82 55 234 83 39 235 65 40 236 100 56 237 89 57 238 91 58 239 92 58 240 91 58 241 93 59 242 92 58 243 93 59 244 94 60 245 90 57 246 100 56 247 92 58 248 91 58 249 92 58 250 100 56 251 97 61 252 95 62 253 96 63 254 99 64 255 95 62 256 97 61 257 99 64 258 94 60 259 93 59 260 99 64 261 93 59 262 95 62 263 101 65 264 99 64 265 97 61 266 101 65 267 97 61 268 98 66 269 115 67 270 108 68 271 102 69 272 104 70 273 115 67 274 102 69 275 115 71 276 103 71 277 108 71 278 114 72 279 115 67 280 104 70 281 114 72 282 104 70 283 113 73 284 113 73 285 104 70 286 112 74 287 111 75 288 105 76 289 106 77 290 109 78 291 106 77 292 107 79 293 111 75 294 112 74 295 105 76 296 111 75 297 109 78 298 110 80 299 111 75 300 106 77 301 109 78 302 104 70 303 105 76 304 112 74 305 120 81 306 116 81 307 118 81 308 120 82 309 123 82 310 117 82 311 123 83 312 120 83 313 118 83 314 118 84 315 121 84 316 123 84 317 121 85 318 122 85 319 123 85 320 119 86 321 121 86 322 118 86 323 151 87 324 131 87 325 150 87 326 131 88 327 146 88 328 147 88 329 152 89 330 131 31 331 151 90 332 131 91 333 148 91 334 149 91 335 147 92 336 148 92 337 131 92 338 131 93 339 149 93 340 150 93 341 125 94 342 142 95 343 131 31 344 131 31 345 152 89 346 130 96 347 131 97 348 144 97 349 145 97 350 131 31 351 142 95 352 143 98 353 143 98 354 144 99 355 131 31 356 145 100 357 146 100 358 131 100 359 125 94 360 131 31 361 124 31 362 141 101 363 125 94 364 140 102 365 125 94 366 139 103 367 140 102 368 142 95 369 125 94 370 141 101 371 127 104 372 136 105 373 126 106 374 133 107 375 127 104 376 128 108 377 139 103 378 125 94 379 126 106 380 128 108 381 132 109 382 133 107 383 126 106 384 138 110 385 139 103 386 126 106 387 136 105 388 137 111 389 137 111 390 138 110 391 126 106 392 134 112 393 135 113 394 127 104 395 127 104 396 133 107 397 134 112 398 132 114 399 129 114 400 133 114 401 135 113 402 136 105 403 127 104 404 155 115 405 161 116 406 159 117 407 158 118 408 159 117 409 162 119 410 161 116 411 162 119 412 159 117 413 154 120 414 159 117 415 153 117 416 160 121 417 154 120 418 156 121 419 157 121 420 155 115 421 160 121 422 154 120 423 160 121 424 155 115 425 159 117 426 154 120 427 155 115 428 172 122 429 163 122 430 164 122 431 174 122 432 175 122 433 163 122 434 173 122 435 174 122 436 163 122 437 173 122 438 163 122 439 172 122 440 172 122 441 164 122 442 171 122 443 164 123 444 167 123 445 171 123 446 167 124 447 164 124 448 177 124 449 165 125 450 176 125 451 177 125 452 176 122 453 165 122 454 166 122 455 170 126 456 171 126 457 167 126 458 167 127 459 169 127 460 170 127 461 167 128 462 168 128 463 169 128 464 177 122 465 164 122 466 165 122 467

+
+
+
+ + + + 0 89.70801 -204.999 -63.1562 89.70801 -204.999 0 89.71411 -204.788 -63.1562 89.71411 -204.788 0 89.68701 -204.716 -63.1562 89.68701 -204.716 0 89.6681 -204.696 -63.1562 89.6681 -204.696 0 89.6477 -204.687 -63.1562 89.6477 -204.687 -31.5781 89.70801 -204.999 -31.5781 89.6477 -204.687 0 89.6477 -204.687 -63.1562 89.6477 -204.687 0 89.4853 -204.654 -63.1562 89.4853 -204.654 -31.5781 89.6477 -204.687 -31.5781 89.4853 -204.654 0 89.4853 -204.654 -63.1562 89.4853 -204.654 0 89.4629 -204.655 -63.1562 89.4629 -204.655 0 89.4379 -204.666 -63.1562 89.4379 -204.666 0 89.3852 -204.722 -63.1562 89.3852 -204.722 0 89.3101 -204.92 -63.1562 89.3101 -204.92 -31.5781 89.3101 -204.92 -31.5781 89.4853 -204.654 0 89.3101 -204.92 0 89.12651 -207.07 0 88.8331 -208.953 0 88.43 -210.569 0 87.9172 -211.918 0 87.9111 -212.129 0 87.9383 -212.201 0 87.9571 -212.221 0 87.9776 -212.23 0 88.0588 -212.246 0 88.1399 -212.262 0 88.1623 -212.262 0 88.1873 -212.251 0 88.2401 -212.194 0 88.3152 -211.997 0 89.25701 -208.554 0 89.70801 -204.999 0 89.71411 -204.788 0 89.68701 -204.716 0 89.6681 -204.696 0 89.6477 -204.687 0 89.4853 -204.654 0 89.4629 -204.655 0 89.4379 -204.666 0 89.3852 -204.722 -63.1562 88.4848 -211.497 -63.1562 88.1009 -211.497 -59.9626 88.00611 -211.721 -56.7671 87.9172 -211.918 -54.632 87.9042 -212.031 -53.5641 87.9052 -212.082 -52.496 87.9111 -212.129 -51.08 87.9283 -212.184 -50.372 87.9435 -212.208 -49.6645 87.9776 -212.23 -49.0913 88.0588 -212.246 -48.4522 88.1399 -212.262 -48.4215 88.1449 -212.263 -48.4137 88.1477 -212.263 -48.4123 88.14891 -212.263 -48.4121 88.1495 -212.263 -48.4121 88.15 -212.263 -48.4124 88.1506 -212.263 -48.4142 88.152 -212.263 -48.4175 88.1533 -212.263 -48.4265 88.1556 -212.263 -48.4382 88.1577 -212.263 -48.4607 88.1607 -212.262 -48.483 88.1631 -212.262 -48.5213 88.1664 -212.261 -48.595 88.1715 -212.259 -48.741 88.1795 -212.255 -49.0322 88.1916 -212.248 -49.6141 88.21051 -212.232 -50.7775 88.2401 -212.194 -51.9105 88.2639 -212.153 -53.0433 88.2843 -212.106 -55.3086 88.3152 -211.997 -59.2339 88.39402 -211.769 0 89.3101 -204.92 -63.1562 89.3101 -204.92 0 89.12651 -207.07 -63.1562 89.12651 -207.07 0 88.8331 -208.953 -63.1562 88.8331 -208.953 0 88.43 -210.569 0 87.9172 -211.918 -28.3835 87.9172 -211.918 -56.7671 87.9172 -211.918 -63.1562 88.1009 -211.497 -31.5781 89.3101 -204.92 -59.9626 88.00611 -211.721 0 87.9172 -211.918 -56.7671 87.9172 -211.918 0 87.9111 -212.129 0 87.9383 -212.201 0 87.9571 -212.221 0 87.9776 -212.23 -28.3835 87.9172 -211.918 -24.8323 87.9776 -212.23 -49.6645 87.9776 -212.23 -50.372 87.9435 -212.208 -51.08 87.9283 -212.184 -52.496 87.9111 -212.129 -53.5641 87.9052 -212.082 -54.632 87.9042 -212.031 0 87.9776 -212.23 -49.6645 87.9776 -212.23 0 88.0588 -212.246 0 88.1399 -212.262 -24.8323 87.9776 -212.23 -24.2261 88.1399 -212.262 -48.4522 88.1399 -212.262 -49.0913 88.0588 -212.246 0 88.1399 -212.262 0 88.1623 -212.262 0 88.1873 -212.251 0 88.2401 -212.194 0 88.3152 -211.997 -55.3086 88.3152 -211.997 -48.4522 88.1399 -212.262 -24.2261 88.1399 -212.262 -27.6543 88.3152 -211.997 -53.0433 88.2843 -212.106 -51.9105 88.2639 -212.153 -50.7775 88.2401 -212.194 -49.6141 88.21051 -212.232 -49.0322 88.1916 -212.248 -48.741 88.1795 -212.255 -48.595 88.1715 -212.259 -48.5213 88.1664 -212.261 -48.483 88.1631 -212.262 -48.4607 88.1607 -212.262 -48.4382 88.1577 -212.263 -48.4265 88.1556 -212.263 -48.4175 88.1533 -212.263 -48.4142 88.152 -212.263 -48.4124 88.1506 -212.263 -48.4121 88.15 -212.263 -48.4121 88.1495 -212.263 -48.4123 88.14891 -212.263 -48.4137 88.1477 -212.263 -48.4215 88.1449 -212.263 0 88.3152 -211.997 0 89.25701 -208.554 -63.1562 89.25701 -208.554 0 89.70801 -204.999 -63.1562 89.70801 -204.999 -55.3086 88.3152 -211.997 -27.6543 88.3152 -211.997 -31.5781 89.70801 -204.999 -63.1562 88.4848 -211.497 -59.2339 88.39402 -211.769 -63.1562 89.3101 -204.92 -63.1562 89.12651 -207.07 -63.1562 88.8331 -208.953 -63.1562 88.1009 -211.497 -63.1562 89.70801 -204.999 -63.1562 89.71411 -204.788 -63.1562 89.68701 -204.716 -63.1562 89.6681 -204.696 -63.1562 89.6477 -204.687 -63.1562 89.4853 -204.654 -63.1562 89.4629 -204.655 -63.1562 89.4379 -204.666 -63.1562 89.3852 -204.722 -63.1562 88.4848 -211.497 -63.1562 89.25701 -208.554 + + + + + + + + + + 0 0.9995841 -0.0288403 0 0.986342 0.1647107 0 0.9995815 -0.02893179 0 0.8480018 0.5299935 0 0.8478851 0.53018 0 0.403801 0.9148469 0 0.5764387 0.8171404 0 0.5766329 0.8170034 0 0.1990665 0.979986 0 0.1990665 0.979986 0 0.1990665 0.979986 0 -0.04422259 0.9990218 0 -0.2273685 0.9738088 0 -0.04425305 0.9990204 0 -0.2273396 0.9738156 0 -0.5770821 0.8166861 0 -0.5770965 0.816676 0 -0.935007 0.3546294 0 -0.8479075 0.5301443 1 0 0 -0.04740267 -0.01934146 -0.9986886 -0.008005917 -0.04947429 -0.9987434 0.002153396 0 -0.9999977 -0.02951425 -0.03863447 -0.9988175 -0.02975958 -0.04058003 -0.998733 -0.02907431 -0.03880357 -0.9988238 -0.02457362 -0.003115713 -0.9996932 0.001892149 0 -0.9999982 0.004272639 0 -0.9999909 -0.01815879 0 -0.9998351 -0.03028911 0 -0.9995412 0 0 -1 0.01913523 0 -0.9998169 0.002106726 0 -0.9999978 -0.03097927 -0.01420581 -0.9994191 -0.02415966 -0.004268169 -0.999699 -0.03390616 0.001678466 -0.9994236 -0.03586018 0.001586973 -0.9993556 -0.03894168 -0.002075254 -0.9992393 -0.03268587 -0.0205698 -0.999254 -0.02697908 -0.003112971 -0.9996312 -0.04425299 -0.001037657 -0.9990199 -0.04144519 -6.40905e-4 -0.9991406 -0.06921684 4.88302e-4 -0.9976015 -0.06915611 0 -0.9976059 -0.06009256 -0.0107733 -0.9981347 -0.0488004 0.002105832 -0.9988064 -0.05270612 -0.001464903 -0.998609 -0.06793594 0.005157709 -0.9976764 -0.02969497 0.01101732 -0.9994984 -0.03186142 0.003601193 -0.9994859 -0.03386008 8.32282e-4 -0.9994263 -0.06012248 0.0222789 -0.9979423 -0.04391455 -0.002885341 -0.9990311 -0.0477001 0.002287626 -0.9988591 -0.02545255 -0.003692746 -0.9996692 0 -0.9963737 0.08508604 0 -0.9928252 0.1195748 0 -0.9963763 0.08505576 0 -0.9764642 0.2156797 7.01947e-4 -0.9800701 0.1986508 -4.88307e-4 -0.9311711 0.3645823 0 -0.9347394 0.3553341 7.32457e-4 -0.9543309 0.298751 0 -0.9594438 0.2819003 -1.52596e-4 -0.9216504 0.3880215 0 -0.9114837 0.4113365 0 -0.9936733 0.1123105 1.52594e-4 -0.9995805 0.02896225 0 -0.9934611 0.1141723 1.22076e-4 -0.9862194 -0.1654431 0 -0.9934428 0.1143308 9.15559e-5 -0.9998205 -0.01895201 0 -0.9919314 -0.1267763 0 -0.9534096 -0.3016791 0 -0.8403456 -0.5420511 0 -0.5767575 -0.8169154 3.05188e-5 -0.8482708 -0.5295627 -6.1038e-5 -0.4930958 -0.8699752 0 -0.4019376 -0.9156671 0 -0.5419941 -0.8403823 0 -0.1934271 -0.9811146 0 -0.1933988 -0.9811203 0 -0.1934196 -0.9811161 0 -0.1934475 -0.9811106 0 -0.1934404 -0.9811121 0 -0.1934439 -0.9811114 3.25521e-5 -4.83195e-5 -1 4.89091e-5 5.32759e-5 -1 0 -0.1774054 -0.9841379 3.05185e-5 -9.15555e-5 -1 5.7373e-5 0 -1 0 2.08537e-5 -1 4.90478e-5 -1.43945e-5 -1 0 0.2055152 -0.978654 0 0.0140388 -0.9999015 0 -0.1975773 -0.9802874 3.93837e-5 1.61925e-4 -1 2.44149e-4 0.3038133 -0.9527316 3.05194e-5 2.13636e-4 -1 4.57764e-5 1.06096e-4 -1 0 0.2781818 -0.9605284 0 0.3629985 -0.9317897 0 0.4456992 -0.8951828 1.22074e-4 0.8495464 -0.5275141 3.05197e-5 0.5801493 -0.8145102 0 0.7871765 -0.6167279 0 0.9615562 -0.2746083 1.83113e-4 0.9344269 -0.3561552 0 0.9621377 -0.2725639 0 0.499327 -0.8664137 0 0.6446225 -0.7645011 9.15564e-5 0.9177311 -0.3972023 0 0.8636904 -0.5040228 0 0.9620731 -0.2727921 4.88307e-4 0.981681 -0.1905314 0 0.9645664 -0.2638404 0.00100708 0.9666789 -0.2559906 0 0.9451467 -0.3266462 6.1039e-5 0.9488815 -0.3156326 0 0.9807388 -0.1953237 0 0.9920518 -0.1258299 -1 0 0 -1 1.24526e-5 0 -1 -1.34649e-5 0 -1 -3.24855e-5 0 -0.9999998 6.55093e-4 0 -1 -1.9333e-4 0 -1 -1.54943e-4 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 2 1 1 0 2 2 3 1 3 5 3 4 4 4 5 3 1 6 4 4 7 2 1 8 1 2 9 3 1 10 10 0 11 2 1 12 10 0 13 3 1 14 11 5 15 8 5 16 6 6 17 7 7 18 11 5 19 6 6 20 6 6 21 4 4 22 5 3 23 6 6 24 5 3 25 7 7 26 11 5 27 7 7 28 9 5 29 16 8 30 17 8 31 14 8 32 16 8 33 14 8 34 12 8 35 13 9 36 15 9 37 17 9 38 13 10 39 17 10 40 16 10 41 29 11 42 20 12 43 18 13 44 21 14 45 23 15 46 22 16 47 21 14 48 22 16 49 20 12 50 19 13 51 21 14 52 29 11 53 20 12 54 29 11 55 21 14 56 28 17 57 26 17 58 24 18 59 25 18 60 28 17 61 24 18 62 24 18 63 22 16 64 23 15 65 24 18 66 23 15 67 25 18 68 28 17 69 25 18 70 27 17 71 36 19 72 34 19 73 35 19 74 37 19 75 34 19 76 36 19 77 33 19 78 34 19 79 38 19 80 37 19 81 38 19 82 34 19 83 39 19 84 33 19 85 38 19 86 54 19 87 30 19 88 53 19 89 52 19 90 53 19 91 30 19 92 52 19 93 30 19 94 51 19 95 30 19 96 31 19 97 51 19 98 33 19 99 39 19 100 40 19 101 33 19 102 44 19 103 45 19 104 44 19 105 33 19 106 41 19 107 44 19 108 42 19 109 43 19 110 41 19 111 42 19 112 44 19 113 32 19 114 33 19 115 45 19 116 49 19 117 50 19 118 46 19 119 31 19 120 46 19 121 50 19 122 51 19 123 31 19 124 50 19 125 49 19 126 46 19 127 48 19 128 46 19 129 47 19 130 48 19 131 45 19 132 46 19 133 31 19 134 45 19 135 31 19 136 32 19 137 33 19 138 40 19 139 41 19 140 77 20 141 76 20 142 66 20 143 76 21 144 75 21 145 66 21 146 78 22 147 77 22 148 66 22 149 66 23 150 81 23 151 80 23 152 80 24 153 79 24 154 66 24 155 79 25 156 78 25 157 66 25 158 81 26 159 66 26 160 65 26 161 74 27 162 71 28 163 70 29 164 70 30 165 69 30 166 74 30 167 72 31 168 71 31 169 73 31 170 69 32 171 68 32 172 74 32 173 68 31 174 67 31 175 74 31 176 67 33 177 75 33 178 74 33 179 67 34 180 66 34 181 75 34 182 73 31 183 71 31 184 74 31 185 65 35 186 82 35 187 81 35 188 84 36 189 62 37 190 85 38 191 83 39 192 65 40 193 84 36 194 86 41 195 85 38 196 61 42 197 56 43 198 55 44 199 88 45 200 59 46 201 87 47 202 86 41 203 87 47 204 57 48 205 88 45 206 88 45 207 57 48 208 56 43 209 64 49 210 84 36 211 65 40 212 63 50 213 84 36 214 64 49 215 84 51 216 63 51 217 62 51 218 87 47 219 59 46 220 58 52 221 61 42 222 85 38 223 62 37 224 86 53 225 61 53 226 60 53 227 86 54 228 60 54 229 59 54 230 87 47 231 58 52 232 57 48 233 82 55 234 65 40 235 83 39 236 100 56 237 91 57 238 89 58 239 92 57 240 94 59 241 93 60 242 92 57 243 93 60 244 91 57 245 90 58 246 92 57 247 100 56 248 91 57 249 100 56 250 92 57 251 97 61 252 96 62 253 95 63 254 99 64 255 97 61 256 95 63 257 99 64 258 95 63 259 93 60 260 99 64 261 93 60 262 94 59 263 101 65 264 97 61 265 99 64 266 101 65 267 98 66 268 97 61 269 115 67 270 102 68 271 108 69 272 104 70 273 102 68 274 115 67 275 115 71 276 108 71 277 103 71 278 114 72 279 104 70 280 115 67 281 114 72 282 113 73 283 104 70 284 113 73 285 112 74 286 104 70 287 111 75 288 106 76 289 105 77 290 109 78 291 107 79 292 106 76 293 111 75 294 105 77 295 112 74 296 111 75 297 110 80 298 109 78 299 111 75 300 109 78 301 106 76 302 104 70 303 112 74 304 105 77 305 120 81 306 118 81 307 116 81 308 120 82 309 117 82 310 123 82 311 123 83 312 118 83 313 120 83 314 118 84 315 123 84 316 121 84 317 121 85 318 123 85 319 122 85 320 119 86 321 118 86 322 121 86 323 151 87 324 150 87 325 131 87 326 131 88 327 147 88 328 146 88 329 152 89 330 151 90 331 131 31 332 131 91 333 149 91 334 148 91 335 147 92 336 131 92 337 148 92 338 131 93 339 150 93 340 149 93 341 125 94 342 131 31 343 142 95 344 131 31 345 130 96 346 152 89 347 131 97 348 145 97 349 144 97 350 131 31 351 143 98 352 142 95 353 143 98 354 131 31 355 144 99 356 145 100 357 131 100 358 146 100 359 125 94 360 124 31 361 131 31 362 141 101 363 140 102 364 125 94 365 125 94 366 140 102 367 139 103 368 142 95 369 141 101 370 125 94 371 127 104 372 126 105 373 136 106 374 133 107 375 128 108 376 127 104 377 139 103 378 126 105 379 125 94 380 128 108 381 133 107 382 132 109 383 126 105 384 139 103 385 138 110 386 126 105 387 137 111 388 136 106 389 137 111 390 126 105 391 138 110 392 134 112 393 127 104 394 135 113 395 127 104 396 134 112 397 133 107 398 132 114 399 133 114 400 129 114 401 135 113 402 127 104 403 136 106 404 155 115 405 159 116 406 161 117 407 158 118 408 162 119 409 159 116 410 161 117 411 159 116 412 162 119 413 154 120 414 153 116 415 159 116 416 160 121 417 156 121 418 154 120 419 157 121 420 160 121 421 155 115 422 154 120 423 155 115 424 160 121 425 159 116 426 155 115 427 154 120 428 172 122 429 164 122 430 163 122 431 174 122 432 163 122 433 175 122 434 173 122 435 163 122 436 174 122 437 173 122 438 172 122 439 163 122 440 172 122 441 171 122 442 164 122 443 164 123 444 171 123 445 167 123 446 167 124 447 177 124 448 164 124 449 165 125 450 177 125 451 176 125 452 176 122 453 166 122 454 165 122 455 170 126 456 167 126 457 171 126 458 167 127 459 170 127 460 169 127 461 167 128 462 169 128 463 168 128 464 177 122 465 165 122 466 164 122 467

+
+
+
+ + + + 0 87.00061 -204.999 -63.1562 87.00061 -204.999 0 87.0067 -204.788 -63.1562 87.0067 -204.788 0 86.9796 -204.716 -63.1562 86.9796 -204.716 0 86.9607 -204.696 -63.1562 86.9607 -204.696 0 86.9402 -204.687 -63.1562 86.9402 -204.687 -31.5781 87.00061 -204.999 -31.5781 86.9402 -204.687 0 86.9402 -204.687 -63.1562 86.9402 -204.687 0 86.7779 -204.654 -63.1562 86.7779 -204.654 -31.5781 86.9402 -204.687 -31.5781 86.7779 -204.654 0 86.7779 -204.654 -63.1562 86.7779 -204.654 0 86.7555 -204.655 -63.1562 86.7555 -204.655 0 86.7305 -204.666 -63.1562 86.7305 -204.666 0 86.67781 -204.722 -63.1562 86.67781 -204.722 0 86.6026 -204.92 -63.1562 86.6026 -204.92 -31.5781 86.6026 -204.92 -31.5781 86.7779 -204.654 0 86.6026 -204.92 0 86.41901 -207.07 0 86.1257 -208.953 0 85.72261 -210.569 0 85.2098 -211.918 0 85.2037 -212.129 0 85.2308 -212.201 0 85.24971 -212.221 0 85.27021 -212.23 0 85.35131 -212.246 0 85.43251 -212.262 0 85.45491 -212.262 0 85.4799 -212.251 0 85.5326 -212.194 0 85.6077 -211.997 0 86.5496 -208.554 0 87.00061 -204.999 0 87.0067 -204.788 0 86.9796 -204.716 0 86.9607 -204.696 0 86.9402 -204.687 0 86.7779 -204.654 0 86.7555 -204.655 0 86.7305 -204.666 0 86.67781 -204.722 -63.1562 85.7774 -211.497 -63.1562 85.3935 -211.497 -59.9626 85.2987 -211.721 -56.7671 85.2098 -211.918 -54.632 85.1968 -212.031 -53.5641 85.1978 -212.082 -52.496 85.2037 -212.129 -51.08 85.2209 -212.184 -50.372 85.23601 -212.208 -49.6645 85.27021 -212.23 -49.0913 85.35131 -212.246 -48.4522 85.43251 -212.262 -48.4215 85.4375 -212.263 -48.4137 85.4402 -212.263 -48.4123 85.4415 -212.263 -48.4121 85.4421 -212.263 -48.4121 85.4426 -212.263 -48.4124 85.4431 -212.263 -48.4142 85.44451 -212.263 -48.4175 85.4459 -212.263 -48.4265 85.4482 -212.263 -48.4382 85.4503 -212.263 -48.4607 85.4533 -212.262 -48.483 85.4556 -212.262 -48.5213 85.45901 -212.261 -48.595 85.46411 -212.259 -48.741 85.47201 -212.255 -49.0322 85.4842 -212.248 -49.6141 85.5031 -212.232 -50.7775 85.5326 -212.194 -51.9105 85.55651 -212.153 -53.0433 85.5769 -212.106 -55.3086 85.6077 -211.997 -59.2339 85.6865 -211.769 0 86.6026 -204.92 -63.1562 86.6026 -204.92 0 86.41901 -207.07 -63.1562 86.41901 -207.07 0 86.1257 -208.953 -63.1562 86.1257 -208.953 0 85.72261 -210.569 0 85.2098 -211.918 -28.3835 85.2098 -211.918 -56.7671 85.2098 -211.918 -63.1562 85.3935 -211.497 -31.5781 86.6026 -204.92 -59.9626 85.2987 -211.721 0 85.2098 -211.918 -56.7671 85.2098 -211.918 0 85.2037 -212.129 0 85.2308 -212.201 0 85.24971 -212.221 0 85.27021 -212.23 -28.3835 85.2098 -211.918 -24.8323 85.27021 -212.23 -49.6645 85.27021 -212.23 -50.372 85.23601 -212.208 -51.08 85.2209 -212.184 -52.496 85.2037 -212.129 -53.5641 85.1978 -212.082 -54.632 85.1968 -212.031 0 85.27021 -212.23 -49.6645 85.27021 -212.23 0 85.35131 -212.246 0 85.43251 -212.262 -24.8323 85.27021 -212.23 -24.2261 85.43251 -212.262 -48.4522 85.43251 -212.262 -49.0913 85.35131 -212.246 0 85.43251 -212.262 0 85.45491 -212.262 0 85.4799 -212.251 0 85.5326 -212.194 0 85.6077 -211.997 -55.3086 85.6077 -211.997 -48.4522 85.43251 -212.262 -24.2261 85.43251 -212.262 -27.6543 85.6077 -211.997 -53.0433 85.5769 -212.106 -51.9105 85.55651 -212.153 -50.7775 85.5326 -212.194 -49.6141 85.5031 -212.232 -49.0322 85.4842 -212.248 -48.741 85.47201 -212.255 -48.595 85.46411 -212.259 -48.5213 85.45901 -212.261 -48.483 85.4556 -212.262 -48.4607 85.4533 -212.262 -48.4382 85.4503 -212.263 -48.4265 85.4482 -212.263 -48.4175 85.4459 -212.263 -48.4142 85.44451 -212.263 -48.4124 85.4431 -212.263 -48.4121 85.4426 -212.263 -48.4121 85.4421 -212.263 -48.4123 85.4415 -212.263 -48.4137 85.4402 -212.263 -48.4215 85.4375 -212.263 0 85.6077 -211.997 0 86.5496 -208.554 -63.1562 86.5496 -208.554 0 87.00061 -204.999 -63.1562 87.00061 -204.999 -55.3086 85.6077 -211.997 -27.6543 85.6077 -211.997 -31.5781 87.00061 -204.999 -63.1562 85.7774 -211.497 -59.2339 85.6865 -211.769 -63.1562 86.6026 -204.92 -63.1562 86.41901 -207.07 -63.1562 86.1257 -208.953 -63.1562 85.3935 -211.497 -63.1562 87.00061 -204.999 -63.1562 87.0067 -204.788 -63.1562 86.9796 -204.716 -63.1562 86.9607 -204.696 -63.1562 86.9402 -204.687 -63.1562 86.7779 -204.654 -63.1562 86.7555 -204.655 -63.1562 86.7305 -204.666 -63.1562 86.67781 -204.722 -63.1562 85.7774 -211.497 -63.1562 86.5496 -208.554 + + + + + + + + + + 0 0.9995815 -0.02893179 0 0.9863164 0.1648642 0 0.9995841 -0.0288403 0 0.9863213 0.1648344 0 0.8479658 0.5300511 0 0.8481544 0.5297493 0 0.4022753 0.9155188 0 0.4020256 0.9156284 0 0.5761343 0.8173551 0 0.5758298 0.8175696 0 0.1991758 0.9799638 0 0.199194 0.9799602 0 0.1991758 0.9799638 0 0.199194 0.9799602 0 -0.04425305 0.9990204 0 -0.227246 0.9738374 0 -0.04422259 0.9990218 0 -0.2274553 0.9737886 0 -0.5772415 0.8165736 0 -0.5769372 0.8167886 0 -0.9348321 0.3550903 0 -0.9348562 0.3550269 0 -0.8477548 0.5303885 0 -0.8478268 0.5302733 1 0 0 -0.04740267 -0.01934146 -0.9986886 -0.01002728 -0.04957246 -0.9987202 0 0 -1 -0.02952188 -0.03846555 -0.9988238 -0.0303362 -0.04055517 -0.9987167 -0.02808469 -0.03911256 -0.9988401 -0.02459287 -0.003118157 -0.9996927 9.76622e-4 0 -0.9999995 -0.001953184 0 -0.9999981 -0.001861631 0 -0.9999983 0.03412061 0 -0.9994178 -0.001404464 0 -0.9999991 -0.02963358 -0.0142064 -0.9994599 -0.02413398 -0.004263639 -0.9996997 -0.03393661 0.001678466 -0.9994227 -0.03589069 0.001617491 -0.9993545 -0.03894168 -0.002075254 -0.9992393 -0.03271633 -0.0205698 -0.999253 -0.02694857 -0.003112971 -0.999632 -0.04425299 -0.001037657 -0.9990199 -0.04147565 -6.40904e-4 -0.9991394 -0.06921684 4.88302e-4 -0.9976015 -0.06915611 0 -0.9976059 -0.06009256 -0.0107733 -0.9981347 -0.0488004 0.002105832 -0.9988064 -0.05270612 -0.001464903 -0.998609 -0.06793594 0.005157709 -0.9976764 -0.02969497 0.01101732 -0.9994984 -0.03186142 0.003601193 -0.9994859 -0.0339123 8.32427e-4 -0.9994245 -0.06012248 0.0222789 -0.9979423 -0.04394829 -0.002885341 -0.9990297 -0.0476607 0.002287566 -0.998861 -0.02542203 -0.003692746 -0.99967 0 -0.9963737 0.08508604 0 -0.9928289 0.1195448 0 -0.9963763 0.08505576 0 -0.9764642 0.2156797 7.0193e-4 -0.9800773 0.1986156 -4.88307e-4 -0.9311711 0.3645823 0 -0.9347394 0.3553341 7.32457e-4 -0.9543309 0.298751 0 -0.9594438 0.2819003 -1.52597e-4 -0.9216239 0.3880842 0 -0.9114837 0.4113365 0 -0.9936906 0.1121564 1.52594e-4 -0.9995805 0.02896225 0 -0.9934437 0.1143229 1.22076e-4 -0.9863164 -0.1648642 0 -0.9934599 0.1141816 9.15559e-5 -0.9998205 -0.01895201 0 -0.9919314 -0.1267763 0 -0.9535057 -0.3013753 0 -0.841861 -0.5396944 0 -0.5755048 -0.8177985 3.05194e-5 -0.8477686 -0.5303665 -6.10388e-5 -0.4924303 -0.8703519 0 -0.4019376 -0.9156671 0 -0.5411262 -0.8409415 0 -0.1936528 -0.9810702 0 -0.1936076 -0.9810791 0 -0.193648 -0.9810711 0 -0.1931966 -0.9811601 0 -0.1932288 -0.9811538 0 -0.1932128 -0.9811569 3.8147e-5 -4.52995e-5 -1 3.54588e-5 5.40746e-5 -1 0 -0.1783241 -0.9839719 3.05185e-5 -9.15555e-5 -1 4.19617e-5 0 -1 3.75601e-5 2.40619e-5 -1 4.4139e-5 -1.35427e-5 -1 0 0.2056674 -0.9786219 0 0.01406931 -0.9999011 0 -0.1979176 -0.9802187 3.65753e-5 1.63648e-4 -1 2.44157e-4 0.3046772 -0.9524557 3.05185e-5 2.1363e-4 -1 4.24592e-5 9.84081e-5 -1 0 0.2709462 -0.9625945 0 0.3619263 -0.9322068 0 0.4487267 -0.893669 1.22076e-4 0.8497698 -0.527154 3.0519e-5 0.5805625 -0.8142157 0 0.7881281 -0.6155114 0 0.9618504 -0.2735762 1.83114e-4 0.9344611 -0.3560652 0 0.9623454 -0.2718298 0 0.496967 -0.8677695 0 0.6443895 -0.7646975 9.15568e-5 0.9177041 -0.3972648 0 0.8630142 -0.5051798 0 0.9623767 -0.2717188 4.88307e-4 0.981681 -0.1905314 0 0.9645587 -0.2638688 0.00100708 0.9666789 -0.2559906 0 0.9451467 -0.3266462 6.10378e-5 0.9487413 -0.3160538 0 0.9807388 -0.1953237 0 0.9920518 -0.1258299 -1 0 0 -1 1.24439e-5 0 -1 -1.34613e-5 0 -1 -3.24865e-5 0 -0.9999999 6.52103e-4 0 -1 -1.93461e-4 0 -1 -1.54895e-4 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 2 1 1 0 2 2 3 3 3 5 4 4 4 5 5 3 3 6 4 5 7 2 1 8 1 2 9 3 3 10 10 0 11 2 1 12 10 0 13 3 3 14 11 6 15 8 7 16 6 8 17 7 9 18 11 6 19 6 8 20 6 8 21 4 5 22 5 4 23 6 8 24 5 4 25 7 9 26 11 6 27 7 9 28 9 7 29 16 10 30 17 10 31 14 10 32 16 11 33 14 11 34 12 11 35 13 12 36 15 12 37 17 12 38 13 13 39 17 13 40 16 13 41 29 14 42 20 15 43 18 16 44 21 17 45 23 18 46 22 19 47 21 17 48 22 19 49 20 15 50 19 16 51 21 17 52 29 14 53 20 15 54 29 14 55 21 17 56 28 20 57 26 21 58 24 22 59 25 23 60 28 20 61 24 22 62 24 22 63 22 19 64 23 18 65 24 22 66 23 18 67 25 23 68 28 20 69 25 23 70 27 21 71 36 24 72 34 24 73 35 24 74 37 24 75 34 24 76 36 24 77 33 24 78 34 24 79 38 24 80 37 24 81 38 24 82 34 24 83 39 24 84 33 24 85 38 24 86 54 24 87 30 24 88 53 24 89 52 24 90 53 24 91 30 24 92 52 24 93 30 24 94 51 24 95 30 24 96 31 24 97 51 24 98 33 24 99 39 24 100 40 24 101 33 24 102 44 24 103 45 24 104 44 24 105 33 24 106 41 24 107 44 24 108 42 24 109 43 24 110 41 24 111 42 24 112 44 24 113 32 24 114 33 24 115 45 24 116 49 24 117 50 24 118 46 24 119 31 24 120 46 24 121 50 24 122 51 24 123 31 24 124 50 24 125 49 24 126 46 24 127 48 24 128 46 24 129 47 24 130 48 24 131 45 24 132 46 24 133 31 24 134 45 24 135 31 24 136 32 24 137 33 24 138 40 24 139 41 24 140 77 25 141 76 25 142 66 25 143 76 26 144 75 26 145 66 26 146 78 27 147 77 27 148 66 27 149 66 28 150 81 28 151 80 28 152 80 29 153 79 29 154 66 29 155 79 30 156 78 30 157 66 30 158 81 31 159 66 31 160 65 31 161 74 32 162 71 33 163 70 34 164 70 27 165 69 27 166 74 27 167 72 27 168 71 33 169 73 35 170 69 27 171 68 27 172 74 27 173 68 27 174 67 27 175 74 27 176 67 36 177 75 36 178 74 36 179 67 37 180 66 37 181 75 37 182 73 35 183 71 33 184 74 32 185 65 38 186 82 38 187 81 38 188 84 39 189 62 40 190 85 41 191 83 42 192 65 43 193 84 39 194 86 44 195 85 41 196 61 45 197 56 46 198 55 47 199 88 48 200 59 49 201 87 50 202 86 44 203 87 50 204 57 51 205 88 48 206 88 48 207 57 51 208 56 46 209 64 52 210 84 39 211 65 43 212 63 53 213 84 39 214 64 52 215 84 54 216 63 54 217 62 54 218 87 50 219 59 49 220 58 55 221 61 45 222 85 41 223 62 40 224 86 56 225 61 56 226 60 56 227 86 57 228 60 57 229 59 57 230 87 50 231 58 55 232 57 51 233 82 58 234 65 43 235 83 42 236 100 59 237 91 60 238 89 61 239 92 60 240 94 62 241 93 63 242 92 60 243 93 63 244 91 60 245 90 61 246 92 60 247 100 59 248 91 60 249 100 59 250 92 60 251 97 64 252 96 65 253 95 66 254 99 67 255 97 64 256 95 66 257 99 67 258 95 66 259 93 63 260 99 67 261 93 63 262 94 62 263 101 68 264 97 64 265 99 67 266 101 68 267 98 69 268 97 64 269 115 70 270 102 71 271 108 72 272 104 73 273 102 71 274 115 70 275 115 74 276 108 74 277 103 74 278 114 75 279 104 73 280 115 70 281 114 75 282 113 76 283 104 73 284 113 76 285 112 77 286 104 73 287 111 78 288 106 79 289 105 80 290 109 81 291 107 82 292 106 79 293 111 78 294 105 80 295 112 77 296 111 78 297 110 83 298 109 81 299 111 78 300 109 81 301 106 79 302 104 73 303 112 77 304 105 80 305 120 84 306 118 84 307 116 84 308 120 85 309 117 85 310 123 85 311 123 86 312 118 86 313 120 86 314 118 87 315 123 87 316 121 87 317 121 88 318 123 88 319 122 88 320 119 89 321 118 89 322 121 89 323 151 90 324 150 90 325 131 90 326 131 91 327 147 91 328 146 91 329 152 92 330 151 93 331 131 27 332 131 94 333 149 94 334 148 94 335 147 95 336 131 95 337 148 95 338 131 96 339 150 96 340 149 96 341 125 97 342 131 27 343 142 98 344 131 27 345 130 99 346 152 92 347 131 100 348 145 100 349 144 100 350 131 27 351 143 101 352 142 98 353 143 101 354 131 27 355 144 102 356 145 103 357 131 103 358 146 103 359 125 97 360 124 27 361 131 27 362 141 104 363 140 105 364 125 97 365 125 97 366 140 105 367 139 106 368 142 98 369 141 104 370 125 97 371 127 107 372 126 108 373 136 109 374 133 110 375 128 111 376 127 107 377 139 106 378 126 108 379 125 97 380 128 111 381 133 110 382 132 112 383 126 108 384 139 106 385 138 113 386 126 108 387 137 114 388 136 109 389 137 114 390 126 108 391 138 113 392 134 115 393 127 107 394 135 116 395 127 107 396 134 115 397 133 110 398 132 117 399 133 117 400 129 117 401 135 116 402 127 107 403 136 109 404 155 118 405 159 119 406 161 120 407 158 121 408 162 122 409 159 119 410 161 120 411 159 119 412 162 122 413 154 123 414 153 119 415 159 119 416 160 124 417 156 124 418 154 123 419 157 124 420 160 124 421 155 118 422 154 123 423 155 118 424 160 124 425 159 119 426 155 118 427 154 123 428 172 125 429 164 125 430 163 125 431 174 125 432 163 125 433 175 125 434 173 125 435 163 125 436 174 125 437 173 125 438 172 125 439 163 125 440 172 125 441 171 125 442 164 125 443 164 126 444 171 126 445 167 126 446 167 127 447 177 127 448 164 127 449 165 128 450 177 128 451 176 128 452 176 125 453 166 125 454 165 125 455 170 129 456 167 129 457 171 129 458 167 130 459 170 130 460 169 130 461 167 131 462 169 131 463 168 131 464 177 125 465 165 125 466 164 125 467

+
+
+
+ + + + 0 84.2931 -204.999 -63.1562 84.2931 -204.999 0 84.2993 -204.788 -63.1562 84.2993 -204.788 0 84.2721 -204.716 -63.1562 84.2721 -204.716 0 84.25331 -204.696 -63.1562 84.25331 -204.696 0 84.23281 -204.687 -63.1562 84.23281 -204.687 -31.5781 84.2931 -204.999 -31.5781 84.23281 -204.687 0 84.23281 -204.687 -63.1562 84.23281 -204.687 0 84.07051 -204.654 -63.1562 84.07051 -204.654 -31.5781 84.23281 -204.687 -31.5781 84.07051 -204.654 0 84.07051 -204.654 -63.1562 84.07051 -204.654 0 84.04811 -204.655 -63.1562 84.04811 -204.655 0 84.0231 -204.666 -63.1562 84.0231 -204.666 0 83.9703 -204.722 -63.1562 83.9703 -204.722 0 83.89521 -204.92 -63.1562 83.89521 -204.92 -31.5781 83.89521 -204.92 -31.5781 84.07051 -204.654 0 83.89521 -204.92 0 83.7116 -207.07 0 83.4183 -208.953 0 83.0152 -210.569 0 82.50241 -211.918 0 82.4963 -212.129 0 82.5234 -212.201 0 82.5423 -212.221 0 82.5627 -212.23 0 82.6439 -212.246 0 82.7251 -212.262 0 82.7475 -212.262 0 82.7725 -212.251 0 82.82521 -212.194 0 82.9003 -211.997 0 83.8422 -208.554 0 84.2931 -204.999 0 84.2993 -204.788 0 84.2721 -204.716 0 84.25331 -204.696 0 84.23281 -204.687 0 84.07051 -204.654 0 84.04811 -204.655 0 84.0231 -204.666 0 83.9703 -204.722 -63.1562 83.0699 -211.497 -63.1562 82.6861 -211.497 -59.9626 82.5912 -211.721 -56.7671 82.50241 -211.918 -54.632 82.48931 -212.031 -53.5641 82.49031 -212.082 -52.496 82.4963 -212.129 -51.08 82.5134 -212.184 -50.372 82.52861 -212.208 -49.6645 82.5627 -212.23 -49.0913 82.6439 -212.246 -48.4522 82.7251 -212.262 -48.4215 82.73001 -212.263 -48.4137 82.73281 -212.263 -48.4123 82.7341 -212.263 -48.4121 82.7346 -212.263 -48.4121 82.7352 -212.263 -48.4124 82.73571 -212.263 -48.4142 82.7371 -212.263 -48.4175 82.73851 -212.263 -48.4265 82.7408 -212.263 -48.4382 82.7429 -212.263 -48.4607 82.74591 -212.262 -48.483 82.7482 -212.262 -48.5213 82.75151 -212.261 -48.595 82.7567 -212.259 -48.741 82.76461 -212.255 -49.0322 82.7768 -212.248 -49.6141 82.7956 -212.232 -50.7775 82.82521 -212.194 -51.9105 82.84901 -212.153 -53.0433 82.8695 -212.106 -55.3086 82.9003 -211.997 -59.2339 82.97911 -211.769 0 83.89521 -204.92 -63.1562 83.89521 -204.92 0 83.7116 -207.07 -63.1562 83.7116 -207.07 0 83.4183 -208.953 -63.1562 83.4183 -208.953 0 83.0152 -210.569 0 82.50241 -211.918 -28.3835 82.50241 -211.918 -56.7671 82.50241 -211.918 -63.1562 82.6861 -211.497 -31.5781 83.89521 -204.92 -59.9626 82.5912 -211.721 0 82.50241 -211.918 -56.7671 82.50241 -211.918 0 82.4963 -212.129 0 82.5234 -212.201 0 82.5423 -212.221 0 82.5627 -212.23 -28.3835 82.50241 -211.918 -24.8323 82.5627 -212.23 -49.6645 82.5627 -212.23 -50.372 82.52861 -212.208 -51.08 82.5134 -212.184 -52.496 82.4963 -212.129 -53.5641 82.49031 -212.082 -54.632 82.48931 -212.031 0 82.5627 -212.23 -49.6645 82.5627 -212.23 0 82.6439 -212.246 0 82.7251 -212.262 -24.8323 82.5627 -212.23 -24.2261 82.7251 -212.262 -48.4522 82.7251 -212.262 -49.0913 82.6439 -212.246 0 82.7251 -212.262 0 82.7475 -212.262 0 82.7725 -212.251 0 82.82521 -212.194 0 82.9003 -211.997 -55.3086 82.9003 -211.997 -48.4522 82.7251 -212.262 -24.2261 82.7251 -212.262 -27.6543 82.9003 -211.997 -53.0433 82.8695 -212.106 -51.9105 82.84901 -212.153 -50.7775 82.82521 -212.194 -49.6141 82.7956 -212.232 -49.0322 82.7768 -212.248 -48.741 82.76461 -212.255 -48.595 82.7567 -212.259 -48.5213 82.75151 -212.261 -48.483 82.7482 -212.262 -48.4607 82.74591 -212.262 -48.4382 82.7429 -212.263 -48.4265 82.7408 -212.263 -48.4175 82.73851 -212.263 -48.4142 82.7371 -212.263 -48.4124 82.73571 -212.263 -48.4121 82.7352 -212.263 -48.4121 82.7346 -212.263 -48.4123 82.7341 -212.263 -48.4137 82.73281 -212.263 -48.4215 82.73001 -212.263 0 82.9003 -211.997 0 83.8422 -208.554 -63.1562 83.8422 -208.554 0 84.2931 -204.999 -63.1562 84.2931 -204.999 -55.3086 82.9003 -211.997 -27.6543 82.9003 -211.997 -31.5781 84.2931 -204.999 -63.1562 83.0699 -211.497 -59.2339 82.97911 -211.769 -63.1562 83.89521 -204.92 -63.1562 83.7116 -207.07 -63.1562 83.4183 -208.953 -63.1562 82.6861 -211.497 -63.1562 84.2931 -204.999 -63.1562 84.2993 -204.788 -63.1562 84.2721 -204.716 -63.1562 84.25331 -204.696 -63.1562 84.23281 -204.687 -63.1562 84.07051 -204.654 -63.1562 84.04811 -204.655 -63.1562 84.0231 -204.666 -63.1562 83.9703 -204.722 -63.1562 83.0699 -211.497 -63.1562 83.8422 -208.554 + + + + + + + + + + 0 0.9995707 -0.0292986 0 0.9862906 0.1650176 0 0.9995672 -0.02942055 0 0.98626 0.1652007 0 0.8484814 0.5292251 0 0.8484593 0.5292608 0 0.4020256 0.9156284 0 0.576972 0.816764 0 0.5771516 0.816637 0 0.199194 0.9799602 0 0.199194 0.9799602 0 0.199194 0.9799602 0 -0.04422259 0.9990218 0 -0.2273685 0.9738088 0 -0.2274553 0.9737886 0 -0.5767431 0.8169256 0 -0.5766881 0.8169646 0 -0.9350273 0.3545761 0 -0.935007 0.3546294 0 -0.8476381 0.5305749 1 0 0 -0.04842537 -0.01931971 -0.99864 -0.00802195 -0.04957342 -0.9987383 0 0 -1 -0.02952188 -0.03846555 -0.9988238 -0.03000932 -0.04092055 -0.9987117 -0.02919793 -0.03896862 -0.9988138 -0.02458131 -0.003116667 -0.999693 4.27272e-4 0 -1 -0.01248222 0 -0.9999222 -0.006317377 0 -0.9999801 0.03473031 0 -0.9993968 -0.002075314 0 -0.9999979 -0.004324257 0 -0.9999907 0.001388847 0 -0.9999991 -0.03081333 -0.01412975 -0.9994253 -0.0241484 -0.004264056 -0.9996994 -0.03393661 0.001678466 -0.9994227 -0.03586018 0.001586973 -0.9993556 -0.03894168 -0.002075254 -0.9992393 -0.03274685 -0.02056974 -0.9992521 -0.0270096 -0.003112971 -0.9996303 -0.04425299 -0.001037657 -0.9990199 -0.04147565 -6.40904e-4 -0.9991394 -0.06918644 4.88303e-4 -0.9976037 -0.06915611 0 -0.9976059 -0.06009256 -0.0107733 -0.9981347 -0.0488004 0.002105832 -0.9988064 -0.05270612 -0.001464903 -0.998609 -0.06793594 0.005157709 -0.9976764 -0.02969497 0.01101732 -0.9994984 -0.03186142 0.003601193 -0.9994859 -0.03387326 8.32282e-4 -0.9994258 -0.06012248 0.0222789 -0.9979423 -0.04391962 -0.002884984 -0.9990309 -0.04769116 0.002287209 -0.9988596 -0.02548301 -0.003692746 -0.9996685 0 -0.9963737 0.08508604 0 -0.9928289 0.1195448 0 -0.9764707 0.2156506 7.0193e-4 -0.9800773 0.1986156 -4.88307e-4 -0.9311711 0.3645823 0 -0.9347394 0.3553341 7.32457e-4 -0.9543309 0.298751 0 -0.9594414 0.2819086 -1.52595e-4 -0.9214326 0.3885386 0 -0.9116913 0.410876 0 -0.9935764 0.1131644 1.52594e-4 -0.9995805 0.02896225 0 -0.9933412 0.1152102 1.22075e-4 -0.986337 -0.1647405 0 -0.9933394 0.1152262 9.15558e-5 -0.9998199 -0.01898252 0 -0.9916405 -0.1290326 0 -0.9538627 -0.3002432 0 -0.8403456 -0.5420511 0 -0.5767922 -0.816891 3.05191e-5 -0.848096 -0.5298426 -6.10379e-5 -0.4933691 -0.8698202 0 -0.403889 -0.9148081 0 -0.5422361 -0.8402263 0 -0.193382 -0.9811236 0 -0.1934102 -0.9811181 0 -0.1934196 -0.9811161 0 -0.1932421 -0.9811511 0 -0.1932208 -0.9811553 0 -0.1932128 -0.9811569 4.54215e-5 -4.49484e-5 -1 4.43447e-5 5.41005e-5 -1 0 -0.1801556 -0.9836382 3.05185e-5 -9.15555e-5 -1 6.10352e-5 0 -1 0 2.50244e-5 -1 4.15777e-5 -1.7009e-5 -1 0 0.2054567 -0.9786662 0 0.01391679 -0.9999032 0 -0.2006039 -0.9796724 4.48678e-5 1.62512e-4 -1 2.44156e-4 0.3010437 -0.9536103 3.05194e-5 2.13636e-4 -1 4.24592e-5 9.84081e-5 -1 0 0.2785805 -0.960413 0 0.3566425 -0.9342409 0 0.4493975 -0.893332 1.22077e-4 0.8498056 -0.5270962 3.05191e-5 0.5804729 -0.8142796 0 0.787003 -0.6169491 0 0.9618079 -0.2737253 1.83114e-4 0.9344611 -0.3560652 0 0.9623454 -0.2718298 0 0.4969801 -0.8677619 0 0.6463266 -0.7630609 9.15579e-5 0.9170134 -0.3988567 0 0.8638697 -0.5037155 0 0.9623335 -0.2718722 4.88307e-4 0.981681 -0.1905314 0 0.9645587 -0.2638688 0.00100708 0.9666692 -0.2560266 0 0.9451689 -0.3265822 6.10378e-5 0.9488632 -0.3156875 0 0.9807388 -0.1953237 0 0.9920518 -0.1258299 0 0.9920557 -0.1258 -1 0 0 -1 -3.59932e-5 0 -1 1.78122e-4 0 -1 -8.36138e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 2 1 1 0 2 2 3 3 3 5 4 4 4 5 5 3 3 6 4 5 7 2 1 8 1 2 9 3 3 10 10 0 11 2 1 12 10 0 13 3 3 14 11 6 15 8 6 16 6 7 17 7 8 18 11 6 19 6 7 20 6 7 21 4 5 22 5 4 23 6 7 24 5 4 25 7 8 26 11 6 27 7 8 28 9 6 29 16 9 30 17 9 31 14 9 32 16 9 33 14 9 34 12 9 35 13 10 36 15 10 37 17 10 38 13 11 39 17 11 40 16 11 41 29 12 42 20 13 43 18 12 44 21 14 45 23 15 46 22 16 47 21 14 48 22 16 49 20 13 50 19 12 51 21 14 52 29 12 53 20 13 54 29 12 55 21 14 56 28 17 57 26 18 58 24 19 59 25 19 60 28 17 61 24 19 62 24 19 63 22 16 64 23 15 65 24 19 66 23 15 67 25 19 68 28 17 69 25 19 70 27 18 71 36 20 72 34 20 73 35 20 74 36 20 75 33 20 76 34 20 77 38 20 78 33 20 79 37 20 80 33 20 81 36 20 82 37 20 83 39 20 84 33 20 85 38 20 86 54 20 87 30 20 88 53 20 89 31 20 90 52 20 91 53 20 92 31 20 93 51 20 94 52 20 95 31 20 96 53 20 97 30 20 98 33 20 99 39 20 100 40 20 101 41 20 102 42 20 103 33 20 104 42 20 105 43 20 106 33 20 107 33 20 108 43 20 109 44 20 110 33 20 111 44 20 112 32 20 113 45 20 114 32 20 115 44 20 116 50 20 117 31 20 118 49 20 119 48 20 120 49 20 121 31 20 122 51 20 123 31 20 124 50 20 125 31 20 126 46 20 127 48 20 128 46 20 129 47 20 130 48 20 131 46 20 132 31 20 133 32 20 134 46 20 135 32 20 136 45 20 137 41 20 138 33 20 139 40 20 140 77 21 141 76 21 142 66 21 143 76 22 144 75 22 145 66 22 146 78 23 147 77 23 148 66 23 149 66 24 150 81 24 151 80 24 152 80 25 153 79 25 154 66 25 155 79 26 156 78 26 157 66 26 158 81 27 159 66 27 160 65 27 161 74 28 162 71 29 163 70 30 164 70 23 165 69 23 166 74 23 167 72 23 168 71 29 169 73 31 170 69 23 171 68 32 172 74 28 173 68 33 174 67 33 175 74 33 176 67 34 177 75 34 178 74 34 179 67 35 180 66 35 181 75 35 182 73 31 183 71 29 184 74 28 185 65 36 186 82 36 187 81 36 188 84 37 189 62 38 190 85 39 191 83 40 192 65 41 193 84 37 194 86 42 195 85 39 196 61 43 197 56 44 198 55 45 199 88 46 200 59 47 201 87 48 202 86 42 203 87 48 204 57 49 205 88 46 206 88 46 207 57 49 208 56 44 209 64 50 210 84 37 211 65 41 212 63 51 213 84 37 214 64 50 215 84 52 216 63 52 217 62 52 218 87 48 219 59 47 220 58 53 221 61 43 222 85 39 223 62 38 224 86 54 225 61 54 226 60 54 227 86 55 228 60 55 229 59 55 230 87 48 231 58 53 232 57 49 233 82 56 234 65 41 235 83 40 236 100 57 237 91 58 238 89 57 239 92 58 240 94 59 241 93 60 242 92 58 243 93 60 244 91 58 245 90 57 246 92 58 247 100 57 248 91 58 249 100 57 250 92 58 251 97 61 252 96 62 253 95 63 254 99 64 255 97 61 256 95 63 257 99 64 258 95 63 259 93 60 260 99 64 261 93 60 262 94 59 263 101 65 264 97 61 265 99 64 266 101 65 267 98 66 268 97 61 269 115 67 270 102 68 271 108 69 272 104 70 273 102 68 274 115 67 275 115 71 276 108 71 277 103 71 278 114 72 279 104 70 280 115 67 281 114 72 282 113 73 283 104 70 284 113 73 285 112 74 286 104 70 287 111 75 288 106 76 289 105 77 290 109 78 291 107 79 292 106 76 293 111 75 294 105 77 295 112 74 296 111 75 297 110 80 298 109 78 299 111 75 300 109 78 301 106 76 302 104 70 303 112 74 304 105 77 305 120 81 306 118 81 307 116 81 308 120 82 309 117 82 310 123 82 311 123 83 312 118 83 313 120 83 314 118 84 315 123 84 316 121 84 317 121 85 318 123 85 319 122 85 320 119 86 321 118 86 322 121 86 323 151 87 324 150 87 325 131 87 326 131 88 327 147 88 328 146 88 329 152 89 330 151 90 331 131 23 332 131 91 333 149 91 334 148 91 335 147 92 336 131 92 337 148 92 338 131 93 339 150 93 340 149 93 341 125 94 342 131 23 343 142 95 344 131 23 345 130 96 346 152 89 347 131 97 348 145 97 349 144 97 350 131 23 351 143 98 352 142 95 353 143 98 354 131 23 355 144 99 356 145 100 357 131 100 358 146 100 359 125 94 360 124 23 361 131 23 362 141 101 363 140 102 364 125 94 365 125 94 366 140 102 367 139 103 368 142 95 369 141 101 370 125 94 371 127 104 372 126 105 373 136 106 374 133 107 375 128 108 376 127 104 377 139 103 378 126 105 379 125 94 380 128 108 381 133 107 382 132 109 383 126 105 384 139 103 385 138 110 386 126 105 387 137 111 388 136 106 389 137 111 390 126 105 391 138 110 392 134 112 393 127 104 394 135 113 395 127 104 396 134 112 397 133 107 398 132 114 399 133 114 400 129 114 401 135 113 402 127 104 403 136 106 404 155 115 405 159 116 406 161 117 407 158 118 408 162 119 409 159 116 410 161 117 411 159 116 412 162 119 413 154 120 414 153 116 415 159 116 416 160 121 417 156 122 418 154 120 419 157 122 420 160 121 421 155 115 422 154 120 423 155 115 424 160 121 425 159 116 426 155 115 427 154 120 428 175 123 429 174 123 430 164 123 431 163 123 432 175 123 433 164 123 434 173 123 435 164 123 436 174 123 437 173 123 438 172 123 439 164 123 440 172 123 441 171 123 442 164 123 443 168 123 444 167 123 445 165 123 446 176 124 447 165 124 448 167 124 449 167 123 450 177 123 451 176 123 452 176 123 453 166 123 454 165 123 455 171 123 456 170 123 457 164 123 458 169 123 459 164 123 460 170 123 461 165 125 462 169 125 463 168 125 464 169 126 465 165 126 466 164 126 467

+
+
+
+ + + + 0 81.5857 -204.999 -63.1562 81.5857 -204.999 0 81.5918 -204.788 -63.1562 81.5918 -204.788 0 81.5647 -204.716 -63.1562 81.5647 -204.716 0 81.5458 -204.696 -63.1562 81.5458 -204.696 0 81.5254 -204.687 -63.1562 81.5254 -204.687 -31.5781 81.5857 -204.999 -31.5781 81.5254 -204.687 0 81.5254 -204.687 -63.1562 81.5254 -204.687 0 81.36301 -204.654 -63.1562 81.36301 -204.654 -31.5781 81.5254 -204.687 -31.5781 81.36301 -204.654 0 81.36301 -204.654 -63.1562 81.36301 -204.654 0 81.3406 -204.655 -63.1562 81.3406 -204.655 0 81.3156 -204.666 -63.1562 81.3156 -204.666 0 81.2629 -204.722 -63.1562 81.2629 -204.722 0 81.1878 -204.92 -63.1562 81.1878 -204.92 -31.5781 81.1878 -204.92 -31.5781 81.36301 -204.654 0 81.1878 -204.92 0 81.00421 -207.07 0 80.7108 -208.953 0 80.3078 -210.569 0 79.79502 -211.918 0 79.78881 -212.129 0 79.816 -212.201 0 79.8348 -212.221 0 79.8553 -212.23 0 79.9365 -212.246 0 80.0177 -212.262 0 80.04 -212.262 0 80.06501 -212.251 0 80.1178 -212.194 0 80.1929 -211.997 0 81.13481 -208.554 0 81.5857 -204.999 0 81.5918 -204.788 0 81.5647 -204.716 0 81.5458 -204.696 0 81.5254 -204.687 0 81.36301 -204.654 0 81.3406 -204.655 0 81.3156 -204.666 0 81.2629 -204.722 -63.1562 80.36251 -211.497 -63.1562 79.9786 -211.497 -59.9626 79.8838 -211.721 -56.7671 79.79502 -211.918 -54.632 79.7819 -212.031 -53.5641 79.7829 -212.082 -52.496 79.78881 -212.129 -51.08 79.80601 -212.184 -50.372 79.8212 -212.208 -49.6645 79.8553 -212.23 -49.0913 79.9365 -212.246 -48.4522 80.0177 -212.262 -48.4215 80.0226 -212.263 -48.4137 80.0254 -212.263 -48.4123 80.02661 -212.263 -48.4121 80.0272 -212.263 -48.4121 80.0278 -212.263 -48.4124 80.0283 -212.263 -48.4142 80.0297 -212.263 -48.4175 80.03102 -212.263 -48.4265 80.0334 -212.263 -48.4382 80.0354 -212.263 -48.4607 80.0384 -212.262 -48.483 80.0408 -212.262 -48.5213 80.0441 -212.261 -48.595 80.0493 -212.259 -48.741 80.0572 -212.255 -49.0322 80.0694 -212.248 -49.6141 80.08821 -212.232 -50.7775 80.1178 -212.194 -51.9105 80.1416 -212.153 -53.0433 80.16201 -212.106 -55.3086 80.1929 -211.997 -59.2339 80.2717 -211.769 0 81.1878 -204.92 -63.1562 81.1878 -204.92 0 81.00421 -207.07 -63.1562 81.00421 -207.07 0 80.7108 -208.953 -63.1562 80.7108 -208.953 0 80.3078 -210.569 0 79.79502 -211.918 -28.3835 79.79502 -211.918 -56.7671 79.79502 -211.918 -63.1562 79.9786 -211.497 -31.5781 81.1878 -204.92 -59.9626 79.8838 -211.721 0 79.79502 -211.918 -56.7671 79.79502 -211.918 0 79.78881 -212.129 0 79.816 -212.201 0 79.8348 -212.221 0 79.8553 -212.23 -28.3835 79.79502 -211.918 -24.8323 79.8553 -212.23 -49.6645 79.8553 -212.23 -50.372 79.8212 -212.208 -51.08 79.80601 -212.184 -52.496 79.78881 -212.129 -53.5641 79.7829 -212.082 -54.632 79.7819 -212.031 0 79.8553 -212.23 -49.6645 79.8553 -212.23 0 79.9365 -212.246 0 80.0177 -212.262 -24.8323 79.8553 -212.23 -24.2261 80.0177 -212.262 -48.4522 80.0177 -212.262 -49.0913 79.9365 -212.246 0 80.0177 -212.262 0 80.04 -212.262 0 80.06501 -212.251 0 80.1178 -212.194 0 80.1929 -211.997 -55.3086 80.1929 -211.997 -48.4522 80.0177 -212.262 -24.2261 80.0177 -212.262 -27.6543 80.1929 -211.997 -53.0433 80.16201 -212.106 -51.9105 80.1416 -212.153 -50.7775 80.1178 -212.194 -49.6141 80.08821 -212.232 -49.0322 80.0694 -212.248 -48.741 80.0572 -212.255 -48.595 80.0493 -212.259 -48.5213 80.0441 -212.261 -48.483 80.0408 -212.262 -48.4607 80.0384 -212.262 -48.4382 80.0354 -212.263 -48.4265 80.0334 -212.263 -48.4175 80.03102 -212.263 -48.4142 80.0297 -212.263 -48.4124 80.0283 -212.263 -48.4121 80.0278 -212.263 -48.4121 80.0272 -212.263 -48.4123 80.02661 -212.263 -48.4137 80.0254 -212.263 -48.4215 80.0226 -212.263 0 80.1929 -211.997 0 81.13481 -208.554 -63.1562 81.13481 -208.554 0 81.5857 -204.999 -63.1562 81.5857 -204.999 -55.3086 80.1929 -211.997 -27.6543 80.1929 -211.997 -31.5781 81.5857 -204.999 -63.1562 80.36251 -211.497 -59.2339 80.2717 -211.769 -63.1562 81.1878 -204.92 -63.1562 81.00421 -207.07 -63.1562 80.7108 -208.953 -63.1562 79.9786 -211.497 -63.1562 81.5857 -204.999 -63.1562 81.5918 -204.788 -63.1562 81.5647 -204.716 -63.1562 81.5458 -204.696 -63.1562 81.5254 -204.687 -63.1562 81.36301 -204.654 -63.1562 81.3406 -204.655 -63.1562 81.3156 -204.666 -63.1562 81.2629 -204.722 -63.1562 80.36251 -211.497 -63.1562 81.13481 -208.554 + + + + + + + + + + 0 0.9995815 -0.02893179 0 0.9863262 0.1648048 0 0.9995859 -0.02877932 0 0.9863114 0.1648939 0 0.8480738 0.5298783 0 0.848096 0.5298426 0 0.4035515 0.9149569 0 0.403801 0.9148469 0 0.5767575 0.8169154 0 0.5767779 0.8169011 0 0.1990846 0.9799823 0 0.1990665 0.979986 0 0.1990847 0.9799823 0 0.1990665 0.979986 0 -0.04419213 0.9990231 0 -0.2273685 0.9738088 0 -0.04425305 0.9990204 0 -0.2273396 0.9738156 0 -0.5770821 0.8166861 0 -0.5770965 0.816676 0 -0.935007 0.3546294 0 -0.8479075 0.5301443 1 0 0 -0.04652792 -0.01942604 -0.9987281 -0.008103132 -0.05007487 -0.9987127 -0.002163887 0 -0.9999977 -0.02948963 -0.03842359 -0.9988263 -0.03000932 -0.04092055 -0.9987117 -0.02798235 -0.03896999 -0.9988486 -0.024589 -0.00311762 -0.9996928 6.40908e-4 0 -0.9999999 0.001617491 0 -0.9999987 -0.006256341 0 -0.9999805 0 0 -1 0.124031 0 -0.9922783 0.03619551 0 -0.9993448 -0.001398563 0 -0.9999991 -0.03077214 -0.01411086 -0.9994269 -0.02415072 -0.004264473 -0.9996993 -0.03390616 0.001678466 -0.9994236 -0.03586018 0.001586973 -0.9993556 -0.03894168 -0.002075254 -0.9992393 -0.03268587 -0.0205698 -0.999254 -0.0270096 -0.003112971 -0.9996303 -0.04425299 -0.001037657 -0.9990199 -0.04144519 -6.40905e-4 -0.9991406 -0.06921684 4.88302e-4 -0.9976015 -0.06918644 0 -0.9976038 -0.06009256 -0.0107733 -0.9981347 -0.0488004 0.002105832 -0.9988064 -0.05270612 -0.001464903 -0.998609 -0.06793594 0.005157709 -0.9976764 -0.02969497 0.01101732 -0.9994984 -0.03186142 0.003601193 -0.9994859 -0.03384464 8.32283e-4 -0.9994269 -0.06012248 0.02230936 -0.9979417 -0.04391455 -0.002885341 -0.9990311 -0.04769831 0.002287566 -0.9988592 -0.02548301 -0.003692746 -0.9996685 0 -0.9963763 0.08505576 0 -0.9928252 0.1195748 0 -0.9764642 0.2156797 7.0193e-4 -0.9800773 0.1986156 -4.88304e-4 -0.9311959 0.364519 0 -0.9347496 0.3553074 7.32471e-4 -0.9543483 0.2986955 0 -0.9594438 0.2819003 -1.52593e-4 -0.9216021 0.3881362 0 -0.9116913 0.410876 0 -0.9935588 0.1133185 1.52596e-4 -0.9995654 0.02948153 0 -0.9933412 0.1152102 1.22075e-4 -0.9862708 -0.1651363 0 -0.993322 0.1153754 9.15559e-5 -0.9998205 -0.01895201 0 -0.9919314 -0.1267763 0 -0.9533601 -0.3018353 0 -0.8405016 -0.5418092 0 -0.5768677 -0.8168376 3.05194e-5 -0.8483788 -0.5293899 -6.10385e-5 -0.4929772 -0.8700423 0 -0.4019376 -0.9156671 0 -0.5421081 -0.8403087 0 -0.193382 -0.9811236 0 -0.1933876 -0.9811225 0 -0.193431 -0.9811139 0 -0.1932421 -0.9811511 0 -0.1932107 -0.9811573 0 -0.1932128 -0.9811569 4.03538e-5 -4.79202e-5 -1 3.52366e-5 5.37358e-5 -1 0 -0.1808564 -0.9835096 3.05185e-5 -9.15555e-5 -1 6.10352e-5 0 -1 3.98597e-5 2.55351e-5 -1 3.15461e-5 -1.41958e-5 -1 0 0.2053629 -0.9786859 0 0.01409983 -0.9999007 0 -0.2013661 -0.979516 4.32425e-5 1.56625e-4 -1 2.44154e-4 0.3054678 -0.9522025 3.05194e-5 2.13636e-4 -1 4.50721e-5 1.04464e-4 -1 0 0.2789428 -0.9603078 0 0.3576801 -0.9338442 0 0.4498485 -0.8931049 1.22077e-4 0.8495959 -0.5274343 3.05193e-5 0.58008 -0.8145596 0 0.7871913 -0.616709 0 0.9615908 -0.2744874 1.83114e-4 0.9344611 -0.3560652 0 0.9621034 -0.2726849 0 0.4970031 -0.8677488 0 0.64593 -0.7633967 9.15577e-5 0.9175305 -0.3976657 0 0.8638697 -0.5037155 0 0.9621088 -0.2726658 4.88307e-4 0.981681 -0.1905314 0 0.9645587 -0.2638688 0.00100708 0.9666692 -0.2560266 0 0.9451689 -0.3265822 6.10378e-5 0.9488632 -0.3156875 0 0.9807388 -0.1953237 0 0.9920557 -0.1258 0 0.9920518 -0.1258299 -1 0 0 -1 -3.2476e-5 0 -1 -1.54895e-4 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 2 1 1 0 2 2 3 3 3 5 4 4 4 5 5 3 3 6 4 5 7 2 1 8 1 2 9 3 3 10 10 0 11 2 1 12 10 0 13 3 3 14 11 6 15 8 7 16 6 8 17 7 9 18 11 6 19 6 8 20 6 8 21 4 5 22 5 4 23 6 8 24 5 4 25 7 9 26 11 6 27 7 9 28 9 7 29 16 10 30 17 10 31 14 10 32 16 11 33 14 11 34 12 11 35 13 12 36 15 12 37 17 12 38 13 13 39 17 13 40 16 13 41 29 14 42 20 15 43 18 16 44 21 17 45 23 18 46 22 19 47 21 17 48 22 19 49 20 15 50 19 16 51 21 17 52 29 14 53 20 15 54 29 14 55 21 17 56 28 20 57 26 20 58 24 21 59 25 21 60 28 20 61 24 21 62 24 21 63 22 19 64 23 18 65 24 21 66 23 18 67 25 21 68 28 20 69 25 21 70 27 20 71 36 22 72 34 22 73 35 22 74 37 22 75 34 22 76 36 22 77 33 22 78 34 22 79 38 22 80 37 22 81 38 22 82 34 22 83 39 22 84 33 22 85 38 22 86 54 22 87 30 22 88 53 22 89 52 22 90 53 22 91 30 22 92 52 22 93 30 22 94 51 22 95 30 22 96 31 22 97 51 22 98 33 22 99 39 22 100 40 22 101 33 22 102 44 22 103 45 22 104 44 22 105 33 22 106 41 22 107 44 22 108 42 22 109 43 22 110 41 22 111 42 22 112 44 22 113 32 22 114 33 22 115 45 22 116 49 22 117 50 22 118 46 22 119 31 22 120 46 22 121 50 22 122 51 22 123 31 22 124 50 22 125 49 22 126 46 22 127 48 22 128 46 22 129 47 22 130 48 22 131 45 22 132 46 22 133 31 22 134 45 22 135 31 22 136 32 22 137 33 22 138 40 22 139 41 22 140 77 23 141 76 23 142 66 23 143 76 24 144 75 24 145 66 24 146 78 25 147 77 25 148 66 25 149 66 26 150 81 26 151 80 26 152 80 27 153 79 27 154 66 27 155 79 28 156 78 28 157 66 28 158 81 29 159 66 29 160 65 29 161 74 30 162 71 31 163 70 32 164 70 33 165 69 33 166 74 33 167 72 34 168 71 31 169 73 35 170 69 33 171 68 33 172 74 30 173 68 33 174 67 33 175 74 33 176 67 36 177 75 36 178 74 36 179 67 37 180 66 37 181 75 37 182 73 35 183 71 31 184 74 30 185 65 38 186 82 38 187 81 38 188 84 39 189 62 40 190 85 41 191 83 42 192 65 43 193 84 39 194 86 44 195 85 41 196 61 45 197 56 46 198 55 47 199 88 48 200 59 49 201 87 50 202 86 44 203 87 50 204 57 51 205 88 48 206 88 48 207 57 51 208 56 46 209 64 52 210 84 39 211 65 43 212 63 53 213 84 39 214 64 52 215 84 54 216 63 54 217 62 54 218 87 50 219 59 49 220 58 55 221 61 45 222 85 41 223 62 40 224 86 56 225 61 56 226 60 56 227 86 57 228 60 57 229 59 57 230 87 50 231 58 55 232 57 51 233 82 58 234 65 43 235 83 42 236 100 59 237 91 60 238 89 59 239 92 60 240 94 61 241 93 62 242 92 60 243 93 62 244 91 60 245 90 59 246 92 60 247 100 59 248 91 60 249 100 59 250 92 60 251 97 63 252 96 64 253 95 65 254 99 66 255 97 63 256 95 65 257 99 66 258 95 65 259 93 62 260 99 66 261 93 62 262 94 61 263 101 67 264 97 63 265 99 66 266 101 67 267 98 68 268 97 63 269 115 69 270 102 70 271 108 71 272 104 72 273 102 70 274 115 69 275 115 73 276 108 73 277 103 73 278 114 74 279 104 72 280 115 69 281 114 74 282 113 75 283 104 72 284 113 75 285 112 76 286 104 72 287 111 77 288 106 78 289 105 79 290 109 80 291 107 81 292 106 78 293 111 77 294 105 79 295 112 76 296 111 77 297 110 82 298 109 80 299 111 77 300 109 80 301 106 78 302 104 72 303 112 76 304 105 79 305 120 83 306 118 83 307 116 83 308 120 84 309 117 84 310 123 84 311 123 85 312 118 85 313 120 85 314 118 86 315 123 86 316 121 86 317 121 87 318 123 87 319 122 87 320 119 88 321 118 88 322 121 88 323 151 89 324 150 89 325 131 89 326 131 90 327 147 90 328 146 90 329 152 91 330 151 92 331 131 33 332 131 93 333 149 93 334 148 93 335 147 94 336 131 94 337 148 94 338 131 95 339 150 95 340 149 95 341 125 96 342 131 33 343 142 97 344 131 33 345 130 98 346 152 91 347 131 99 348 145 99 349 144 99 350 131 33 351 143 100 352 142 97 353 143 100 354 131 33 355 144 101 356 145 102 357 131 102 358 146 102 359 125 96 360 124 33 361 131 33 362 141 103 363 140 104 364 125 96 365 125 96 366 140 104 367 139 105 368 142 97 369 141 103 370 125 96 371 127 106 372 126 107 373 136 108 374 133 109 375 128 110 376 127 106 377 139 105 378 126 107 379 125 96 380 128 110 381 133 109 382 132 111 383 126 107 384 139 105 385 138 112 386 126 107 387 137 113 388 136 108 389 137 113 390 126 107 391 138 112 392 134 114 393 127 106 394 135 115 395 127 106 396 134 114 397 133 109 398 132 116 399 133 116 400 129 116 401 135 115 402 127 106 403 136 108 404 155 117 405 159 118 406 161 119 407 158 120 408 162 121 409 159 118 410 161 119 411 159 118 412 162 121 413 154 122 414 153 118 415 159 118 416 160 123 417 156 124 418 154 122 419 157 124 420 160 123 421 155 117 422 154 122 423 155 117 424 160 123 425 159 118 426 155 117 427 154 122 428 174 125 429 164 125 430 163 125 431 174 125 432 163 125 433 175 125 434 173 125 435 164 125 436 174 125 437 173 125 438 172 125 439 164 125 440 172 125 441 171 125 442 164 125 443 167 125 444 164 125 445 169 125 446 177 125 447 165 125 448 167 125 449 165 126 450 177 126 451 176 126 452 176 125 453 166 125 454 165 125 455 171 125 456 170 125 457 164 125 458 169 125 459 164 125 460 170 125 461 167 127 462 169 127 463 168 127 464 167 125 465 165 125 466 164 125 467

+
+
+
+ + + + 0 78.87831 -204.999 -63.1562 78.87831 -204.999 0 78.8844 -204.788 -63.1562 78.8844 -204.788 0 78.8573 -204.716 -63.1562 78.8573 -204.716 0 78.8384 -204.696 -63.1562 78.8384 -204.696 0 78.8179 -204.687 -63.1562 78.8179 -204.687 -31.5781 78.87831 -204.999 -31.5781 78.8179 -204.687 0 78.8179 -204.687 -63.1562 78.8179 -204.687 0 78.6556 -204.654 -63.1562 78.6556 -204.654 -31.5781 78.8179 -204.687 -31.5781 78.6556 -204.654 0 78.6556 -204.654 -63.1562 78.6556 -204.654 0 78.6332 -204.655 -63.1562 78.6332 -204.655 0 78.6082 -204.666 -63.1562 78.6082 -204.666 0 78.5555 -204.722 -63.1562 78.5555 -204.722 0 78.4804 -204.92 -63.1562 78.4804 -204.92 -31.5781 78.4804 -204.92 -31.5781 78.6556 -204.654 0 78.4804 -204.92 0 78.2968 -207.07 0 78.00341 -208.953 0 77.60031 -210.569 0 77.0875 -211.918 0 77.0814 -212.129 0 77.1086 -212.201 0 77.12741 -212.221 0 77.14791 -212.23 0 77.22911 -212.246 0 77.31021 -212.262 0 77.33261 -212.262 0 77.3576 -212.251 0 77.4103 -212.194 0 77.4855 -211.997 0 78.4273 -208.554 0 78.87831 -204.999 0 78.8844 -204.788 0 78.8573 -204.716 0 78.8384 -204.696 0 78.8179 -204.687 0 78.6556 -204.654 0 78.6332 -204.655 0 78.6082 -204.666 0 78.5555 -204.722 -63.1562 77.6551 -211.497 -63.1562 77.2712 -211.497 -59.9626 77.1764 -211.721 -56.7671 77.0875 -211.918 -54.632 77.0745 -212.031 -53.5641 77.0755 -212.082 -52.496 77.0814 -212.129 -51.08 77.0986 -212.184 -50.372 77.1137 -212.208 -49.6645 77.14791 -212.23 -49.0913 77.22911 -212.246 -48.4522 77.31021 -212.262 -48.4215 77.3152 -212.263 -48.4137 77.318 -212.263 -48.4123 77.3192 -212.263 -48.4121 77.3198 -212.263 -48.4121 77.3203 -212.263 -48.4124 77.3209 -212.263 -48.4142 77.32231 -212.263 -48.4175 77.3236 -212.263 -48.4265 77.3259 -212.263 -48.4382 77.32801 -212.263 -48.4607 77.331 -212.262 -48.483 77.3334 -212.262 -48.5213 77.3367 -212.261 -48.595 77.3418 -212.259 -48.741 77.3498 -212.255 -49.0322 77.3619 -212.248 -49.6141 77.3808 -212.232 -50.7775 77.4103 -212.194 -51.9105 77.4342 -212.153 -53.0433 77.4546 -212.106 -55.3086 77.4855 -211.997 -59.2339 77.5643 -211.769 0 78.4804 -204.92 -63.1562 78.4804 -204.92 0 78.2968 -207.07 -63.1562 78.2968 -207.07 0 78.00341 -208.953 -63.1562 78.00341 -208.953 0 77.60031 -210.569 0 77.0875 -211.918 -28.3835 77.0875 -211.918 -56.7671 77.0875 -211.918 -63.1562 77.2712 -211.497 -31.5781 78.4804 -204.92 -59.9626 77.1764 -211.721 0 77.0875 -211.918 -56.7671 77.0875 -211.918 0 77.0814 -212.129 0 77.1086 -212.201 0 77.12741 -212.221 0 77.14791 -212.23 -28.3835 77.0875 -211.918 -24.8323 77.14791 -212.23 -49.6645 77.14791 -212.23 -50.372 77.1137 -212.208 -51.08 77.0986 -212.184 -52.496 77.0814 -212.129 -53.5641 77.0755 -212.082 -54.632 77.0745 -212.031 0 77.14791 -212.23 -49.6645 77.14791 -212.23 0 77.22911 -212.246 0 77.31021 -212.262 -24.8323 77.14791 -212.23 -24.2261 77.31021 -212.262 -48.4522 77.31021 -212.262 -49.0913 77.22911 -212.246 0 77.31021 -212.262 0 77.33261 -212.262 0 77.3576 -212.251 0 77.4103 -212.194 0 77.4855 -211.997 -55.3086 77.4855 -211.997 -48.4522 77.31021 -212.262 -24.2261 77.31021 -212.262 -27.6543 77.4855 -211.997 -53.0433 77.4546 -212.106 -51.9105 77.4342 -212.153 -50.7775 77.4103 -212.194 -49.6141 77.3808 -212.232 -49.0322 77.3619 -212.248 -48.741 77.3498 -212.255 -48.595 77.3418 -212.259 -48.5213 77.3367 -212.261 -48.483 77.3334 -212.262 -48.4607 77.331 -212.262 -48.4382 77.32801 -212.263 -48.4265 77.3259 -212.263 -48.4175 77.3236 -212.263 -48.4142 77.32231 -212.263 -48.4124 77.3209 -212.263 -48.4121 77.3203 -212.263 -48.4121 77.3198 -212.263 -48.4123 77.3192 -212.263 -48.4137 77.318 -212.263 -48.4215 77.3152 -212.263 0 77.4855 -211.997 0 78.4273 -208.554 -63.1562 78.4273 -208.554 0 78.87831 -204.999 -63.1562 78.87831 -204.999 -55.3086 77.4855 -211.997 -27.6543 77.4855 -211.997 -31.5781 78.87831 -204.999 -63.1562 77.6551 -211.497 -59.2339 77.5643 -211.769 -63.1562 78.4804 -204.92 -63.1562 78.2968 -207.07 -63.1562 78.00341 -208.953 -63.1562 77.2712 -211.497 -63.1562 78.87831 -204.999 -63.1562 78.8844 -204.788 -63.1562 78.8573 -204.716 -63.1562 78.8384 -204.696 -63.1562 78.8179 -204.687 -63.1562 78.6556 -204.654 -63.1562 78.6332 -204.655 -63.1562 78.6082 -204.666 -63.1562 78.5555 -204.722 -63.1562 77.6551 -211.497 -63.1562 78.4273 -208.554 + + + + + + + + + + 0 0.9995815 -0.02893179 0 0.9863164 0.1648642 0 0.9995841 -0.0288403 0 0.986337 0.1647405 0 0.8480018 0.5299935 0 0.8480601 0.5299002 0 0.4022753 0.9155188 0 0.4020256 0.9156284 0 0.5759544 0.8174818 0 0.5758298 0.8175696 0 0.1991758 0.9799638 0 0.199194 0.9799602 0 0.1991758 0.9799638 0 0.199194 0.9799602 0 -0.04425305 0.9990204 0 -0.227246 0.9738374 0 -0.04422259 0.9990218 0 -0.2274553 0.9737886 0 -0.5771169 0.8166617 0 -0.5769923 0.8167497 0 -0.935007 0.3546294 0 -0.9350273 0.3545761 0 -0.8479212 0.5301224 0 -0.8478851 0.53018 1 0 0 -0.04735171 -0.01932072 -0.9986915 -0.01002728 -0.04957246 -0.9987202 0 0 -1 -0.02951425 -0.03863447 -0.9988175 -0.02977728 -0.04060417 -0.9987315 -0.02909189 -0.03882706 -0.9988224 -0.02457362 -0.003115713 -0.9996932 9.76622e-4 0 -0.9999995 -0.001953184 0 -0.9999981 -0.001861631 0 -0.9999983 0.02920621 0 -0.9995735 -0.001404464 0 -0.9999991 -0.02963358 -0.0142064 -0.9994599 -0.02415966 -0.004268169 -0.999699 -0.03393661 0.001678466 -0.9994227 -0.03586018 0.001617491 -0.9993556 -0.03891122 -0.002075254 -0.9992405 -0.03271633 -0.0205698 -0.999253 -0.02697908 -0.003112971 -0.9996312 -0.04425299 -0.001037657 -0.9990199 -0.04147565 -6.40904e-4 -0.9991394 -0.06921684 4.88302e-4 -0.9976015 -0.06915611 0 -0.9976059 -0.06009256 -0.0107733 -0.9981347 -0.0488004 0.002105832 -0.9988064 -0.05270612 -0.001464903 -0.998609 -0.06793594 0.005157709 -0.9976764 -0.02969497 0.01101732 -0.9994984 -0.03186142 0.003601193 -0.9994859 -0.03389805 8.32457e-4 -0.999425 -0.06012248 0.0222789 -0.9979423 -0.04394829 -0.002885341 -0.9990297 -0.0476607 0.002287566 -0.998861 -0.02545255 -0.003692746 -0.9996692 0 -0.9963737 0.08508604 0 -0.9928252 0.1195748 0 -0.9764642 0.2156797 7.01947e-4 -0.9800701 0.1986508 -4.88307e-4 -0.9311711 0.3645823 0 -0.9347394 0.3553341 7.32457e-4 -0.9543309 0.298751 0 -0.9594438 0.2819003 -1.52597e-4 -0.9216239 0.3880842 0 -0.9114837 0.4113365 0 -0.9936733 0.1123105 1.52593e-4 -0.9995779 0.02905374 0 -0.9934611 0.1141723 1.22077e-4 -0.9862294 -0.1653838 0 -0.9934428 0.1143308 9.15559e-5 -0.9998205 -0.01895201 0 -0.9919078 -0.1269603 0 -0.9534678 -0.301495 0 -0.8421628 -0.5392234 0 -0.5766533 -0.8169891 3.05189e-5 -0.8482125 -0.529656 -6.10376e-5 -0.4922986 -0.8704264 0 -0.4019376 -0.9156671 0 -0.5410121 -0.8410148 0 -0.193382 -0.9811236 0 -0.1933658 -0.9811267 0 -0.193431 -0.9811139 0 -0.1934475 -0.9811106 0 -0.1934606 -0.9811081 0 -0.1934439 -0.9811114 4.13798e-5 -4.91385e-5 -1 4.93547e-5 5.37614e-5 -1 0 -0.177623 -0.9840987 3.05185e-5 -9.15555e-5 -1 4.11053e-5 0 -1 3.20184e-5 2.05118e-5 -1 4.42837e-5 -1.3587e-5 -1 0 0.2055152 -0.978654 0 0.01400828 -0.9999019 0 -0.1978237 -0.9802377 3.64524e-5 1.63098e-4 -1 2.44154e-4 0.3036659 -0.9527786 3.05194e-5 2.13636e-4 -1 4.54215e-5 1.05274e-4 -1 0 0.2774207 -0.9607486 0 0.3634475 -0.9316147 0 0.4455525 -0.8952558 1.22077e-4 0.8496538 -0.5273408 3.05193e-5 0.5805076 -0.8142549 0 0.788222 -0.6153911 0 0.9615827 -0.2745156 1.83115e-4 0.9342855 -0.3565258 0 0.9621377 -0.2725639 0 0.4995992 -0.8662567 0 0.6441922 -0.7648637 9.15568e-5 0.9177041 -0.3972648 0 0.8631862 -0.5048859 0 0.9621012 -0.2726929 4.88307e-4 0.981681 -0.1905314 0 0.9645664 -0.2638404 0.00100708 0.9666789 -0.2559906 0 0.9451246 -0.3267101 6.10384e-5 0.9489029 -0.3155685 0 0.9807388 -0.1953237 0 0.9920518 -0.1258299 -1 0 0 -1 -3.59648e-5 0 -1 1.78527e-4 0 -1 -8.36628e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 2 1 1 0 2 2 3 3 3 5 4 4 4 5 5 3 3 6 4 5 7 2 1 8 1 2 9 3 3 10 10 0 11 2 1 12 10 0 13 3 3 14 11 6 15 8 7 16 6 8 17 7 9 18 11 6 19 6 8 20 6 8 21 4 5 22 5 4 23 6 8 24 5 4 25 7 9 26 11 6 27 7 9 28 9 7 29 16 10 30 17 10 31 14 10 32 16 11 33 14 11 34 12 11 35 13 12 36 15 12 37 17 12 38 13 13 39 17 13 40 16 13 41 29 14 42 20 15 43 18 16 44 21 17 45 23 18 46 22 19 47 21 17 48 22 19 49 20 15 50 19 16 51 21 17 52 29 14 53 20 15 54 29 14 55 21 17 56 28 20 57 26 21 58 24 22 59 25 23 60 28 20 61 24 22 62 24 22 63 22 19 64 23 18 65 24 22 66 23 18 67 25 23 68 28 20 69 25 23 70 27 21 71 36 24 72 34 24 73 35 24 74 36 24 75 33 24 76 34 24 77 38 24 78 33 24 79 37 24 80 33 24 81 36 24 82 37 24 83 39 24 84 33 24 85 38 24 86 54 24 87 30 24 88 53 24 89 31 24 90 52 24 91 53 24 92 31 24 93 51 24 94 52 24 95 31 24 96 53 24 97 30 24 98 33 24 99 39 24 100 40 24 101 41 24 102 42 24 103 33 24 104 42 24 105 43 24 106 33 24 107 33 24 108 43 24 109 44 24 110 33 24 111 44 24 112 32 24 113 45 24 114 32 24 115 44 24 116 50 24 117 31 24 118 49 24 119 48 24 120 49 24 121 31 24 122 51 24 123 31 24 124 50 24 125 31 24 126 46 24 127 48 24 128 46 24 129 47 24 130 48 24 131 46 24 132 31 24 133 32 24 134 46 24 135 32 24 136 45 24 137 41 24 138 33 24 139 40 24 140 77 25 141 76 25 142 66 25 143 76 26 144 75 26 145 66 26 146 78 27 147 77 27 148 66 27 149 66 28 150 81 28 151 80 28 152 80 29 153 79 29 154 66 29 155 79 30 156 78 30 157 66 30 158 81 31 159 66 31 160 65 31 161 74 32 162 71 33 163 70 34 164 70 27 165 69 27 166 74 27 167 72 27 168 71 33 169 73 35 170 69 27 171 68 27 172 74 32 173 68 27 174 67 27 175 74 27 176 67 36 177 75 36 178 74 36 179 67 37 180 66 37 181 75 37 182 73 35 183 71 33 184 74 32 185 65 38 186 82 38 187 81 38 188 84 39 189 62 40 190 85 41 191 83 42 192 65 43 193 84 39 194 86 44 195 85 41 196 61 45 197 56 46 198 55 47 199 88 48 200 59 49 201 87 50 202 86 44 203 87 50 204 57 51 205 88 48 206 88 48 207 57 51 208 56 46 209 64 52 210 84 39 211 65 43 212 63 53 213 84 39 214 64 52 215 84 54 216 63 54 217 62 54 218 87 50 219 59 49 220 58 55 221 61 45 222 85 41 223 62 40 224 86 56 225 61 56 226 60 56 227 86 57 228 60 57 229 59 57 230 87 50 231 58 55 232 57 51 233 82 58 234 65 43 235 83 42 236 100 59 237 91 60 238 89 59 239 92 60 240 94 61 241 93 62 242 92 60 243 93 62 244 91 60 245 90 59 246 92 60 247 100 59 248 91 60 249 100 59 250 92 60 251 97 63 252 96 64 253 95 65 254 99 66 255 97 63 256 95 65 257 99 66 258 95 65 259 93 62 260 99 66 261 93 62 262 94 61 263 101 67 264 97 63 265 99 66 266 101 67 267 98 68 268 97 63 269 115 69 270 102 70 271 108 71 272 104 72 273 102 70 274 115 69 275 115 73 276 108 73 277 103 73 278 114 74 279 104 72 280 115 69 281 114 74 282 113 75 283 104 72 284 113 75 285 112 76 286 104 72 287 111 77 288 106 78 289 105 79 290 109 80 291 107 81 292 106 78 293 111 77 294 105 79 295 112 76 296 111 77 297 110 82 298 109 80 299 111 77 300 109 80 301 106 78 302 104 72 303 112 76 304 105 79 305 120 83 306 118 83 307 116 83 308 120 84 309 117 84 310 123 84 311 123 85 312 118 85 313 120 85 314 118 86 315 123 86 316 121 86 317 121 87 318 123 87 319 122 87 320 119 88 321 118 88 322 121 88 323 151 89 324 150 89 325 131 89 326 131 90 327 147 90 328 146 90 329 152 91 330 151 92 331 131 27 332 131 93 333 149 93 334 148 93 335 147 94 336 131 94 337 148 94 338 131 95 339 150 95 340 149 95 341 125 96 342 131 27 343 142 97 344 131 27 345 130 98 346 152 91 347 131 99 348 145 99 349 144 99 350 131 27 351 143 100 352 142 97 353 143 100 354 131 27 355 144 101 356 145 102 357 131 102 358 146 102 359 125 96 360 124 27 361 131 27 362 141 103 363 140 104 364 125 96 365 125 96 366 140 104 367 139 105 368 142 97 369 141 103 370 125 96 371 127 106 372 126 107 373 136 108 374 133 109 375 128 110 376 127 106 377 139 105 378 126 107 379 125 96 380 128 110 381 133 109 382 132 111 383 126 107 384 139 105 385 138 112 386 126 107 387 137 113 388 136 108 389 137 113 390 126 107 391 138 112 392 134 114 393 127 106 394 135 115 395 127 106 396 134 114 397 133 109 398 132 116 399 133 116 400 129 116 401 135 115 402 127 106 403 136 108 404 155 117 405 159 118 406 161 119 407 158 120 408 162 121 409 159 118 410 161 119 411 159 118 412 162 121 413 154 122 414 153 118 415 159 118 416 160 123 417 156 123 418 154 122 419 157 123 420 160 123 421 155 117 422 154 122 423 155 117 424 160 123 425 159 118 426 155 117 427 154 122 428 175 124 429 174 124 430 164 124 431 163 124 432 175 124 433 164 124 434 173 124 435 164 124 436 174 124 437 173 124 438 172 124 439 164 124 440 172 124 441 171 124 442 164 124 443 168 124 444 167 124 445 165 124 446 176 125 447 165 125 448 167 125 449 167 124 450 177 124 451 176 124 452 176 124 453 166 124 454 165 124 455 171 124 456 170 124 457 164 124 458 169 124 459 164 124 460 170 124 461 165 126 462 169 126 463 168 126 464 169 127 465 165 127 466 164 127 467

+
+
+
+ + + + 0 76.1709 -204.999 -63.1562 76.1709 -204.999 0 76.177 -204.788 -63.1562 76.177 -204.788 0 76.14981 -204.716 -63.1562 76.14981 -204.716 0 76.13101 -204.696 -63.1562 76.13101 -204.696 0 76.1105 -204.687 -63.1562 76.1105 -204.687 -31.5781 76.1709 -204.999 -31.5781 76.1105 -204.687 0 76.1105 -204.687 -63.1562 76.1105 -204.687 0 75.9482 -204.654 -63.1562 75.9482 -204.654 -31.5781 76.1105 -204.687 -31.5781 75.9482 -204.654 0 75.9482 -204.654 -63.1562 75.9482 -204.654 0 75.9258 -204.655 -63.1562 75.9258 -204.655 0 75.90081 -204.666 -63.1562 75.90081 -204.666 0 75.8481 -204.722 -63.1562 75.8481 -204.722 0 75.77291 -204.92 -63.1562 75.77291 -204.92 -31.5781 75.77291 -204.92 -31.5781 75.9482 -204.654 0 75.77291 -204.92 0 75.5893 -207.07 0 75.29602 -208.953 0 74.8929 -210.569 0 74.3801 -211.918 0 74.374 -212.129 0 74.4011 -212.201 0 74.42 -212.221 0 74.4405 -212.23 0 74.5216 -212.246 0 74.6028 -212.262 0 74.6252 -212.262 0 74.6502 -212.251 0 74.70291 -212.194 0 74.778 -211.997 0 75.7199 -208.554 0 76.1709 -204.999 0 76.177 -204.788 0 76.14981 -204.716 0 76.13101 -204.696 0 76.1105 -204.687 0 75.9482 -204.654 0 75.9258 -204.655 0 75.90081 -204.666 0 75.8481 -204.722 -63.1562 74.9477 -211.497 -63.1562 74.5638 -211.497 -59.9626 74.469 -211.721 -56.7671 74.3801 -211.918 -54.632 74.36711 -212.031 -53.5641 74.36801 -212.082 -52.496 74.374 -212.129 -51.08 74.3911 -212.184 -50.372 74.40631 -212.208 -49.6645 74.4405 -212.23 -49.0913 74.5216 -212.246 -48.4522 74.6028 -212.262 -48.4215 74.60781 -212.263 -48.4137 74.6105 -212.263 -48.4123 74.6118 -212.263 -48.4121 74.6124 -212.263 -48.4121 74.6129 -212.263 -48.4124 74.61341 -212.263 -48.4142 74.6148 -212.263 -48.4175 74.61621 -212.263 -48.4265 74.6185 -212.263 -48.4382 74.6206 -212.263 -48.4607 74.6236 -212.262 -48.483 74.6259 -212.262 -48.5213 74.62931 -212.261 -48.595 74.6344 -212.259 -48.741 74.64231 -212.255 -49.0322 74.65451 -212.248 -49.6141 74.6733 -212.232 -50.7775 74.70291 -212.194 -51.9105 74.7268 -212.153 -53.0433 74.7472 -212.106 -55.3086 74.778 -211.997 -59.2339 74.8568 -211.769 0 75.77291 -204.92 -63.1562 75.77291 -204.92 0 75.5893 -207.07 -63.1562 75.5893 -207.07 0 75.29602 -208.953 -63.1562 75.29602 -208.953 0 74.8929 -210.569 0 74.3801 -211.918 -28.3835 74.3801 -211.918 -56.7671 74.3801 -211.918 -63.1562 74.5638 -211.497 -31.5781 75.77291 -204.92 -59.9626 74.469 -211.721 0 74.3801 -211.918 -56.7671 74.3801 -211.918 0 74.374 -212.129 0 74.4011 -212.201 0 74.42 -212.221 0 74.4405 -212.23 -28.3835 74.3801 -211.918 -24.8323 74.4405 -212.23 -49.6645 74.4405 -212.23 -50.372 74.40631 -212.208 -51.08 74.3911 -212.184 -52.496 74.374 -212.129 -53.5641 74.36801 -212.082 -54.632 74.36711 -212.031 0 74.4405 -212.23 -49.6645 74.4405 -212.23 0 74.5216 -212.246 0 74.6028 -212.262 -24.8323 74.4405 -212.23 -24.2261 74.6028 -212.262 -48.4522 74.6028 -212.262 -49.0913 74.5216 -212.246 0 74.6028 -212.262 0 74.6252 -212.262 0 74.6502 -212.251 0 74.70291 -212.194 0 74.778 -211.997 -55.3086 74.778 -211.997 -48.4522 74.6028 -212.262 -24.2261 74.6028 -212.262 -27.6543 74.778 -211.997 -53.0433 74.7472 -212.106 -51.9105 74.7268 -212.153 -50.7775 74.70291 -212.194 -49.6141 74.6733 -212.232 -49.0322 74.65451 -212.248 -48.741 74.64231 -212.255 -48.595 74.6344 -212.259 -48.5213 74.62931 -212.261 -48.483 74.6259 -212.262 -48.4607 74.6236 -212.262 -48.4382 74.6206 -212.263 -48.4265 74.6185 -212.263 -48.4175 74.61621 -212.263 -48.4142 74.6148 -212.263 -48.4124 74.61341 -212.263 -48.4121 74.6129 -212.263 -48.4121 74.6124 -212.263 -48.4123 74.6118 -212.263 -48.4137 74.6105 -212.263 -48.4215 74.60781 -212.263 0 74.778 -211.997 0 75.7199 -208.554 -63.1562 75.7199 -208.554 0 76.1709 -204.999 -63.1562 76.1709 -204.999 -55.3086 74.778 -211.997 -27.6543 74.778 -211.997 -31.5781 76.1709 -204.999 -63.1562 74.9477 -211.497 -59.2339 74.8568 -211.769 -63.1562 75.77291 -204.92 -63.1562 75.5893 -207.07 -63.1562 75.29602 -208.953 -63.1562 74.5638 -211.497 -63.1562 76.1709 -204.999 -63.1562 76.177 -204.788 -63.1562 76.14981 -204.716 -63.1562 76.13101 -204.696 -63.1562 76.1105 -204.687 -63.1562 75.9482 -204.654 -63.1562 75.9258 -204.655 -63.1562 75.90081 -204.666 -63.1562 75.8481 -204.722 -63.1562 74.9477 -211.497 -63.1562 75.7199 -208.554 + + + + + + + + + + 0 0.9995841 -0.0288403 0 0.9862451 0.1652897 0 0.9995815 -0.02893179 0 0.9862145 0.1654728 0 0.848365 0.5294118 0 0.8486697 0.5289232 0 0.4020256 0.9156284 0 0.401512 0.9158539 0 0.5770821 0.8166861 0 0.5767779 0.8169011 0 0.199194 0.9799602 0 0.199194 0.9799602 0 0.199194 0.9799602 0 -0.04425305 0.9990204 0 -0.2273685 0.9738088 0 -0.04422259 0.9990218 0 -0.2274553 0.9737886 0 -0.577172 0.8166226 0 -0.577027 0.8167251 0 -0.9348562 0.3550269 0 -0.8477548 0.5303885 0 -0.8477908 0.5303308 1 0 0 -0.04732626 -0.01931029 -0.9986928 -0.00802195 -0.04957342 -0.9987383 0 0 -1 -0.02952188 -0.03846555 -0.9988238 -0.03035426 -0.04057931 -0.9987152 -0.02808469 -0.03911256 -0.9988401 -0.02458512 -0.003117144 -0.9996929 -0.03974127 0 -0.9992101 -0.001404464 0 -0.9999991 -0.03100013 -0.0142154 -0.9994183 0.03569149 0 -0.999363 -0.0241484 -0.004264056 -0.9996994 -0.03393661 0.001678466 -0.9994227 -0.03586018 0.001586973 -0.9993556 -0.03894168 -0.002075254 -0.9992393 -0.03274685 -0.02056974 -0.9992521 -0.0270096 -0.003112971 -0.9996303 -0.04425299 -0.001037657 -0.9990199 -0.04144519 -6.40905e-4 -0.9991406 -0.06921684 4.88302e-4 -0.9976015 -0.06915611 0 -0.9976059 -0.06009256 -0.0107733 -0.9981347 -0.0488004 0.002105832 -0.9988064 -0.05270612 -0.001464903 -0.998609 -0.0679056 0.005157768 -0.9976784 -0.02969497 0.01101732 -0.9994984 -0.03183096 0.003601193 -0.9994868 -0.03387206 8.32252e-4 -0.9994258 -0.06012248 0.0222789 -0.9979423 -0.04391717 -0.002885103 -0.9990311 -0.04769426 0.002286791 -0.9988594 -0.02548301 -0.003692746 -0.9996685 0 -0.9963737 0.08508604 0 -0.9928289 0.1195448 0 -0.9764707 0.2156506 7.0193e-4 -0.9800773 0.1986156 -4.88307e-4 -0.9311711 0.3645823 0 -0.9347394 0.3553341 7.32457e-4 -0.9543309 0.298751 0 -0.9594438 0.2819003 -1.52597e-4 -0.9216239 0.3880842 0 -0.9114837 0.4113365 0 -0.9936872 0.1121865 1.52594e-4 -0.9995815 0.02893179 0 -0.9934437 0.1143229 1.22077e-4 -0.9863213 -0.1648344 0 -0.9934599 0.1141816 9.1556e-5 -0.9998524 -0.01718199 0 -0.9916877 -0.1286685 0 -0.9539092 -0.3000956 0 -0.8404788 -0.5418447 0 -0.5759544 -0.8174818 3.0519e-5 -0.8480018 -0.5299935 -6.10393e-5 -0.4920382 -0.8705737 0 -0.4022753 -0.9155188 0 -0.5412326 -0.8408729 0 -0.1936302 -0.9810746 0 -0.1936203 -0.9810766 0 -0.1936252 -0.9810756 0 -0.1932535 -0.9811488 0 -0.1932042 -0.9811586 0 -0.1931897 -0.9811614 3.72734e-5 -4.42621e-5 -1 4.4408e-5 5.41777e-5 -1 0 -0.1778943 -0.9840496 3.05185e-5 -9.15555e-5 -1 5.7373e-5 0 -1 0 2.50244e-5 -1 4.82039e-5 -1.41468e-5 -1 0 0.2054567 -0.9786662 0 0.01397776 -0.9999024 0 -0.1973954 -0.980324 4.49138e-5 1.62679e-4 -1 2.44151e-4 0.3028383 -0.953042 3.05194e-5 2.13636e-4 -1 4.21538e-5 9.77002e-5 -1 0 0.2709179 -0.9626024 0 0.3624124 -0.9320179 0 0.4494584 -0.8933013 1.22078e-4 0.8497835 -0.5271319 3.05189e-5 0.5804383 -0.8143043 0 0.7870972 -0.6168291 0 0.9618079 -0.2737253 1.83117e-4 0.9344471 -0.3561019 0 0.9623454 -0.2718298 0 0.4972757 -0.8675926 0 0.646276 -0.7631037 9.15582e-5 0.9176881 -0.3973017 0 0.863083 -0.5050623 0 0.9623283 -0.2718902 4.88307e-4 0.981681 -0.1905314 0 0.9645587 -0.2638688 0.00100708 0.9666789 -0.2559906 0 0.9451467 -0.3266462 6.1039e-5 0.9487596 -0.3159989 0 0.9807388 -0.1953237 0 0.9920518 -0.1258299 -1 0 0 -1 -3.59686e-5 0 -1 1.78092e-4 0 -1 -8.36068e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 2 1 1 0 2 2 3 3 3 5 4 4 4 5 5 3 3 6 4 5 7 2 1 8 1 2 9 3 3 10 10 0 11 2 1 12 10 0 13 3 3 14 11 6 15 8 7 16 6 8 17 7 9 18 11 6 19 6 8 20 6 8 21 4 5 22 5 4 23 6 8 24 5 4 25 7 9 26 11 6 27 7 9 28 9 7 29 16 10 30 17 10 31 14 10 32 16 10 33 14 10 34 12 10 35 13 11 36 15 11 37 17 11 38 13 12 39 17 12 40 16 12 41 29 13 42 20 14 43 18 15 44 21 16 45 23 17 46 22 18 47 21 16 48 22 18 49 20 14 50 19 15 51 21 16 52 29 13 53 20 14 54 29 13 55 21 16 56 28 19 57 26 19 58 24 20 59 25 21 60 28 19 61 24 20 62 24 20 63 22 18 64 23 17 65 24 20 66 23 17 67 25 21 68 28 19 69 25 21 70 27 19 71 36 22 72 34 22 73 35 22 74 36 22 75 33 22 76 34 22 77 38 22 78 33 22 79 37 22 80 33 22 81 36 22 82 37 22 83 39 22 84 33 22 85 38 22 86 54 22 87 30 22 88 53 22 89 31 22 90 52 22 91 53 22 92 31 22 93 51 22 94 52 22 95 31 22 96 53 22 97 30 22 98 33 22 99 39 22 100 40 22 101 41 22 102 42 22 103 33 22 104 42 22 105 43 22 106 33 22 107 33 22 108 43 22 109 44 22 110 33 22 111 44 22 112 32 22 113 45 22 114 32 22 115 44 22 116 50 22 117 31 22 118 49 22 119 48 22 120 49 22 121 31 22 122 51 22 123 31 22 124 50 22 125 31 22 126 46 22 127 48 22 128 46 22 129 47 22 130 48 22 131 46 22 132 31 22 133 32 22 134 46 22 135 32 22 136 45 22 137 41 22 138 33 22 139 40 22 140 77 23 141 76 23 142 66 23 143 76 24 144 75 24 145 66 24 146 78 25 147 77 25 148 66 25 149 66 26 150 81 26 151 80 26 152 80 27 153 79 27 154 66 27 155 79 28 156 78 28 157 66 28 158 81 29 159 66 29 160 65 29 161 74 30 162 71 30 163 70 30 164 70 25 165 69 25 166 74 25 167 72 25 168 71 25 169 73 25 170 69 25 171 68 25 172 74 25 173 68 25 174 67 25 175 74 25 176 67 31 177 75 31 178 74 31 179 67 32 180 66 32 181 75 32 182 73 33 183 71 33 184 74 33 185 65 34 186 82 34 187 81 34 188 84 35 189 62 36 190 85 37 191 83 38 192 65 39 193 84 35 194 86 40 195 85 37 196 61 41 197 56 42 198 55 43 199 88 44 200 59 45 201 87 46 202 86 40 203 87 46 204 57 47 205 88 44 206 88 44 207 57 47 208 56 42 209 64 48 210 84 35 211 65 39 212 63 49 213 84 35 214 64 48 215 84 50 216 63 50 217 62 50 218 87 46 219 59 45 220 58 51 221 61 41 222 85 37 223 62 36 224 86 52 225 61 52 226 60 52 227 86 53 228 60 53 229 59 53 230 87 46 231 58 51 232 57 47 233 82 54 234 65 39 235 83 38 236 100 55 237 91 56 238 89 55 239 92 56 240 94 57 241 93 58 242 92 56 243 93 58 244 91 56 245 90 55 246 92 56 247 100 55 248 91 56 249 100 55 250 92 56 251 97 59 252 96 60 253 95 61 254 99 62 255 97 59 256 95 61 257 99 62 258 95 61 259 93 58 260 99 62 261 93 58 262 94 57 263 101 63 264 97 59 265 99 62 266 101 63 267 98 64 268 97 59 269 115 65 270 102 66 271 108 67 272 104 68 273 102 66 274 115 65 275 115 69 276 108 69 277 103 69 278 114 70 279 104 68 280 115 65 281 114 70 282 113 71 283 104 68 284 113 71 285 112 72 286 104 68 287 111 73 288 106 74 289 105 75 290 109 76 291 107 77 292 106 74 293 111 73 294 105 75 295 112 72 296 111 73 297 110 78 298 109 76 299 111 73 300 109 76 301 106 74 302 104 68 303 112 72 304 105 75 305 120 79 306 118 79 307 116 79 308 120 80 309 117 80 310 123 80 311 123 81 312 118 81 313 120 81 314 118 82 315 123 82 316 121 82 317 121 83 318 123 83 319 122 83 320 119 84 321 118 84 322 121 84 323 151 85 324 150 85 325 131 85 326 131 86 327 147 86 328 146 86 329 152 87 330 151 88 331 131 25 332 131 89 333 149 89 334 148 89 335 147 90 336 131 90 337 148 90 338 131 91 339 150 91 340 149 91 341 125 92 342 131 25 343 142 93 344 131 25 345 130 94 346 152 87 347 131 95 348 145 95 349 144 95 350 131 25 351 143 96 352 142 93 353 143 96 354 131 25 355 144 97 356 145 98 357 131 98 358 146 98 359 125 92 360 124 25 361 131 25 362 141 99 363 140 100 364 125 92 365 125 92 366 140 100 367 139 101 368 142 93 369 141 99 370 125 92 371 127 102 372 126 103 373 136 104 374 133 105 375 128 106 376 127 102 377 139 101 378 126 103 379 125 92 380 128 106 381 133 105 382 132 107 383 126 103 384 139 101 385 138 108 386 126 103 387 137 109 388 136 104 389 137 109 390 126 103 391 138 108 392 134 110 393 127 102 394 135 111 395 127 102 396 134 110 397 133 105 398 132 112 399 133 112 400 129 112 401 135 111 402 127 102 403 136 104 404 155 113 405 159 114 406 161 115 407 158 116 408 162 117 409 159 114 410 161 115 411 159 114 412 162 117 413 154 118 414 153 114 415 159 114 416 160 119 417 156 119 418 154 118 419 157 119 420 160 119 421 155 113 422 154 118 423 155 113 424 160 119 425 159 114 426 155 113 427 154 118 428 175 120 429 174 120 430 164 120 431 163 120 432 175 120 433 164 120 434 173 120 435 164 120 436 174 120 437 173 120 438 172 120 439 164 120 440 172 120 441 171 120 442 164 120 443 168 120 444 167 120 445 165 120 446 176 121 447 165 121 448 167 121 449 167 120 450 177 120 451 176 120 452 176 120 453 166 120 454 165 120 455 171 120 456 170 120 457 164 120 458 169 120 459 164 120 460 170 120 461 165 122 462 169 122 463 168 122 464 169 123 465 165 123 466 164 123 467

+
+
+
+ + + + 0 73.4634 -204.999 -63.1562 73.4634 -204.999 0 73.4696 -204.788 -63.1562 73.4696 -204.788 0 73.4424 -204.716 -63.1562 73.4424 -204.716 0 73.4236 -204.696 -63.1562 73.4236 -204.696 0 73.4031 -204.687 -63.1562 73.4031 -204.687 -31.5781 73.4634 -204.999 -31.5781 73.4031 -204.687 0 73.4031 -204.687 -63.1562 73.4031 -204.687 0 73.2408 -204.654 -63.1562 73.2408 -204.654 -31.5781 73.4031 -204.687 -31.5781 73.2408 -204.654 0 73.2408 -204.654 -63.1562 73.2408 -204.654 0 73.2184 -204.655 -63.1562 73.2184 -204.655 0 73.1934 -204.666 -63.1562 73.1934 -204.666 0 73.1406 -204.722 -63.1562 73.1406 -204.722 0 73.0655 -204.92 -63.1562 73.0655 -204.92 -31.5781 73.0655 -204.92 -31.5781 73.2408 -204.654 0 73.0655 -204.92 0 72.8819 -207.07 0 72.5886 -208.953 0 72.1855 -210.569 0 71.6727 -211.918 0 71.66661 -212.129 0 71.69371 -212.201 0 71.7126 -212.221 0 71.733 -212.23 0 71.8142 -212.246 0 71.8954 -212.262 0 71.9178 -212.262 0 71.94281 -212.251 0 71.9955 -212.194 0 72.07061 -211.997 0 73.0125 -208.554 0 73.4634 -204.999 0 73.4696 -204.788 0 73.4424 -204.716 0 73.4236 -204.696 0 73.4031 -204.687 0 73.2408 -204.654 0 73.2184 -204.655 0 73.1934 -204.666 0 73.1406 -204.722 -63.1562 72.2402 -211.497 -63.1562 71.8564 -211.497 -59.9626 71.7615 -211.721 -56.7671 71.6727 -211.918 -54.632 71.6596 -212.031 -53.5641 71.6606 -212.082 -52.496 71.66661 -212.129 -51.08 71.6837 -212.184 -50.372 71.6989 -212.208 -49.6645 71.733 -212.23 -49.0913 71.8142 -212.246 -48.4522 71.8954 -212.262 -48.4215 71.9003 -212.263 -48.4137 71.9031 -212.263 -48.4123 71.9043 -212.263 -48.4121 71.9049 -212.263 -48.4121 71.9055 -212.263 -48.4124 71.90602 -212.263 -48.4142 71.9074 -212.263 -48.4175 71.9088 -212.263 -48.4265 71.9111 -212.263 -48.4382 71.9132 -212.263 -48.4607 71.9162 -212.262 -48.483 71.91851 -212.262 -48.5213 71.9218 -212.261 -48.595 71.927 -212.259 -48.741 71.9349 -212.255 -49.0322 71.9471 -212.248 -49.6141 71.9659 -212.232 -50.7775 71.9955 -212.194 -51.9105 72.0193 -212.153 -53.0433 72.03981 -212.106 -55.3086 72.07061 -211.997 -59.2339 72.1494 -211.769 0 73.0655 -204.92 -63.1562 73.0655 -204.92 0 72.8819 -207.07 -63.1562 72.8819 -207.07 0 72.5886 -208.953 -63.1562 72.5886 -208.953 0 72.1855 -210.569 0 71.6727 -211.918 -28.3835 71.6727 -211.918 -56.7671 71.6727 -211.918 -63.1562 71.8564 -211.497 -31.5781 73.0655 -204.92 -59.9626 71.7615 -211.721 0 71.6727 -211.918 -56.7671 71.6727 -211.918 0 71.66661 -212.129 0 71.69371 -212.201 0 71.7126 -212.221 0 71.733 -212.23 -28.3835 71.6727 -211.918 -24.8323 71.733 -212.23 -49.6645 71.733 -212.23 -50.372 71.6989 -212.208 -51.08 71.6837 -212.184 -52.496 71.66661 -212.129 -53.5641 71.6606 -212.082 -54.632 71.6596 -212.031 0 71.733 -212.23 -49.6645 71.733 -212.23 0 71.8142 -212.246 0 71.8954 -212.262 -24.8323 71.733 -212.23 -24.2261 71.8954 -212.262 -48.4522 71.8954 -212.262 -49.0913 71.8142 -212.246 0 71.8954 -212.262 0 71.9178 -212.262 0 71.94281 -212.251 0 71.9955 -212.194 0 72.07061 -211.997 -55.3086 72.07061 -211.997 -48.4522 71.8954 -212.262 -24.2261 71.8954 -212.262 -27.6543 72.07061 -211.997 -53.0433 72.03981 -212.106 -51.9105 72.0193 -212.153 -50.7775 71.9955 -212.194 -49.6141 71.9659 -212.232 -49.0322 71.9471 -212.248 -48.741 71.9349 -212.255 -48.595 71.927 -212.259 -48.5213 71.9218 -212.261 -48.483 71.91851 -212.262 -48.4607 71.9162 -212.262 -48.4382 71.9132 -212.263 -48.4265 71.9111 -212.263 -48.4175 71.9088 -212.263 -48.4142 71.9074 -212.263 -48.4124 71.90602 -212.263 -48.4121 71.9055 -212.263 -48.4121 71.9049 -212.263 -48.4123 71.9043 -212.263 -48.4137 71.9031 -212.263 -48.4215 71.9003 -212.263 0 72.07061 -211.997 0 73.0125 -208.554 -63.1562 73.0125 -208.554 0 73.4634 -204.999 -63.1562 73.4634 -204.999 -55.3086 72.07061 -211.997 -27.6543 72.07061 -211.997 -31.5781 73.4634 -204.999 -63.1562 72.2402 -211.497 -59.2339 72.1494 -211.769 -63.1562 73.0655 -204.92 -63.1562 72.8819 -207.07 -63.1562 72.5886 -208.953 -63.1562 71.8564 -211.497 -63.1562 73.4634 -204.999 -63.1562 73.4696 -204.788 -63.1562 73.4424 -204.716 -63.1562 73.4236 -204.696 -63.1562 73.4031 -204.687 -63.1562 73.2408 -204.654 -63.1562 73.2184 -204.655 -63.1562 73.1934 -204.666 -63.1562 73.1406 -204.722 -63.1562 72.2402 -211.497 -63.1562 73.0125 -208.554 + + + + + + + + + + 0 0.9995689 -0.02935957 0 0.98626 0.1652007 0 0.9995707 -0.0292986 0 0.8485311 0.5291455 0 0.848401 0.5293542 0 0.4017872 0.9157331 0 0.4022753 0.9155188 0 0.5770821 0.8166861 0 0.5772762 0.816549 0 0.199194 0.9799602 0 0.1991758 0.9799638 0 0.199194 0.9799602 0 0.1991757 0.9799638 0 -0.04422259 0.9990218 0 -0.227491 0.9737802 0 -0.04425305 0.9990204 0 -0.227246 0.9738374 0 -0.5766329 0.8170034 0 -0.576833 0.8168622 0 -0.935007 0.3546294 0 -0.9349829 0.3546929 0 -0.8476604 0.5305393 0 -0.8476518 0.5305531 1 0 0 -0.04735171 -0.01932072 -0.9986915 -0.00802195 -0.04957342 -0.9987383 0 0 -1 -0.0294736 -0.03840261 -0.9988276 -0.03004533 -0.04096966 -0.9987086 -0.02796536 -0.03894633 -0.99885 -0.024589 -0.00311762 -0.9996928 -0.002258419 0 -0.9999975 -0.01471012 0 -0.9998919 -0.006073236 0 -0.9999817 -0.004333615 0 -0.9999907 -6.9541e-4 0 -0.9999998 -0.03075158 -0.01410144 -0.9994277 -0.02415072 -0.004264473 -0.9996993 -0.03390616 0.001678466 -0.9994236 -0.03586018 0.001586973 -0.9993556 -0.03894168 -0.002075254 -0.9992393 -0.03271633 -0.0205698 -0.999253 -0.02694857 -0.003112971 -0.999632 -0.04425299 -0.001037657 -0.9990199 -0.04147565 -6.40904e-4 -0.9991394 -0.06921684 4.88302e-4 -0.9976015 -0.06918644 0 -0.9976038 -0.06009256 -0.0107733 -0.9981347 -0.0488004 0.002105832 -0.9988064 -0.05270612 -0.001464903 -0.998609 -0.0679056 0.005157768 -0.9976784 -0.02969497 0.01101732 -0.9994984 -0.03186142 0.003601193 -0.9994859 -0.03386008 8.32282e-4 -0.9994263 -0.06012248 0.02230936 -0.9979417 -0.04392379 -0.002884984 -0.9990307 -0.04768759 0.00228703 -0.9988598 -0.02545255 -0.003692746 -0.9996692 0 -0.9963763 0.08505576 0 -0.9928289 0.1195448 0 -0.9963737 0.08508604 0 -0.9764707 0.2156506 7.0193e-4 -0.9800773 0.1986156 -4.88307e-4 -0.9311711 0.3645823 0 -0.9347394 0.3553341 7.32457e-4 -0.9543309 0.298751 0 -0.9594414 0.2819086 -1.52594e-4 -0.9214854 0.3884131 0 -0.9116467 0.410975 0 -0.99359 0.1130439 1.52593e-4 -0.9995788 0.02902323 0 -0.993366 0.1149959 1.22078e-4 -0.9863312 -0.1647751 0 -0.9933567 0.115077 9.15583e-5 -0.9998163 -0.01916617 0 -0.9916638 -0.1288525 0 -0.9539583 -0.2999393 0 -0.8403456 -0.5420511 0 -0.5766185 -0.8170135 3.0519e-5 -0.8480018 -0.5299935 -6.10388e-5 -0.49356 -0.8697118 0 -0.4037386 -0.9148744 0 -0.5422361 -0.8402263 0 -0.193382 -0.9811236 0 -0.193377 -0.9811246 0 -0.1934196 -0.9811161 0 -0.1932421 -0.9811511 0 -0.1932179 -0.9811559 0 -0.1932128 -0.9811569 4.1032e-5 -4.87255e-5 -1 3.96753e-5 5.50045e-5 -1 0 -0.1807624 -0.9835268 3.05194e-5 -9.15583e-5 -1 6.10352e-5 0 -1 3.75601e-5 2.40619e-5 -1 4.48751e-5 -1.37685e-5 -1 0 0.2054567 -0.9786662 0 0.01397776 -0.9999024 0 -0.2012723 -0.9795354 3.96388e-5 1.62974e-4 -1 2.44151e-4 0.3028383 -0.953042 3.05194e-5 2.13636e-4 -1 4.21538e-5 9.77002e-5 -1 0 0.2785441 -0.9604235 0 0.3571031 -0.9340651 0 0.4497023 -0.8931787 1.22078e-4 0.8497835 -0.5271319 3.05189e-5 0.5804383 -0.8143043 0 0.7870972 -0.6168291 0 0.9618159 -0.2736971 1.83114e-4 0.9344611 -0.3560652 0 0.9623272 -0.2718943 0 0.4972757 -0.8675926 0 0.646276 -0.7631037 9.15573e-5 0.916855 -0.3992204 0 0.8638697 -0.5037155 0 0.9623462 -0.2718271 4.88305e-4 0.9816754 -0.1905608 0 0.9645587 -0.2638688 0.00100708 0.9666692 -0.2560266 0 0.9451467 -0.3266462 6.1039e-5 0.9488815 -0.3156326 0 0.9807388 -0.1953237 0 0.9920557 -0.1258 0 0.9920518 -0.1258299 -1 0 0 -1 -3.59932e-5 0 -1 1.78092e-4 0 -1 -8.36138e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 2 1 1 0 2 2 3 1 3 5 3 4 4 4 5 3 1 6 4 4 7 2 1 8 1 2 9 3 1 10 10 0 11 2 1 12 10 0 13 3 1 14 11 5 15 8 6 16 6 7 17 7 8 18 11 5 19 6 7 20 6 7 21 4 4 22 5 3 23 6 7 24 5 3 25 7 8 26 11 5 27 7 8 28 9 6 29 16 9 30 17 9 31 14 9 32 16 10 33 14 10 34 12 10 35 13 11 36 15 11 37 17 11 38 13 12 39 17 12 40 16 12 41 29 13 42 20 14 43 18 15 44 21 16 45 23 17 46 22 18 47 21 16 48 22 18 49 20 14 50 19 15 51 21 16 52 29 13 53 20 14 54 29 13 55 21 16 56 28 19 57 26 20 58 24 21 59 25 22 60 28 19 61 24 21 62 24 21 63 22 18 64 23 17 65 24 21 66 23 17 67 25 22 68 28 19 69 25 22 70 27 20 71 36 23 72 34 23 73 35 23 74 36 23 75 33 23 76 34 23 77 38 23 78 33 23 79 37 23 80 33 23 81 36 23 82 37 23 83 39 23 84 33 23 85 38 23 86 54 23 87 30 23 88 53 23 89 31 23 90 52 23 91 53 23 92 31 23 93 51 23 94 52 23 95 31 23 96 53 23 97 30 23 98 33 23 99 39 23 100 40 23 101 41 23 102 42 23 103 33 23 104 42 23 105 43 23 106 33 23 107 33 23 108 43 23 109 44 23 110 33 23 111 44 23 112 32 23 113 45 23 114 32 23 115 44 23 116 50 23 117 31 23 118 49 23 119 48 23 120 49 23 121 31 23 122 51 23 123 31 23 124 50 23 125 31 23 126 46 23 127 48 23 128 46 23 129 47 23 130 48 23 131 46 23 132 31 23 133 32 23 134 46 23 135 32 23 136 45 23 137 41 23 138 33 23 139 40 23 140 77 24 141 76 24 142 66 24 143 76 25 144 75 25 145 66 25 146 78 26 147 77 26 148 66 26 149 66 27 150 81 27 151 80 27 152 80 28 153 79 28 154 66 28 155 79 29 156 78 29 157 66 29 158 81 30 159 66 30 160 65 30 161 74 31 162 71 32 163 70 33 164 70 26 165 69 26 166 74 26 167 72 26 168 71 32 169 73 26 170 69 26 171 68 26 172 74 26 173 68 34 174 67 34 175 74 34 176 67 35 177 75 35 178 74 35 179 67 36 180 66 36 181 75 36 182 73 26 183 71 32 184 74 31 185 65 37 186 82 37 187 81 37 188 84 38 189 62 39 190 85 40 191 83 41 192 65 42 193 84 38 194 86 43 195 85 40 196 61 44 197 56 45 198 55 46 199 88 47 200 59 48 201 87 49 202 86 43 203 87 49 204 57 50 205 88 47 206 88 47 207 57 50 208 56 45 209 64 51 210 84 38 211 65 42 212 63 52 213 84 38 214 64 51 215 84 53 216 63 53 217 62 53 218 87 49 219 59 48 220 58 54 221 61 44 222 85 40 223 62 39 224 86 55 225 61 55 226 60 55 227 86 56 228 60 56 229 59 56 230 87 49 231 58 54 232 57 50 233 82 57 234 65 42 235 83 41 236 100 58 237 91 59 238 89 60 239 92 59 240 94 61 241 93 62 242 92 59 243 93 62 244 91 59 245 90 60 246 92 59 247 100 58 248 91 59 249 100 58 250 92 59 251 97 63 252 96 64 253 95 65 254 99 66 255 97 63 256 95 65 257 99 66 258 95 65 259 93 62 260 99 66 261 93 62 262 94 61 263 101 67 264 97 63 265 99 66 266 101 67 267 98 68 268 97 63 269 115 69 270 102 70 271 108 71 272 104 72 273 102 70 274 115 69 275 115 73 276 108 73 277 103 73 278 114 74 279 104 72 280 115 69 281 114 74 282 113 75 283 104 72 284 113 75 285 112 76 286 104 72 287 111 77 288 106 78 289 105 79 290 109 80 291 107 81 292 106 78 293 111 77 294 105 79 295 112 76 296 111 77 297 110 82 298 109 80 299 111 77 300 109 80 301 106 78 302 104 72 303 112 76 304 105 79 305 120 83 306 118 83 307 116 83 308 120 84 309 117 84 310 123 84 311 123 85 312 118 85 313 120 85 314 118 86 315 123 86 316 121 86 317 121 87 318 123 87 319 122 87 320 119 88 321 118 88 322 121 88 323 151 89 324 150 89 325 131 89 326 131 90 327 147 90 328 146 90 329 152 91 330 151 92 331 131 26 332 131 93 333 149 93 334 148 93 335 147 94 336 131 94 337 148 94 338 131 95 339 150 95 340 149 95 341 125 96 342 131 26 343 142 97 344 131 26 345 130 98 346 152 91 347 131 99 348 145 99 349 144 99 350 131 26 351 143 100 352 142 97 353 143 100 354 131 26 355 144 101 356 145 102 357 131 102 358 146 102 359 125 96 360 124 26 361 131 26 362 141 103 363 140 104 364 125 96 365 125 96 366 140 104 367 139 105 368 142 97 369 141 103 370 125 96 371 127 106 372 126 107 373 136 108 374 133 109 375 128 110 376 127 106 377 139 105 378 126 107 379 125 96 380 128 110 381 133 109 382 132 111 383 126 107 384 139 105 385 138 112 386 126 107 387 137 113 388 136 108 389 137 113 390 126 107 391 138 112 392 134 114 393 127 106 394 135 115 395 127 106 396 134 114 397 133 109 398 132 116 399 133 116 400 129 116 401 135 115 402 127 106 403 136 108 404 155 117 405 159 118 406 161 119 407 158 120 408 162 121 409 159 118 410 161 119 411 159 118 412 162 121 413 154 122 414 153 118 415 159 118 416 160 123 417 156 124 418 154 122 419 157 124 420 160 123 421 155 117 422 154 122 423 155 117 424 160 123 425 159 118 426 155 117 427 154 122 428 175 125 429 174 125 430 164 125 431 163 125 432 175 125 433 164 125 434 173 125 435 164 125 436 174 125 437 173 125 438 172 125 439 164 125 440 172 125 441 171 125 442 164 125 443 168 125 444 167 125 445 165 125 446 176 126 447 165 126 448 167 126 449 167 125 450 177 125 451 176 125 452 176 125 453 166 125 454 165 125 455 171 125 456 170 125 457 164 125 458 169 125 459 164 125 460 170 125 461 165 127 462 169 127 463 168 127 464 169 128 465 165 128 466 164 128 467

+
+
+
+ + + + 0 70.75601 -204.999 -63.1562 70.75601 -204.999 0 70.7621 -204.788 -63.1562 70.7621 -204.788 0 70.735 -204.716 -63.1562 70.735 -204.716 0 70.71611 -204.696 -63.1562 70.71611 -204.696 0 70.6957 -204.687 -63.1562 70.6957 -204.687 -31.5781 70.75601 -204.999 -31.5781 70.6957 -204.687 0 70.6957 -204.687 -63.1562 70.6957 -204.687 0 70.5333 -204.654 -63.1562 70.5333 -204.654 -31.5781 70.6957 -204.687 -31.5781 70.5333 -204.654 0 70.5333 -204.654 -63.1562 70.5333 -204.654 0 70.51091 -204.655 -63.1562 70.51091 -204.655 0 70.4859 -204.666 -63.1562 70.4859 -204.666 0 70.4332 -204.722 -63.1562 70.4332 -204.722 0 70.3581 -204.92 -63.1562 70.3581 -204.92 -31.5781 70.3581 -204.92 -31.5781 70.5333 -204.654 0 70.3581 -204.92 0 70.1745 -207.07 0 69.88111 -208.953 0 69.47811 -210.569 0 68.9653 -211.918 0 68.9591 -212.129 0 68.9863 -212.201 0 69.0051 -212.221 0 69.0256 -212.23 0 69.1068 -212.246 0 69.1879 -212.262 0 69.2103 -212.262 0 69.2353 -212.251 0 69.2881 -212.194 0 69.3632 -211.997 0 70.3051 -208.554 0 70.75601 -204.999 0 70.7621 -204.788 0 70.735 -204.716 0 70.71611 -204.696 0 70.6957 -204.687 0 70.5333 -204.654 0 70.51091 -204.655 0 70.4859 -204.666 0 70.4332 -204.722 -63.1562 69.5328 -211.497 -63.1562 69.14891 -211.497 -59.9626 69.0541 -211.721 -56.7671 68.9653 -211.918 -54.632 68.9522 -212.031 -53.5641 68.9532 -212.082 -52.496 68.9591 -212.129 -51.08 68.97631 -212.184 -50.372 68.9915 -212.208 -49.6645 69.0256 -212.23 -49.0913 69.1068 -212.246 -48.4522 69.1879 -212.262 -48.4215 69.1929 -212.263 -48.4137 69.1957 -212.263 -48.4123 69.1969 -212.263 -48.4121 69.1975 -212.263 -48.4121 69.1981 -212.263 -48.4124 69.1986 -212.263 -48.4142 69.20001 -212.263 -48.4175 69.2013 -212.263 -48.4265 69.2037 -212.263 -48.4382 69.20571 -212.263 -48.4607 69.2087 -212.262 -48.483 69.2111 -212.262 -48.5213 69.2144 -212.261 -48.595 69.2196 -212.259 -48.741 69.2275 -212.255 -49.0322 69.2397 -212.248 -49.6141 69.2585 -212.232 -50.7775 69.2881 -212.194 -51.9105 69.3119 -212.153 -53.0433 69.3323 -212.106 -55.3086 69.3632 -211.997 -59.2339 69.442 -211.769 0 70.3581 -204.92 -63.1562 70.3581 -204.92 0 70.1745 -207.07 -63.1562 70.1745 -207.07 0 69.88111 -208.953 -63.1562 69.88111 -208.953 0 69.47811 -210.569 0 68.9653 -211.918 -28.3835 68.9653 -211.918 -56.7671 68.9653 -211.918 -63.1562 69.14891 -211.497 -31.5781 70.3581 -204.92 -59.9626 69.0541 -211.721 0 68.9653 -211.918 -56.7671 68.9653 -211.918 0 68.9591 -212.129 0 68.9863 -212.201 0 69.0051 -212.221 0 69.0256 -212.23 -28.3835 68.9653 -211.918 -24.8323 69.0256 -212.23 -49.6645 69.0256 -212.23 -50.372 68.9915 -212.208 -51.08 68.97631 -212.184 -52.496 68.9591 -212.129 -53.5641 68.9532 -212.082 -54.632 68.9522 -212.031 0 69.0256 -212.23 -49.6645 69.0256 -212.23 0 69.1068 -212.246 0 69.1879 -212.262 -24.8323 69.0256 -212.23 -24.2261 69.1879 -212.262 -48.4522 69.1879 -212.262 -49.0913 69.1068 -212.246 0 69.1879 -212.262 0 69.2103 -212.262 0 69.2353 -212.251 0 69.2881 -212.194 0 69.3632 -211.997 -55.3086 69.3632 -211.997 -48.4522 69.1879 -212.262 -24.2261 69.1879 -212.262 -27.6543 69.3632 -211.997 -53.0433 69.3323 -212.106 -51.9105 69.3119 -212.153 -50.7775 69.2881 -212.194 -49.6141 69.2585 -212.232 -49.0322 69.2397 -212.248 -48.741 69.2275 -212.255 -48.595 69.2196 -212.259 -48.5213 69.2144 -212.261 -48.483 69.2111 -212.262 -48.4607 69.2087 -212.262 -48.4382 69.20571 -212.263 -48.4265 69.2037 -212.263 -48.4175 69.2013 -212.263 -48.4142 69.20001 -212.263 -48.4124 69.1986 -212.263 -48.4121 69.1981 -212.263 -48.4121 69.1975 -212.263 -48.4123 69.1969 -212.263 -48.4137 69.1957 -212.263 -48.4215 69.1929 -212.263 0 69.3632 -211.997 0 70.3051 -208.554 -63.1562 70.3051 -208.554 0 70.75601 -204.999 -63.1562 70.75601 -204.999 -55.3086 69.3632 -211.997 -27.6543 69.3632 -211.997 -31.5781 70.75601 -204.999 -63.1562 69.5328 -211.497 -59.2339 69.442 -211.769 -63.1562 70.3581 -204.92 -63.1562 70.1745 -207.07 -63.1562 69.88111 -208.953 -63.1562 69.14891 -211.497 -63.1562 70.75601 -204.999 -63.1562 70.7621 -204.788 -63.1562 70.735 -204.716 -63.1562 70.71611 -204.696 -63.1562 70.6957 -204.687 -63.1562 70.5333 -204.654 -63.1562 70.51091 -204.655 -63.1562 70.4859 -204.666 -63.1562 70.4332 -204.722 -63.1562 69.5328 -211.497 -63.1562 70.3051 -208.554 + + + + + + + + + + 0 0.9995841 -0.0288403 0 0.9863164 0.1648642 0 0.986337 0.1647405 0 0.8480018 0.5299935 0 0.8480601 0.5299002 0 0.403801 0.9148469 0 0.5767575 0.8169154 0 0.5766329 0.8170034 0 0.1990665 0.979986 0 0.1990665 0.979986 0 0.1990665 0.979986 0 -0.04422259 0.9990218 0 -0.2273685 0.9738088 0 -0.04425305 0.9990204 0 -0.2273396 0.9738156 0 -0.577027 0.8167251 0 -0.5770965 0.816676 0 -0.935007 0.3546294 0 -0.9350273 0.3545761 0 -0.8479212 0.5301224 0 -0.8478851 0.53018 1 0 0 -0.04735171 -0.01932072 -0.9986915 -0.008070468 -0.04987305 -0.998723 0.002148211 0 -0.9999977 -0.02939343 -0.03829824 -0.998834 -0.03049927 -0.04077315 -0.9987029 -0.02905672 -0.03878015 -0.9988253 -0.02457362 -0.003115713 -0.9996932 0.002655148 0 -0.9999966 -0.00250256 0 -0.9999969 0.003112912 0 -0.9999952 0 0 -1 -0.1104181 0 -0.9938852 0.02951204 0 -0.9995644 0.001398563 0 -0.9999991 -0.03204447 -0.01408201 -0.9993873 -0.02414608 -0.004263639 -0.9996994 -0.03390616 0.001678466 -0.9994236 -0.03586018 0.001586973 -0.9993556 -0.03894168 -0.002075254 -0.9992393 -0.03274685 -0.02056974 -0.9992521 -0.0270096 -0.003112971 -0.9996303 -0.04425299 -0.001037657 -0.9990199 -0.04147565 -6.40904e-4 -0.9991394 -0.06921684 4.88302e-4 -0.9976015 -0.06915611 0 -0.9976059 -0.06009256 -0.0107733 -0.9981347 -0.0488004 0.002105832 -0.9988064 -0.05270612 -0.001464903 -0.998609 -0.0679056 0.005157768 -0.9976784 -0.02969497 0.01101732 -0.9994984 -0.03186142 0.003601193 -0.9994859 -0.03386008 8.32282e-4 -0.9994263 -0.06012248 0.0222789 -0.9979423 -0.04394996 -0.00288546 -0.9990296 -0.04766249 0.002287626 -0.998861 -0.02548301 -0.003692746 -0.9996685 0 -0.9963737 0.08508604 0 -0.9928252 0.1195748 0 -0.9764642 0.2156797 7.0193e-4 -0.9800773 0.1986156 -4.88313e-4 -0.9311814 0.3645558 0 -0.9347394 0.3553341 7.32464e-4 -0.9543395 0.2987232 0 -0.959452 0.2818722 -1.52596e-4 -0.9216504 0.3880215 0 -0.9116633 0.4109382 0 -0.99359 0.1130439 1.52596e-4 -0.9995644 0.02951204 0 -0.9933591 0.1150562 1.22078e-4 -0.986265 -0.165171 0 -0.9933567 0.115077 9.15559e-5 -0.9998205 -0.01895201 0 -0.9919078 -0.1269603 0 -0.9534562 -0.3015316 0 -0.8405016 -0.5418092 0 -0.5769025 -0.8168131 3.05188e-5 -0.8482708 -0.5295627 -6.10385e-5 -0.4929772 -0.8700423 0 -0.4022753 -0.9155188 0 -0.5421081 -0.8403087 0 -0.1934271 -0.9811146 0 -0.1934242 -0.9811152 0 -0.1933854 -0.9811229 0 -0.1934475 -0.9811106 0 -0.1934455 -0.9811111 0 -0.193467 -0.9811068 4.13798e-5 -4.91385e-5 -1 4.2364e-5 5.38376e-5 -1 0 -0.1771932 -0.9841762 3.05185e-5 -9.15555e-5 -1 1.47326e-5 0 -1 3.82966e-5 2.45337e-5 -1 6.05854e-5 -1.36317e-5 -1 0 0.2055152 -0.978654 0 0.01400828 -0.9999019 0 -0.1973367 -0.9803358 4.70923e-5 1.55737e-4 -1 2.44151e-4 0.3035098 -0.9528284 3.05194e-5 2.13636e-4 -1 3.07579e-5 1.06932e-4 -1 0 0.27821 -0.9605203 0 0.3569229 -0.9341339 0 0.4492389 -0.8934117 1.22078e-4 0.8495379 -0.5275277 3.05195e-5 0.5801147 -0.8145349 0 0.7872029 -0.6166942 0 0.9615724 -0.2745518 1.83114e-4 0.9344611 -0.3560652 0 0.9621034 -0.2726849 0 0.4963625 -0.8681154 0 0.6464579 -0.7629497 9.15568e-5 0.9177041 -0.3972648 0 0.8639593 -0.5035617 0 0.962096 -0.2727109 4.88305e-4 0.9816754 -0.1905608 0 0.9645587 -0.2638688 0.00100708 0.9666692 -0.2560266 0 0.9451246 -0.3267101 6.1039e-5 0.9488815 -0.3156326 0 0.9807388 -0.1953237 0 0.9920518 -0.1258299 -1 0 0 -1 -3.59648e-5 0 -1 1.78527e-4 0 -1 -8.36628e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 2 1 1 0 0 2 3 2 3 5 3 4 4 4 5 3 2 6 4 4 7 2 1 8 1 0 9 3 2 10 10 0 11 2 1 12 10 0 13 3 2 14 11 5 15 8 5 16 6 6 17 7 7 18 11 5 19 6 6 20 6 6 21 4 4 22 5 3 23 6 6 24 5 3 25 7 7 26 11 5 27 7 7 28 9 5 29 16 8 30 17 8 31 14 8 32 16 8 33 14 8 34 12 8 35 13 9 36 15 9 37 17 9 38 13 10 39 17 10 40 16 10 41 29 11 42 20 12 43 18 13 44 21 14 45 23 15 46 22 16 47 21 14 48 22 16 49 20 12 50 19 13 51 21 14 52 29 11 53 20 12 54 29 11 55 21 14 56 28 17 57 26 18 58 24 19 59 25 20 60 28 17 61 24 19 62 24 19 63 22 16 64 23 15 65 24 19 66 23 15 67 25 20 68 28 17 69 25 20 70 27 18 71 36 21 72 34 21 73 35 21 74 36 21 75 33 21 76 34 21 77 38 21 78 33 21 79 37 21 80 33 21 81 36 21 82 37 21 83 39 21 84 33 21 85 38 21 86 54 21 87 30 21 88 53 21 89 31 21 90 52 21 91 53 21 92 31 21 93 51 21 94 52 21 95 31 21 96 53 21 97 30 21 98 33 21 99 39 21 100 40 21 101 41 21 102 42 21 103 33 21 104 42 21 105 43 21 106 33 21 107 33 21 108 43 21 109 44 21 110 33 21 111 44 21 112 32 21 113 45 21 114 32 21 115 44 21 116 50 21 117 31 21 118 49 21 119 48 21 120 49 21 121 31 21 122 51 21 123 31 21 124 50 21 125 31 21 126 46 21 127 48 21 128 46 21 129 47 21 130 48 21 131 46 21 132 31 21 133 32 21 134 46 21 135 32 21 136 45 21 137 41 21 138 33 21 139 40 21 140 77 22 141 76 22 142 66 22 143 76 23 144 75 23 145 66 23 146 78 24 147 77 24 148 66 24 149 66 25 150 81 25 151 80 25 152 80 26 153 79 26 154 66 26 155 79 27 156 78 27 157 66 27 158 81 28 159 66 28 160 65 28 161 74 29 162 71 30 163 70 31 164 70 32 165 69 32 166 74 32 167 72 33 168 71 30 169 73 34 170 69 32 171 68 32 172 74 32 173 68 32 174 67 32 175 74 32 176 67 35 177 75 35 178 74 35 179 67 36 180 66 36 181 75 36 182 73 34 183 71 30 184 74 29 185 65 37 186 82 37 187 81 37 188 84 38 189 62 39 190 85 40 191 83 41 192 65 42 193 84 38 194 86 43 195 85 40 196 61 44 197 56 45 198 55 46 199 88 47 200 59 48 201 87 49 202 86 43 203 87 49 204 57 50 205 88 47 206 88 47 207 57 50 208 56 45 209 64 51 210 84 38 211 65 42 212 63 52 213 84 38 214 64 51 215 84 53 216 63 53 217 62 53 218 87 49 219 59 48 220 58 54 221 61 44 222 85 40 223 62 39 224 86 55 225 61 55 226 60 55 227 86 56 228 60 56 229 59 56 230 87 49 231 58 54 232 57 50 233 82 57 234 65 42 235 83 41 236 100 58 237 91 59 238 89 58 239 92 59 240 94 60 241 93 61 242 92 59 243 93 61 244 91 59 245 90 58 246 92 59 247 100 58 248 91 59 249 100 58 250 92 59 251 97 62 252 96 63 253 95 64 254 99 65 255 97 62 256 95 64 257 99 65 258 95 64 259 93 61 260 99 65 261 93 61 262 94 60 263 101 66 264 97 62 265 99 65 266 101 66 267 98 67 268 97 62 269 115 68 270 102 69 271 108 70 272 104 71 273 102 69 274 115 68 275 115 72 276 108 72 277 103 72 278 114 73 279 104 71 280 115 68 281 114 73 282 113 74 283 104 71 284 113 74 285 112 75 286 104 71 287 111 76 288 106 77 289 105 78 290 109 79 291 107 80 292 106 77 293 111 76 294 105 78 295 112 75 296 111 76 297 110 81 298 109 79 299 111 76 300 109 79 301 106 77 302 104 71 303 112 75 304 105 78 305 120 82 306 118 82 307 116 82 308 120 83 309 117 83 310 123 83 311 123 84 312 118 84 313 120 84 314 118 85 315 123 85 316 121 85 317 121 86 318 123 86 319 122 86 320 119 87 321 118 87 322 121 87 323 151 88 324 150 88 325 131 88 326 131 89 327 147 89 328 146 89 329 152 90 330 151 91 331 131 32 332 131 92 333 149 92 334 148 92 335 147 93 336 131 93 337 148 93 338 131 94 339 150 94 340 149 94 341 125 95 342 131 32 343 142 96 344 131 32 345 130 97 346 152 90 347 131 98 348 145 98 349 144 98 350 131 32 351 143 99 352 142 96 353 143 99 354 131 32 355 144 100 356 145 101 357 131 101 358 146 101 359 125 95 360 124 32 361 131 32 362 141 102 363 140 103 364 125 95 365 125 95 366 140 103 367 139 104 368 142 96 369 141 102 370 125 95 371 127 105 372 126 106 373 136 107 374 133 108 375 128 109 376 127 105 377 139 104 378 126 106 379 125 95 380 128 109 381 133 108 382 132 110 383 126 106 384 139 104 385 138 111 386 126 106 387 137 112 388 136 107 389 137 112 390 126 106 391 138 111 392 134 113 393 127 105 394 135 114 395 127 105 396 134 113 397 133 108 398 132 115 399 133 115 400 129 115 401 135 114 402 127 105 403 136 107 404 155 116 405 159 117 406 161 118 407 158 119 408 162 120 409 159 117 410 161 118 411 159 117 412 162 120 413 154 121 414 153 117 415 159 117 416 160 122 417 156 122 418 154 121 419 157 122 420 160 122 421 155 116 422 154 121 423 155 116 424 160 122 425 159 117 426 155 116 427 154 121 428 175 123 429 174 123 430 164 123 431 163 123 432 175 123 433 164 123 434 173 123 435 164 123 436 174 123 437 173 123 438 172 123 439 164 123 440 172 123 441 171 123 442 164 123 443 168 123 444 167 123 445 165 123 446 176 124 447 165 124 448 167 124 449 167 123 450 177 123 451 176 123 452 176 123 453 166 123 454 165 123 455 171 123 456 170 123 457 164 123 458 169 123 459 164 123 460 170 123 461 165 125 462 169 125 463 168 125 464 169 126 465 165 126 466 164 126 467

+
+
+
+ + + + 69.8001 26.0044 217.18 69.8001 26.2727 216.135 69.8001 26.4504 215.165 57.3556 26.5375 214.271 69.8001 26.5375 214.271 63.5778 26.5375 214.271 69.8001 26.0024 217.187 63.7133 25.8196 217.784 57.6178 25.6455 218.301 57.5671 25.8181 217.788 57.5285 25.9493 217.367 57.4921 26.0732 216.937 57.4584 26.1876 216.498 57.4283 26.2903 216.054 57.4022 26.3789 215.607 57.381 26.4512 215.16 57.3652 26.5048 214.714 69.8001 26.5375 214.271 69.8001 26.6305 214.082 69.8001 26.6883 214.031 69.8001 26.7142 214.022 57.2971 26.7365 214.024 69.8001 26.7365 214.024 57.3556 26.5375 214.271 57.3359 26.6044 214.119 57.3202 26.658 214.053 57.309 26.6959 214.027 57.3031 26.7161 214.022 63.5778 26.5375 214.271 63.5486 26.7365 214.024 69.8001 26.7365 214.024 69.8001 26.8159 214.047 57.2505 26.8952 214.071 69.8001 26.8952 214.071 57.2971 26.7365 214.024 63.5486 26.7365 214.024 63.5253 26.8952 214.071 69.8001 26.8952 214.071 69.8001 26.9147 214.082 69.8001 26.9317 214.103 69.8001 26.952 214.178 69.8001 26.9263 214.387 57.2505 26.8952 214.071 57.2448 26.9143 214.081 57.2406 26.9286 214.098 57.2357 26.9454 214.139 57.2333 26.9536 214.224 57.2413 26.9263 214.387 63.5253 26.8952 214.071 63.5207 26.9263 214.387 57.2413 26.9263 214.387 69.8001 26.9263 214.387 69.8001 26.7483 215.428 69.8001 26.3044 217.337 57.266 26.8423 214.911 57.2938 26.7477 215.431 57.3247 26.6427 215.949 57.3586 26.5271 216.462 57.3957 26.4012 216.973 57.4358 26.2648 217.479 57.4789 26.1181 217.983 57.5251 25.961 218.483 63.5207 26.9263 214.387 63.6669 26.1282 217.95 69.8001 26.3044 217.337 69.8001 26.5375 214.271 69.8001 26.6305 214.082 69.8001 26.6883 214.031 69.8001 26.7142 214.022 69.8001 26.7365 214.024 69.8001 26.8159 214.047 69.8001 26.8952 214.071 69.8001 26.9147 214.082 69.8001 26.9317 214.103 69.8001 26.952 214.178 69.8001 26.9263 214.387 69.8001 26.7483 215.428 69.8001 26.0024 217.187 69.8001 26.0044 217.18 69.8001 26.2727 216.135 69.8001 26.4504 215.165 57.3556 26.5375 214.271 57.3359 26.6044 214.119 57.3202 26.658 214.053 57.309 26.6959 214.027 57.3031 26.7161 214.022 57.2971 26.7365 214.024 57.2505 26.8952 214.071 57.2448 26.9143 214.081 57.2406 26.9286 214.098 57.2357 26.9454 214.139 57.2333 26.9536 214.224 57.2413 26.9263 214.387 57.266 26.8423 214.911 57.2938 26.7477 215.431 57.3247 26.6427 215.949 57.3586 26.5271 216.462 57.3957 26.4012 216.973 57.4358 26.2648 217.479 57.4789 26.1181 217.983 57.5251 25.961 218.483 57.6178 25.6455 218.301 57.5671 25.8181 217.788 57.5285 25.9493 217.367 57.4921 26.0732 216.937 57.4584 26.1876 216.498 57.4283 26.2903 216.054 57.4022 26.3789 215.607 57.381 26.4512 215.16 57.3652 26.5048 214.714 + + + + + + + + + + 6.10385e-5 -0.9580302 -0.2866674 -1.52594e-4 -0.9554234 -0.2952394 3.05188e-5 -0.951516 -0.3075993 -2.44155e-4 -0.9650239 -0.2621617 -1.83116e-4 -0.9645918 -0.2637475 -1.52597e-4 -0.9711855 -0.2383252 0 -0.9477915 -0.3188908 9.15583e-5 -0.9611176 -0.2761397 -6.71423e-4 -0.9767061 -0.2145805 0 -0.9902945 -0.1389855 -3.96745e-4 -0.9903675 -0.138464 -6.10379e-5 -0.9842968 -0.1765215 -3.05189e-5 -0.9953743 -0.0960735 0 -0.9972871 -0.07361084 -0.001037597 -0.9960099 -0.08923679 0 -0.9778645 -0.2092393 0 -0.9952884 -0.09695911 4.27267e-4 -0.794473 -0.6072994 -1.22077e-4 -0.8468149 -0.5318877 -1.22076e-4 -0.6638163 -0.7478958 0 -0.9152656 -0.4028511 5.49338e-4 -0.8974039 -0.4412096 1.83117e-4 -0.504425 -0.8634555 0 -0.04168891 -0.9991307 3.05188e-5 -0.1222278 -0.9925022 -3.05193e-5 -0.382315 -0.9240322 0 0.09750914 -0.9952347 0 0.09320455 -0.995647 0 0.08926713 -0.9960078 0 0.2781943 -0.9605248 0 0.2781794 -0.9605292 0 0.2896972 -0.9571183 0 0.2896964 -0.9571186 -4.04781e-5 0.2839315 -0.9588446 0 0.6485366 -0.7611836 3.05192e-5 0.4778083 -0.8784642 0 0.4636421 -0.8860227 -3.0519e-5 0.8634423 -0.5044478 0 0.6456974 -0.7635935 0 0.4914185 -0.8709235 1.83112e-4 0.8904122 -0.4551551 -9.15584e-5 0.9994209 0.03402918 4.27263e-4 0.9974751 -0.07101714 -1.52594e-4 0.9722984 -0.2337434 0 0.986265 0.165171 0 0.98626 0.1652007 5.49343e-4 0.9924793 0.1224119 0 0.9857389 0.1682827 5.18819e-4 0.9862756 0.1651066 0 0.9873953 0.1582738 0 0.9820759 0.1884863 7.32468e-4 0.980378 0.1971254 0 0.9856974 0.168525 7.62977e-4 0.9734369 0.2289542 4.27269e-4 0.9778969 0.2090871 2.44153e-4 0.9684942 0.2490361 0.001342833 0.9730828 0.2304525 -6.10377e-5 0.9630227 0.2694205 9.15563e-5 0.960609 0.277904 0 0.9572963 0.2891085 3.0519e-5 0.954025 0.2997274 1 0 0 1 -4.95638e-5 0 1 -4.27497e-5 0 1 3.86026e-4 0 1 -5.59816e-5 0 1 7.60609e-5 0 0.9999997 -7.84929e-4 0 -0.9599742 -0.2800886 -1.17927e-4 -0.9596752 -0.2811115 8.32609e-5 -0.9594229 -0.2819714 -7.06955e-6 -0.9594001 -0.2820489 6.16119e-6 -0.9594112 -0.2820108 3.73557e-5 -0.9593579 -0.2821925 3.14117e-5 -0.9596081 -0.2813401 -2.02627e-4 -0.9595122 -0.2816675 7.19799e-5 -0.9582295 -0.2860005 2.49373e-4 -0.9599626 -0.2801286 -2.64714e-4 -0.9591731 -0.2828199 2.55807e-5 -0.9595179 -0.2816479 -2.11426e-4 -0.9590746 -0.2831535 2.69623e-4 -0.9594717 -0.2818052 7.21186e-5 -0.9594532 -0.2818681 -4.87189e-6 -0.9594433 -0.2819018 -1.89374e-5 -0.9593955 -0.2820646 5.27094e-5 -0.9593933 -0.282072 2.02609e-5 -0.959438 -0.2819201 -6.14473e-6 -0.9593406 -0.2822514 7.01327e-5 -0.9594742 -0.2817968 -7.69796e-5 -0.9592355 -0.282608 -7.41753e-5 -0.9594792 -0.2817799 -8.63424e-5 -0.9595552 -0.2815205 -6.53084e-5 -0.9593024 -0.2823812 3.54362e-5 -0.9592884 -0.2824283 5.43989e-5 -0.9593376 -0.2822613 1.03312e-4 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 69.8001 29.5908 217.89 69.8001 29.7596 216.952 56.3839 29.8429 216.084 69.8001 29.8429 216.084 63.092 29.8429 216.084 69.8001 29.407 218.645 63.2223 29.1988 219.364 56.6327 28.9966 219.982 56.5954 29.1236 219.6 56.5569 29.2547 219.18 56.5204 29.3786 218.75 56.4868 29.4931 218.311 56.4566 29.5958 217.867 56.4305 29.6844 217.42 56.4093 29.7567 216.973 56.3935 29.8103 216.527 69.8001 29.8429 216.084 69.8001 29.936 215.895 69.8001 29.9937 215.844 69.8001 30.0197 215.835 56.3254 30.042 215.837 69.8001 30.042 215.837 56.3839 29.8429 216.084 56.3643 29.9099 215.932 56.3485 29.9634 215.866 56.3374 30.0013 215.84 56.3314 30.0215 215.835 63.092 29.8429 216.084 63.0627 30.042 215.837 69.8001 30.042 215.837 69.8001 30.1213 215.86 56.2788 30.2007 215.884 69.8001 30.2007 215.884 56.3254 30.042 215.837 63.0627 30.042 215.837 63.0394 30.2007 215.884 69.8001 30.2007 215.884 69.8001 30.2202 215.895 69.8001 30.2371 215.916 69.8001 30.2574 215.991 69.8001 30.2318 216.2 56.2788 30.2007 215.884 56.2732 30.2198 215.894 56.269 30.2341 215.911 56.264 30.2509 215.952 56.2616 30.259 216.037 56.2696 30.2318 216.2 63.0394 30.2007 215.884 63.0348 30.2318 216.2 56.2696 30.2318 216.2 69.8001 30.2318 216.2 69.8001 30.0627 217.195 69.8001 29.715 218.753 56.2932 30.1518 216.701 56.3195 30.0621 217.198 56.3487 29.9629 217.692 56.3807 29.8541 218.183 56.4154 29.7358 218.671 56.453 29.6079 219.157 56.4934 29.4706 219.639 56.5365 29.3239 220.117 63.0348 30.2318 216.2 63.1742 29.5151 219.487 69.8001 29.715 218.753 69.8001 29.8429 216.084 69.8001 29.936 215.895 69.8001 29.9937 215.844 69.8001 30.0197 215.835 69.8001 30.042 215.837 69.8001 30.1213 215.86 69.8001 30.2007 215.884 69.8001 30.2202 215.895 69.8001 30.2371 215.916 69.8001 30.2574 215.991 69.8001 30.2318 216.2 69.8001 30.0627 217.195 69.8001 29.407 218.645 69.8001 29.5908 217.89 69.8001 29.7596 216.952 56.3839 29.8429 216.084 56.3643 29.9099 215.932 56.3485 29.9634 215.866 56.3374 30.0013 215.84 56.3314 30.0215 215.835 56.3254 30.042 215.837 56.2788 30.2007 215.884 56.2732 30.2198 215.894 56.269 30.2341 215.911 56.264 30.2509 215.952 56.2616 30.259 216.037 56.2696 30.2318 216.2 56.2932 30.1518 216.701 56.3195 30.0621 217.198 56.3487 29.9629 217.692 56.3807 29.8541 218.183 56.4154 29.7358 218.671 56.453 29.6079 219.157 56.4934 29.4706 219.639 56.5365 29.3239 220.117 56.6327 28.9966 219.982 56.5954 29.1236 219.6 56.5569 29.2547 219.18 56.5204 29.3786 218.75 56.4868 29.4931 218.311 56.4566 29.5958 217.867 56.4305 29.6844 217.42 56.4093 29.7567 216.973 56.3935 29.8103 216.527 + + + + + + + + + + -9.15586e-5 -0.9580386 -0.2866395 -1.52595e-4 -0.959854 -0.2805004 -9.1558e-5 -0.9518983 -0.3064142 -1.22078e-4 -0.9644746 -0.264176 3.05188e-5 -0.9712013 -0.2382606 -3.05194e-4 -0.9708847 -0.2395471 -4.57792e-4 -0.9489424 -0.3154494 -4.883e-4 -0.9783391 -0.2070086 0 -0.9778583 -0.2092685 0 -0.9902902 -0.1390154 -3.3571e-4 -0.9906805 -0.1362067 -3.05191e-5 -0.9843021 -0.1764919 0 -0.995386 -0.09595257 0 -0.9973049 -0.07336801 -8.85057e-4 -0.996116 -0.08804786 0 -0.9954273 -0.09552341 3.96742e-4 -0.7946436 -0.6070762 -9.15569e-5 -0.8469319 -0.5317015 -1.22079e-4 -0.6641384 -0.7476097 0 -0.9150345 -0.4033758 0 -0.9150395 -0.4033645 5.1882e-4 -0.8972232 -0.441577 1.83114e-4 -0.5040817 -0.8636561 0 -0.04168891 -0.9991307 3.05191e-5 -0.121405 -0.9926031 -3.05195e-5 -0.382226 -0.9240689 0 0.09704983 -0.9952796 0 0.09299278 -0.9956669 0 0.08923685 -0.9960105 0 0.2784854 -0.9604405 0 0.2785047 -0.9604349 0 0.2893401 -0.9572264 0 0.2893587 -0.9572208 -3.41506e-5 0.2839443 -0.9588408 0 0.6480754 -0.7615762 3.05192e-5 0.4778083 -0.8784642 0 0.4636421 -0.8860227 0 0.8633869 -0.5045427 0 0.6467559 -0.7626972 0 0.4913592 -0.8709571 1.52597e-4 0.8910449 -0.4539152 -9.15574e-5 0.9994105 0.034334 3.9675e-4 0.9974598 -0.07123184 -1.22074e-4 0.9724745 -0.2330093 0 0.9863626 0.164587 0 0.9863675 0.1645573 5.18823e-4 0.9925394 0.1219235 0 0.9858996 0.167338 4.5778e-4 0.9864235 0.1642208 0 0.9874936 0.1576596 0 0.9823791 0.1868989 4.27265e-4 0.9813063 0.1924524 0 0.9858686 0.167521 4.27264e-4 0.9742845 0.2253208 3.66225e-4 0.9784616 0.2064288 0 0.9696288 0.2445816 7.93509e-4 0.9751922 0.2213585 -9.15585e-5 0.9645996 0.263719 2.74672e-4 0.9639465 0.2660962 3.0519e-5 0.9590291 0.2833079 3.05187e-4 0.9559972 0.2933759 1 0 0 1 -1.11314e-5 0 1 -1.56715e-4 0 1 1.30736e-4 0 1 -3.02275e-5 0 1 -1.09866e-5 0 1 -1.1725e-5 0 -0.9584609 -0.285224 1.69404e-4 -0.9588652 -0.2838616 -2.73869e-4 -0.9594906 -0.2817407 -8.39337e-5 -0.9593327 -0.2822781 1.19765e-4 -0.9594838 -0.2817637 -7.67647e-5 -0.959375 -0.2821343 5.41509e-5 -0.959164 -0.2828505 3.11373e-4 -0.9597489 -0.2808593 -2.57134e-4 -0.959607 -0.281344 -2.59764e-4 -0.9586433 -0.2846098 5.1651e-4 -0.9598639 -0.2804661 -6.54072e-5 -0.9594933 -0.2817318 -2.16153e-4 -0.9596267 -0.2812768 -1.18952e-4 -0.9593886 -0.2820878 5.63538e-5 -0.959315 -0.2823384 7.94459e-5 -0.9594498 -0.2818797 -8.54388e-5 -0.9594272 -0.2819566 -6.75707e-5 -0.9594246 -0.2819654 -6.47511e-5 -0.9594069 -0.2820258 -5.70028e-5 -0.9593603 -0.2821844 7.98294e-5 -0.9594905 -0.2817409 -6.66489e-5 -0.9598838 -0.280398 1.71223e-4 -0.9594566 -0.2818566 6.46334e-5 -0.9593398 -0.2822539 -2.21262e-5 -0.9593638 -0.2821724 -3.90511e-5 -0.959407 -0.2820255 1.13216e-4 -0.9594671 -0.2818208 -8.95735e-5 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 69.8001 33.2361 218.958 69.8001 33.4243 217.952 55.2033 33.5158 217.027 69.8001 33.5158 217.027 62.5017 33.5158 217.027 69.8001 33.0547 219.681 66.25901 32.9305 220.114 62.7068 32.8068 220.513 59.1505 32.6858 220.878 55.597 32.5692 221.211 55.4967 32.8621 220.337 55.4051 33.0963 219.526 55.319 33.291 218.705 55.2469 33.4357 217.871 69.8001 33.5158 217.027 69.8001 33.6089 216.837 69.8001 33.6666 216.786 69.8001 33.6926 216.778 55.0804 33.7149 216.779 69.8001 33.7149 216.779 55.2033 33.5158 217.027 55.1625 33.5861 216.869 55.1287 33.641 216.804 55.1057 33.677 216.781 55.0932 33.6959 216.777 62.5017 33.5158 217.027 62.4403 33.7149 216.779 69.8001 33.7149 216.779 69.8001 33.7942 216.803 54.9624 33.8736 216.826 69.8001 33.8736 216.826 55.0804 33.7149 216.779 62.4403 33.7149 216.779 62.3812 33.8736 216.826 69.8001 33.8736 216.826 69.8001 33.8931 216.837 69.8001 33.91 216.859 69.8001 33.9304 216.933 69.8001 33.9047 217.143 54.9624 33.8736 216.826 54.9484 33.8906 216.835 54.9369 33.9042 216.849 54.9213 33.9223 216.889 54.9128 33.932 216.977 54.9365 33.9047 217.143 62.3812 33.8736 216.826 62.3683 33.9047 217.143 54.9365 33.9047 217.143 69.8001 33.9047 217.143 69.8001 33.7234 218.201 69.8001 33.3747 219.747 55.0512 33.7568 218.024 55.1672 33.5783 218.9 55.2812 33.3688 219.769 55.3917 33.1287 220.631 55.4761 32.9174 221.306 62.3683 33.9047 217.143 59.0605 33.0265 220.966 62.6467 33.1398 220.594 66.2286 33.2562 220.188 69.8001 33.5158 217.027 69.8001 33.6089 216.837 69.8001 33.6666 216.786 69.8001 33.6926 216.778 69.8001 33.7149 216.779 69.8001 33.7942 216.803 69.8001 33.8736 216.826 69.8001 33.8931 216.837 69.8001 33.91 216.859 69.8001 33.9304 216.933 69.8001 33.9047 217.143 69.8001 33.7234 218.201 69.8001 33.3747 219.747 69.8001 33.0547 219.681 69.8001 33.2361 218.958 69.8001 33.4243 217.952 55.2033 33.5158 217.027 55.1625 33.5861 216.869 55.1287 33.641 216.804 55.1057 33.677 216.781 55.0932 33.6959 216.777 55.0804 33.7149 216.779 54.9624 33.8736 216.826 54.9484 33.8906 216.835 54.9369 33.9042 216.849 54.9213 33.9223 216.889 54.9128 33.932 216.977 54.9365 33.9047 217.143 55.0512 33.7568 218.024 55.1672 33.5783 218.9 55.2812 33.3688 219.769 55.3917 33.1287 220.631 55.4761 32.9174 221.306 55.5024 32.8464 221.287 55.597 32.5692 221.211 55.4967 32.8621 220.337 55.4051 33.0963 219.526 55.319 33.291 218.705 55.2469 33.4357 217.871 + + + + + + + + + + 7.32466e-4 -0.9551663 -0.2960689 3.96754e-4 -0.9499813 -0.3123064 0.001312255 -0.9481287 -0.3178842 3.35705e-4 -0.9675621 -0.2526331 1.52593e-4 -0.9613994 -0.2751564 -6.10377e-5 -0.9547512 -0.297406 -1.52594e-4 -0.9693056 -0.2458589 -3.35706e-4 -0.9768743 -0.2138143 6.10376e-5 -0.9913722 -0.1310781 -2.44149e-4 -0.9899928 -0.1411179 2.13636e-4 -0.9799775 -0.1991084 0 -0.9955291 -0.09445619 -2.13636e-4 -0.9953299 -0.09653288 0 -0.9951446 -0.09842491 3.3571e-4 -0.7952656 -0.6062611 -1.22075e-4 -0.8330397 -0.5532133 -1.22076e-4 -0.6275938 -0.778541 0 -0.9136454 -0.4065122 0 -0.913629 -0.406549 4.27275e-4 -0.8981015 -0.439788 1.52594e-4 -0.4890958 -0.8722301 0 0.00665307 -0.999978 3.05194e-5 -0.126228 -0.9920013 0 -0.3227665 -0.9464787 0 0.1053822 -0.9944318 6.10381e-5 0.07300156 -0.9973319 0 0.04507678 -0.9989836 0 0.2895228 -0.9571712 0 0.2895331 -0.9571681 0 0.2783501 -0.9604797 0 0.2783533 -0.9604789 3.27504e-5 0.283975 -0.9588317 0 0.646771 -0.7626844 3.0519e-5 0.4806131 -0.8769327 0 0.4680392 -0.8837078 -6.10388e-5 0.8544514 -0.5195316 3.05194e-5 0.6552814 -0.755385 0 0.491323 -0.8709775 1.83114e-4 0.8950915 -0.4458825 -9.15558e-5 0.9996982 0.02456748 3.66224e-4 0.9972892 -0.0735805 -1.52594e-4 0.9705308 -0.2409771 0 0.9867513 0.1622408 4.57782e-4 0.992562 0.1217393 -6.10382e-5 0.9834479 0.1811919 1.83116e-4 0.9858945 0.1673676 0 0.9861986 0.1655668 -6.10385e-5 0.9764642 0.2156797 3.96751e-4 0.980951 0.1942552 0 0.9856349 0.168891 7.32454e-4 0.9747129 0.2234594 0 0.9564155 0.2920092 -3.35712e-4 0.9593431 0.2822423 -6.71426e-4 0.9543107 0.2988153 -4.5779e-4 0.9622746 0.2720798 -6.10378e-5 0.9682431 0.2500109 0 0.9655866 0.2600818 1 0 0 1 -4.23184e-5 0 1 4.03356e-5 0 1 -3.08309e-4 0 1 3.31873e-5 0 1 -7.09622e-5 0 1 2.77516e-5 0 1 -2.77855e-4 0 1 -3.53693e-4 0 1 2.73027e-4 0 -0.7798591 -0.6259503 -0.002472043 -0.7539514 -0.6569302 -3.66233e-4 -0.7570701 -0.6533338 3.05196e-5 -0.7697275 -0.6383724 -4.88309e-4 -0.7623887 -0.6471194 6.10375e-5 -0.8330534 -0.5531919 -9.76616e-4 -0.7902241 -0.6128181 2.13632e-4 -0.8178229 -0.57547 1.52596e-4 -0.8315896 -0.55539 -8.85059e-4 -0.8372707 -0.5467865 -0.001586973 -0.8443096 -0.5358535 -0.001617491 -0.8734765 -0.4868653 -0.001068115 -0.9041078 -0.4273027 -0.00125128 -0.8979273 -0.4401437 4.57784e-4 -0.9281478 -0.3722113 5.79863e-4 -0.9359964 -0.3520096 1.83116e-4 -0.9323606 -0.3615301 -3.05192e-5 -0.9463819 -0.3230498 3.35715e-4 -0.941518 -0.3369627 6.10384e-5 -0.9172527 -0.3983053 5.49345e-4 -0.8655182 -0.5008774 3.0519e-5 -0.8537462 -0.5206894 0 -0.8762493 -0.4818577 -6.71409e-4 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 8 1 1 9 2 2 11 3 3 6 4 4 10 0 5 7 5 6 8 1 7 10 0 8 6 4 9 7 5 10 10 0 11 6 4 12 11 3 13 5 6 14 5 6 15 11 3 16 0 7 17 13 8 18 1 9 19 12 10 20 2 11 21 4 12 22 13 8 23 1 9 24 0 7 25 12 10 26 1 9 27 4 12 28 3 13 29 1 9 30 13 8 31 4 12 32 11 3 33 12 10 34 0 7 35 15 14 36 21 15 37 22 16 38 25 17 39 20 18 40 21 15 41 25 17 42 21 15 43 14 19 44 15 14 45 14 19 46 21 15 47 15 14 48 22 16 49 16 20 50 24 21 51 17 22 52 23 23 53 18 24 54 26 25 55 24 21 56 17 22 57 16 20 58 23 23 59 17 22 60 26 25 61 19 26 62 17 22 63 24 21 64 26 25 65 22 16 66 23 23 67 16 20 68 28 27 69 32 27 70 31 27 71 28 28 72 27 28 73 32 28 74 28 29 75 29 29 76 33 29 77 33 30 78 30 30 79 28 30 80 31 31 81 29 31 82 28 31 83 40 32 84 45 33 85 39 34 86 41 35 87 35 36 88 40 32 89 34 37 90 45 33 91 35 36 92 40 32 93 35 36 94 45 33 95 35 36 96 41 35 97 36 38 98 43 39 99 37 40 100 42 41 101 44 42 102 46 42 103 43 39 104 37 40 105 36 38 106 42 41 107 43 39 108 38 43 109 37 40 110 43 39 111 46 42 112 38 43 113 41 35 114 42 41 115 36 38 116 51 44 117 56 45 118 47 46 119 52 47 120 49 48 121 51 44 122 48 49 123 56 45 124 49 48 125 51 44 126 49 48 127 56 45 128 49 48 129 52 47 130 50 50 131 57 51 132 54 52 133 55 53 134 58 54 135 53 55 136 54 52 137 59 56 138 50 50 139 53 55 140 53 55 141 58 54 142 59 56 143 54 52 144 57 51 145 58 54 146 52 47 147 53 55 148 50 50 149 73 57 150 71 57 151 72 57 152 74 58 153 68 58 154 70 58 155 70 59 156 71 59 157 74 59 158 68 60 159 69 60 160 70 60 161 74 61 162 67 61 163 68 61 164 66 57 165 67 57 166 75 57 167 74 62 168 71 62 169 73 62 170 66 57 171 75 57 172 65 57 173 75 63 174 60 63 175 61 63 176 62 64 177 75 64 178 61 64 179 64 57 180 65 57 181 75 57 182 75 65 183 63 65 184 64 65 185 75 66 186 62 66 187 63 66 188 74 57 189 75 57 190 67 57 191 87 67 192 86 68 193 85 69 194 83 70 195 87 67 196 84 71 197 88 72 198 87 67 199 82 73 200 85 69 201 84 71 202 87 67 203 82 73 204 81 74 205 88 72 206 87 67 207 83 70 208 82 73 209 81 74 210 80 75 211 88 72 212 80 75 213 79 76 214 88 72 215 78 77 216 88 72 217 79 76 218 78 77 219 89 78 220 88 72 221 90 79 222 97 80 223 91 81 224 92 82 225 91 81 226 95 83 227 94 84 228 93 85 229 95 83 230 92 82 231 95 83 232 93 85 233 95 83 234 91 81 235 96 86 236 76 87 237 89 78 238 77 88 239 78 77 240 77 88 241 89 78 242 98 89 243 89 78 244 76 87 245 90 79 246 89 78 247 98 89 248 97 80 249 90 79 250 98 89 251 97 80 252 96 86 253 91 81 254

+
+
+
+ + + + 0 37.1054 218.944 69.8001 37.1054 218.944 0 37.2725 217.561 69.8001 37.2725 217.561 34.9 37.2725 217.561 69.8001 36.8105 220.218 61.1247 36.4795 221.302 52.4235 36.1742 222.161 43.7046 35.9133 222.832 34.9734 35.7023 223.343 17.4927 35.4342 223.962 0 35.3579 224.133 0 37.2725 217.561 69.8001 37.2725 217.561 0 37.3656 217.372 69.8001 37.3656 217.372 0 37.4233 217.321 69.8001 37.4233 217.321 0 37.4492 217.312 69.8001 37.4492 217.312 0 37.4716 217.314 69.8001 37.4716 217.314 34.9 37.2725 217.561 34.9 37.4716 217.314 0 37.4716 217.314 69.8001 37.4716 217.314 0 37.5509 217.337 69.8001 37.5509 217.337 0 37.6302 217.361 69.8001 37.6302 217.361 34.9 37.4716 217.314 34.9 37.6302 217.361 0 37.6302 217.361 69.8001 37.6302 217.361 0 37.6497 217.372 69.8001 37.6497 217.372 0 37.6667 217.393 69.8001 37.6667 217.393 0 37.687 217.468 69.8001 37.687 217.468 0 37.6613 217.677 69.8001 37.6613 217.677 34.9 37.6302 217.361 34.9 37.6613 217.677 0 37.6613 217.677 69.8001 37.6613 217.677 0 36.9373 220.989 34.9 37.6613 217.677 0 35.7761 224.18 69.8001 37.1416 220.241 69.8001 37.434 218.968 17.4929 35.8483 224.015 34.9738 36.1064 223.396 43.7051 36.3069 222.882 52.424 36.5514 222.204 61.1252 36.8344 221.336 0 37.2725 217.561 0 37.3656 217.372 0 37.4233 217.321 0 37.4492 217.312 0 37.4716 217.314 0 37.5509 217.337 0 37.6302 217.361 0 37.6497 217.372 0 37.6667 217.393 0 37.687 217.468 0 37.6613 217.677 0 36.9373 220.989 0 35.7761 224.18 0 35.3579 224.133 0 37.1054 218.944 69.8001 37.2725 217.561 69.8001 37.3656 217.372 69.8001 37.4233 217.321 69.8001 37.4492 217.312 69.8001 37.4716 217.314 69.8001 37.5509 217.337 69.8001 37.6302 217.361 69.8001 37.6497 217.372 69.8001 37.6667 217.393 69.8001 37.687 217.468 69.8001 37.6613 217.677 69.8001 37.434 218.968 69.8001 37.1416 220.241 69.8001 36.8105 220.218 69.8001 37.1054 218.944 + + + + + + + + + + 1.52593e-4 -0.9193092 -0.3935362 0.00250256 -0.9473846 -0.3200879 7.62978e-4 -0.9289409 -0.3702274 0.003143429 -0.945331 -0.3260972 0.00238049 -0.9493954 -0.3140745 0.00125128 -0.9755167 -0.2199215 0.001159727 -0.958485 -0.2851406 0 -0.9927813 -0.1199395 0 -0.9849255 -0.1729792 9.15573e-5 -0.9730409 -0.2306329 0 -0.8970726 -0.4418832 0 -0.7946584 -0.607057 0 -0.5048499 -0.8632072 0 -0.504791 -0.8632416 0 -0.8970847 -0.4418586 0 0.08887082 -0.9960432 0 -0.122472 -0.992472 0 -0.1224119 -0.9924795 0 0.2786718 -0.9603865 0 0.2786725 -0.9603863 0 0.2786721 -0.9603863 0 0.2895262 -0.9571702 0 0.2895266 -0.9571701 0 0.2895258 -0.9571703 0 0.4913823 -0.870944 0 0.4914417 -0.8709105 0 0.6458793 -0.7634395 0 0.6458137 -0.7634952 0 0.8905301 -0.4549245 0 0.8905364 -0.4549121 0 0.4912998 -0.8709906 0 0.9925248 0.1220437 0 0.9974816 -0.07092601 0 0.9925285 0.1220136 -6.10385e-4 0.9783254 0.2070732 0 0.9769345 0.2135394 -3.6623e-4 0.9605284 0.2781818 -0.001709043 0.974056 0.226301 -9.76613e-4 0.9799401 0.1992902 0 0.9848551 0.1733796 6.10387e-5 0.9622747 0.2720799 -0.001342833 0.939076 0.3437073 -0.00149542 0.9380995 0.3463625 -7.32451e-4 0.9434888 0.3314037 -1.52595e-4 0.9509415 0.3093711 -6.409e-4 0.9397121 0.341966 -1 0 0 1 1.83732e-5 0 1 2.92997e-5 0 1 0 0 1 3.9968e-4 0 1 -4.56038e-5 0 1 3.09406e-4 0 1 -1.10461e-4 0 1 -1.21221e-5 0 1 1.52822e-4 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 11 1 1 9 2 2 8 3 3 9 2 4 11 1 5 7 4 6 8 3 7 0 5 8 0 5 9 6 6 10 7 4 11 11 1 12 0 5 13 8 3 14 4 7 15 0 5 16 2 7 17 1 8 18 0 5 19 4 7 20 0 5 21 1 8 22 5 9 23 4 7 24 3 7 25 1 8 26 6 6 27 0 5 28 5 9 29 22 10 30 12 10 31 14 11 32 15 11 33 14 11 34 16 12 35 15 11 36 16 12 37 17 13 38 13 14 39 22 10 40 15 11 41 14 11 42 15 11 43 22 10 44 23 15 45 18 16 46 20 15 47 19 17 48 18 16 49 23 15 50 18 16 51 19 17 52 17 13 53 18 16 54 17 13 55 16 12 56 23 15 57 21 15 58 19 17 59 30 18 60 24 18 61 26 18 62 30 19 63 27 19 64 25 19 65 27 20 66 30 20 67 26 20 68 26 21 69 31 21 70 27 21 71 31 22 72 29 22 73 27 22 74 28 23 75 31 23 76 26 23 77 42 24 78 32 25 79 34 26 80 35 27 81 34 26 82 36 28 83 35 27 84 36 28 85 37 29 86 33 30 87 42 24 88 35 27 89 34 26 90 35 27 91 42 24 92 43 31 93 38 32 94 40 31 95 39 32 96 38 32 97 43 31 98 38 32 99 39 32 100 37 29 101 38 32 102 37 29 103 36 28 104 43 31 105 41 33 106 39 32 107 47 34 108 44 35 109 46 36 110 49 37 111 47 34 112 46 36 113 47 34 114 50 38 115 45 39 116 47 34 117 49 37 118 50 38 119 49 37 120 46 36 121 55 40 122 52 41 123 46 36 124 51 42 125 46 36 126 52 41 127 53 43 128 46 36 129 54 44 130 55 40 131 54 44 132 46 36 133 53 43 134 48 45 135 51 42 136 46 36 137 70 46 138 67 46 139 66 46 140 70 46 141 66 46 142 65 46 143 70 46 144 65 46 145 64 46 146 70 46 147 64 46 148 63 46 149 62 46 150 70 46 151 63 46 152 68 46 153 67 46 154 70 46 155 68 46 156 70 46 157 69 46 158 58 46 159 56 46 160 70 46 161 57 46 162 56 46 163 58 46 164 60 46 165 70 46 166 61 46 167 70 46 168 60 46 169 59 46 170 70 46 171 59 46 172 58 46 173 62 46 174 61 46 175 70 46 176 82 47 177 83 47 178 84 47 179 81 48 180 82 48 181 84 48 182 79 49 183 80 49 184 81 49 185 81 49 186 85 49 187 79 49 188 78 50 189 79 50 190 85 50 191 84 51 192 85 51 193 81 51 194 74 49 195 85 49 196 73 49 197 71 49 198 73 49 199 85 49 200 73 52 201 71 52 202 72 52 203 76 53 204 77 53 205 85 53 206 85 54 207 75 54 208 76 54 209 85 55 210 74 55 211 75 55 212 78 49 213 85 49 214 77 49 215

+
+
+
+ + + + 0 38.9945 219.12 69.8001 38.9945 219.12 0 39.1624 217.733 69.8001 39.1624 217.733 34.9 39.1624 217.733 69.8001 38.7252 220.298 61.1305 38.3808 221.439 52.4315 38.0625 222.337 43.7127 37.7921 223.031 34.9804 37.5754 223.554 26.2411 37.4143 223.929 17.4963 37.3065 224.173 0 37.239 224.324 0 39.1624 217.733 69.8001 39.1624 217.733 0 39.2555 217.544 69.8001 39.2555 217.544 0 39.3132 217.493 69.8001 39.3132 217.493 0 39.3391 217.484 69.8001 39.3391 217.484 0 39.3615 217.485 69.8001 39.3615 217.485 34.9 39.1624 217.733 34.9 39.3615 217.485 0 39.3615 217.485 69.8001 39.3615 217.485 0 39.4408 217.509 69.8001 39.4408 217.509 0 39.5201 217.533 69.8001 39.5201 217.533 34.9 39.3615 217.485 34.9 39.5201 217.533 0 39.5201 217.533 69.8001 39.5201 217.533 0 39.5396 217.543 69.8001 39.5396 217.543 0 39.5566 217.565 69.8001 39.5566 217.565 0 39.5769 217.639 69.8001 39.5769 217.639 0 39.5512 217.849 69.8001 39.5512 217.849 34.9 39.5201 217.533 34.9 39.5512 217.849 0 39.5512 217.849 69.8001 39.5512 217.849 0 38.8257 221.166 34.9 39.5512 217.849 0 37.6626 224.36 69.8001 39.0604 220.3 69.8001 39.3355 219.082 17.4965 37.7275 224.211 26.2414 37.8323 223.967 34.9808 37.9875 223.59 43.7132 38.1936 223.062 52.4321 38.4469 222.36 61.1311 38.7411 221.452 0 39.1624 217.733 0 39.2555 217.544 0 39.3132 217.493 0 39.3391 217.484 0 39.3615 217.485 0 39.4408 217.509 0 39.5201 217.533 0 39.5396 217.543 0 39.5566 217.565 0 39.5769 217.639 0 39.5512 217.849 0 38.8257 221.166 0 37.6626 224.36 0 37.239 224.324 0 38.9945 219.12 69.8001 39.1624 217.733 69.8001 39.2555 217.544 69.8001 39.3132 217.493 69.8001 39.3391 217.484 69.8001 39.3615 217.485 69.8001 39.4408 217.509 69.8001 39.5201 217.533 69.8001 39.5396 217.543 69.8001 39.5566 217.565 69.8001 39.5769 217.639 69.8001 39.5512 217.849 69.8001 39.3355 219.082 69.8001 39.0604 220.3 69.8001 38.7252 220.298 69.8001 38.9945 219.12 + + + + + + + + + + 3.0519e-5 -0.9155076 -0.4023008 0.002716183 -0.9471583 -0.3207551 2.74673e-4 -0.9213156 -0.3888154 7.01948e-4 -0.9280359 -0.3724901 0.001648008 -0.93865 -0.3448675 0.002349913 -0.9493257 -0.3142852 0.001342833 -0.9754548 -0.220196 0 -0.9927554 -0.1201536 0 -0.9851443 -0.1717288 9.15569e-5 -0.9736166 -0.2281904 0.001098692 -0.9590724 -0.2831591 0 -0.8970726 -0.4418832 0 -0.8970667 -0.4418953 0 -0.794699 -0.6070037 0 -0.7947103 -0.606989 0 -0.5048859 -0.8631862 0 -0.5048726 -0.863194 0 0.04489403 -0.9989917 0 -0.144262 -0.9895396 0 0.2896946 -0.9571192 0 0.2896953 -0.957119 0 0.2896949 -0.9571191 0 0.4560546 -0.8899519 0 0.456176 -0.8898896 0 0.6391242 -0.7691037 0 0.8948297 -0.4464077 0 0.9925957 0.1214651 0 0.9973408 -0.07288008 0 0.9973385 -0.07291048 0 0.9925994 0.121435 -7.01949e-4 0.978486 0.2063118 0 0.9769076 0.2136623 -3.35713e-4 0.9604747 0.2783671 -0.001556456 0.974803 0.2230623 -8.8505e-4 0.9804216 0.1969083 0 0.9850424 0.1723122 6.10374e-5 0.9631085 0.2691137 -0.001617491 0.9375464 0.3478565 -0.001464903 0.9379288 0.3468249 -0.001342833 0.9388633 0.3442875 -1.22077e-4 0.9513764 0.3080307 -7.3246e-4 0.9433479 0.3318046 -5.4934e-4 0.9396463 0.3421473 -1 0 0 1 -1.39233e-5 0 1 0 0 1 1.94894e-5 0 0.9999997 -7.84929e-4 0 1 -6.50682e-5 0 1 3.09981e-4 0 1 9.64294e-5 0 1 3.62169e-4 0 1 -7.08265e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

11 0 0 12 1 1 10 2 2 9 3 3 10 2 4 12 1 5 9 3 6 12 1 7 8 4 8 7 5 9 8 4 10 12 1 11 7 5 12 12 1 13 0 6 14 4 7 15 0 6 16 2 7 17 1 8 18 0 6 19 4 7 20 5 9 21 6 10 22 0 6 23 1 8 24 5 9 25 0 6 26 1 8 27 4 7 28 3 7 29 7 5 30 0 6 31 6 10 32 23 11 33 13 12 34 15 13 35 16 14 36 15 13 37 17 15 38 16 14 39 17 15 40 18 16 41 14 11 42 23 11 43 16 14 44 15 13 45 16 14 46 23 11 47 24 17 48 19 18 49 21 17 50 20 18 51 19 18 52 24 17 53 19 18 54 20 18 55 18 16 56 19 18 57 18 16 58 17 15 59 24 17 60 22 17 61 20 18 62 31 19 63 25 19 64 27 19 65 31 20 66 28 20 67 26 20 68 28 21 69 31 21 70 27 21 71 27 21 72 32 21 73 28 21 74 32 20 75 30 20 76 28 20 77 29 19 78 32 19 79 27 19 80 43 22 81 33 23 82 35 24 83 36 24 84 35 24 85 37 25 86 36 24 87 37 25 88 38 25 89 34 23 90 43 22 91 36 24 92 35 24 93 36 24 94 43 22 95 44 26 96 39 27 97 41 26 98 40 28 99 39 27 100 44 26 101 39 27 102 40 28 103 38 25 104 39 27 105 38 25 106 37 25 107 44 26 108 42 29 109 40 28 110 48 30 111 45 31 112 47 32 113 50 33 114 48 30 115 47 32 116 48 30 117 51 34 118 46 35 119 48 30 120 50 33 121 51 34 122 50 33 123 47 32 124 57 36 125 53 37 126 47 32 127 52 38 128 47 32 129 53 37 130 54 39 131 57 36 132 47 32 133 56 40 134 55 41 135 56 40 136 47 32 137 54 39 138 55 41 139 47 32 140 52 38 141 47 32 142 49 42 143 72 43 144 69 43 145 68 43 146 72 43 147 68 43 148 67 43 149 72 43 150 67 43 151 66 43 152 72 43 153 66 43 154 65 43 155 64 43 156 72 43 157 65 43 158 70 43 159 69 43 160 72 43 161 70 43 162 72 43 163 71 43 164 60 43 165 58 43 166 72 43 167 59 43 168 58 43 169 60 43 170 62 43 171 72 43 172 63 43 173 72 43 174 62 43 175 61 43 176 72 43 177 61 43 178 60 43 179 64 43 180 63 43 181 72 43 182 84 44 183 85 44 184 86 44 185 87 45 186 83 45 187 84 45 188 81 45 189 82 45 190 83 45 191 83 45 192 80 45 193 81 45 194 79 45 195 80 45 196 83 45 197 86 46 198 87 46 199 84 46 200 75 47 201 76 47 202 73 47 203 87 48 204 73 48 205 77 48 206 75 49 207 73 49 208 74 49 209 78 45 210 79 45 211 87 45 212 87 50 213 77 50 214 78 50 215 73 51 216 76 51 217 77 51 218 83 52 219 87 52 220 79 52 221

+
+
+
+ + + + 0 40.8875 219.248 69.8001 40.8875 219.248 0 41.056 217.858 69.8001 41.056 217.858 34.9 41.056 217.858 69.8001 40.6638 220.252 61.1379 40.3068 221.466 52.4418 39.9739 222.414 43.7232 39.6914 223.142 34.9896 39.4662 223.685 26.2483 39.3002 224.071 17.5012 39.1904 224.32 0 39.1252 224.465 0 41.056 217.858 69.8001 41.056 217.858 0 41.1491 217.668 69.8001 41.1491 217.668 0 41.2068 217.617 69.8001 41.2068 217.617 0 41.2327 217.608 69.8001 41.2327 217.608 0 41.2551 217.61 69.8001 41.2551 217.61 34.9 41.056 217.858 34.9 41.2551 217.61 0 41.2551 217.61 69.8001 41.2551 217.61 0 41.3344 217.633 69.8001 41.3344 217.633 0 41.4137 217.657 69.8001 41.4137 217.657 34.9 41.2551 217.61 34.9 41.4137 217.657 0 41.4137 217.657 69.8001 41.4137 217.657 0 41.4333 217.668 69.8001 41.4333 217.668 0 41.4502 217.689 69.8001 41.4502 217.689 0 41.4705 217.764 69.8001 41.4705 217.764 0 41.4449 217.973 69.8001 41.4449 217.973 34.9 41.4137 217.657 34.9 41.4449 217.973 0 41.4449 217.973 69.8001 41.4449 217.973 0 40.7181 221.294 34.9 41.4449 217.973 0 39.5533 224.491 69.8001 41.0018 220.231 69.8001 41.1314 219.672 69.8001 41.2485 219.109 69.8001 41.353 218.543 17.5016 39.6173 224.345 26.2488 39.7246 224.094 34.9902 39.885 223.704 43.724 40.0993 223.155 52.4426 40.3633 222.418 61.1387 40.6698 221.458 0 41.056 217.858 0 41.1491 217.668 0 41.2068 217.617 0 41.2327 217.608 0 41.2551 217.61 0 41.3344 217.633 0 41.4137 217.657 0 41.4333 217.668 0 41.4502 217.689 0 41.4705 217.764 0 41.4449 217.973 0 40.7181 221.294 0 39.5533 224.491 0 39.1252 224.465 0 40.8875 219.248 69.8001 41.056 217.858 69.8001 41.1491 217.668 69.8001 41.2068 217.617 69.8001 41.2327 217.608 69.8001 41.2551 217.61 69.8001 41.3344 217.633 69.8001 41.4137 217.657 69.8001 41.4333 217.668 69.8001 41.4502 217.689 69.8001 41.4705 217.764 69.8001 41.4449 217.973 69.8001 41.353 218.543 69.8001 41.2485 219.109 69.8001 41.1314 219.672 69.8001 41.0018 220.231 69.8001 40.6638 220.252 69.8001 40.8875 219.248 + + + + + + + + + + 9.15563e-5 -0.9162043 -0.4007115 0.002746701 -0.9470034 -0.3212121 2.74671e-4 -0.9210334 -0.3894837 7.01947e-4 -0.9277296 -0.3732526 0.001739621 -0.9391515 -0.343499 0.002288877 -0.9497194 -0.313094 0.00137335 -0.9753927 -0.2204705 0 -0.9927331 -0.1203377 0 -0.9855983 -0.1691036 6.10372e-5 -0.9748256 -0.222969 9.46077e-4 -0.9605736 -0.2780246 0 -0.8979995 -0.4399966 0 -0.8979874 -0.4400212 0 -0.7952916 -0.6062271 0 -0.504791 -0.8632416 0 -0.5048499 -0.8632072 0 0.08887082 -0.9960432 0 -0.1223818 -0.9924831 0 -0.122442 -0.9924758 0 0.2785013 -0.9604359 0 0.2785021 -0.9604356 0 0.278513 -0.9604325 0 0.2896833 -0.9571227 0 0.2896953 -0.957119 0 0.2896946 -0.9571192 0 0.4894424 -0.8720357 0 0.4895845 -0.8719559 0 0.6459956 -0.7633412 0 0.6460106 -0.7633284 0 0.8910759 -0.4538545 0 0.8911564 -0.4536963 0 0.9925842 0.121559 0 0.9974642 -0.0711711 0 0.9925806 0.121589 0 0.9974687 -0.07110822 0 0.9925769 0.1216191 -0.001037597 0.979195 0.2029193 -3.35711e-4 0.9604398 0.2784878 -7.93504e-4 0.9767124 0.2145513 -1.83113e-4 0.9853614 0.1704782 0 0.9872536 0.1591557 -7.32469e-4 0.9812334 0.1928223 -4.57787e-4 0.9735302 0.2285578 0 0.9768807 0.2137851 -0.001373291 0.9387304 0.3446497 -0.001648008 0.937432 0.3481646 -0.001464903 0.9379089 0.3468786 -5.49337e-4 0.9395802 0.3423286 -6.10374e-5 0.952488 0.3045764 3.05192e-5 0.964742 0.2631975 -7.01936e-4 0.9437987 0.3305203 -1 0 0 1 -4.02026e-5 0 1 3.80402e-5 0 1 4.0808e-5 0 1 -3.09502e-4 0 1 3.88425e-4 0 1 0 0 0.9999998 -6.1425e-4 0 1 5.34262e-5 0 1 -2.24573e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

11 0 0 12 1 1 10 2 2 9 3 3 10 2 4 12 1 5 9 3 6 12 1 7 8 4 8 7 5 9 8 4 10 12 1 11 7 5 12 12 1 13 0 6 14 4 7 15 0 6 16 2 7 17 1 8 18 0 6 19 4 7 20 5 9 21 6 10 22 0 6 23 1 8 24 5 9 25 0 6 26 1 8 27 4 7 28 3 7 29 7 5 30 0 6 31 6 10 32 23 11 33 13 12 34 15 13 35 16 13 36 15 13 37 17 14 38 16 13 39 17 14 40 18 15 41 14 12 42 23 11 43 16 13 44 15 13 45 16 13 46 23 11 47 24 16 48 19 17 49 21 16 50 20 18 51 19 17 52 24 16 53 19 17 54 20 18 55 18 15 56 19 17 57 18 15 58 17 14 59 24 16 60 22 16 61 20 18 62 31 19 63 25 19 64 27 19 65 31 20 66 28 20 67 26 20 68 28 21 69 31 21 70 27 21 71 27 22 72 32 22 73 28 22 74 32 23 75 30 23 76 28 23 77 29 24 78 32 24 79 27 24 80 43 25 81 33 26 82 35 27 83 36 28 84 35 27 85 37 29 86 36 28 87 37 29 88 38 30 89 34 25 90 43 25 91 36 28 92 35 27 93 36 28 94 43 25 95 44 31 96 39 32 97 41 33 98 40 34 99 39 32 100 44 31 101 39 32 102 40 34 103 38 30 104 39 32 105 38 30 106 37 29 107 44 31 108 42 35 109 40 34 110 48 36 111 47 37 112 51 38 113 53 39 114 46 40 115 48 36 116 48 36 117 52 41 118 53 39 119 51 38 120 47 37 121 50 42 122 51 38 123 52 41 124 48 36 125 47 37 126 48 36 127 45 43 128 56 44 129 47 37 130 55 45 131 54 46 132 55 45 133 47 37 134 47 37 135 49 47 136 54 46 137 58 48 138 59 49 139 47 37 140 47 37 141 57 50 142 58 48 143 47 37 144 56 44 145 57 50 146 50 42 147 47 37 148 59 49 149 70 51 150 72 51 151 71 51 152 74 51 153 70 51 154 69 51 155 74 51 156 69 51 157 68 51 158 74 51 159 68 51 160 67 51 161 66 51 162 74 51 163 67 51 164 74 51 165 72 51 166 70 51 167 74 51 168 62 51 169 60 51 170 60 51 171 62 51 172 61 51 173 73 51 174 72 51 175 74 51 176 64 51 177 74 51 178 65 51 179 74 51 180 64 51 181 63 51 182 62 51 183 74 51 184 63 51 185 66 51 186 65 51 187 74 51 188 87 52 189 91 52 190 86 52 191 85 53 192 86 53 193 91 53 194 87 54 195 88 54 196 91 54 197 83 55 198 84 55 199 85 55 200 85 56 201 82 56 202 83 56 203 81 57 204 82 57 205 85 57 206 90 57 207 88 57 208 89 57 209 85 57 210 91 57 211 81 57 212 79 57 213 91 57 214 75 57 215 76 58 216 77 58 217 75 58 218 80 57 219 81 57 220 91 57 221 79 57 222 75 57 223 78 57 224 91 59 225 79 59 226 80 59 227 77 57 228 78 57 229 75 57 230 90 60 231 91 60 232 88 60 233

+
+
+
+ + + + 0 42.7829 219.336 69.8001 42.7829 219.336 0 42.9518 217.943 69.8001 42.9518 217.943 34.9 42.9518 217.943 69.8001 42.624 220.079 61.1476 42.2565 221.384 52.4553 41.9073 222.397 43.7372 41.6099 223.171 35.0018 41.373 223.745 26.2581 41.1988 224.15 17.508 41.0838 224.41 0 41.0148 224.564 0 42.9518 217.943 69.8001 42.9518 217.943 0 43.0449 217.753 69.8001 43.0449 217.753 0 43.1026 217.702 69.8001 43.1026 217.702 0 43.1285 217.693 69.8001 43.1285 217.693 0 43.1509 217.695 69.8001 43.1509 217.695 34.9 42.9518 217.943 34.9 43.1509 217.695 0 43.1509 217.695 69.8001 43.1509 217.695 0 43.2302 217.719 69.8001 43.2302 217.719 0 43.3095 217.742 69.8001 43.3095 217.742 34.9 43.1509 217.695 34.9 43.3095 217.742 0 43.3095 217.742 69.8001 43.3095 217.742 0 43.3291 217.753 69.8001 43.3291 217.753 0 43.346 217.775 69.8001 43.346 217.775 0 43.3663 217.849 69.8001 43.3663 217.849 0 43.3407 218.059 69.8001 43.3407 218.059 34.9 43.3095 217.742 34.9 43.3407 218.059 0 43.3407 218.059 69.8001 43.3407 218.059 0 42.6132 221.382 34.9 43.3407 218.059 0 41.4467 224.582 69.8001 42.9642 220.036 69.8001 43.1717 219.053 17.5086 41.5156 224.424 26.2589 41.6286 224.16 35.0027 41.7971 223.749 43.7382 42.0224 223.167 52.4565 42.2996 222.383 61.1487 42.6203 221.357 0 42.9518 217.943 0 43.0449 217.753 0 43.1026 217.702 0 43.1285 217.693 0 43.1509 217.695 0 43.2302 217.719 0 43.3095 217.742 0 43.3291 217.753 0 43.346 217.775 0 43.3663 217.849 0 43.3407 218.059 0 42.6132 221.382 0 41.4467 224.582 0 41.0148 224.564 0 42.7829 219.336 69.8001 42.9518 217.943 69.8001 43.0449 217.753 69.8001 43.1026 217.702 69.8001 43.1285 217.693 69.8001 43.1509 217.695 69.8001 43.2302 217.719 69.8001 43.3095 217.742 69.8001 43.3291 217.753 69.8001 43.346 217.775 69.8001 43.3663 217.849 69.8001 43.3407 218.059 69.8001 43.1717 219.053 69.8001 42.9642 220.036 69.8001 42.624 220.079 69.8001 42.7829 219.336 + + + + + + + + + + 6.10382e-5 -0.9153591 -0.4026384 0.00262463 -0.9469292 -0.3214316 3.05189e-4 -0.9210599 -0.3894209 8.24026e-4 -0.9287078 -0.3708117 0.003204464 -0.9451419 -0.3266445 0.001312315 -0.9753439 -0.2206869 0.002197384 -0.950709 -0.3100768 0 -0.9927294 -0.1203678 0 -0.9863114 -0.1648939 6.10382e-5 -0.9766729 -0.2147325 7.01933e-4 -0.9630823 -0.2692065 0 -0.8979995 -0.4399966 0 -0.8979695 -0.4400578 0 -0.7953323 -0.6061738 0 -0.7953175 -0.6061931 0 -0.5048499 -0.8632072 0 -0.5048859 -0.8631862 0 0.08954232 -0.9959831 0 -0.1220474 -0.9925243 0 -0.1221075 -0.9925169 0 0.2895258 -0.9571703 0 0.2895266 -0.9571701 0 0.2895379 -0.9571666 0 0.2786608 -0.9603897 0 0.2786725 -0.9603863 0 0.2786718 -0.9603865 0 0.4895018 -0.8720024 0 0.4894424 -0.8720357 0 0.6544483 -0.7561069 0 0.6545459 -0.7560223 0 0.8953956 -0.4452716 0 0.9926555 0.1209766 0 0.9973253 -0.07309257 0 0.9926518 0.1210067 0 0.9973186 -0.07318365 -3.66229e-4 0.9604048 0.2786086 -0.001037597 0.9777009 0.21 -9.46092e-4 0.9789918 0.2038981 0 0.9768666 0.2138498 0 0.9672809 0.2537075 -5.79855e-4 0.9822748 0.1874458 0 0.9858534 0.16761 -0.001556456 0.9377513 0.347304 -5.79859e-4 0.9395239 0.3424829 -0.001678526 0.937412 0.3482182 -6.10378e-4 0.9446823 0.3279867 0 0.9540914 0.2995155 -0.001342833 0.939076 0.3437073 -1 0 0 1 2.92987e-5 0 1 0 0 1 -3.09741e-4 0 1 3.39509e-4 0 1 -3.06748e-4 0 1 -9.75343e-6 0 1 6.00288e-5 0 1 -1.15327e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

11 0 0 12 1 1 10 2 2 9 3 3 10 2 4 12 1 5 9 3 6 12 1 7 8 4 8 0 5 9 7 6 10 8 4 11 0 5 12 8 4 13 12 1 14 4 7 15 0 5 16 2 7 17 1 8 18 0 5 19 4 7 20 5 9 21 6 10 22 0 5 23 1 8 24 5 9 25 0 5 26 1 8 27 4 7 28 3 7 29 7 6 30 0 5 31 6 10 32 23 11 33 13 12 34 15 13 35 16 14 36 15 13 37 17 15 38 16 14 39 17 15 40 18 16 41 14 12 42 23 11 43 16 14 44 15 13 45 16 14 46 23 11 47 24 17 48 19 18 49 21 17 50 20 19 51 19 18 52 24 17 53 19 18 54 20 19 55 18 16 56 19 18 57 18 16 58 17 15 59 24 17 60 22 17 61 20 19 62 31 20 63 25 20 64 27 20 65 31 21 66 28 21 67 26 21 68 28 22 69 31 22 70 27 22 71 27 23 72 32 23 73 28 23 74 32 24 75 30 24 76 28 24 77 29 25 78 32 25 79 27 25 80 43 26 81 33 27 82 35 28 83 36 29 84 35 28 85 37 30 86 36 29 87 37 30 88 38 30 89 34 27 90 43 26 91 36 29 92 35 28 93 36 29 94 43 26 95 44 31 96 39 32 97 41 33 98 40 34 99 39 32 100 44 31 101 39 32 102 40 34 103 38 30 104 39 32 105 38 30 106 37 30 107 44 31 108 42 33 109 40 34 110 47 35 111 50 36 112 48 37 113 45 38 114 47 35 115 48 37 116 57 39 117 50 36 118 47 35 119 48 37 120 51 40 121 46 41 122 48 37 123 50 36 124 51 40 125 52 42 126 47 35 127 49 43 128 53 44 129 47 35 130 52 42 131 55 45 132 56 46 133 47 35 134 47 35 135 54 47 136 55 45 137 47 35 138 53 44 139 54 47 140 57 39 141 47 35 142 56 46 143 72 48 144 68 48 145 64 48 146 68 48 147 72 48 148 69 48 149 66 48 150 68 48 151 67 48 152 65 48 153 68 48 154 66 48 155 65 48 156 64 48 157 68 48 158 71 48 159 70 48 160 69 48 161 59 48 162 58 48 163 60 48 164 72 48 165 62 48 166 58 48 167 71 48 168 69 48 169 72 48 170 62 48 171 72 48 172 63 48 173 58 48 174 62 48 175 61 48 176 58 48 177 61 48 178 60 48 179 64 48 180 63 48 181 72 48 182 84 49 183 85 49 184 86 49 185 87 50 186 83 50 187 84 50 188 81 51 189 82 51 190 83 51 191 83 52 192 80 52 193 81 52 194 79 50 195 80 50 196 83 50 197 86 50 198 87 50 199 84 50 200 75 50 201 76 50 202 73 50 203 87 50 204 73 50 205 78 50 206 75 53 207 73 53 208 74 53 209 79 50 210 83 50 211 78 50 212 73 54 213 77 54 214 78 54 215 73 55 216 76 55 217 77 55 218 87 56 219 78 56 220 83 56 221

+
+
+
+ + + + 0 44.6795 219.39 69.8001 44.6795 219.39 0 44.8488 217.995 69.8001 44.8488 217.995 34.9 44.8488 217.995 69.8001 44.6013 219.779 61.16 44.2282 221.197 52.473 43.8614 222.293 43.7554 43.5457 223.125 35.0179 43.2941 223.74 26.2712 43.1084 224.173 17.517 42.985 224.453 0 42.9064 224.628 0 44.8488 217.995 69.8001 44.8488 217.995 0 44.9419 217.805 69.8001 44.9419 217.805 0 44.9996 217.754 69.8001 44.9996 217.754 0 45.0255 217.746 69.8001 45.0255 217.746 0 45.0479 217.747 69.8001 45.0479 217.747 34.9 44.8488 217.995 34.9 45.0479 217.747 0 45.0479 217.747 69.8001 45.0479 217.747 0 45.1272 217.771 69.8001 45.1272 217.771 0 45.2065 217.794 69.8001 45.2065 217.794 34.9 45.0479 217.747 34.9 45.2065 217.794 0 45.2065 217.794 69.8001 45.2065 217.794 0 45.2261 217.805 69.8001 45.2261 217.805 0 45.243 217.827 69.8001 45.243 217.827 0 45.2633 217.901 69.8001 45.2633 217.901 0 45.2377 218.111 69.8001 45.2377 218.111 34.9 45.2065 217.794 34.9 45.2377 218.111 0 45.2377 218.111 69.8001 45.2377 218.111 0 44.5098 221.435 34.9 45.2377 218.111 0 43.3416 224.638 69.8001 44.9448 219.715 69.8001 45.1039 218.916 17.5179 43.4211 224.457 26.2724 43.5426 224.172 35.0193 43.7223 223.73 43.7571 43.9614 223.106 52.4748 44.2542 222.262 61.1619 44.5902 221.152 0 44.8488 217.995 0 44.9419 217.805 0 44.9996 217.754 0 45.0255 217.746 0 45.0479 217.747 0 45.1272 217.771 0 45.2065 217.794 0 45.2261 217.805 0 45.243 217.827 0 45.2633 217.901 0 45.2377 218.111 0 44.5098 221.435 0 43.3416 224.638 0 42.9064 224.628 0 44.6795 219.39 69.8001 44.8488 217.995 69.8001 44.9419 217.805 69.8001 44.9996 217.754 69.8001 45.0255 217.746 69.8001 45.0479 217.747 69.8001 45.1272 217.771 69.8001 45.2065 217.794 69.8001 45.2261 217.805 69.8001 45.243 217.827 69.8001 45.2633 217.901 69.8001 45.2377 218.111 69.8001 45.1039 218.916 69.8001 44.9448 219.715 69.8001 44.6013 219.779 69.8001 44.6795 219.39 + + + + + + + + + + 9.15559e-5 -0.916352 -0.4003738 0.002777218 -0.9468357 -0.3217056 3.66232e-4 -0.921714 -0.38787 0.00100708 -0.9304291 -0.3664707 0.003173947 -0.9456045 -0.3253033 0.00137335 -0.9753094 -0.2208386 0.001983702 -0.9524744 -0.3046123 0 -0.9927185 -0.120458 0 -0.9872974 -0.1588831 3.05187e-5 -0.9792525 -0.2026439 3.96744e-4 -0.9668647 -0.2552893 0 -0.8979874 -0.4400212 0 -0.8980174 -0.4399598 0 -0.7953064 -0.6062079 0 -0.4895612 -0.8719689 0 -0.4895845 -0.8719559 0 -0.8979995 -0.4399966 0 0.04422259 -0.9990218 0 -0.1272043 -0.9918766 0 0.289718 -0.9571121 0 0.2896953 -0.957119 0 0.2896833 -0.9571227 0 0.2786834 -0.960383 0 0.2786725 -0.9603863 0 0.2786718 -0.9603865 0 0.488977 -0.8722968 0 0.4889175 -0.8723301 0 0.6543657 -0.7561783 0 0.8954564 -0.4451494 0 0.9926555 0.1209766 0 0.997323 -0.07312297 0 0.9926518 0.1210067 -0.002075254 0.9734707 0.2288024 -3.35711e-4 0.97753 0.2107961 -3.96753e-4 0.960386 0.2786731 0 0.9768538 0.213908 -9.15564e-4 0.9799592 0.1991963 -3.66228e-4 0.9836887 0.179879 0 0.986469 0.1639486 -0.001617491 0.9377513 0.347304 -7.01938e-4 0.9394675 0.3426373 -0.001678526 0.937637 0.3476121 -4.8831e-4 0.9460697 0.323963 6.10392e-5 0.9565452 0.2915843 -0.001281797 0.9395992 0.3422745 -1 0 0 1 0 0 1 2.89352e-5 0 1 -4.60851e-5 0 0.9999998 -6.13497e-4 0 1 -7.80275e-5 0 0.9999999 6.26346e-4 0 1 2.36922e-5 0 1 -2.96578e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

11 0 0 12 1 1 10 2 2 9 3 3 10 2 4 12 1 5 9 3 6 12 1 7 8 4 8 0 5 9 7 6 10 8 4 11 0 5 12 8 4 13 12 1 14 4 7 15 0 5 16 2 7 17 1 8 18 0 5 19 4 7 20 5 9 21 6 10 22 0 5 23 1 8 24 5 9 25 0 5 26 1 8 27 4 7 28 3 7 29 7 6 30 0 5 31 6 10 32 23 11 33 13 12 34 15 13 35 16 13 36 15 13 37 17 14 38 16 13 39 17 14 40 18 15 41 14 16 42 23 11 43 16 13 44 15 13 45 16 13 46 23 11 47 24 17 48 19 18 49 21 17 50 20 18 51 19 18 52 24 17 53 19 18 54 20 18 55 18 15 56 19 18 57 18 15 58 17 14 59 24 17 60 22 17 61 20 18 62 31 19 63 25 19 64 27 19 65 31 20 66 28 20 67 26 20 68 28 21 69 31 21 70 27 21 71 27 22 72 32 22 73 28 22 74 32 23 75 30 23 76 28 23 77 29 24 78 32 24 79 27 24 80 43 25 81 33 26 82 35 27 83 36 27 84 35 27 85 37 28 86 36 27 87 37 28 88 38 28 89 34 26 90 43 25 91 36 27 92 35 27 93 36 27 94 43 25 95 44 29 96 39 30 97 41 31 98 40 30 99 39 30 100 44 29 101 39 30 102 40 30 103 38 28 104 39 30 105 38 28 106 37 28 107 44 29 108 42 31 109 40 30 110 57 32 111 48 33 112 47 34 113 45 35 114 47 34 115 48 33 116 50 36 117 48 33 118 57 32 119 48 33 120 51 37 121 46 38 122 48 33 123 50 36 124 51 37 125 52 39 126 47 34 127 49 40 128 53 41 129 47 34 130 52 39 131 55 42 132 56 43 133 47 34 134 47 34 135 54 44 136 55 42 137 47 34 138 53 41 139 54 44 140 57 32 141 47 34 142 56 43 143 72 45 144 69 45 145 68 45 146 72 45 147 68 45 148 67 45 149 72 45 150 67 45 151 66 45 152 72 45 153 66 45 154 65 45 155 64 45 156 72 45 157 65 45 158 70 45 159 69 45 160 72 45 161 59 45 162 58 45 163 60 45 164 72 45 165 60 45 166 58 45 167 71 45 168 70 45 169 72 45 170 62 45 171 72 45 172 63 45 173 72 45 174 62 45 175 61 45 176 72 45 177 61 45 178 60 45 179 64 45 180 63 45 181 72 45 182 79 46 183 83 46 184 78 46 185 83 46 186 84 46 187 87 46 188 81 46 189 82 46 190 83 46 191 80 46 192 81 46 193 83 46 194 80 46 195 83 46 196 79 46 197 87 47 198 84 47 199 85 47 200 83 48 201 87 48 202 78 48 203 78 46 204 87 46 205 73 46 206 74 49 207 75 49 208 73 49 209 77 50 210 78 50 211 73 50 212 73 51 213 76 51 214 77 51 215 73 52 216 75 52 217 76 52 218 86 53 219 87 53 220 85 53 221

+
+
+
+ + + + 0 46.7464 218.018 0 46.8395 217.829 0 46.8972 217.778 0 46.9231 217.769 0 46.9455 217.771 0 47.0248 217.794 0 47.1041 217.818 0 47.1236 217.829 0 47.1406 217.85 0 47.1609 217.925 0 47.1352 218.134 0 46.4071 221.46 0 45.2373 224.666 0 44.7992 224.662 0 46.5768 219.415 0 46.5768 219.415 0 46.7464 218.018 34.8404 46.7464 218.018 69.6807 46.7464 218.018 69.7247 46.6903 218.676 69.8001 46.5929 219.326 69.8001 46.5793 219.401 69.67681 46.5741 219.429 69.36071 46.5618 219.494 69.0439 46.5499 219.556 68.4096 46.5259 219.675 67.13951 46.4765 219.905 64.47071 46.3673 220.362 56.4823 46.0069 221.596 48.4553 45.6707 222.557 40.4032 45.3859 223.292 32.3343 45.1589 223.841 24.2575 44.9907 224.232 16.1743 44.8775 224.488 0 44.7992 224.662 0 46.7464 218.018 0 46.8395 217.829 0 46.8972 217.778 0 46.9231 217.769 0 46.9455 217.771 69.6807 46.7464 218.018 34.8404 46.7464 218.018 34.7606 46.9455 217.771 69.5213 46.9455 217.771 69.55181 46.9078 217.773 69.5795 46.8735 217.794 69.6236 46.8185 217.858 0 46.9455 217.771 0 47.0248 217.794 0 47.1041 217.818 69.5213 46.9455 217.771 34.7606 46.9455 217.771 34.6952 47.1041 217.818 69.39041 47.1041 217.818 0 47.1041 217.818 0 47.1236 217.829 0 47.1406 217.85 0 47.1609 217.925 0 47.1352 218.134 69.39041 47.1041 217.818 34.6952 47.1041 217.818 34.6821 47.1352 218.134 69.36431 47.1352 218.134 69.3413 47.1626 217.969 69.34951 47.1528 217.88 69.3648 47.1347 217.841 69.3762 47.1211 217.827 0 47.1352 218.134 0 46.4071 221.46 69.36431 47.1352 218.134 34.6821 47.1352 218.134 0 45.2373 224.666 69.5535 46.9057 219.436 69.45301 47.0287 218.788 56.1033 46.3673 221.595 59.4779 46.4998 221.132 62.8462 46.634 220.626 64.5277 46.7011 220.355 66.2071 46.7681 220.071 67.8838 46.8352 219.772 68.7204 46.8692 219.612 69.1378 46.8869 219.528 69.346 46.8961 219.483 14.0585 45.2962 224.532 28.108 45.5004 224.05 42.1341 45.8616 223.121 49.1288 46.0991 222.445 69.8001 46.5929 219.326 69.8001 46.5929 219.4 69.8001 46.5793 219.401 69.8001 46.5929 219.363 69.8001 46.5929 219.326 69.7247 46.6903 218.676 69.6807 46.7464 218.018 69.6236 46.8185 217.858 69.5795 46.8735 217.794 69.55181 46.9078 217.773 69.5213 46.9455 217.771 69.39041 47.1041 217.818 69.3762 47.1211 217.827 69.3648 47.1347 217.841 69.34951 47.1528 217.88 69.3413 47.1626 217.969 69.36431 47.1352 218.134 69.45301 47.0287 218.788 69.5535 46.9057 219.436 69.8001 46.5929 219.4 69.8001 46.5929 219.363 + + + + + + + + + + -1 0 0 3.6623e-4 -0.9214963 -0.3883872 9.15584e-5 -0.9159198 -0.4013615 0.003021359 -0.9467108 -0.3220709 9.15589e-4 -0.9288044 -0.3705695 0.002044796 -0.9397532 -0.3418477 0.002472043 -0.9498488 -0.3126996 0.00149542 -0.9752961 -0.2208966 9.76624e-4 -0.9609061 -0.2768728 2.44154e-4 -0.9723417 -0.2335634 6.10372e-5 -0.9775112 -0.2108836 0 -0.9801452 -0.1982813 9.15566e-5 -0.9832563 -0.182228 0 -0.9819934 -0.1889153 4.27261e-4 -0.9940236 -0.1091653 0 -0.9927111 -0.1205182 4.88311e-4 -0.9864178 -0.1642554 0 -0.9929609 -0.1184436 9.1558e-4 -0.9839437 -0.1784771 0.001678526 -0.9840973 -0.1776227 0 -0.9963866 -0.08493453 0 -0.8638143 -0.5038103 0 -0.9117193 -0.4108139 -6.10395e-5 -0.8970969 -0.4418341 -6.10387e-5 -0.7946324 -0.607091 0 -0.9117307 -0.4107885 3.05194e-5 -0.6900125 -0.7237976 -3.05194e-5 -0.504791 -0.8632416 0 -0.3958595 -0.9183111 0 -0.122442 -0.9924758 3.05185e-5 0 -1 0 0.08887082 -0.9960432 0 -0.05294966 -0.9985972 0 0.2786654 -0.9603883 0 0.2786661 -0.9603881 0 0.2895135 -0.957174 6.97257e-6 0.2841201 -0.9587888 0 0.4805299 -0.8769785 0 0.4913954 -0.8709366 0 0.6458137 -0.7634952 0 0.5539253 -0.8325664 0 0.4678583 -0.8838035 0 0.7980585 -0.6025801 -3.05187e-5 0.8905053 -0.4549729 3.05192e-5 0.9573885 -0.2888035 -6.10376e-5 0.9974774 -0.07098674 0 0.9995689 0.02935957 -9.15581e-5 0.9925206 0.1220775 0 0.9864944 0.1637951 0 0.9864845 0.1638545 -0.002075254 0.9757899 0.2187004 -0.001586973 0.977443 0.2111938 -7.62969e-4 0.9785835 0.2058489 -0.001068115 0.9795662 0.2011197 -0.001129209 0.9792131 0.2028315 -3.96746e-4 0.9603697 0.2787293 0 0.9768666 0.2138498 -0.001074969 0.979584 0.2010329 -2.74671e-4 0.9845746 0.1749656 0 0.9870008 0.1607157 -5.49346e-4 0.98214 0.1881511 -8.54526e-4 0.9805076 0.1964799 -8.8506e-4 0.9804639 0.1966971 -6.10382e-5 0.9534475 0.3015593 -6.10389e-4 0.9451875 0.3265277 -0.001403868 0.9389531 0.3440427 -0.001617491 0.9379757 0.3466976 -6.4091e-4 0.9394212 0.3427646 -0.002411007 0.9741466 0.2259041 -6.10391e-5 0.9665237 0.2565779 0 0.9610666 0.276317 0.9999996 -9.47867e-4 0 1 0 0 0.7645987 0.6445063 -6.33733e-4 0.774028 0.6331514 5.49346e-4 0.7697547 0.6383391 0.001037597 0.7659652 0.6428821 0 0.7765626 0.6300091 0.006256401 0.7753086 0.6315634 0.004944086 0.7688612 0.6393966 0.00495398 0.7671018 0.6415238 0.00143516 0.7768605 0.6296675 0.002594113 0.778732 0.6273559 -0.001129209 0.7852365 0.6191961 0 0.7850634 0.6194155 0 0.7807556 0.6248364 3.05185e-4 0.7834495 0.6214554 2.13632e-4 0.7853502 0.6190512 8.85056e-4 0.7770675 0.6294131 0.00230658 0.7765191 0.6300596 0.006561517 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 0 48.6436 217.988 0 48.7367 217.799 0 48.7944 217.748 0 48.8203 217.739 0 48.8427 217.74 0 48.922 217.764 0 49.0013 217.788 0 49.0209 217.799 0 49.0378 217.82 0 49.0581 217.894 0 49.0325 218.104 0 48.3024 221.436 0 47.1287 224.649 0 46.6825 224.663 0 48.0893 220.97 0 48.473 219.39 0 46.6825 224.663 0 48.0893 220.97 0 48.473 219.39 0 48.6436 217.988 33.9659 48.6436 217.988 67.9318 48.6436 217.988 68.1556 48.4301 219.611 66.0581 48.3389 220.027 63.9511 48.2487 220.394 59.7241 48.0674 221.044 51.2397 47.7145 222.124 42.7287 47.3989 222.971 34.1986 47.136 223.62 25.6581 46.934 224.096 17.1092 46.793 224.417 68.0129 48.567 218.806 0 48.6436 217.988 67.9318 48.6436 217.988 0 48.7367 217.799 0 48.7944 217.748 0 48.8203 217.739 0 48.8427 217.74 33.9659 48.6436 217.988 33.8582 48.8427 217.74 67.7165 48.8427 217.74 67.7548 48.8077 217.742 67.79061 48.7748 217.76 67.8506 48.7194 217.822 0 48.8427 217.74 67.7165 48.8427 217.74 0 48.922 217.764 0 49.0013 217.788 33.8582 48.8427 217.74 33.7701 49.0013 217.788 67.5402 49.0013 217.788 0 49.0013 217.788 67.5402 49.0013 217.788 0 49.0209 217.799 0 49.0378 217.82 0 49.0581 217.894 0 49.0325 218.104 33.7701 49.0013 217.788 33.7526 49.0325 218.104 67.5051 49.0325 218.104 67.4742 49.0598 217.936 67.4868 49.0487 217.846 67.5072 49.0307 217.809 0 49.0325 218.104 0 48.3024 221.436 0 47.1287 224.649 67.5051 49.0325 218.104 33.7526 49.0325 218.104 67.81491 48.7525 219.648 67.6491 48.9038 218.881 17.0213 47.2413 224.391 25.5264 47.3766 224.071 34.0234 47.5658 223.6 42.511 47.8063 222.96 50.9804 48.0907 222.127 59.4242 48.4075 221.064 63.6308 48.5747 220.422 65.7275 48.6611 220.06 68.1556 48.4301 219.611 67.9318 48.6436 217.988 67.8506 48.7194 217.822 67.79061 48.7748 217.76 67.7548 48.8077 217.742 67.7165 48.8427 217.74 67.5402 49.0013 217.788 67.5072 49.0307 217.809 67.4868 49.0487 217.846 67.4742 49.0598 217.936 67.5051 49.0325 218.104 67.6491 48.9038 218.881 67.81491 48.7525 219.648 68.0129 48.567 218.806 + + + + + + + + + + -1 0 0 6.40901e-4 -0.9246374 -0.3808479 2.13631e-4 -0.9176388 -0.3974156 0.00149542 -0.9343532 -0.3563452 8.85057e-4 -0.955129 -0.2961888 0.001586973 -0.9340295 -0.3571926 8.54529e-4 -0.9395238 -0.3424829 6.10389e-5 -0.9501922 -0.3116645 0 -0.9626967 -0.270583 2.7467e-4 -0.9711413 -0.238505 1.22075e-4 -0.9839226 -0.1785954 9.15577e-5 -0.9765854 -0.2151302 0 -0.9926815 -0.1207624 3.9675e-4 -0.993858 -0.1106626 -3.05186e-5 -0.9910299 -0.1336408 -3.05193e-5 -0.9848282 -0.1735329 0 -0.995647 -0.09320455 0 -0.8653741 -0.5011265 0 -0.9096377 -0.4154027 -6.10378e-5 -0.8971028 -0.441822 -6.10384e-5 -0.7946584 -0.607057 0 -0.909666 -0.4153406 3.05193e-5 -0.6819224 -0.7314246 -3.05187e-5 -0.504719 -0.8632838 0 -0.3846912 -0.9230453 0 -0.1442023 -0.9895483 3.05186e-5 -0.01724302 -0.9998514 0 0.04489403 -0.9989917 0 -0.05700981 -0.9983736 0 0.2897092 -0.9571147 0 0.2897101 -0.9571145 0 0.2895256 -0.9571703 -3.40406e-7 0.2896054 -0.9571461 3.0519e-5 0.5469007 -0.8371976 0 0.4894656 -0.8720227 0 0.6462103 -0.7631593 0 0.7034351 -0.7107596 -3.05191e-5 0.8904867 -0.4550095 0 0.5814172 -0.8136056 3.05194e-5 0.9502524 -0.3114811 -9.15582e-5 0.992644 0.1210705 0 0.9997821 0.02087515 -6.10375e-5 0.997323 -0.07312297 0 0.9870556 0.1603789 -0.002014219 0.9752118 0.2212645 -8.85045e-4 0.9787372 0.2051167 -5.49349e-4 0.9603239 0.2788864 0 0.9768269 0.2140309 -0.00149542 0.9776273 0.2103396 -3.96752e-4 0.9835484 0.1806442 0 0.9865601 0.1633992 -8.24007e-4 0.9805686 0.1961748 -0.001159667 0.9408947 0.3386976 -0.001709043 0.938166 0.3461814 -0.001770079 0.9378279 0.3470961 -0.00100708 0.9392886 0.343127 6.10385e-5 0.9577557 0.2875831 -1.22076e-4 0.9675772 0.252576 -3.9675e-4 0.9473473 0.3202077 0.6615275 0.7499209 1.64232e-4 0.6739524 0.7387748 -1.22076e-4 0.6673006 0.7447886 -6.10382e-5 0.6652859 0.7465887 2.13634e-4 0.6618048 0.7496763 1.50465e-4 0.6653515 0.7465302 1.87138e-4 0.6719707 0.7405778 3.05192e-5 0.6754509 0.7374049 4.27269e-4 0.6874144 0.7262636 0.001645147 0.6845603 0.7289562 3.86471e-4 0.6764873 0.7364542 6.08885e-4 0.6785664 0.7345389 6.71425e-4 0.6770101 0.7359734 7.32464e-4 0.6846339 0.7288864 0.001098632 0.6824596 0.7309234 9.15562e-5 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 12 0 1 11 0 2 9 0 3 14 0 4 10 0 5 12 0 6 10 0 7 14 0 8 14 0 9 13 0 10 12 0 11 8 0 12 14 0 13 9 0 14 7 0 15 14 0 16 8 0 17 6 0 18 15 0 19 7 0 20 15 0 21 14 0 22 7 0 23 15 0 24 2 0 25 0 0 26 0 0 27 2 0 28 1 0 29 4 0 30 15 0 31 5 0 32 15 0 33 4 0 34 3 0 35 2 0 36 15 0 37 3 0 38 6 0 39 5 0 40 15 0 41 29 1 42 30 2 43 16 3 44 17 4 45 28 5 46 16 3 47 29 1 48 16 3 49 28 5 50 27 6 51 28 5 52 17 4 53 26 7 54 27 6 55 17 4 56 26 7 57 17 4 58 25 8 59 25 8 60 17 4 61 24 9 62 18 10 63 23 11 64 24 9 65 17 4 66 18 10 67 24 9 68 18 10 69 19 12 70 20 13 71 20 13 72 31 14 73 18 10 74 22 15 75 23 11 76 18 10 77 31 14 78 22 15 79 18 10 80 31 14 81 20 13 82 21 16 83 43 17 84 38 18 85 32 19 86 34 20 87 43 17 88 32 19 89 33 21 90 38 18 91 43 17 92 42 22 93 43 17 94 34 20 95 42 22 96 34 20 97 35 23 98 41 24 99 35 23 100 36 25 101 39 26 102 36 25 103 37 27 104 40 28 105 41 24 106 39 26 107 36 25 108 39 26 109 41 24 110 42 22 111 35 23 112 41 24 113 46 29 114 48 29 115 44 29 116 46 30 117 45 30 118 48 30 119 49 31 120 46 31 121 47 31 122 46 31 123 49 31 124 50 31 125 45 32 126 46 32 127 50 32 128 57 33 129 51 34 130 53 35 131 62 36 132 53 35 133 54 37 134 52 38 135 57 33 136 62 36 137 53 35 138 62 36 139 57 33 140 62 36 141 54 37 142 61 39 143 56 40 144 60 41 145 55 42 146 58 43 147 60 41 148 56 40 149 55 42 150 60 41 151 61 39 152 58 43 153 59 43 154 60 41 155 54 37 156 55 42 157 61 39 158 76 44 159 67 45 160 64 46 161 63 47 162 64 46 163 67 45 164 77 48 165 67 45 166 76 44 167 69 49 168 66 50 169 67 45 170 67 45 171 68 51 172 69 49 173 67 45 174 77 48 175 68 51 176 72 52 177 64 46 178 71 53 179 70 54 180 71 53 181 64 46 182 64 46 183 65 55 184 70 54 185 74 56 186 75 57 187 64 46 188 64 46 189 73 58 190 74 56 191 64 46 192 72 52 193 73 58 194 76 44 195 64 46 196 75 57 197 88 59 198 86 59 199 87 59 200 89 60 201 84 61 202 88 62 203 85 63 204 86 63 205 88 63 206 84 64 207 85 64 208 88 64 209 84 61 210 89 60 211 83 65 212 83 65 213 89 60 214 82 66 215 91 67 216 90 67 217 78 67 218 79 68 219 90 68 220 91 68 221 82 69 222 89 69 223 81 69 224 80 70 225 81 71 226 89 60 227 90 72 228 79 73 229 80 70 230 80 70 231 89 60 232 90 72 233

+
+
+
+ + + + 0 50.5383 217.882 0 50.6314 217.692 0 50.6891 217.641 0 50.715 217.632 0 50.7374 217.634 0 50.8167 217.658 0 50.896 217.681 0 50.9155 217.692 0 50.9325 217.714 0 50.9528 217.788 0 50.9271 217.998 0 50.1955 221.335 0 49.0188 224.553 0 48.5656 224.582 0 49.3805 222.638 0 49.9809 220.874 0 50.3668 219.288 0 48.5656 224.582 0 49.3805 222.638 0 49.9809 220.874 0 50.3668 219.288 0 50.5383 217.882 32.8 50.5383 217.882 65.6001 50.5383 217.882 65.9906 50.2555 219.826 61.9146 50.0744 220.546 57.8196 49.8975 221.15 49.6012 49.5635 222.145 41.3591 49.2697 222.925 33.1006 49.0248 223.528 24.8336 48.8338 223.978 16.5592 48.6955 224.292 65.7317 50.4442 218.824 65.9635 50.2755 219.737 0 50.5383 217.882 65.6001 50.5383 217.882 0 50.6314 217.692 0 50.6891 217.641 0 50.715 217.632 0 50.7374 217.634 32.8 50.5383 217.882 32.6577 50.7374 217.634 65.3154 50.7374 217.634 65.3623 50.7049 217.635 65.40731 50.6737 217.651 65.4864 50.6185 217.709 0 50.7374 217.634 65.3154 50.7374 217.634 0 50.8167 217.658 0 50.896 217.681 32.6577 50.7374 217.634 32.5413 50.896 217.681 65.08261 50.896 217.681 0 50.896 217.681 65.08261 50.896 217.681 0 50.9155 217.692 0 50.9325 217.714 0 50.9528 217.788 0 50.9271 217.998 32.5413 50.896 217.681 32.5181 50.9271 217.998 65.0363 50.9271 217.998 64.9954 50.9545 217.826 64.9998 50.9516 217.778 65.01541 50.9411 217.733 65.04441 50.9217 217.698 0 50.9271 217.998 0 50.1955 221.335 0 49.0188 224.553 65.0363 50.9271 217.998 32.5181 50.9271 217.998 65.5466 50.5761 219.865 65.2712 50.7678 218.941 16.4453 49.149 224.254 24.6628 49.281 223.941 32.8734 49.4595 223.496 41.0761 49.6833 222.904 49.2633 49.9472 222.138 57.4281 50.2452 221.162 61.4965 50.4055 220.569 65.6001 50.5383 217.882 65.4864 50.6185 217.709 65.40731 50.6737 217.651 65.3623 50.7049 217.635 65.3154 50.7374 217.634 65.08261 50.896 217.681 65.04441 50.9217 217.698 65.01541 50.9411 217.733 64.9998 50.9516 217.778 64.9954 50.9545 217.826 65.0363 50.9271 217.998 65.2712 50.7678 218.941 65.5466 50.5761 219.865 65.9906 50.2555 219.826 65.9635 50.2755 219.737 65.7317 50.4442 218.824 + + + + + + + + + + -1 0 0 3.66228e-4 -0.9350411 -0.3545392 6.40905e-4 -0.92156 -0.3882357 4.57785e-4 -0.922254 -0.3865843 1.22078e-4 -0.9269663 -0.3751447 3.96743e-4 -0.9231608 -0.3844138 -3.05193e-5 -0.9353864 -0.3536273 1.22077e-4 -0.9480159 -0.318223 -3.05194e-5 -0.9591631 -0.2828537 2.44153e-4 -0.9601299 -0.2795546 9.15583e-5 -0.9838554 -0.178966 3.05187e-4 -0.9697915 -0.2439356 0 -0.992644 -0.1210705 3.66226e-4 -0.993663 -0.1124008 -6.1038e-5 -0.9893651 -0.1454535 1.52595e-4 -0.9749922 -0.2222397 3.05192e-5 -0.9790239 -0.2037459 0 -0.9950475 -0.09940099 -6.10379e-5 -0.9024449 -0.4308053 0 -0.8979874 -0.4400212 0 -0.7953064 -0.6062079 0 -0.8664817 -0.4992089 0 -0.9072516 -0.4205885 3.05191e-5 -0.6719388 -0.7406067 0 -0.5048138 -0.8632283 0 -0.3784938 -0.9256038 0 -0.122442 -0.9924758 3.05189e-5 0.01837235 -0.9998312 0 0.08884054 -0.9960459 0 -0.03048866 -0.9995352 0 0.2897113 -0.9571141 0 0.2785223 -0.9604298 -7.42763e-6 0.2840967 -0.9587957 0 0.5266646 -0.8500732 0 0.4912405 -0.871024 0 0.654268 -0.7562628 0 0.656181 -0.7546036 -3.05194e-5 0.8947688 -0.4465298 0 0.5515975 -0.8341104 0 0.9186629 -0.3950424 -9.15559e-5 0.9925884 0.1215252 0 0.9985842 0.0531947 -6.10382e-5 0.9973341 -0.07297116 0 0.9875466 0.1573274 0 0.9879754 -0.1546115 0 0.987552 0.1572929 -6.1038e-4 0.9602807 0.2790353 -0.002105772 0.9745072 0.2243463 -7.32467e-4 0.9783315 0.2070439 0 0.9768 0.2141537 -3.05192e-5 0.9651075 0.2618544 -6.40894e-4 0.9820938 0.1883923 0 0.9860345 0.1665415 -0.001281797 0.9784212 0.2066163 -0.001800596 0.9380422 0.3465165 -0.001190185 0.939189 0.3433988 -0.001678526 0.9384601 0.3453838 -4.88303e-4 0.9467585 0.3219443 3.05194e-5 0.9559577 0.2935046 -0.001220703 0.9407408 0.3391245 0.5612906 0.8276172 0.001610815 0.5563453 0.8309513 5.79949e-5 0.5733006 0.8193451 -1.83114e-4 0.5663786 0.8241452 2.74674e-4 0.561429 0.8275249 6.10382e-5 0.5561662 0.8310712 -1.98631e-4 0.5584208 0.8295578 1.35429e-4 0.561499 0.8274771 7.93509e-4 0.5697225 0.8218372 1.52593e-4 0.5752062 0.8180074 0.001354634 0.5854463 0.8107071 0.002594113 0.5765981 0.8170279 3.35711e-4 0.5820029 0.8131865 6.40905e-4 0.5857459 0.8104858 0.003814816 0.5697499 0.8218182 1.5616e-4 0.5720097 0.8202468 5.19414e-4 0.5750916 0.8180881 0.001311302 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

15 0 0 12 0 1 11 0 2 10 0 3 9 0 4 16 0 5 11 0 6 10 0 7 15 0 8 15 0 9 14 0 10 12 0 11 16 0 12 9 0 13 8 0 14 16 0 15 8 0 16 7 0 17 6 0 18 16 0 19 7 0 20 10 0 21 16 0 22 15 0 23 13 0 24 12 0 25 14 0 26 2 0 27 0 0 28 16 0 29 4 0 30 16 0 31 5 0 32 3 0 33 2 0 34 16 0 35 16 0 36 4 0 37 3 0 38 1 0 39 0 0 40 2 0 41 6 0 42 5 0 43 16 0 44 18 1 45 31 2 46 17 3 47 29 4 48 30 5 49 18 1 50 31 2 51 18 1 52 30 5 53 28 6 54 29 4 55 18 1 56 27 7 57 28 6 58 18 1 59 26 8 60 27 7 61 19 9 62 19 9 63 27 7 64 18 1 65 20 10 66 25 11 67 19 9 68 20 10 69 21 12 70 22 13 71 22 13 72 32 14 73 20 10 74 24 15 75 25 11 76 20 10 77 33 16 78 24 15 79 20 10 80 32 14 81 33 16 82 20 10 83 32 14 84 22 13 85 23 17 86 26 8 87 19 9 88 25 11 89 40 18 90 34 19 91 36 20 92 45 21 93 40 18 94 36 20 95 35 22 96 40 18 97 45 21 98 44 23 99 45 21 100 36 20 101 44 23 102 36 20 103 37 24 104 43 25 105 37 24 106 38 26 107 41 27 108 38 26 109 39 28 110 42 29 111 43 25 112 41 27 113 38 26 114 41 27 115 43 25 116 44 23 117 37 24 118 43 25 119 48 30 120 50 30 121 46 30 122 48 30 123 47 30 124 50 30 125 51 31 126 48 31 127 49 31 128 48 31 129 51 31 130 52 31 131 47 32 132 48 32 133 52 32 134 59 33 135 53 34 136 55 35 137 65 36 138 55 35 139 56 37 140 54 38 141 59 33 142 65 36 143 55 35 144 65 36 145 59 33 146 65 36 147 56 37 148 64 39 149 58 40 150 62 41 151 57 42 152 60 43 153 62 41 154 58 40 155 57 42 156 63 44 157 64 39 158 60 43 159 61 45 160 62 41 161 62 41 162 63 44 163 57 42 164 56 37 165 57 42 166 64 39 167 67 46 168 79 47 169 70 48 170 66 49 171 67 46 172 70 48 173 78 50 174 79 47 175 67 46 176 72 51 177 69 52 178 70 48 179 70 48 180 71 53 181 72 51 182 70 48 183 79 47 184 71 53 185 73 54 186 67 46 187 68 55 188 74 56 189 67 46 190 73 54 191 76 57 192 77 58 193 67 46 194 67 46 195 75 59 196 76 57 197 67 46 198 74 56 199 75 59 200 78 50 201 67 46 202 77 58 203 89 60 204 87 60 205 88 60 206 90 61 207 86 61 208 89 61 209 91 62 210 84 63 211 90 64 212 86 65 213 87 65 214 89 65 215 85 66 216 86 66 217 90 66 218 85 67 219 90 64 220 84 63 221 84 63 222 91 62 223 83 68 224 95 69 225 80 69 226 91 69 227 94 70 228 95 71 229 92 72 230 92 72 231 93 73 232 94 70 233 82 74 234 83 74 235 91 74 236 81 75 237 82 75 238 91 75 239 91 76 240 80 76 241 81 76 242 92 72 243 95 71 244 91 62 245

+
+
+
+ + + + 0 52.4281 217.709 0 52.5211 217.52 0 52.5789 217.469 0 52.6048 217.46 0 52.6271 217.462 0 52.7858 217.509 0 52.8053 217.52 0 52.8223 217.541 0 52.8426 217.616 0 52.8169 217.825 0 52.0835 221.169 0 50.9034 224.392 0 50.4424 224.438 0 51.8538 220.759 0 52.2518 219.141 0 51.8538 220.759 0 52.2518 219.141 0 52.4281 217.709 31.269 52.4281 217.709 62.538 52.4281 217.709 63.2176 52.0508 220.046 59.3058 51.8765 220.682 55.38 51.7083 221.227 47.504 51.3966 222.129 39.6077 51.1255 222.838 31.6976 50.8992 223.392 15.8567 50.5861 224.118 0 50.4424 224.438 62.7197 52.3292 218.684 63.0349 52.1543 219.613 0 52.4281 217.709 62.538 52.4281 217.709 0 52.5211 217.52 0 52.5789 217.469 0 52.6048 217.46 0 52.6271 217.462 31.269 52.4281 217.709 31.082 52.6271 217.462 62.1641 52.6271 217.462 62.2771 52.5676 217.475 62.3797 52.513 217.53 62.4675 52.466 217.61 0 52.6271 217.462 62.1641 52.6271 217.462 0 52.7858 217.509 31.082 52.6271 217.462 30.9291 52.7858 217.509 61.8582 52.7858 217.509 0 52.7858 217.509 61.8582 52.7858 217.509 0 52.8053 217.52 0 52.8223 217.541 0 52.8426 217.616 0 52.8169 217.825 30.9291 52.7858 217.509 30.8987 52.8169 217.825 61.7973 52.8169 217.825 61.7587 52.8366 217.74 61.7437 52.8443 217.647 61.7521 52.84 217.596 61.7764 52.8276 217.552 61.8141 52.8084 217.523 0 52.8169 217.825 0 52.0835 221.169 0 50.9034 224.392 61.7973 52.8169 217.825 30.8987 52.8169 217.825 62.6392 52.3732 220.086 62.1815 52.618 218.974 15.709 51.0454 224.066 31.4029 51.3393 223.349 39.2403 51.5455 222.807 47.0647 51.7881 222.114 54.8701 52.0643 221.234 58.7612 52.2143 220.704 62.538 52.4281 217.709 62.4675 52.466 217.61 62.3797 52.513 217.53 62.2771 52.5676 217.475 62.1641 52.6271 217.462 61.8582 52.7858 217.509 61.8141 52.8084 217.523 61.7764 52.8276 217.552 61.7521 52.84 217.596 61.7437 52.8443 217.647 61.7587 52.8366 217.74 61.7973 52.8169 217.825 62.1815 52.618 218.974 62.6392 52.3732 220.086 63.2176 52.0508 220.046 63.0349 52.1543 219.613 62.7197 52.3292 218.684 + + + + + + + + + + -1 0 0 0.001617491 -0.933632 -0.35823 5.7986e-4 -0.9228925 -0.3850573 0.001617491 -0.933559 -0.3584202 9.46108e-4 -0.954348 -0.2986954 0.00100708 -0.9375372 -0.3478837 2.7467e-4 -0.945537 -0.3255147 0 -0.9551208 -0.2962169 0 -0.9640903 -0.265575 2.13634e-4 -0.9716703 -0.2363407 1.52594e-4 -0.9835323 -0.1807328 0 -0.9925095 -0.1221677 3.66231e-4 -0.9935238 -0.1136232 -6.10383e-5 -0.9887598 -0.1495133 9.15566e-5 -0.9767873 -0.214212 0 -0.994897 -0.1008966 0 -0.9167734 -0.3994079 0 -0.9339132 -0.3575 -1.52594e-4 -0.8973138 -0.4413934 -9.15574e-5 -0.7945657 -0.6071782 0 -0.8334796 -0.5525503 0 -0.641852 -0.7668287 0 -0.5042714 -0.8635453 0 -0.1220136 -0.9925285 1.52595e-4 -0.1330632 -0.9911076 0 0.08926713 -0.9960078 0 -0.2134229 -0.9769599 0 0.2839537 -0.958838 0 0.2839487 -0.9588395 0 0.2839562 -0.9588373 0 0.5105543 -0.8598456 0 0.4912636 -0.871011 0 0.6456646 -0.7636213 0 0.6045802 -0.7965443 0 0.8904369 -0.4551067 0 0.5264198 -0.8502249 0 0.8829461 -0.4694743 0 0.9805808 -0.1961161 -1.22077e-4 0.9925169 0.1221075 0 0.9859927 0.1667889 -9.15565e-5 0.9974774 -0.07098674 0 0.9741644 0.2258401 0 0.9999998 -7.32466e-4 0 0.9741577 0.2258691 -0.002685606 0.9725366 0.2327349 -5.18829e-4 0.9777791 0.2096374 -6.71417e-4 0.9602187 0.2792487 0 0.9767873 0.214212 -0.001892149 0.9758387 0.2184841 -0.001037597 0.9800769 0.1986156 0 0.9853504 0.1705425 -0.001739561 0.9383465 0.3456921 -0.001342773 0.9390329 0.3438248 -0.001281797 0.9405407 0.3396787 -3.0519e-5 0.9538714 0.3002154 0 0.9618951 0.2734189 -5.79867e-4 0.9456718 0.3251224 0.4544308 0.8907821 -2.44318e-4 0.4553304 0.8903226 2.37597e-4 0.4547079 0.8906407 0 0.453768 0.8911199 3.23151e-5 0.4562989 0.8898262 7.71916e-4 0.4589551 0.8884587 0.001129209 0.4587976 0.8885408 3.05194e-4 0.4629769 0.8863704 2.74673e-4 0.4710286 0.8821181 6.10378e-5 0.4823846 0.8759588 0.001220762 0.474542 0.8802328 4.88306e-4 0.4870313 0.8733785 0.003265559 0.4853729 0.8743061 0.001434385 0.469667 0.8828437 2.75253e-4 0.4715353 0.881847 6.01388e-4 0.4725334 0.8813124 8.74412e-4 0.4733258 0.8808867 0.001146376 0.4675203 0.8839824 9.15569e-5 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

13 0 0 11 0 1 10 0 2 12 0 3 11 0 4 13 0 5 9 0 6 13 0 7 10 0 8 14 0 9 8 0 10 7 0 11 8 0 12 14 0 13 9 0 14 6 0 15 14 0 16 7 0 17 13 0 18 9 0 19 14 0 20 1 0 21 0 0 22 2 0 23 14 0 24 2 0 25 0 0 26 4 0 27 14 0 28 5 0 29 14 0 30 4 0 31 3 0 32 14 0 33 3 0 34 2 0 35 6 0 36 5 0 37 14 0 38 25 1 39 26 2 40 27 3 41 15 4 42 25 1 43 27 3 44 24 5 45 25 1 46 15 4 47 23 6 48 24 5 49 15 4 50 23 6 51 15 4 52 22 7 53 22 7 54 15 4 55 21 8 56 20 9 57 21 8 58 15 4 59 16 10 60 20 9 61 15 4 62 16 10 63 17 11 64 18 12 65 18 12 66 28 13 67 16 10 68 16 10 69 29 14 70 20 9 71 18 12 72 19 15 73 28 13 74 28 13 75 29 14 76 16 10 77 41 16 78 36 17 79 30 18 80 32 19 81 41 16 82 30 18 83 31 17 84 36 17 85 41 16 86 40 20 87 41 16 88 32 19 89 40 20 90 32 19 91 39 21 92 39 21 93 33 22 94 34 23 95 37 24 96 34 23 97 35 25 98 38 26 99 39 21 100 37 24 101 34 23 102 37 24 103 39 21 104 32 19 105 33 22 106 39 21 107 45 27 108 42 27 109 44 27 110 45 28 111 44 28 112 46 28 113 43 29 114 45 29 115 46 29 116 43 28 117 46 28 118 47 28 119 54 30 120 48 31 121 50 32 122 61 33 123 50 32 124 51 34 125 61 33 126 49 35 127 54 30 128 50 32 129 61 33 130 54 30 131 61 33 132 51 34 133 60 36 134 60 36 135 51 34 136 59 37 137 53 38 138 57 39 139 52 40 140 55 41 141 57 39 142 53 38 143 52 40 144 58 42 145 59 37 146 55 41 147 56 43 148 57 39 149 57 39 150 58 42 151 52 40 152 51 34 153 52 40 154 59 37 155 74 44 156 66 45 157 63 46 158 62 47 159 63 46 160 66 45 161 67 48 162 66 45 163 74 44 164 66 45 165 68 49 166 65 50 167 66 45 168 67 48 169 68 49 170 69 51 171 63 46 172 64 52 173 70 53 174 63 46 175 69 51 176 72 54 177 73 55 178 63 46 179 63 46 180 71 56 181 72 54 182 63 46 183 70 53 184 71 56 185 74 44 186 63 46 187 73 55 188 84 57 189 82 57 190 83 57 191 85 58 192 82 58 193 84 58 194 86 59 195 80 59 196 85 59 197 81 60 198 82 60 199 85 60 200 80 61 201 81 61 202 85 61 203 80 62 204 86 63 205 79 64 206 79 64 207 86 63 208 87 65 209 88 66 210 91 67 211 87 65 212 88 66 213 89 68 214 90 69 215 90 69 216 91 67 217 88 66 218 77 70 219 78 70 220 87 70 221 77 71 222 87 71 223 76 71 224 87 72 225 75 72 226 76 72 227 75 73 228 87 73 229 91 73 230 79 64 231 87 65 232 78 74 233

+
+
+
+ + + + 0 54.31 217.466 0 54.4031 217.277 0 54.4609 217.226 0 54.4868 217.217 0 54.5091 217.218 0 54.6678 217.266 0 54.6873 217.277 0 54.7042 217.298 0 54.7246 217.372 0 54.6989 217.582 0 53.9635 220.933 0 52.7795 224.162 0 52.3098 224.227 0 53.7358 220.515 0 54.1338 218.898 0 53.7358 220.515 0 54.1338 218.898 0 54.31 217.466 29.2619 54.31 217.466 58.5239 54.31 217.466 59.709 53.807 220.27 52.2958 53.4894 221.288 44.854 53.205 222.083 37.3957 52.9593 222.716 29.9262 52.7535 223.215 14.9699 52.4608 223.892 0 52.3098 224.227 58.7856 54.2021 218.5 59.2275 54.0161 219.459 0 54.31 217.466 58.5239 54.31 217.466 0 54.4031 217.277 0 54.4609 217.226 0 54.4868 217.217 0 54.5091 217.218 29.2619 54.31 217.466 29.0145 54.5091 217.218 58.0291 54.5091 217.218 58.17 54.453 217.23 58.3031 54.3996 217.281 58.423 54.3511 217.36 0 54.5091 217.218 58.0291 54.5091 217.218 0 54.6678 217.266 29.0145 54.5091 217.218 28.8119 54.6678 217.266 57.6237 54.6678 217.266 0 54.6678 217.266 57.6237 54.6678 217.266 0 54.6873 217.277 0 54.7042 217.298 0 54.7246 217.372 0 54.6989 217.582 28.8119 54.6678 217.266 28.7715 54.6989 217.582 57.543 54.6989 217.582 57.4904 54.7191 217.494 57.4751 54.725 217.444 57.4727 54.7259 217.391 57.4902 54.7192 217.339 57.5271 54.705 217.299 0 54.6989 217.582 0 53.9635 220.933 0 52.7795 224.162 57.543 54.6989 217.582 28.7715 54.6989 217.582 58.9451 54.1356 220.313 58.79 54.2004 220.063 58.114 54.4754 218.854 14.7758 52.9268 223.825 29.5387 53.1999 223.16 36.9122 53.3866 222.674 44.2753 53.6055 222.061 51.6233 53.8555 221.293 58.5239 54.31 217.466 58.423 54.3511 217.36 58.3031 54.3996 217.281 58.17 54.453 217.23 58.0291 54.5091 217.218 57.6237 54.6678 217.266 57.5271 54.705 217.299 57.4902 54.7192 217.339 57.4727 54.7259 217.391 57.4751 54.725 217.444 57.4904 54.7191 217.494 57.543 54.6989 217.582 58.114 54.4754 218.854 58.79 54.2004 220.063 58.9451 54.1356 220.313 59.709 53.807 220.27 59.2275 54.0161 219.459 58.7856 54.2021 218.5 + + + + + + + + + + -1 0 0 0.001709043 -0.9333513 -0.3589602 7.3247e-4 -0.923828 -0.3828072 0.001678526 -0.9334207 -0.3587802 9.76604e-4 -0.9542643 -0.2989629 0.001159727 -0.936603 -0.3503906 4.883e-4 -0.9427252 -0.3335703 -6.10382e-5 -0.953996 -0.2998195 9.15561e-5 -0.9668326 -0.255411 3.66229e-4 -0.9934259 -0.114477 1.52594e-4 -0.9835268 -0.1807624 0 -0.9925169 -0.1221075 -6.10378e-5 -0.9877743 -0.1558905 3.05186e-5 -0.9734525 -0.2288897 0 -0.9945989 -0.1037935 0 -0.917106 -0.3986436 0 -0.9323747 -0.3614932 -1.52594e-4 -0.8971329 -0.4417607 -9.15572e-5 -0.7943804 -0.6074207 0 -0.8286969 -0.5596978 0 -0.6398242 -0.7685214 0 -0.5043529 -0.8634976 0 -0.1441126 -0.9895613 1.22078e-4 -0.1385281 -0.9903586 0 0.04510724 -0.9989823 0 -0.2090226 -0.9779108 0 0.2895344 -0.9571677 0 0.2895246 -0.9571706 0 0.28953 -0.957169 0 0.2895237 -0.9571709 9.15585e-5 0.6129534 -0.7901191 0 0.4907393 -0.8713065 0 0.6466397 -0.7627956 0 0.74857 -0.6630558 -3.05189e-5 0.8901138 -0.4557385 0 0.6635091 -0.7481682 0 0.9648512 -0.2627972 -9.1556e-5 0.9972894 -0.0735805 -1.52597e-4 0.9925842 0.121559 -3.05187e-5 0.9829782 0.1837228 0 0.9746636 0.2236757 -9.15564e-5 0.9973853 0.07226854 0 0.9981262 -0.06119072 0 0.9746354 0.2237983 -7.62967e-4 0.9601483 0.2794901 -0.00262463 0.970017 0.243023 -8.24004e-4 0.9783066 0.2071607 -0.001464843 0.9785828 0.2058488 0 0.9849143 0.1730436 6.10386e-5 0.9623351 0.271866 -0.003174006 0.9675311 0.2527325 0 0.9767603 0.2143349 -0.001770079 0.9384365 0.3454474 -0.001495361 0.9388766 0.3442506 -0.00137335 0.9401761 0.3406864 -1.52594e-4 0.9510906 0.3089122 -7.32458e-4 0.9443525 0.3289349 0.3591647 0.9332742 1.84661e-4 0.3669664 0.9302342 3.05195e-4 0.362782 0.9318739 4.27269e-4 0.3749292 0.9270533 3.35712e-4 0.3588584 0.9333921 -1.87609e-4 0.3568224 0.9341723 -2.11638e-4 0.3592253 0.9332509 0 0.3593648 0.9331972 1.5146e-4 0.3646663 0.9311372 0.001515388 0.3709908 0.9286367 0 0.3900004 0.9208146 4.27264e-4 0.3854603 0.9227242 -6.40908e-4 0.3915864 0.9201411 7.32451e-4 0.3952497 0.9185712 0.002178311 0.3787088 0.9255157 5.4934e-4 0.3723151 0.9281065 3.83909e-5 0.3747825 0.9271127 3.82272e-4 0.3765286 0.9264047 7.94466e-4 0.3774261 0.926039 0.001110792 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

13 0 0 11 0 1 10 0 2 12 0 3 11 0 4 13 0 5 14 0 6 10 0 7 9 0 8 7 0 9 9 0 10 8 0 11 9 0 12 7 0 13 6 0 14 5 0 15 9 0 16 6 0 17 13 0 18 10 0 19 14 0 20 1 0 21 0 0 22 2 0 23 14 0 24 4 0 25 0 0 26 4 0 27 14 0 28 5 0 29 0 0 30 4 0 31 3 0 32 0 0 33 3 0 34 2 0 35 9 0 36 5 0 37 14 0 38 24 1 39 25 2 40 26 3 41 15 4 42 24 1 43 26 3 44 23 5 45 24 1 46 15 4 47 22 6 48 23 5 49 15 4 50 22 6 51 15 4 52 21 7 53 21 7 54 15 4 55 20 8 56 18 9 57 16 10 58 17 11 59 27 12 60 16 10 61 18 9 62 28 13 63 20 8 64 15 4 65 18 9 66 19 14 67 27 12 68 27 12 69 28 13 70 16 10 71 16 10 72 28 13 73 15 4 74 40 15 75 35 16 76 29 17 77 31 18 78 40 15 79 29 17 80 30 16 81 35 16 82 40 15 83 39 19 84 40 15 85 31 18 86 39 19 87 31 18 88 38 20 89 38 20 90 32 21 91 33 22 92 36 23 93 33 22 94 34 24 95 37 25 96 38 20 97 36 23 98 33 22 99 36 23 100 38 20 101 31 18 102 32 21 103 38 20 104 44 26 105 41 26 106 43 26 107 44 27 108 43 27 109 45 27 110 42 28 111 44 28 112 45 28 113 42 29 114 45 29 115 46 29 116 53 30 117 47 31 118 49 32 119 60 33 120 49 32 121 50 34 122 60 33 123 48 35 124 53 30 125 49 32 126 60 33 127 53 30 128 60 33 129 50 34 130 59 36 131 59 36 132 50 34 133 51 37 134 52 38 135 56 39 136 51 37 137 54 40 138 56 39 139 52 38 140 51 37 141 57 41 142 58 42 143 54 40 144 55 43 145 56 39 146 56 39 147 57 41 148 51 37 149 59 36 150 51 37 151 58 42 152 62 44 153 67 45 154 65 46 155 68 47 156 64 48 157 65 46 158 65 46 159 67 45 160 68 47 161 67 45 162 73 49 163 66 50 164 61 51 165 62 44 166 65 46 167 69 52 168 62 44 169 63 53 170 70 54 171 62 44 172 69 52 173 72 55 174 73 49 175 62 44 176 62 44 177 71 56 178 72 55 179 62 44 180 70 54 181 71 56 182 67 45 183 62 44 184 73 49 185 84 57 186 80 57 187 83 57 188 78 58 189 85 59 190 86 60 191 85 61 192 79 61 193 84 61 194 81 62 195 82 62 196 83 62 197 83 63 198 80 63 199 81 63 200 80 64 201 84 64 202 79 64 203 79 65 204 85 65 205 78 65 206 78 58 207 86 60 208 77 66 209 90 67 210 87 68 211 88 69 212 88 70 213 89 70 214 90 70 215 91 71 216 87 68 217 90 67 218 76 72 219 77 72 220 86 72 221 76 73 222 86 73 223 75 73 224 86 74 225 74 74 226 75 74 227 86 75 228 91 75 229 74 75 230 87 68 231 91 71 232 86 60 233

+
+
+
+ + + + 0 56.1807 217.147 0 56.2738 216.958 0 56.3315 216.907 0 56.3574 216.898 0 56.3797 216.9 0 56.5384 216.947 0 56.5579 216.958 0 56.5749 216.979 0 56.5952 217.054 0 56.5695 217.263 0 56.257 218.958 0 55.8319 220.622 0 55.294 222.255 0 54.6436 223.858 0 54.164 223.944 0 55.6064 220.197 0 56.0045 218.579 0 55.6064 220.197 0 56.0045 218.579 0 56.1807 217.147 26.5963 56.1807 217.147 53.1927 56.1807 217.147 55.2829 55.5133 220.5 48.4094 55.2303 221.342 41.5161 54.9796 222.017 34.6104 54.7632 222.561 27.6962 54.5809 222.999 13.8537 54.3146 223.611 0 54.164 223.944 53.5801 56.0626 218.246 54.2014 55.8681 219.22 0 56.1807 217.147 53.1927 56.1807 217.147 0 56.2738 216.958 0 56.3315 216.907 0 56.3574 216.898 0 56.3797 216.9 26.5963 56.1807 217.147 26.2607 56.3797 216.9 52.5213 56.3797 216.9 52.7034 56.3264 216.91 52.8797 56.2743 216.957 53.0457 56.2249 217.035 0 56.3797 216.9 52.5213 56.3797 216.9 0 56.5384 216.947 26.2607 56.3797 216.9 25.9846 56.5384 216.947 51.9692 56.5384 216.947 0 56.5384 216.947 51.9692 56.5384 216.947 0 56.5579 216.958 0 56.5749 216.979 0 56.5952 217.054 0 56.5695 217.263 25.9846 56.5384 216.947 25.9295 56.5695 217.263 51.859 56.5695 217.263 51.7845 56.5905 217.17 51.7635 56.5964 217.112 51.7619 56.5968 217.081 51.7689 56.5949 217.05 51.8049 56.5847 217.002 51.8563 56.5703 216.972 0 56.5695 217.263 0 56.257 218.958 0 55.8319 220.622 0 55.294 222.255 0 54.6436 223.858 51.859 56.5695 217.263 25.9295 56.5695 217.263 54.2478 55.8532 220.548 52.9539 56.2518 218.979 13.5918 54.7883 223.527 27.1732 55.0346 222.932 40.7341 55.39 221.989 47.4997 55.6085 221.346 53.1927 56.1807 217.147 53.0457 56.2249 217.035 52.8797 56.2743 216.957 52.7034 56.3264 216.91 52.5213 56.3797 216.9 51.9692 56.5384 216.947 51.8563 56.5703 216.972 51.8049 56.5847 217.002 51.7689 56.5949 217.05 51.7619 56.5968 217.081 51.7635 56.5964 217.112 51.7845 56.5905 217.17 51.859 56.5695 217.263 52.9539 56.2518 218.979 54.2478 55.8532 220.548 55.2829 55.5133 220.5 54.2014 55.8681 219.22 53.5801 56.0626 218.246 + + + + + + + + + + -1 0 0 0.001831114 -0.9331008 -0.3596103 0.001922667 -0.9326556 -0.3607631 9.46092e-4 -0.9541488 -0.2993313 0.001403868 -0.9350985 -0.3543853 7.93499e-4 -0.939778 -0.3417846 1.52594e-4 -0.9479145 -0.3185249 -9.15579e-5 -0.9618159 -0.2736971 0.00149542 -0.9332439 -0.3592404 -1.52597e-4 -0.9695128 -0.245041 1.83114e-4 -0.9835376 -0.1807033 3.35709e-4 -0.9933023 -0.1155449 0 -0.9925169 -0.1221075 -9.15573e-5 -0.9865905 -0.163216 0 -0.9942787 -0.1068165 0 -0.9179157 -0.3967757 0 -0.9302133 -0.3670192 -1.83116e-4 -0.8971149 -0.4417974 -9.15558e-5 -0.7946436 -0.6070762 0 -0.8262158 -0.5633539 0 -0.6316893 -0.7752217 0 -0.5048138 -0.8632283 0 -0.1222278 -0.9925022 1.52597e-4 -0.1049866 -0.9944736 0 0.08926713 -0.9960078 0 -0.1845465 -0.9828238 0 0.2840392 -0.9588128 0 0.2840319 -0.9588149 0 0.2840349 -0.958814 0 0.2840319 -0.9588149 6.10378e-5 0.5734809 -0.8192191 0 0.4909305 -0.8711987 0 0.6456646 -0.7636213 0 0.6751481 -0.7376822 -3.05187e-5 0.8905674 -0.4548513 0 0.6166604 -0.7872292 0 0.9271767 -0.3746246 -1.22076e-4 0.9974816 -0.07092601 0 0.9882936 -0.1525639 0 0.9996563 -0.02621597 -9.15566e-5 0.9980583 0.06228893 -3.05192e-5 0.9839387 0.1785067 -1.52596e-4 0.9925132 0.1221376 0 0.9754491 0.2202253 0 0.9754214 0.220348 0 0.9833632 0.181651 0 0.9834305 0.1812859 0 0.9767206 0.2145159 0 0.9740372 0.2263882 0 0.9832956 0.182016 0 0.9677526 0.2519026 -9.15572e-5 0.9599163 0.2802872 -3.66229e-4 0.9478314 0.3187719 -4.27272e-4 0.9388076 0.344442 -4.57791e-4 0.9275456 0.37371 -7.01948e-4 0.9266319 0.3759692 0 0.9557223 0.2942703 9.15564e-5 0.9350652 0.3544757 0.2683574 0.9633182 -0.001572966 0.2708286 0.9626276 -1.10317e-4 0.2764456 0.9610286 0.00137335 0.2748216 0.9614943 0.001281738 0.2713174 0.96249 0 0.2770388 0.960852 0.00360167 0.269037 0.9631294 -0.001041114 0.2719138 0.9623215 5.35615e-4 0.2798584 0.9600027 0.008606314 0.2806862 0.9597412 0.01059019 0.2912425 0.9566475 0.001861631 0.2895336 0.957167 0.001312315 0.2975623 0.9547018 0.001129209 0.3065337 0.9518598 0 0.3119671 0.9500929 -2.13634e-4 0.2807149 0.9597347 0.01040697 0.2806225 0.9597625 0.01034593 0.2819638 0.9594216 0.002594053 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

15 0 0 12 0 1 11 0 2 12 0 3 15 0 4 13 0 5 14 0 6 13 0 7 15 0 8 10 0 9 15 0 10 11 0 11 16 0 12 10 0 13 9 0 14 9 0 15 8 0 16 7 0 17 7 0 18 6 0 19 9 0 20 15 0 21 10 0 22 16 0 23 1 0 24 0 0 25 2 0 26 16 0 27 4 0 28 0 0 29 6 0 30 5 0 31 9 0 32 4 0 33 3 0 34 0 0 35 16 0 36 5 0 37 4 0 38 2 0 39 0 0 40 3 0 41 16 0 42 9 0 43 5 0 44 26 1 45 27 2 46 17 3 47 17 3 48 25 4 49 26 1 50 17 3 51 24 5 52 25 4 53 17 3 54 23 6 55 24 5 56 22 7 57 23 6 58 17 3 59 28 8 60 17 3 61 27 2 62 30 9 63 17 3 64 18 10 65 20 11 66 18 10 67 19 12 68 29 13 69 30 9 70 18 10 71 29 13 72 20 11 73 21 14 74 29 13 75 18 10 76 20 11 77 22 7 78 17 3 79 30 9 80 42 15 81 37 16 82 31 17 83 33 18 84 42 15 85 31 17 86 32 16 87 37 16 88 42 15 89 41 19 90 42 15 91 33 18 92 41 19 93 33 18 94 40 20 95 40 20 96 34 21 97 35 22 98 38 23 99 35 22 100 36 24 101 39 25 102 40 20 103 38 23 104 35 22 105 38 23 106 40 20 107 33 18 108 34 21 109 40 20 110 46 26 111 43 26 112 45 26 113 46 27 114 45 27 115 47 27 116 44 28 117 46 28 118 47 28 119 44 29 120 47 29 121 48 29 122 55 30 123 49 31 124 51 32 125 63 33 126 51 32 127 52 34 128 63 33 129 50 35 130 55 30 131 51 32 132 63 33 133 55 30 134 63 33 135 52 34 136 62 36 137 62 36 138 52 34 139 53 37 140 61 38 141 53 37 142 60 39 143 53 37 144 59 40 145 60 39 146 58 41 147 53 37 148 54 42 149 54 42 150 56 43 151 58 41 152 56 43 153 57 44 154 58 41 155 58 41 156 59 40 157 53 37 158 62 36 159 53 37 160 61 38 161 70 45 162 64 46 163 65 47 164 72 48 165 70 45 166 65 47 167 70 45 168 72 48 169 69 49 170 65 47 171 71 50 172 72 48 173 71 50 174 65 47 175 66 51 176 75 52 177 66 51 178 67 53 179 73 54 180 67 53 181 68 55 182 75 52 183 76 56 184 66 51 185 67 53 186 74 57 187 75 52 188 67 53 189 73 54 190 74 57 191 71 50 192 66 51 193 76 56 194 87 58 195 84 58 196 86 58 197 88 59 198 83 59 199 87 59 200 89 60 201 82 61 202 88 62 203 84 63 204 85 63 205 86 63 206 87 64 207 83 64 208 84 64 209 83 65 210 88 65 211 82 65 212 82 61 213 89 60 214 81 66 215 81 66 216 89 60 217 80 67 218 94 68 219 90 69 220 93 70 221 91 71 222 93 70 223 90 69 224 93 70 225 91 71 226 92 72 227 79 73 228 80 67 229 89 60 230 79 73 231 89 60 232 78 74 233 77 75 234 78 74 235 89 60 236 77 75 237 90 69 238 94 68 239 90 69 240 77 75 241 89 60 242

+
+
+
+ + + + 0 58.0357 216.748 0 58.1288 216.559 0 58.1866 216.507 0 58.2125 216.499 0 58.2348 216.5 0 58.3935 216.547 0 58.413 216.558 0 58.4299 216.58 0 58.4503 216.654 0 58.4246 216.864 0 58.1111 218.563 0 57.6844 220.231 0 57.1444 221.869 0 56.4911 223.476 0 56.0003 223.586 0 57.4615 219.797 0 57.8595 218.18 0 57.4615 219.797 0 57.8595 218.18 0 58.0357 216.748 22.9258 58.0357 216.748 45.8515 58.0357 216.748 49.6558 57.1573 220.739 43.4732 56.9196 221.395 37.2784 56.7096 221.936 24.8661 56.3736 222.745 12.4374 56.142 223.274 0 56.0003 223.586 46.1044 57.9821 217.385 46.4843 57.9003 217.952 47.4093 57.695 218.938 48.4239 57.4593 219.805 49.4815 57.2011 220.611 0 58.0357 216.748 45.8515 58.0357 216.748 0 58.1288 216.559 0 58.1866 216.507 0 58.2125 216.499 0 58.2348 216.5 22.9258 58.0357 216.748 22.4432 58.2348 216.5 44.8864 58.2348 216.5 45.0125 58.2093 216.499 45.1383 58.1837 216.509 45.3865 58.1328 216.554 45.5081 58.1076 216.588 45.6272 58.0828 216.63 45.7426 58.0587 216.683 0 58.2348 216.5 44.8864 58.2348 216.5 0 58.3935 216.547 22.4432 58.2348 216.5 22.0427 58.3935 216.547 44.0854 58.3935 216.547 44.4896 58.3142 216.524 0 58.3935 216.547 44.0854 58.3935 216.547 0 58.413 216.558 0 58.4299 216.58 0 58.4503 216.654 0 58.4246 216.864 22.0427 58.3935 216.547 21.9623 58.4246 216.864 43.9247 58.4246 216.864 43.8637 58.4364 216.819 43.811 58.4465 216.764 43.7897 58.4506 216.727 43.7827 58.4519 216.684 43.7877 58.451 216.662 43.7981 58.449 216.643 43.8293 58.443 216.613 43.8891 58.4315 216.583 43.9535 58.4191 216.564 0 58.4246 216.864 0 58.1111 218.563 0 57.6844 220.231 0 57.1444 221.869 0 56.4911 223.476 43.9247 58.4246 216.864 21.9623 58.4246 216.864 48.1977 57.5128 220.793 47.9724 57.5656 220.625 46.8847 57.8125 219.777 45.8334 58.0396 218.879 44.8364 58.2449 217.914 12.0699 56.6247 223.172 24.1321 56.8354 222.668 36.1797 57.1309 221.905 42.1939 57.3112 221.401 49.6558 57.1573 220.739 45.8515 58.0357 216.748 45.7426 58.0587 216.683 45.6272 58.0828 216.63 45.5081 58.1076 216.588 45.3865 58.1328 216.554 45.1383 58.1837 216.509 45.0125 58.2093 216.499 44.8864 58.2348 216.5 44.4896 58.3142 216.524 44.0854 58.3935 216.547 43.9535 58.4191 216.564 43.8891 58.4315 216.583 43.8293 58.443 216.613 43.7981 58.449 216.643 43.7877 58.451 216.662 43.7827 58.4519 216.684 43.7897 58.4506 216.727 43.811 58.4465 216.764 43.8637 58.4364 216.819 43.9247 58.4246 216.864 44.8364 58.2449 217.914 45.8334 58.0396 218.879 46.8847 57.8125 219.777 47.9724 57.5656 220.625 48.1977 57.5128 220.793 49.4815 57.2011 220.611 48.4239 57.4593 219.805 47.4093 57.695 218.938 46.4843 57.9003 217.952 46.1044 57.9821 217.385 + + + + + + + + + + -1 0 0 0.00100708 -0.9540534 -0.2996352 0.001800596 -0.933056 -0.3597269 0.001953184 -0.932582 -0.3609532 0.001190185 -0.9365929 -0.3504174 5.4934e-4 -0.9422702 -0.3348531 0.001312255 -0.9467579 -0.3219441 0.001739561 -0.9454193 -0.325852 0 -0.9553663 -0.2954238 0.001586973 -0.9330319 -0.3597904 2.13632e-4 -0.9835323 -0.1807328 0 -0.9688931 -0.2474802 0 -0.9925169 -0.1221075 7.01935e-4 -0.9938784 -0.1104784 9.15571e-5 -0.9925395 -0.1219235 -3.05187e-5 -0.98264 -0.1855229 0 -0.9964796 -0.08383595 0 -0.9382144 -0.3460547 0 -0.9427219 -0.3335799 -2.13632e-4 -0.8971329 -0.4417607 -9.15574e-5 -0.7972818 -0.6036074 -1.22077e-4 -0.9048014 -0.4258338 -6.10384e-5 -0.8554532 -0.5178803 0 -0.7926195 -0.6097167 0 -0.1270203 -0.9919002 0 -0.3399512 -0.9404431 0 -0.4936192 -0.8696781 0 0.04510724 -0.9989823 0 0.0421167 -0.9991127 0 -0.6441414 -0.7649065 0 0.03946095 -0.9992212 0 0.2839642 -0.958835 0 0.2839401 -0.9588421 0 0.2893622 -0.9572197 2.07187e-5 0.2839828 -0.9588294 0 0.278516 -0.9604316 0 0.6554289 -0.755257 3.05192e-5 0.5275855 -0.8495021 0 0.4912998 -0.8709906 0 0.5871841 -0.8094534 -3.05194e-5 0.8952254 -0.4456136 0 0.5530652 -0.8331381 0 0.9467586 -0.3219443 0 0.8542528 -0.519858 -1.52594e-4 0.997296 -0.07348942 0 0.9858012 -0.1679167 0 0.9968372 -0.07947105 -3.05189e-5 0.9999824 -0.005951166 -1.22077e-4 0.9969385 0.07819002 -2.13635e-4 0.9925769 0.1216191 -1.52596e-4 0.9872974 0.1588831 0 0.9768475 0.2139372 -3.05186e-5 0.9718049 0.2357869 0 0.9672809 0.2537075 -1.22078e-4 0.9766857 0.2146743 -3.35708e-4 0.984264 0.1767042 0 0.9834033 0.1814335 3.05191e-5 0.980305 0.1974893 -2.44153e-4 0.9598269 0.2805929 0 0.9623955 0.2716522 0 0.9856712 0.1686783 -9.15569e-5 0.9716634 0.2363695 -6.10382e-5 0.9553093 0.2956081 0 0.9413096 0.3375445 -4.88303e-4 0.9386413 0.3448948 0 0.9324342 0.36134 -5.18816e-4 0.9270938 0.3748293 -7.62975e-4 0.9263738 0.3766045 -1.22076e-4 0.9533514 0.3018631 -2.4415e-4 0.949743 0.3130307 0.1977967 0.9802313 0.004813611 0.1866172 0.9824324 -7.49091e-4 0.1899452 0.9817948 -7.04806e-5 0.1884164 0.9820892 -3.05788e-4 0.1888216 0.9820115 1.38839e-4 0.2010613 0.9795787 1.83116e-4 0.1962687 0.98055 7.3246e-4 0.1920237 0.9813901 5.79855e-4 0.1908003 0.9816269 0.002003848 0.189017 0.9819738 2.49527e-4 0.1891803 0.9819424 2.30146e-4 0.1906293 0.981662 5.24828e-4 0.1960873 0.9805589 0.007355153 0.191906 0.9814128 0.001037657 0.1967285 0.9804217 0.008444845 0.1988034 0.9800394 6.10388e-5 0.1994 0.9799182 1.45555e-4 0.2286157 0.9735168 1.22075e-4 0.2180579 0.9759351 0.001190185 0.2190044 0.9757233 -0.00100708 0.2083845 0.978046 0.00149542 0.2094851 0.9778111 -0.001220762 0.2262654 0.9740643 -0.001647949 0.2371693 0.9714224 0.009450435 0.2325267 0.9725897 8.8506e-4 0.2369165 0.9715012 0.007477045 0.2032907 0.9791171 0.001620173 0.2025993 0.979261 0.001197338 0.2008116 0.9796298 4.89935e-4 0.2035706 0.9790591 0.001556992 0.2049856 0.9787608 0.002902328 0.2036492 0.9790422 0.001817464 0.2041081 0.978944 0.002929747 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 0 58.0357 216.748 0 58.1288 216.559 0 58.1866 216.507 0 58.2125 216.499 0 58.2348 216.5 0 58.3935 216.547 0 58.413 216.558 0 58.4299 216.58 0 58.4503 216.654 0 58.4246 216.864 0 58.1111 218.563 0 57.6844 220.231 0 57.1444 221.869 0 56.4911 223.476 0 56.0003 223.586 0 57.4615 219.797 0 57.8595 218.18 0 57.4615 219.797 0 57.8595 218.18 0 58.0357 216.748 -22.9258 58.0357 216.748 -45.8515 58.0357 216.748 -49.6558 57.1573 220.739 -43.4732 56.9196 221.395 -37.2784 56.7096 221.936 -24.8661 56.3736 222.745 -12.4374 56.142 223.274 0 56.0003 223.586 -46.1044 57.9821 217.385 -46.4843 57.9003 217.952 -47.4093 57.695 218.938 -48.4239 57.4593 219.805 -49.4815 57.2011 220.611 0 58.0357 216.748 -45.8515 58.0357 216.748 0 58.1288 216.559 0 58.1866 216.507 0 58.2125 216.499 0 58.2348 216.5 -22.9258 58.0357 216.748 -22.4432 58.2348 216.5 -44.8864 58.2348 216.5 -45.0125 58.2093 216.499 -45.1383 58.1837 216.509 -45.3865 58.1328 216.554 -45.5081 58.1076 216.588 -45.6272 58.0828 216.63 -45.7426 58.0587 216.683 0 58.2348 216.5 -44.8864 58.2348 216.5 0 58.3935 216.547 -22.4432 58.2348 216.5 -22.0427 58.3935 216.547 -44.0854 58.3935 216.547 -44.4896 58.3142 216.524 0 58.3935 216.547 -44.0854 58.3935 216.547 0 58.413 216.558 0 58.4299 216.58 0 58.4503 216.654 0 58.4246 216.864 -22.0427 58.3935 216.547 -21.9623 58.4246 216.864 -43.9247 58.4246 216.864 -43.8637 58.4364 216.819 -43.811 58.4465 216.764 -43.7897 58.4506 216.727 -43.7827 58.4519 216.684 -43.7877 58.451 216.662 -43.7981 58.449 216.643 -43.8293 58.443 216.613 -43.8891 58.4315 216.583 -43.9535 58.4191 216.564 0 58.4246 216.864 0 58.1111 218.563 0 57.6844 220.231 0 57.1444 221.869 0 56.4911 223.476 -43.9247 58.4246 216.864 -21.9623 58.4246 216.864 -48.1977 57.5128 220.793 -47.9724 57.5656 220.625 -46.8847 57.8125 219.777 -45.8334 58.0396 218.879 -44.8364 58.2449 217.914 -12.0699 56.6247 223.172 -24.1321 56.8354 222.668 -36.1797 57.1309 221.905 -42.1939 57.3112 221.401 -49.6558 57.1573 220.739 -45.8515 58.0357 216.748 -45.7426 58.0587 216.683 -45.6272 58.0828 216.63 -45.5081 58.1076 216.588 -45.3865 58.1328 216.554 -45.1383 58.1837 216.509 -45.0125 58.2093 216.499 -44.8864 58.2348 216.5 -44.4896 58.3142 216.524 -44.0854 58.3935 216.547 -43.9535 58.4191 216.564 -43.8891 58.4315 216.583 -43.8293 58.443 216.613 -43.7981 58.449 216.643 -43.7877 58.451 216.662 -43.7827 58.4519 216.684 -43.7897 58.4506 216.727 -43.811 58.4465 216.764 -43.8637 58.4364 216.819 -43.9247 58.4246 216.864 -44.8364 58.2449 217.914 -45.8334 58.0396 218.879 -46.8847 57.8125 219.777 -47.9724 57.5656 220.625 -48.1977 57.5128 220.793 -49.4815 57.2011 220.611 -48.4239 57.4593 219.805 -47.4093 57.695 218.938 -46.4843 57.9003 217.952 -46.1044 57.9821 217.385 + + + + + + + + + + 1 0 0 -0.00100708 -0.9540534 -0.2996352 -0.001953184 -0.932582 -0.3609532 -0.001800596 -0.933056 -0.3597269 -0.001190185 -0.9365929 -0.3504174 -5.4934e-4 -0.9422702 -0.3348531 -0.001312255 -0.9467579 -0.3219441 -0.001739561 -0.9454193 -0.325852 0 -0.9553663 -0.2954238 -0.001586973 -0.9330319 -0.3597904 -2.13632e-4 -0.9835323 -0.1807328 0 -0.9688931 -0.2474802 -7.01935e-4 -0.9938784 -0.1104784 0 -0.9925169 -0.1221075 -9.15571e-5 -0.9925395 -0.1219235 3.05187e-5 -0.98264 -0.1855229 0 -0.9964796 -0.08383595 0 -0.9382144 -0.3460547 2.13632e-4 -0.8971329 -0.4417607 0 -0.9427219 -0.3335799 9.15574e-5 -0.7972818 -0.6036074 1.22077e-4 -0.9048014 -0.4258338 6.10384e-5 -0.8554532 -0.5178803 0 -0.7926195 -0.6097167 0 -0.1270203 -0.9919002 0 -0.4936192 -0.8696781 0 -0.3399512 -0.9404431 0 0.0421167 -0.9991127 0 0.04510724 -0.9989823 0 -0.6441414 -0.7649065 0 0.03946095 -0.9992212 0 0.2839401 -0.9588421 0 0.2839642 -0.958835 0 0.2893622 -0.9572197 -2.07187e-5 0.2839828 -0.9588294 0 0.278516 -0.9604316 0 0.6554289 -0.755257 0 0.4912998 -0.8709906 -3.05192e-5 0.5275855 -0.8495021 0 0.5871841 -0.8094534 3.05194e-5 0.8952254 -0.4456136 0 0.5530652 -0.8331381 0 0.8542528 -0.519858 0 0.9467586 -0.3219443 0 0.9858012 -0.1679167 1.52594e-4 0.997296 -0.07348942 0 0.9968372 -0.07947105 3.05189e-5 0.9999824 -0.005951166 1.22077e-4 0.9969385 0.07819002 2.13635e-4 0.9925769 0.1216191 1.52596e-4 0.9872974 0.1588831 0 0.9768475 0.2139372 3.05186e-5 0.9718049 0.2357869 0 0.9672809 0.2537075 1.22078e-4 0.9766857 0.2146743 0 0.9834033 0.1814335 3.35708e-4 0.984264 0.1767042 -3.05191e-5 0.980305 0.1974893 2.44153e-4 0.9598269 0.2805929 0 0.9623955 0.2716522 0 0.9856712 0.1686783 9.15569e-5 0.9716634 0.2363695 6.10382e-5 0.9553093 0.2956081 0 0.9413096 0.3375445 0 0.9324342 0.36134 4.88303e-4 0.9386413 0.3448948 5.18816e-4 0.9270938 0.3748293 7.62975e-4 0.9263738 0.3766045 1.22076e-4 0.9533514 0.3018631 2.4415e-4 0.949743 0.3130307 -0.1977967 0.9802313 0.004813611 -0.1866172 0.9824324 -7.49091e-4 -0.1899452 0.9817948 -7.04806e-5 -0.1884164 0.9820892 -3.05788e-4 -0.1888216 0.9820115 1.38839e-4 -0.2010613 0.9795787 1.83116e-4 -0.1920237 0.9813901 5.79855e-4 -0.1962687 0.98055 7.3246e-4 -0.1908003 0.9816269 0.002003848 -0.189017 0.9819738 2.49527e-4 -0.1891803 0.9819424 2.30146e-4 -0.1906293 0.981662 5.24828e-4 -0.1960873 0.9805589 0.007355153 -0.191906 0.9814128 0.001037657 -0.1967285 0.9804217 0.008444845 -0.1988034 0.9800394 6.10388e-5 -0.1994 0.9799182 1.45555e-4 -0.2286157 0.9735168 1.22075e-4 -0.2190044 0.9757233 -0.00100708 -0.2180579 0.9759351 0.001190185 -0.2083845 0.978046 0.00149542 -0.2094851 0.9778111 -0.001220762 -0.2262654 0.9740643 -0.001647949 -0.2371693 0.9714224 0.009450435 -0.2325267 0.9725897 8.8506e-4 -0.2369165 0.9715012 0.007477045 -0.2032907 0.9791171 0.001620173 -0.2025993 0.979261 0.001197338 -0.2008116 0.9796298 4.89935e-4 -0.2035706 0.9790591 0.001556992 -0.2049856 0.9787608 0.002902328 -0.2036492 0.9790422 0.001817464 -0.2041081 0.978944 0.002929747 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 0 56.1807 217.147 0 56.2738 216.958 0 56.3315 216.907 0 56.3574 216.898 0 56.3797 216.9 0 56.5384 216.947 0 56.5579 216.958 0 56.5749 216.979 0 56.5952 217.054 0 56.5695 217.263 0 56.257 218.958 0 55.8319 220.622 0 55.294 222.255 0 54.6436 223.858 0 54.164 223.944 0 55.6064 220.197 0 56.0045 218.579 0 55.6064 220.197 0 56.0045 218.579 0 56.1807 217.147 -26.5963 56.1807 217.147 -53.1927 56.1807 217.147 -55.2829 55.5133 220.5 -48.4094 55.2303 221.342 -41.5161 54.9796 222.017 -34.6104 54.7632 222.561 -27.6962 54.5809 222.999 -13.8537 54.3146 223.611 0 54.164 223.944 -53.5801 56.0626 218.246 -54.2014 55.8681 219.22 0 56.1807 217.147 -53.1927 56.1807 217.147 0 56.2738 216.958 0 56.3315 216.907 0 56.3574 216.898 0 56.3797 216.9 -26.5963 56.1807 217.147 -26.2607 56.3797 216.9 -52.5213 56.3797 216.9 -52.7034 56.3264 216.91 -52.8797 56.2743 216.957 -53.0457 56.2249 217.035 0 56.3797 216.9 -52.5213 56.3797 216.9 0 56.5384 216.947 -26.2607 56.3797 216.9 -25.9846 56.5384 216.947 -51.9692 56.5384 216.947 0 56.5384 216.947 -51.9692 56.5384 216.947 0 56.5579 216.958 0 56.5749 216.979 0 56.5952 217.054 0 56.5695 217.263 -25.9846 56.5384 216.947 -25.9295 56.5695 217.263 -51.859 56.5695 217.263 -51.7845 56.5905 217.17 -51.7635 56.5964 217.112 -51.7619 56.5968 217.081 -51.7689 56.5949 217.05 -51.8049 56.5847 217.002 -51.8563 56.5703 216.972 0 56.5695 217.263 0 56.257 218.958 0 55.8319 220.622 0 55.294 222.255 0 54.6436 223.858 -51.859 56.5695 217.263 -25.9295 56.5695 217.263 -54.2478 55.8532 220.548 -52.9539 56.2518 218.979 -13.5918 54.7883 223.527 -27.1732 55.0346 222.932 -40.7341 55.39 221.989 -47.4997 55.6085 221.346 -53.1927 56.1807 217.147 -53.0457 56.2249 217.035 -52.8797 56.2743 216.957 -52.7034 56.3264 216.91 -52.5213 56.3797 216.9 -51.9692 56.5384 216.947 -51.8563 56.5703 216.972 -51.8049 56.5847 217.002 -51.7689 56.5949 217.05 -51.7619 56.5968 217.081 -51.7635 56.5964 217.112 -51.7845 56.5905 217.17 -51.859 56.5695 217.263 -52.9539 56.2518 218.979 -54.2478 55.8532 220.548 -55.2829 55.5133 220.5 -54.2014 55.8681 219.22 -53.5801 56.0626 218.246 + + + + + + + + + + 1 0 0 -0.001831114 -0.9331008 -0.3596103 -9.46092e-4 -0.9541488 -0.2993313 -0.001922667 -0.9326556 -0.3607631 -0.001403868 -0.9350985 -0.3543853 -7.93499e-4 -0.939778 -0.3417846 -1.52594e-4 -0.9479145 -0.3185249 9.15579e-5 -0.9618159 -0.2736971 -0.00149542 -0.9332439 -0.3592404 1.52597e-4 -0.9695128 -0.245041 -1.83114e-4 -0.9835376 -0.1807033 -3.35709e-4 -0.9933023 -0.1155449 0 -0.9925169 -0.1221075 9.15573e-5 -0.9865905 -0.163216 0 -0.9942787 -0.1068165 0 -0.9179157 -0.3967757 1.83116e-4 -0.8971149 -0.4417974 0 -0.9302133 -0.3670192 9.15558e-5 -0.7946436 -0.6070762 0 -0.8262158 -0.5633539 0 -0.6316893 -0.7752217 0 -0.1222278 -0.9925022 0 -0.5048138 -0.8632283 -1.52597e-4 -0.1049866 -0.9944736 0 0.08926713 -0.9960078 0 -0.1845465 -0.9828238 0 0.2840319 -0.9588149 0 0.2840392 -0.9588128 0 0.2840319 -0.9588149 0 0.2840349 -0.958814 -6.10378e-5 0.5734809 -0.8192191 0 0.6456646 -0.7636213 0 0.4909305 -0.8711987 0 0.6751481 -0.7376822 3.05187e-5 0.8905674 -0.4548513 0 0.6166604 -0.7872292 0 0.9271767 -0.3746246 1.22076e-4 0.9974816 -0.07092601 0 0.9882936 -0.1525639 0 0.9996563 -0.02621597 9.15566e-5 0.9980583 0.06228893 3.05192e-5 0.9839387 0.1785067 1.52596e-4 0.9925132 0.1221376 0 0.9754491 0.2202253 0 0.9754214 0.220348 0 0.9833632 0.181651 0 0.9767206 0.2145159 0 0.9834305 0.1812859 0 0.9740372 0.2263882 0 0.9832956 0.182016 0 0.9677526 0.2519026 9.15572e-5 0.9599163 0.2802872 3.66229e-4 0.9478314 0.3187719 4.27272e-4 0.9388076 0.344442 4.57791e-4 0.9275456 0.37371 7.01948e-4 0.9266319 0.3759692 0 0.9557223 0.2942703 -9.15564e-5 0.9350652 0.3544757 -0.2683574 0.9633182 -0.001572966 -0.2708286 0.9626276 -1.10317e-4 -0.2764456 0.9610286 0.00137335 -0.2713174 0.96249 0 -0.2748216 0.9614943 0.001281738 -0.2770388 0.960852 0.00360167 -0.269037 0.9631294 -0.001041114 -0.2719138 0.9623215 5.35615e-4 -0.2798584 0.9600027 0.008606314 -0.2806862 0.9597412 0.01059019 -0.2912425 0.9566475 0.001861631 -0.2975623 0.9547018 0.001129209 -0.2895336 0.957167 0.001312315 -0.3065337 0.9518598 0 -0.3119671 0.9500929 -2.13634e-4 -0.2807149 0.9597347 0.01040697 -0.2806225 0.9597625 0.01034593 -0.2819638 0.9594216 0.002594053 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

15 0 0 11 0 1 12 0 2 12 0 3 13 0 4 15 0 5 14 0 6 15 0 7 13 0 8 10 0 9 11 0 10 15 0 11 16 0 12 9 0 13 10 0 14 9 0 15 7 0 16 8 0 17 7 0 18 9 0 19 6 0 20 15 0 21 16 0 22 10 0 23 1 0 24 2 0 25 0 0 26 16 0 27 0 0 28 4 0 29 6 0 30 9 0 31 5 0 32 4 0 33 0 0 34 3 0 35 16 0 36 4 0 37 5 0 38 2 0 39 3 0 40 0 0 41 16 0 42 5 0 43 9 0 44 26 1 45 17 2 46 27 3 47 17 2 48 26 1 49 25 4 50 17 2 51 25 4 52 24 5 53 17 2 54 24 5 55 23 6 56 22 7 57 17 2 58 23 6 59 28 8 60 27 3 61 17 2 62 30 9 63 18 10 64 17 2 65 20 11 66 19 12 67 18 10 68 29 13 69 18 10 70 30 9 71 29 13 72 21 14 73 20 11 74 29 13 75 20 11 76 18 10 77 22 7 78 30 9 79 17 2 80 42 15 81 31 16 82 37 17 83 33 18 84 31 16 85 42 15 86 32 17 87 42 15 88 37 17 89 41 19 90 33 18 91 42 15 92 41 19 93 40 20 94 33 18 95 40 20 96 35 21 97 34 22 98 38 23 99 36 24 100 35 21 101 39 25 102 38 23 103 40 20 104 35 21 105 40 20 106 38 23 107 33 18 108 40 20 109 34 22 110 46 26 111 47 26 112 45 26 113 46 27 114 45 27 115 43 27 116 44 28 117 48 28 118 47 28 119 44 29 120 47 29 121 46 29 122 55 30 123 51 31 124 49 32 125 63 33 126 52 34 127 51 31 128 63 33 129 55 30 130 50 35 131 51 31 132 55 30 133 63 33 134 63 33 135 62 36 136 52 34 137 62 36 138 53 37 139 52 34 140 61 38 141 60 39 142 53 37 143 53 37 144 60 39 145 59 40 146 58 41 147 54 42 148 53 37 149 54 42 150 58 41 151 56 43 152 56 43 153 58 41 154 57 44 155 58 41 156 53 37 157 59 40 158 62 36 159 61 38 160 53 37 161 70 45 162 65 46 163 64 47 164 72 48 165 65 46 166 70 45 167 70 45 168 69 49 169 72 48 170 65 46 171 72 48 172 71 50 173 71 50 174 66 51 175 65 46 176 75 52 177 67 53 178 66 51 179 73 54 180 68 55 181 67 53 182 75 52 183 66 51 184 76 56 185 67 53 186 75 52 187 74 57 188 67 53 189 74 57 190 73 54 191 71 50 192 76 56 193 66 51 194 87 58 195 86 58 196 84 58 197 88 59 198 87 59 199 83 59 200 89 60 201 88 61 202 82 62 203 84 63 204 86 63 205 85 63 206 87 64 207 84 64 208 83 64 209 83 65 210 82 65 211 88 65 212 82 62 213 81 66 214 89 60 215 81 66 216 80 67 217 89 60 218 94 68 219 93 69 220 90 70 221 91 71 222 90 70 223 93 69 224 93 69 225 92 72 226 91 71 227 79 73 228 89 60 229 80 67 230 79 73 231 78 74 232 89 60 233 77 75 234 89 60 235 78 74 236 77 75 237 94 68 238 90 70 239 90 70 240 89 60 241 77 75 242

+
+
+
+ + + + 0 54.31 217.466 0 54.4031 217.277 0 54.4609 217.226 0 54.4868 217.217 0 54.5091 217.218 0 54.6678 217.266 0 54.6873 217.277 0 54.7042 217.298 0 54.7246 217.372 0 54.6989 217.582 0 53.9635 220.933 0 52.7795 224.162 0 52.3098 224.227 0 53.7358 220.515 0 54.1338 218.898 0 53.7358 220.515 0 54.1338 218.898 0 54.31 217.466 -29.2619 54.31 217.466 -58.5239 54.31 217.466 -59.709 53.807 220.27 -52.2958 53.4894 221.288 -44.854 53.205 222.083 -37.3957 52.9593 222.716 -29.9262 52.7535 223.215 -14.9699 52.4608 223.892 0 52.3098 224.227 -58.7856 54.2021 218.5 -59.2275 54.0161 219.459 0 54.31 217.466 -58.5239 54.31 217.466 0 54.4031 217.277 0 54.4609 217.226 0 54.4868 217.217 0 54.5091 217.218 -29.2619 54.31 217.466 -29.0145 54.5091 217.218 -58.0291 54.5091 217.218 -58.17 54.453 217.23 -58.3031 54.3996 217.281 -58.423 54.3511 217.36 0 54.5091 217.218 -58.0291 54.5091 217.218 0 54.6678 217.266 -29.0145 54.5091 217.218 -28.8119 54.6678 217.266 -57.6237 54.6678 217.266 0 54.6678 217.266 -57.6237 54.6678 217.266 0 54.6873 217.277 0 54.7042 217.298 0 54.7246 217.372 0 54.6989 217.582 -28.8119 54.6678 217.266 -28.7715 54.6989 217.582 -57.543 54.6989 217.582 -57.4904 54.7191 217.494 -57.4751 54.725 217.444 -57.4727 54.7259 217.391 -57.4902 54.7192 217.339 -57.5271 54.705 217.299 0 54.6989 217.582 0 53.9635 220.933 0 52.7795 224.162 -57.543 54.6989 217.582 -28.7715 54.6989 217.582 -58.9451 54.1356 220.313 -58.79 54.2004 220.063 -58.114 54.4754 218.854 -14.7758 52.9268 223.825 -29.5387 53.1999 223.16 -36.9122 53.3866 222.674 -44.2753 53.6055 222.061 -51.6233 53.8555 221.293 -58.5239 54.31 217.466 -58.423 54.3511 217.36 -58.3031 54.3996 217.281 -58.17 54.453 217.23 -58.0291 54.5091 217.218 -57.6237 54.6678 217.266 -57.5271 54.705 217.299 -57.4902 54.7192 217.339 -57.4727 54.7259 217.391 -57.4751 54.725 217.444 -57.4904 54.7191 217.494 -57.543 54.6989 217.582 -58.114 54.4754 218.854 -58.79 54.2004 220.063 -58.9451 54.1356 220.313 -59.709 53.807 220.27 -59.2275 54.0161 219.459 -58.7856 54.2021 218.5 + + + + + + + + + + 1 0 0 -0.001709043 -0.9333513 -0.3589602 -0.001678526 -0.9334207 -0.3587802 -7.3247e-4 -0.923828 -0.3828072 -9.76604e-4 -0.9542643 -0.2989629 -0.001159727 -0.936603 -0.3503906 -4.883e-4 -0.9427252 -0.3335703 6.10382e-5 -0.953996 -0.2998195 -9.15561e-5 -0.9668326 -0.255411 -3.66229e-4 -0.9934259 -0.114477 0 -0.9925169 -0.1221075 -1.52594e-4 -0.9835268 -0.1807624 6.10378e-5 -0.9877743 -0.1558905 -3.05186e-5 -0.9734525 -0.2288897 0 -0.9945989 -0.1037935 0 -0.917106 -0.3986436 1.52594e-4 -0.8971329 -0.4417607 0 -0.9323747 -0.3614932 9.15572e-5 -0.7943804 -0.6074207 0 -0.8286969 -0.5596978 0 -0.6398242 -0.7685214 0 -0.1441126 -0.9895613 0 -0.5043529 -0.8634976 -1.22078e-4 -0.1385281 -0.9903586 0 0.04510724 -0.9989823 0 -0.2090226 -0.9779108 0 0.2895246 -0.9571706 0 0.2895344 -0.9571677 0 0.2895237 -0.9571709 0 0.28953 -0.957169 -9.15585e-5 0.6129534 -0.7901191 0 0.6466397 -0.7627956 0 0.4907393 -0.8713065 0 0.74857 -0.6630558 3.05189e-5 0.8901138 -0.4557385 0 0.6635091 -0.7481682 0 0.9648512 -0.2627972 9.1556e-5 0.9972894 -0.0735805 1.52597e-4 0.9925842 0.121559 3.05187e-5 0.9829782 0.1837228 0 0.9746636 0.2236757 0 0.9981262 -0.06119072 9.15564e-5 0.9973853 0.07226854 0 0.9746354 0.2237983 7.62967e-4 0.9601483 0.2794901 8.24004e-4 0.9783066 0.2071607 0.00262463 0.970017 0.243023 0.001464843 0.9785828 0.2058488 0 0.9849143 0.1730436 0.003174006 0.9675311 0.2527325 -6.10386e-5 0.9623351 0.271866 0 0.9767603 0.2143349 0.001770079 0.9384365 0.3454474 0.001495361 0.9388766 0.3442506 0.00137335 0.9401761 0.3406864 1.52594e-4 0.9510906 0.3089122 7.32458e-4 0.9443525 0.3289349 -0.3593327 0.9332095 9.42636e-5 -0.3669664 0.9302342 3.05195e-4 -0.3749292 0.9270533 3.35712e-4 -0.362782 0.9318739 4.57788e-4 -0.3586362 0.9334775 0 -0.3568224 0.9341723 -2.11638e-4 -0.3591821 0.9332675 1.55389e-4 -0.3593001 0.9332221 -6.38756e-5 -0.3646663 0.9311372 0.001515388 -0.3709908 0.9286367 0 -0.3900004 0.9208146 4.27264e-4 -0.3915864 0.9201411 7.32451e-4 -0.3854603 0.9227242 -6.40908e-4 -0.3952497 0.9185712 0.002178311 -0.3787088 0.9255157 5.4934e-4 -0.3723151 0.9281065 3.83909e-5 -0.3765319 0.9264034 7.89658e-4 -0.3747735 0.9271163 3.77927e-4 -0.3774276 0.9260384 0.001113057 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

13 0 0 10 0 1 11 0 2 12 0 3 13 0 4 11 0 5 14 0 6 9 0 7 10 0 8 7 0 9 8 0 10 9 0 11 9 0 12 6 0 13 7 0 14 5 0 15 6 0 16 9 0 17 13 0 18 14 0 19 10 0 20 1 0 21 2 0 22 0 0 23 14 0 24 0 0 25 4 0 26 4 0 27 5 0 28 14 0 29 0 0 30 3 0 31 4 0 32 0 0 33 2 0 34 3 0 35 9 0 36 14 0 37 5 0 38 24 1 39 26 2 40 25 3 41 15 4 42 26 2 43 24 1 44 23 5 45 15 4 46 24 1 47 22 6 48 15 4 49 23 5 50 22 6 51 21 7 52 15 4 53 21 7 54 20 8 55 15 4 56 18 9 57 17 10 58 16 11 59 27 12 60 18 9 61 16 11 62 28 13 63 15 4 64 20 8 65 18 9 66 27 12 67 19 14 68 27 12 69 16 11 70 28 13 71 16 11 72 15 4 73 28 13 74 40 15 75 29 16 76 35 17 77 31 18 78 29 16 79 40 15 80 30 17 81 40 15 82 35 17 83 39 19 84 31 18 85 40 15 86 39 19 87 38 20 88 31 18 89 38 20 90 33 21 91 32 22 92 36 23 93 34 24 94 33 21 95 37 25 96 36 23 97 38 20 98 33 21 99 38 20 100 36 23 101 31 18 102 38 20 103 32 22 104 44 26 105 45 26 106 43 26 107 44 27 108 43 27 109 41 27 110 42 28 111 46 28 112 45 28 113 42 29 114 45 29 115 44 29 116 53 30 117 49 31 118 47 32 119 60 33 120 50 34 121 49 31 122 60 33 123 53 30 124 48 35 125 49 31 126 53 30 127 60 33 128 60 33 129 59 36 130 50 34 131 59 36 132 51 37 133 50 34 134 52 38 135 51 37 136 56 39 137 54 40 138 52 38 139 56 39 140 51 37 141 58 41 142 57 42 143 54 40 144 56 39 145 55 43 146 56 39 147 51 37 148 57 42 149 59 36 150 58 41 151 51 37 152 62 44 153 65 45 154 67 46 155 68 47 156 65 45 157 64 48 158 65 45 159 68 47 160 67 46 161 67 46 162 66 49 163 73 50 164 61 51 165 65 45 166 62 44 167 69 52 168 63 53 169 62 44 170 70 54 171 69 52 172 62 44 173 72 55 174 62 44 175 73 50 176 62 44 177 72 55 178 71 56 179 62 44 180 71 56 181 70 54 182 67 46 183 73 50 184 62 44 185 84 57 186 83 57 187 81 57 188 78 58 189 86 59 190 85 60 191 85 61 192 84 61 193 80 61 194 81 62 195 83 62 196 82 62 197 84 63 198 81 63 199 80 63 200 80 64 201 79 64 202 85 64 203 79 65 204 78 65 205 85 65 206 78 58 207 77 66 208 86 59 209 90 67 210 88 68 211 87 69 212 88 70 213 90 70 214 89 70 215 91 71 216 90 67 217 87 69 218 76 72 219 86 72 220 77 72 221 75 73 222 74 73 223 86 73 224 86 74 225 76 74 226 75 74 227 74 75 228 91 75 229 86 75 230 87 69 231 86 59 232 91 71 233

+
+
+
+ + + + 0 42.7829 219.336 -69.8001 42.7829 219.336 0 42.9518 217.943 -69.8001 42.9518 217.943 -34.9 42.9518 217.943 -69.8001 42.624 220.079 -61.1476 42.2565 221.384 -52.4553 41.9073 222.397 -43.7372 41.6099 223.171 -35.0018 41.373 223.745 -26.2581 41.1988 224.15 -17.508 41.0838 224.41 0 41.0148 224.564 0 42.9518 217.943 -69.8001 42.9518 217.943 0 43.0449 217.753 -69.8001 43.0449 217.753 0 43.1026 217.702 -69.8001 43.1026 217.702 0 43.1285 217.693 -69.8001 43.1285 217.693 0 43.1509 217.695 -69.8001 43.1509 217.695 -34.9 42.9518 217.943 -34.9 43.1509 217.695 0 43.1509 217.695 -69.8001 43.1509 217.695 0 43.2302 217.719 -69.8001 43.2302 217.719 0 43.3095 217.742 -69.8001 43.3095 217.742 -34.9 43.1509 217.695 -34.9 43.3095 217.742 0 43.3095 217.742 -69.8001 43.3095 217.742 0 43.3291 217.753 -69.8001 43.3291 217.753 0 43.346 217.775 -69.8001 43.346 217.775 0 43.3663 217.849 -69.8001 43.3663 217.849 0 43.3407 218.059 -69.8001 43.3407 218.059 -34.9 43.3095 217.742 -34.9 43.3407 218.059 0 43.3407 218.059 -69.8001 43.3407 218.059 0 42.6132 221.382 -34.9 43.3407 218.059 0 41.4467 224.582 -69.8001 42.9642 220.036 -69.8001 43.1717 219.053 -17.5086 41.5156 224.424 -26.2589 41.6286 224.16 -35.0027 41.7971 223.749 -43.7382 42.0224 223.167 -52.4565 42.2996 222.383 -61.1487 42.6203 221.357 0 42.9518 217.943 0 43.0449 217.753 0 43.1026 217.702 0 43.1285 217.693 0 43.1509 217.695 0 43.2302 217.719 0 43.3095 217.742 0 43.3291 217.753 0 43.346 217.775 0 43.3663 217.849 0 43.3407 218.059 0 42.6132 221.382 0 41.4467 224.582 0 41.0148 224.564 0 42.7829 219.336 -69.8001 42.9518 217.943 -69.8001 43.0449 217.753 -69.8001 43.1026 217.702 -69.8001 43.1285 217.693 -69.8001 43.1509 217.695 -69.8001 43.2302 217.719 -69.8001 43.3095 217.742 -69.8001 43.3291 217.753 -69.8001 43.346 217.775 -69.8001 43.3663 217.849 -69.8001 43.3407 218.059 -69.8001 43.1717 219.053 -69.8001 42.9642 220.036 -69.8001 42.624 220.079 -69.8001 42.7829 219.336 + + + + + + + + + + -6.10382e-5 -0.9153591 -0.4026384 -3.05189e-4 -0.9210599 -0.3894209 -0.00262463 -0.9469292 -0.3214316 -8.24026e-4 -0.9287078 -0.3708117 -0.003204464 -0.9451419 -0.3266445 -0.001312315 -0.9753439 -0.2206869 -0.002197384 -0.950709 -0.3100768 0 -0.9927294 -0.1203678 0 -0.9863114 -0.1648939 -6.10382e-5 -0.9766729 -0.2147325 -7.01933e-4 -0.9630823 -0.2692065 0 -0.8979995 -0.4399966 0 -0.7953323 -0.6061738 0 -0.8979695 -0.4400578 0 -0.7953175 -0.6061931 0 -0.5048859 -0.8631862 0 -0.5048499 -0.8632072 0 0.08954232 -0.9959831 0 -0.1220474 -0.9925243 0 -0.1221075 -0.9925169 0 0.2895258 -0.9571703 0 0.2895266 -0.9571701 0 0.2895379 -0.9571666 0 0.2786608 -0.9603897 0 0.2786725 -0.9603863 0 0.2786718 -0.9603865 0 0.4895018 -0.8720024 0 0.6544483 -0.7561069 0 0.4894424 -0.8720357 0 0.6545459 -0.7560223 0 0.8953956 -0.4452716 0 0.9926555 0.1209766 0 0.9926518 0.1210067 0 0.9973253 -0.07309257 0 0.9973186 -0.07318365 3.66229e-4 0.9604048 0.2786086 9.46092e-4 0.9789918 0.2038981 0.001037597 0.9777009 0.21 0 0.9768666 0.2138498 0 0.9672809 0.2537075 0 0.9858534 0.16761 5.79855e-4 0.9822748 0.1874458 0.001556456 0.9377513 0.347304 5.79859e-4 0.9395239 0.3424829 0.001678526 0.937412 0.3482182 6.10378e-4 0.9446823 0.3279867 0 0.9540914 0.2995155 0.001342833 0.939076 0.3437073 1 0 0 -1 2.92987e-5 0 -1 0 0 -1 -3.09741e-4 0 -1 3.39509e-4 0 -1 -3.06748e-4 0 -1 -9.75343e-6 0 -1 6.00288e-5 0 -1 -1.15327e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

11 0 0 10 1 1 12 2 2 9 3 3 12 2 4 10 1 5 9 3 6 8 4 7 12 2 8 0 5 9 8 4 10 7 6 11 0 5 12 12 2 13 8 4 14 4 7 15 2 7 16 0 5 17 1 8 18 4 7 19 0 5 20 5 9 21 0 5 22 6 10 23 1 8 24 0 5 25 5 9 26 1 8 27 3 7 28 4 7 29 7 6 30 6 10 31 0 5 32 23 11 33 15 12 34 13 13 35 16 14 36 18 15 37 17 16 38 16 14 39 17 16 40 15 12 41 14 13 42 16 14 43 23 11 44 15 12 45 23 11 46 16 14 47 24 17 48 21 17 49 19 18 50 20 19 51 24 17 52 19 18 53 19 18 54 17 16 55 18 15 56 19 18 57 18 15 58 20 19 59 24 17 60 20 19 61 22 17 62 31 20 63 27 20 64 25 20 65 31 21 66 26 21 67 28 21 68 28 22 69 27 22 70 31 22 71 27 23 72 28 23 73 32 23 74 32 24 75 28 24 76 30 24 77 29 25 78 27 25 79 32 25 80 43 26 81 35 27 82 33 28 83 36 29 84 38 30 85 37 30 86 36 29 87 37 30 88 35 27 89 34 28 90 36 29 91 43 26 92 35 27 93 43 26 94 36 29 95 44 31 96 41 32 97 39 33 98 40 34 99 44 31 100 39 33 101 39 33 102 37 30 103 38 30 104 39 33 105 38 30 106 40 34 107 44 31 108 40 34 109 42 32 110 47 35 111 48 36 112 50 37 113 45 38 114 48 36 115 47 35 116 57 39 117 47 35 118 50 37 119 48 36 120 46 40 121 51 41 122 48 36 123 51 41 124 50 37 125 52 42 126 49 43 127 47 35 128 53 44 129 52 42 130 47 35 131 55 45 132 47 35 133 56 46 134 47 35 135 55 45 136 54 47 137 47 35 138 54 47 139 53 44 140 57 39 141 56 46 142 47 35 143 72 48 144 64 48 145 68 48 146 68 48 147 69 48 148 72 48 149 66 48 150 67 48 151 68 48 152 65 48 153 66 48 154 68 48 155 65 48 156 68 48 157 64 48 158 71 48 159 69 48 160 70 48 161 59 48 162 60 48 163 58 48 164 72 48 165 58 48 166 62 48 167 71 48 168 72 48 169 69 48 170 62 48 171 63 48 172 72 48 173 58 48 174 61 48 175 62 48 176 58 48 177 60 48 178 61 48 179 64 48 180 72 48 181 63 48 182 84 49 183 86 49 184 85 49 185 87 50 186 84 50 187 83 50 188 81 51 189 83 51 190 82 51 191 83 52 192 81 52 193 80 52 194 79 50 195 83 50 196 80 50 197 86 50 198 84 50 199 87 50 200 75 50 201 73 50 202 76 50 203 87 50 204 78 50 205 73 50 206 75 53 207 74 53 208 73 53 209 79 50 210 78 50 211 83 50 212 73 54 213 78 54 214 77 54 215 73 55 216 77 55 217 76 55 218 87 56 219 83 56 220 78 56 221

+
+
+
+ + + + 0 40.8875 219.248 -69.8001 40.8875 219.248 0 41.056 217.858 -69.8001 41.056 217.858 -34.9 41.056 217.858 -69.8001 40.6638 220.252 -61.1379 40.3068 221.466 -52.4418 39.9739 222.414 -43.7232 39.6914 223.142 -34.9896 39.4662 223.685 -26.2483 39.3002 224.071 -17.5012 39.1904 224.32 0 39.1252 224.465 0 41.056 217.858 -69.8001 41.056 217.858 0 41.1491 217.668 -69.8001 41.1491 217.668 0 41.2068 217.617 -69.8001 41.2068 217.617 0 41.2327 217.608 -69.8001 41.2327 217.608 0 41.2551 217.61 -69.8001 41.2551 217.61 -34.9 41.056 217.858 -34.9 41.2551 217.61 0 41.2551 217.61 -69.8001 41.2551 217.61 0 41.3344 217.633 -69.8001 41.3344 217.633 0 41.4137 217.657 -69.8001 41.4137 217.657 -34.9 41.2551 217.61 -34.9 41.4137 217.657 0 41.4137 217.657 -69.8001 41.4137 217.657 0 41.4333 217.668 -69.8001 41.4333 217.668 0 41.4502 217.689 -69.8001 41.4502 217.689 0 41.4705 217.764 -69.8001 41.4705 217.764 0 41.4449 217.973 -69.8001 41.4449 217.973 -34.9 41.4137 217.657 -34.9 41.4449 217.973 0 41.4449 217.973 -69.8001 41.4449 217.973 0 40.7181 221.294 -34.9 41.4449 217.973 0 39.5533 224.491 -69.8001 41.0018 220.231 -69.8001 41.1314 219.672 -69.8001 41.2485 219.109 -69.8001 41.353 218.543 -17.5016 39.6173 224.345 -26.2488 39.7246 224.094 -34.9902 39.885 223.704 -43.724 40.0993 223.155 -52.4426 40.3633 222.418 -61.1387 40.6698 221.458 0 41.056 217.858 0 41.1491 217.668 0 41.2068 217.617 0 41.2327 217.608 0 41.2551 217.61 0 41.3344 217.633 0 41.4137 217.657 0 41.4333 217.668 0 41.4502 217.689 0 41.4705 217.764 0 41.4449 217.973 0 40.7181 221.294 0 39.5533 224.491 0 39.1252 224.465 0 40.8875 219.248 -69.8001 41.056 217.858 -69.8001 41.1491 217.668 -69.8001 41.2068 217.617 -69.8001 41.2327 217.608 -69.8001 41.2551 217.61 -69.8001 41.3344 217.633 -69.8001 41.4137 217.657 -69.8001 41.4333 217.668 -69.8001 41.4502 217.689 -69.8001 41.4705 217.764 -69.8001 41.4449 217.973 -69.8001 41.353 218.543 -69.8001 41.2485 219.109 -69.8001 41.1314 219.672 -69.8001 41.0018 220.231 -69.8001 40.6638 220.252 -69.8001 40.8875 219.248 + + + + + + + + + + -9.15563e-5 -0.9162043 -0.4007115 -2.74671e-4 -0.9210334 -0.3894837 -0.002746701 -0.9470034 -0.3212121 -7.01947e-4 -0.9277296 -0.3732526 -0.001739621 -0.9391515 -0.343499 -0.002288877 -0.9497194 -0.313094 -0.00137335 -0.9753927 -0.2204705 0 -0.9927331 -0.1203377 0 -0.9855983 -0.1691036 -6.10372e-5 -0.9748256 -0.222969 -9.46077e-4 -0.9605736 -0.2780246 0 -0.8979995 -0.4399966 0 -0.7952916 -0.6062271 0 -0.8979874 -0.4400212 0 -0.5048499 -0.8632072 0 -0.504791 -0.8632416 0 0.08887082 -0.9960432 0 -0.1223818 -0.9924831 0 -0.122442 -0.9924758 0 0.2785013 -0.9604359 0 0.2785021 -0.9604356 0 0.278513 -0.9604325 0 0.2896833 -0.9571227 0 0.2896953 -0.957119 0 0.2896946 -0.9571192 0 0.4894424 -0.8720357 0 0.6459956 -0.7633412 0 0.4895845 -0.8719559 0 0.6460106 -0.7633284 0 0.8911564 -0.4536963 0 0.8910759 -0.4538545 0 0.9925842 0.121559 0 0.9925806 0.121589 0 0.9974642 -0.0711711 0 0.9974687 -0.07110822 0 0.9925769 0.1216191 0.001037597 0.979195 0.2029193 7.93504e-4 0.9767124 0.2145513 3.35711e-4 0.9604398 0.2784878 1.83113e-4 0.9853614 0.1704782 0 0.9872536 0.1591557 7.32469e-4 0.9812334 0.1928223 4.57787e-4 0.9735302 0.2285578 0 0.9768807 0.2137851 0.001373291 0.9387304 0.3446497 0.001648008 0.937432 0.3481646 0.001464903 0.9379089 0.3468786 5.49337e-4 0.9395802 0.3423286 6.10374e-5 0.952488 0.3045764 -3.05192e-5 0.964742 0.2631975 7.01936e-4 0.9437987 0.3305203 1 0 0 -1 -4.02026e-5 0 -1 3.80402e-5 0 -1 4.0808e-5 0 -1 -3.09502e-4 0 -1 3.88425e-4 0 -1 0 0 -0.9999998 -6.1425e-4 0 -1 5.34262e-5 0 -1 -2.24573e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

11 0 0 10 1 1 12 2 2 9 3 3 12 2 4 10 1 5 9 3 6 8 4 7 12 2 8 7 5 9 12 2 10 8 4 11 7 5 12 0 6 13 12 2 14 4 7 15 2 7 16 0 6 17 1 8 18 4 7 19 0 6 20 5 9 21 0 6 22 6 10 23 1 8 24 0 6 25 5 9 26 1 8 27 3 7 28 4 7 29 7 5 30 6 10 31 0 6 32 23 11 33 15 12 34 13 13 35 16 12 36 18 14 37 17 15 38 16 12 39 17 15 40 15 12 41 14 13 42 16 12 43 23 11 44 15 12 45 23 11 46 16 12 47 24 16 48 21 16 49 19 17 50 20 18 51 24 16 52 19 17 53 19 17 54 17 15 55 18 14 56 19 17 57 18 14 58 20 18 59 24 16 60 20 18 61 22 16 62 31 19 63 27 19 64 25 19 65 31 20 66 26 20 67 28 20 68 28 21 69 27 21 70 31 21 71 27 22 72 28 22 73 32 22 74 32 23 75 28 23 76 30 23 77 29 24 78 27 24 79 32 24 80 43 25 81 35 26 82 33 27 83 36 28 84 38 29 85 37 30 86 36 28 87 37 30 88 35 26 89 34 25 90 36 28 91 43 25 92 35 26 93 43 25 94 36 28 95 44 31 96 41 32 97 39 33 98 40 34 99 44 31 100 39 33 101 39 33 102 37 30 103 38 29 104 39 33 105 38 29 106 40 34 107 44 31 108 40 34 109 42 35 110 48 36 111 51 37 112 47 38 113 53 39 114 48 36 115 46 40 116 48 36 117 53 39 118 52 41 119 51 37 120 50 42 121 47 38 122 51 37 123 48 36 124 52 41 125 47 38 126 45 43 127 48 36 128 56 44 129 55 45 130 47 38 131 54 46 132 47 38 133 55 45 134 47 38 135 54 46 136 49 47 137 58 48 138 47 38 139 59 49 140 47 38 141 58 48 142 57 50 143 47 38 144 57 50 145 56 44 146 50 42 147 59 49 148 47 38 149 70 51 150 71 51 151 72 51 152 74 51 153 69 51 154 70 51 155 74 51 156 68 51 157 69 51 158 74 51 159 67 51 160 68 51 161 66 51 162 67 51 163 74 51 164 74 51 165 70 51 166 72 51 167 74 51 168 60 51 169 62 51 170 60 51 171 61 51 172 62 51 173 73 51 174 74 51 175 72 51 176 64 51 177 65 51 178 74 51 179 74 51 180 63 51 181 64 51 182 62 51 183 63 51 184 74 51 185 66 51 186 74 51 187 65 51 188 87 52 189 86 52 190 91 52 191 85 53 192 91 53 193 86 53 194 87 54 195 91 54 196 88 54 197 83 55 198 85 55 199 84 55 200 85 56 201 83 56 202 82 56 203 81 57 204 85 57 205 82 57 206 90 57 207 89 57 208 88 57 209 85 57 210 81 57 211 91 57 212 79 57 213 75 57 214 91 57 215 76 58 216 75 58 217 77 58 218 80 57 219 91 57 220 81 57 221 79 57 222 78 57 223 75 57 224 91 59 225 80 59 226 79 59 227 77 57 228 75 57 229 78 57 230 90 60 231 88 60 232 91 60 233

+
+
+
+ + + + 0 37.1054 218.944 -69.8001 37.1054 218.944 0 37.2725 217.561 -69.8001 37.2725 217.561 -34.9 37.2725 217.561 -69.8001 36.8105 220.218 -61.1247 36.4795 221.302 -52.4235 36.1742 222.161 -43.7046 35.9133 222.832 -34.9734 35.7023 223.343 -17.4927 35.4342 223.962 0 35.3579 224.133 0 37.2725 217.561 -69.8001 37.2725 217.561 0 37.3656 217.372 -69.8001 37.3656 217.372 0 37.4233 217.321 -69.8001 37.4233 217.321 0 37.4492 217.312 -69.8001 37.4492 217.312 0 37.4716 217.314 -69.8001 37.4716 217.314 -34.9 37.2725 217.561 -34.9 37.4716 217.314 0 37.4716 217.314 -69.8001 37.4716 217.314 0 37.5509 217.337 -69.8001 37.5509 217.337 0 37.6302 217.361 -69.8001 37.6302 217.361 -34.9 37.4716 217.314 -34.9 37.6302 217.361 0 37.6302 217.361 -69.8001 37.6302 217.361 0 37.6497 217.372 -69.8001 37.6497 217.372 0 37.6667 217.393 -69.8001 37.6667 217.393 0 37.687 217.468 -69.8001 37.687 217.468 0 37.6613 217.677 -69.8001 37.6613 217.677 -34.9 37.6302 217.361 -34.9 37.6613 217.677 0 37.6613 217.677 -69.8001 37.6613 217.677 0 36.9373 220.989 -34.9 37.6613 217.677 0 35.7761 224.18 -69.8001 37.1416 220.241 -69.8001 37.434 218.968 -17.4929 35.8483 224.015 -34.9738 36.1064 223.396 -43.7051 36.3069 222.882 -52.424 36.5514 222.204 -61.1252 36.8344 221.336 0 37.2725 217.561 0 37.3656 217.372 0 37.4233 217.321 0 37.4492 217.312 0 37.4716 217.314 0 37.5509 217.337 0 37.6302 217.361 0 37.6497 217.372 0 37.6667 217.393 0 37.687 217.468 0 37.6613 217.677 0 36.9373 220.989 0 35.7761 224.18 0 35.3579 224.133 0 37.1054 218.944 -69.8001 37.2725 217.561 -69.8001 37.3656 217.372 -69.8001 37.4233 217.321 -69.8001 37.4492 217.312 -69.8001 37.4716 217.314 -69.8001 37.5509 217.337 -69.8001 37.6302 217.361 -69.8001 37.6497 217.372 -69.8001 37.6667 217.393 -69.8001 37.687 217.468 -69.8001 37.6613 217.677 -69.8001 37.434 218.968 -69.8001 37.1416 220.241 -69.8001 36.8105 220.218 -69.8001 37.1054 218.944 + + + + + + + + + + -1.52593e-4 -0.9193092 -0.3935362 -7.62978e-4 -0.9289409 -0.3702274 -0.00250256 -0.9473846 -0.3200879 -0.003143429 -0.945331 -0.3260972 -0.00238049 -0.9493954 -0.3140745 -0.00125128 -0.9755167 -0.2199215 -0.001159727 -0.958485 -0.2851406 0 -0.9927813 -0.1199395 0 -0.9849255 -0.1729792 -9.15573e-5 -0.9730409 -0.2306329 0 -0.8970726 -0.4418832 0 -0.7946584 -0.607057 0 -0.504791 -0.8632416 0 -0.5048499 -0.8632072 0 -0.8970847 -0.4418586 0 0.08887082 -0.9960432 0 -0.122472 -0.992472 0 -0.1224119 -0.9924795 0 0.2786718 -0.9603865 0 0.2786725 -0.9603863 0 0.2786721 -0.9603863 0 0.2895262 -0.9571702 0 0.2895266 -0.9571701 0 0.2895258 -0.9571703 0 0.4913823 -0.870944 0 0.6458793 -0.7634395 0 0.4914417 -0.8709105 0 0.6458137 -0.7634952 0 0.8905364 -0.4549121 0 0.8905301 -0.4549245 0 0.4912998 -0.8709906 0 0.9925248 0.1220437 0 0.9974816 -0.07092601 0 0.9925285 0.1220136 6.10385e-4 0.9783254 0.2070732 3.6623e-4 0.9605284 0.2781818 0 0.9769345 0.2135394 0.001709043 0.974056 0.226301 0 0.9848551 0.1733796 9.76613e-4 0.9799401 0.1992902 -6.10387e-5 0.9622747 0.2720799 0.001342833 0.939076 0.3437073 0.00149542 0.9380995 0.3463625 7.32451e-4 0.9434888 0.3314037 1.52595e-4 0.9509415 0.3093711 6.409e-4 0.9397121 0.341966 1 0 0 -1 1.83732e-5 0 -1 2.92997e-5 0 -1 0 0 -1 3.9968e-4 0 -1 -4.56038e-5 0 -1 3.09406e-4 0 -1 -1.10461e-4 0 -1 -1.21221e-5 0 -1 1.52822e-4 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 9 1 1 11 2 2 8 3 3 11 2 4 9 1 5 7 4 6 0 5 7 8 3 8 0 5 9 7 4 10 6 6 11 11 2 12 8 3 13 0 5 14 4 7 15 2 7 16 0 5 17 1 8 18 4 7 19 0 5 20 0 5 21 5 9 22 1 8 23 4 7 24 1 8 25 3 7 26 6 6 27 5 9 28 0 5 29 22 10 30 14 11 31 12 10 32 15 11 33 17 12 34 16 13 35 15 11 36 16 13 37 14 11 38 13 14 39 15 11 40 22 10 41 14 11 42 22 10 43 15 11 44 23 15 45 20 15 46 18 16 47 19 17 48 23 15 49 18 16 50 18 16 51 16 13 52 17 12 53 18 16 54 17 12 55 19 17 56 23 15 57 19 17 58 21 15 59 30 18 60 26 18 61 24 18 62 30 19 63 25 19 64 27 19 65 27 20 66 26 20 67 30 20 68 26 21 69 27 21 70 31 21 71 31 22 72 27 22 73 29 22 74 28 23 75 26 23 76 31 23 77 42 24 78 34 25 79 32 26 80 35 27 81 37 28 82 36 29 83 35 27 84 36 29 85 34 25 86 33 30 87 35 27 88 42 24 89 34 25 90 42 24 91 35 27 92 43 31 93 40 31 94 38 32 95 39 32 96 43 31 97 38 32 98 38 32 99 36 29 100 37 28 101 38 32 102 37 28 103 39 32 104 43 31 105 39 32 106 41 33 107 47 34 108 46 35 109 44 36 110 49 37 111 46 35 112 47 34 113 47 34 114 45 38 115 50 39 116 47 34 117 50 39 118 49 37 119 49 37 120 55 40 121 46 35 122 52 41 123 51 42 124 46 35 125 46 35 126 53 43 127 52 41 128 46 35 129 55 40 130 54 44 131 54 44 132 53 43 133 46 35 134 48 45 135 46 35 136 51 42 137 70 46 138 66 46 139 67 46 140 70 46 141 65 46 142 66 46 143 70 46 144 64 46 145 65 46 146 70 46 147 63 46 148 64 46 149 62 46 150 63 46 151 70 46 152 68 46 153 70 46 154 67 46 155 68 46 156 69 46 157 70 46 158 58 46 159 70 46 160 56 46 161 57 46 162 58 46 163 56 46 164 60 46 165 61 46 166 70 46 167 70 46 168 59 46 169 60 46 170 70 46 171 58 46 172 59 46 173 62 46 174 70 46 175 61 46 176 82 47 177 84 47 178 83 47 179 81 48 180 84 48 181 82 48 182 79 49 183 81 49 184 80 49 185 81 49 186 79 49 187 85 49 188 78 50 189 85 50 190 79 50 191 84 51 192 81 51 193 85 51 194 74 49 195 73 49 196 85 49 197 71 49 198 85 49 199 73 49 200 73 52 201 72 52 202 71 52 203 76 53 204 85 53 205 77 53 206 85 54 207 76 54 208 75 54 209 85 55 210 75 55 211 74 55 212 78 49 213 77 49 214 85 49 215

+
+
+
+ + + + -69.8001 33.2361 218.958 -69.8001 33.4243 217.952 -55.2033 33.5158 217.027 -69.8001 33.5158 217.027 -62.5017 33.5158 217.027 -69.8001 33.0547 219.681 -66.25901 32.9305 220.114 -62.7068 32.8068 220.513 -59.1505 32.6858 220.878 -55.597 32.5692 221.211 -55.4967 32.8621 220.337 -55.4051 33.0963 219.526 -55.319 33.291 218.705 -55.2469 33.4357 217.871 -69.8001 33.5158 217.027 -69.8001 33.6089 216.837 -69.8001 33.6666 216.786 -69.8001 33.6926 216.778 -55.0804 33.7149 216.779 -69.8001 33.7149 216.779 -55.2033 33.5158 217.027 -55.1625 33.5861 216.869 -55.1287 33.641 216.804 -55.1057 33.677 216.781 -55.0932 33.6959 216.777 -62.5017 33.5158 217.027 -62.4403 33.7149 216.779 -69.8001 33.7149 216.779 -69.8001 33.7942 216.803 -54.9624 33.8736 216.826 -69.8001 33.8736 216.826 -55.0804 33.7149 216.779 -62.4403 33.7149 216.779 -62.3812 33.8736 216.826 -69.8001 33.8736 216.826 -69.8001 33.8931 216.837 -69.8001 33.91 216.859 -69.8001 33.9304 216.933 -69.8001 33.9047 217.143 -54.9624 33.8736 216.826 -54.9484 33.8906 216.835 -54.9369 33.9042 216.849 -54.9213 33.9223 216.889 -54.9128 33.932 216.977 -54.9365 33.9047 217.143 -62.3812 33.8736 216.826 -62.3683 33.9047 217.143 -54.9365 33.9047 217.143 -69.8001 33.9047 217.143 -69.8001 33.7234 218.201 -69.8001 33.3747 219.747 -55.0512 33.7568 218.024 -55.1672 33.5783 218.9 -55.2812 33.3688 219.769 -55.3917 33.1287 220.631 -55.4761 32.9174 221.306 -62.3683 33.9047 217.143 -59.0605 33.0265 220.966 -62.6467 33.1398 220.594 -66.2286 33.2562 220.188 -69.8001 33.5158 217.027 -69.8001 33.6089 216.837 -69.8001 33.6666 216.786 -69.8001 33.6926 216.778 -69.8001 33.7149 216.779 -69.8001 33.7942 216.803 -69.8001 33.8736 216.826 -69.8001 33.8931 216.837 -69.8001 33.91 216.859 -69.8001 33.9304 216.933 -69.8001 33.9047 217.143 -69.8001 33.7234 218.201 -69.8001 33.3747 219.747 -69.8001 33.0547 219.681 -69.8001 33.2361 218.958 -69.8001 33.4243 217.952 -55.2033 33.5158 217.027 -55.1625 33.5861 216.869 -55.1287 33.641 216.804 -55.1057 33.677 216.781 -55.0932 33.6959 216.777 -55.0804 33.7149 216.779 -54.9624 33.8736 216.826 -54.9484 33.8906 216.835 -54.9369 33.9042 216.849 -54.9213 33.9223 216.889 -54.9128 33.932 216.977 -54.9365 33.9047 217.143 -55.0512 33.7568 218.024 -55.1672 33.5783 218.9 -55.2812 33.3688 219.769 -55.3917 33.1287 220.631 -55.4761 32.9174 221.306 -55.5024 32.8464 221.287 -55.597 32.5692 221.211 -55.4967 32.8621 220.337 -55.4051 33.0963 219.526 -55.319 33.291 218.705 -55.2469 33.4357 217.871 + + + + + + + + + + -7.32466e-4 -0.9551663 -0.2960689 -0.001312255 -0.9481287 -0.3178842 -3.96754e-4 -0.9499813 -0.3123064 -3.35705e-4 -0.9675621 -0.2526331 -1.52593e-4 -0.9613994 -0.2751564 6.10377e-5 -0.9547512 -0.297406 1.52594e-4 -0.9693056 -0.2458589 3.35706e-4 -0.9768743 -0.2138143 -6.10376e-5 -0.9913722 -0.1310781 -2.13636e-4 -0.9799775 -0.1991084 2.44149e-4 -0.9899928 -0.1411179 0 -0.9955291 -0.09445619 2.13636e-4 -0.9953299 -0.09653288 0 -0.9951446 -0.09842491 -3.3571e-4 -0.7952656 -0.6062611 1.22076e-4 -0.6275938 -0.778541 1.22075e-4 -0.8330397 -0.5532133 0 -0.9136454 -0.4065122 0 -0.913629 -0.406549 -4.27275e-4 -0.8981015 -0.439788 -1.52594e-4 -0.4890958 -0.8722301 0 0.00665307 -0.999978 0 -0.3227665 -0.9464787 -3.05194e-5 -0.126228 -0.9920013 0 0.1053822 -0.9944318 -6.10381e-5 0.07300156 -0.9973319 0 0.04507678 -0.9989836 0 0.2895228 -0.9571712 0 0.2895331 -0.9571681 0 0.2783501 -0.9604797 0 0.2783533 -0.9604789 -3.27504e-5 0.283975 -0.9588317 0 0.646771 -0.7626844 0 0.4680392 -0.8837078 -3.0519e-5 0.4806131 -0.8769327 6.10388e-5 0.8544514 -0.5195316 -3.05194e-5 0.6552814 -0.755385 0 0.491323 -0.8709775 -1.83114e-4 0.8950915 -0.4458825 9.15558e-5 0.9996982 0.02456748 1.52594e-4 0.9705308 -0.2409771 -3.66224e-4 0.9972892 -0.0735805 0 0.9867513 0.1622408 -4.57782e-4 0.992562 0.1217393 6.10382e-5 0.9834479 0.1811919 0 0.9861986 0.1655668 -1.83116e-4 0.9858945 0.1673676 6.10385e-5 0.9764642 0.2156797 -3.96751e-4 0.980951 0.1942552 0 0.9856349 0.168891 -7.32454e-4 0.9747129 0.2234594 0 0.9564155 0.2920092 6.71426e-4 0.9543107 0.2988153 3.35712e-4 0.9593431 0.2822423 4.5779e-4 0.9622746 0.2720798 6.10378e-5 0.9682431 0.2500109 0 0.9655866 0.2600818 -1 0 0 -1 -4.23184e-5 0 -1 4.03356e-5 0 -1 -3.08309e-4 0 -1 3.31873e-5 0 -1 -7.09622e-5 0 -1 2.77516e-5 0 -1 -2.77855e-4 0 -1 -3.53693e-4 0 -1 2.73027e-4 0 0.7798591 -0.6259503 -0.002472043 0.7570701 -0.6533338 3.05196e-5 0.7539514 -0.6569302 -3.66233e-4 0.7697275 -0.6383724 -4.88309e-4 0.7623887 -0.6471194 6.10375e-5 0.8330534 -0.5531919 -9.76616e-4 0.7902241 -0.6128181 2.13632e-4 0.8178229 -0.57547 1.52596e-4 0.8315896 -0.55539 -8.85059e-4 0.8372707 -0.5467865 -0.001586973 0.8443096 -0.5358535 -0.001617491 0.8734765 -0.4868653 -0.001068115 0.9041078 -0.4273027 -0.00125128 0.9281478 -0.3722113 5.79863e-4 0.8979273 -0.4401437 4.57784e-4 0.9359964 -0.3520096 1.83116e-4 0.9323606 -0.3615301 -3.05192e-5 0.9463819 -0.3230498 3.35715e-4 0.941518 -0.3369627 6.10384e-5 0.9172527 -0.3983053 5.49345e-4 0.8655182 -0.5008774 3.0519e-5 0.8537462 -0.5206894 0 0.8762493 -0.4818577 -6.71409e-4 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 9 1 1 8 2 2 11 3 3 10 0 4 6 4 5 7 5 6 10 0 7 8 2 8 6 4 9 10 0 10 7 5 11 6 4 12 5 6 13 11 3 14 5 6 15 0 7 16 11 3 17 13 8 18 12 9 19 1 10 20 2 11 21 13 8 22 4 12 23 1 10 24 12 9 25 0 7 26 1 10 27 3 13 28 4 12 29 1 10 30 4 12 31 13 8 32 11 3 33 0 7 34 12 9 35 15 14 36 22 15 37 21 16 38 25 17 39 21 16 40 20 18 41 25 17 42 14 19 43 21 16 44 15 14 45 21 16 46 14 19 47 15 14 48 16 20 49 22 15 50 24 21 51 23 22 52 17 23 53 18 24 54 24 21 55 26 25 56 17 23 57 23 22 58 16 20 59 17 23 60 19 26 61 26 25 62 17 23 63 26 25 64 24 21 65 22 15 66 16 20 67 23 22 68 28 27 69 31 27 70 32 27 71 28 28 72 32 28 73 27 28 74 28 29 75 33 29 76 29 29 77 33 30 78 28 30 79 30 30 80 31 31 81 28 31 82 29 31 83 40 32 84 39 33 85 45 34 86 41 35 87 40 32 88 35 36 89 34 37 90 35 36 91 45 34 92 40 32 93 45 34 94 35 36 95 35 36 96 36 38 97 41 35 98 43 39 99 42 40 100 37 41 101 44 42 102 43 39 103 46 42 104 37 41 105 42 40 106 36 38 107 43 39 108 37 41 109 38 43 110 43 39 111 38 43 112 46 42 113 41 35 114 36 38 115 42 40 116 51 44 117 47 45 118 56 46 119 52 47 120 51 44 121 49 48 122 48 49 123 49 48 124 56 46 125 51 44 126 56 46 127 49 48 128 49 48 129 50 50 130 52 47 131 57 51 132 55 52 133 54 53 134 58 54 135 54 53 136 53 55 137 59 56 138 53 55 139 50 50 140 53 55 141 59 56 142 58 54 143 54 53 144 58 54 145 57 51 146 52 47 147 50 50 148 53 55 149 73 57 150 72 57 151 71 57 152 74 58 153 70 58 154 68 58 155 70 59 156 74 59 157 71 59 158 68 60 159 70 60 160 69 60 161 74 61 162 68 61 163 67 61 164 66 57 165 75 57 166 67 57 167 74 62 168 73 62 169 71 62 170 66 57 171 65 57 172 75 57 173 75 63 174 61 63 175 60 63 176 62 64 177 61 64 178 75 64 179 64 57 180 75 57 181 65 57 182 75 65 183 64 65 184 63 65 185 75 66 186 63 66 187 62 66 188 74 57 189 67 57 190 75 57 191 87 67 192 85 68 193 86 69 194 83 70 195 84 71 196 87 67 197 88 72 198 82 73 199 87 67 200 85 68 201 87 67 202 84 71 203 82 73 204 88 72 205 81 74 206 87 67 207 82 73 208 83 70 209 81 74 210 88 72 211 80 75 212 80 75 213 88 72 214 79 76 215 78 77 216 79 76 217 88 72 218 78 77 219 88 72 220 89 78 221 90 79 222 91 80 223 97 81 224 92 82 225 95 83 226 91 80 227 94 84 228 95 83 229 93 85 230 92 82 231 93 85 232 95 83 233 95 83 234 96 86 235 91 80 236 76 87 237 77 88 238 89 78 239 78 77 240 89 78 241 77 88 242 98 89 243 76 87 244 89 78 245 90 79 246 98 89 247 89 78 248 97 81 249 98 89 250 90 79 251 97 81 252 91 80 253 96 86 254

+
+
+
+ + + + -69.8001 29.5908 217.89 -69.8001 29.7596 216.952 -56.3839 29.8429 216.084 -69.8001 29.8429 216.084 -63.092 29.8429 216.084 -69.8001 29.407 218.645 -63.2223 29.1988 219.364 -56.6327 28.9966 219.982 -56.5954 29.1236 219.6 -56.5569 29.2547 219.18 -56.5204 29.3786 218.75 -56.4868 29.4931 218.311 -56.4566 29.5958 217.867 -56.4305 29.6844 217.42 -56.4093 29.7567 216.973 -56.3935 29.8103 216.527 -69.8001 29.8429 216.084 -69.8001 29.936 215.895 -69.8001 29.9937 215.844 -69.8001 30.0197 215.835 -56.3254 30.042 215.837 -69.8001 30.042 215.837 -56.3839 29.8429 216.084 -56.3643 29.9099 215.932 -56.3485 29.9634 215.866 -56.3374 30.0013 215.84 -56.3314 30.0215 215.835 -63.092 29.8429 216.084 -63.0627 30.042 215.837 -69.8001 30.042 215.837 -69.8001 30.1213 215.86 -56.2788 30.2007 215.884 -69.8001 30.2007 215.884 -56.3254 30.042 215.837 -63.0627 30.042 215.837 -63.0394 30.2007 215.884 -69.8001 30.2007 215.884 -69.8001 30.2202 215.895 -69.8001 30.2371 215.916 -69.8001 30.2574 215.991 -69.8001 30.2318 216.2 -56.2788 30.2007 215.884 -56.2732 30.2198 215.894 -56.269 30.2341 215.911 -56.264 30.2509 215.952 -56.2616 30.259 216.037 -56.2696 30.2318 216.2 -63.0394 30.2007 215.884 -63.0348 30.2318 216.2 -56.2696 30.2318 216.2 -69.8001 30.2318 216.2 -69.8001 30.0627 217.195 -69.8001 29.715 218.753 -56.2932 30.1518 216.701 -56.3195 30.0621 217.198 -56.3487 29.9629 217.692 -56.3807 29.8541 218.183 -56.4154 29.7358 218.671 -56.453 29.6079 219.157 -56.4934 29.4706 219.639 -56.5365 29.3239 220.117 -63.0348 30.2318 216.2 -63.1742 29.5151 219.487 -69.8001 29.715 218.753 -69.8001 29.8429 216.084 -69.8001 29.936 215.895 -69.8001 29.9937 215.844 -69.8001 30.0197 215.835 -69.8001 30.042 215.837 -69.8001 30.1213 215.86 -69.8001 30.2007 215.884 -69.8001 30.2202 215.895 -69.8001 30.2371 215.916 -69.8001 30.2574 215.991 -69.8001 30.2318 216.2 -69.8001 30.0627 217.195 -69.8001 29.407 218.645 -69.8001 29.5908 217.89 -69.8001 29.7596 216.952 -56.3839 29.8429 216.084 -56.3643 29.9099 215.932 -56.3485 29.9634 215.866 -56.3374 30.0013 215.84 -56.3314 30.0215 215.835 -56.3254 30.042 215.837 -56.2788 30.2007 215.884 -56.2732 30.2198 215.894 -56.269 30.2341 215.911 -56.264 30.2509 215.952 -56.2616 30.259 216.037 -56.2696 30.2318 216.2 -56.2932 30.1518 216.701 -56.3195 30.0621 217.198 -56.3487 29.9629 217.692 -56.3807 29.8541 218.183 -56.4154 29.7358 218.671 -56.453 29.6079 219.157 -56.4934 29.4706 219.639 -56.5365 29.3239 220.117 -56.6327 28.9966 219.982 -56.5954 29.1236 219.6 -56.5569 29.2547 219.18 -56.5204 29.3786 218.75 -56.4868 29.4931 218.311 -56.4566 29.5958 217.867 -56.4305 29.6844 217.42 -56.4093 29.7567 216.973 -56.3935 29.8103 216.527 + + + + + + + + + + 9.15586e-5 -0.9580386 -0.2866395 9.1558e-5 -0.9518983 -0.3064142 1.52595e-4 -0.959854 -0.2805004 1.22078e-4 -0.9644746 -0.264176 3.05194e-4 -0.9708847 -0.2395471 -3.05188e-5 -0.9712013 -0.2382606 4.57792e-4 -0.9489424 -0.3154494 4.883e-4 -0.9783391 -0.2070086 0 -0.9778583 -0.2092685 0 -0.9902902 -0.1390154 3.05191e-5 -0.9843021 -0.1764919 3.3571e-4 -0.9906805 -0.1362067 0 -0.995386 -0.09595257 0 -0.9973049 -0.07336801 8.85057e-4 -0.996116 -0.08804786 0 -0.9954273 -0.09552341 -3.96742e-4 -0.7946436 -0.6070762 1.22079e-4 -0.6641384 -0.7476097 9.15569e-5 -0.8469319 -0.5317015 0 -0.9150345 -0.4033758 0 -0.9150395 -0.4033645 -5.1882e-4 -0.8972232 -0.441577 -1.83114e-4 -0.5040817 -0.8636561 0 -0.04168891 -0.9991307 3.05195e-5 -0.382226 -0.9240689 -3.05191e-5 -0.121405 -0.9926031 0 0.09704983 -0.9952796 0 0.09299278 -0.9956669 0 0.08923685 -0.9960105 0 0.2784854 -0.9604405 0 0.2785047 -0.9604349 0 0.2893401 -0.9572264 0 0.2893587 -0.9572208 3.41506e-5 0.2839443 -0.9588408 0 0.6480754 -0.7615762 0 0.4636421 -0.8860227 -3.05192e-5 0.4778083 -0.8784642 0 0.8633869 -0.5045427 0 0.6467559 -0.7626972 0 0.4913592 -0.8709571 -1.52597e-4 0.8910449 -0.4539152 9.15574e-5 0.9994105 0.034334 1.22074e-4 0.9724745 -0.2330093 -3.9675e-4 0.9974598 -0.07123184 0 0.9863626 0.164587 0 0.9863675 0.1645573 -5.18823e-4 0.9925394 0.1219235 0 0.9858996 0.167338 0 0.9874936 0.1576596 -4.5778e-4 0.9864235 0.1642208 0 0.9823791 0.1868989 -4.27265e-4 0.9813063 0.1924524 0 0.9858686 0.167521 -4.27264e-4 0.9742845 0.2253208 -3.66225e-4 0.9784616 0.2064288 0 0.9696288 0.2445816 -7.93509e-4 0.9751922 0.2213585 9.15585e-5 0.9645996 0.263719 -2.74672e-4 0.9639465 0.2660962 -3.05187e-4 0.9559972 0.2933759 -3.0519e-5 0.9590291 0.2833079 -1 0 0 -1 -1.11314e-5 0 -1 -1.56715e-4 0 -1 1.30736e-4 0 -1 -3.02275e-5 0 -1 -1.09866e-5 0 -1 -1.1725e-5 0 0.9584609 -0.285224 1.69404e-4 0.9588652 -0.2838616 -2.73869e-4 0.9594906 -0.2817407 -8.39337e-5 0.9593327 -0.2822781 1.19765e-4 0.9594838 -0.2817637 -7.67647e-5 0.959375 -0.2821343 5.41509e-5 0.959164 -0.2828505 3.11373e-4 0.9597489 -0.2808593 -2.57134e-4 0.959607 -0.281344 -2.59764e-4 0.9586433 -0.2846098 5.1651e-4 0.9598639 -0.2804661 -6.54072e-5 0.9594933 -0.2817318 -2.16153e-4 0.9596267 -0.2812768 -1.18952e-4 0.9593886 -0.2820878 5.63538e-5 0.959315 -0.2823384 7.94459e-5 0.9594498 -0.2818797 -8.54388e-5 0.9594272 -0.2819566 -6.75707e-5 0.9594246 -0.2819654 -6.47511e-5 0.9594069 -0.2820258 -5.70028e-5 0.9593603 -0.2821844 7.98294e-5 0.9594905 -0.2817409 -6.66489e-5 0.9598838 -0.280398 1.71223e-4 0.9594566 -0.2818566 6.46334e-5 0.9593398 -0.2822539 -2.21262e-5 0.9593638 -0.2821724 -3.90511e-5 0.959407 -0.2820255 1.13216e-4 0.9594671 -0.2818208 -8.95735e-5 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -69.8001 26.0044 217.18 -69.8001 26.2727 216.135 -69.8001 26.4504 215.165 -57.3556 26.5375 214.271 -69.8001 26.5375 214.271 -63.5778 26.5375 214.271 -69.8001 26.0024 217.187 -63.7133 25.8196 217.784 -57.6178 25.6455 218.301 -57.5671 25.8181 217.788 -57.5285 25.9493 217.367 -57.4921 26.0732 216.937 -57.4584 26.1876 216.498 -57.4283 26.2903 216.054 -57.4022 26.3789 215.607 -57.381 26.4512 215.16 -57.3652 26.5048 214.714 -69.8001 26.5375 214.271 -69.8001 26.6305 214.082 -69.8001 26.6883 214.031 -69.8001 26.7142 214.022 -57.2971 26.7365 214.024 -69.8001 26.7365 214.024 -57.3556 26.5375 214.271 -57.3359 26.6044 214.119 -57.3202 26.658 214.053 -57.309 26.6959 214.027 -57.3031 26.7161 214.022 -63.5778 26.5375 214.271 -63.5486 26.7365 214.024 -69.8001 26.7365 214.024 -69.8001 26.8159 214.047 -57.2505 26.8952 214.071 -69.8001 26.8952 214.071 -57.2971 26.7365 214.024 -63.5486 26.7365 214.024 -63.5253 26.8952 214.071 -69.8001 26.8952 214.071 -69.8001 26.9147 214.082 -69.8001 26.9317 214.103 -69.8001 26.952 214.178 -69.8001 26.9263 214.387 -57.2505 26.8952 214.071 -57.2448 26.9143 214.081 -57.2406 26.9286 214.098 -57.2357 26.9454 214.139 -57.2333 26.9536 214.224 -57.2413 26.9263 214.387 -63.5253 26.8952 214.071 -63.5207 26.9263 214.387 -57.2413 26.9263 214.387 -69.8001 26.9263 214.387 -69.8001 26.7483 215.428 -69.8001 26.3044 217.337 -57.266 26.8423 214.911 -57.2938 26.7477 215.431 -57.3247 26.6427 215.949 -57.3586 26.5271 216.462 -57.3957 26.4012 216.973 -57.4358 26.2648 217.479 -57.4789 26.1181 217.983 -57.5251 25.961 218.483 -63.5207 26.9263 214.387 -63.6669 26.1282 217.95 -69.8001 26.3044 217.337 -69.8001 26.5375 214.271 -69.8001 26.6305 214.082 -69.8001 26.6883 214.031 -69.8001 26.7142 214.022 -69.8001 26.7365 214.024 -69.8001 26.8159 214.047 -69.8001 26.8952 214.071 -69.8001 26.9147 214.082 -69.8001 26.9317 214.103 -69.8001 26.952 214.178 -69.8001 26.9263 214.387 -69.8001 26.7483 215.428 -69.8001 26.0024 217.187 -69.8001 26.0044 217.18 -69.8001 26.2727 216.135 -69.8001 26.4504 215.165 -57.3556 26.5375 214.271 -57.3359 26.6044 214.119 -57.3202 26.658 214.053 -57.309 26.6959 214.027 -57.3031 26.7161 214.022 -57.2971 26.7365 214.024 -57.2505 26.8952 214.071 -57.2448 26.9143 214.081 -57.2406 26.9286 214.098 -57.2357 26.9454 214.139 -57.2333 26.9536 214.224 -57.2413 26.9263 214.387 -57.266 26.8423 214.911 -57.2938 26.7477 215.431 -57.3247 26.6427 215.949 -57.3586 26.5271 216.462 -57.3957 26.4012 216.973 -57.4358 26.2648 217.479 -57.4789 26.1181 217.983 -57.5251 25.961 218.483 -57.6178 25.6455 218.301 -57.5671 25.8181 217.788 -57.5285 25.9493 217.367 -57.4921 26.0732 216.937 -57.4584 26.1876 216.498 -57.4283 26.2903 216.054 -57.4022 26.3789 215.607 -57.381 26.4512 215.16 -57.3652 26.5048 214.714 + + + + + + + + + + -6.10385e-5 -0.9580302 -0.2866674 -3.05188e-5 -0.951516 -0.3075993 1.52594e-4 -0.9554234 -0.2952394 2.44155e-4 -0.9650239 -0.2621617 1.83116e-4 -0.9645918 -0.2637475 1.52597e-4 -0.9711855 -0.2383252 0 -0.9477915 -0.3188908 -9.15583e-5 -0.9611176 -0.2761397 6.71423e-4 -0.9767061 -0.2145805 0 -0.9902945 -0.1389855 6.10379e-5 -0.9842968 -0.1765215 3.96745e-4 -0.9903675 -0.138464 3.05189e-5 -0.9953743 -0.0960735 0 -0.9972871 -0.07361084 0.001037597 -0.9960099 -0.08923679 0 -0.9778645 -0.2092393 0 -0.9952884 -0.09695911 -4.27267e-4 -0.794473 -0.6072994 1.22076e-4 -0.6638163 -0.7478958 1.22077e-4 -0.8468149 -0.5318877 0 -0.9152656 -0.4028511 -5.49338e-4 -0.8974039 -0.4412096 -1.83117e-4 -0.504425 -0.8634555 0 -0.04168891 -0.9991307 3.05193e-5 -0.382315 -0.9240322 -3.05188e-5 -0.1222278 -0.9925022 0 0.09750914 -0.9952347 0 0.09320455 -0.995647 0 0.08926713 -0.9960078 0 0.2781943 -0.9605248 0 0.2781794 -0.9605292 0 0.2896972 -0.9571183 0 0.2896964 -0.9571186 4.04781e-5 0.2839315 -0.9588446 0 0.6485366 -0.7611836 0 0.4636421 -0.8860227 -3.05192e-5 0.4778083 -0.8784642 3.0519e-5 0.8634423 -0.5044478 0 0.6456974 -0.7635935 0 0.4914185 -0.8709235 -1.83112e-4 0.8904122 -0.4551551 9.15584e-5 0.9994209 0.03402918 1.52594e-4 0.9722984 -0.2337434 -4.27263e-4 0.9974751 -0.07101714 0 0.986265 0.165171 0 0.98626 0.1652007 -5.49343e-4 0.9924793 0.1224119 0 0.9857389 0.1682827 0 0.9873953 0.1582738 -5.18819e-4 0.9862756 0.1651066 0 0.9820759 0.1884863 -7.32468e-4 0.980378 0.1971254 0 0.9856974 0.168525 -7.62977e-4 0.9734369 0.2289542 -4.27269e-4 0.9778969 0.2090871 -2.44153e-4 0.9684942 0.2490361 -0.001342833 0.9730828 0.2304525 6.10377e-5 0.9630227 0.2694205 -9.15563e-5 0.960609 0.277904 -3.0519e-5 0.954025 0.2997274 0 0.9572963 0.2891085 -1 0 0 -1 -4.95638e-5 0 -1 -4.27497e-5 0 -1 3.86026e-4 0 -1 -5.59816e-5 0 -1 7.60609e-5 0 -0.9999997 -7.84929e-4 0 0.9599742 -0.2800886 -1.17927e-4 0.9596752 -0.2811115 8.32609e-5 0.9594229 -0.2819714 -7.06955e-6 0.9594001 -0.2820489 6.16119e-6 0.9594112 -0.2820108 3.73557e-5 0.9593579 -0.2821925 3.14117e-5 0.9596081 -0.2813401 -2.02627e-4 0.9595122 -0.2816675 7.19799e-5 0.9582295 -0.2860005 2.49373e-4 0.9599626 -0.2801286 -2.64714e-4 0.9591731 -0.2828199 2.55807e-5 0.9595179 -0.2816479 -2.11426e-4 0.9590746 -0.2831535 2.69623e-4 0.9594717 -0.2818052 7.21186e-5 0.9594532 -0.2818681 -4.87189e-6 0.9594433 -0.2819018 -1.89374e-5 0.9593955 -0.2820646 5.27094e-5 0.9593933 -0.282072 2.02609e-5 0.959438 -0.2819201 -6.14473e-6 0.9593406 -0.2822514 7.01327e-5 0.9594742 -0.2817968 -7.69796e-5 0.9592355 -0.282608 -7.41753e-5 0.9594792 -0.2817799 -8.63424e-5 0.9595552 -0.2815205 -6.53084e-5 0.9593024 -0.2823812 3.54362e-5 0.9592884 -0.2824283 5.43989e-5 0.9593376 -0.2822613 1.03312e-4 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 0 52.4281 217.709 0 52.5211 217.52 0 52.5789 217.469 0 52.6048 217.46 0 52.6271 217.462 0 52.7858 217.509 0 52.8053 217.52 0 52.8223 217.541 0 52.8426 217.616 0 52.8169 217.825 0 52.0835 221.169 0 50.9034 224.392 0 50.4424 224.438 0 51.8538 220.759 0 52.2518 219.141 0 51.8538 220.759 0 52.2518 219.141 0 52.4281 217.709 -31.269 52.4281 217.709 -62.538 52.4281 217.709 -63.2176 52.0508 220.046 -59.3058 51.8765 220.682 -55.38 51.7083 221.227 -47.504 51.3966 222.129 -39.6077 51.1255 222.838 -31.6976 50.8992 223.392 -15.8567 50.5861 224.118 0 50.4424 224.438 -62.7197 52.3292 218.684 -63.0349 52.1543 219.613 0 52.4281 217.709 -62.538 52.4281 217.709 0 52.5211 217.52 0 52.5789 217.469 0 52.6048 217.46 0 52.6271 217.462 -31.269 52.4281 217.709 -31.082 52.6271 217.462 -62.1641 52.6271 217.462 -62.2771 52.5676 217.475 -62.3797 52.513 217.53 -62.4675 52.466 217.61 0 52.6271 217.462 -62.1641 52.6271 217.462 0 52.7858 217.509 -31.082 52.6271 217.462 -30.9291 52.7858 217.509 -61.8582 52.7858 217.509 0 52.7858 217.509 -61.8582 52.7858 217.509 0 52.8053 217.52 0 52.8223 217.541 0 52.8426 217.616 0 52.8169 217.825 -30.9291 52.7858 217.509 -30.8987 52.8169 217.825 -61.7973 52.8169 217.825 -61.7587 52.8366 217.74 -61.7437 52.8443 217.647 -61.7521 52.84 217.596 -61.7764 52.8276 217.552 -61.8141 52.8084 217.523 0 52.8169 217.825 0 52.0835 221.169 0 50.9034 224.392 -61.7973 52.8169 217.825 -30.8987 52.8169 217.825 -62.6392 52.3732 220.086 -62.1815 52.618 218.974 -15.709 51.0454 224.066 -31.4029 51.3393 223.349 -39.2403 51.5455 222.807 -47.0647 51.7881 222.114 -54.8701 52.0643 221.234 -58.7612 52.2143 220.704 -62.538 52.4281 217.709 -62.4675 52.466 217.61 -62.3797 52.513 217.53 -62.2771 52.5676 217.475 -62.1641 52.6271 217.462 -61.8582 52.7858 217.509 -61.8141 52.8084 217.523 -61.7764 52.8276 217.552 -61.7521 52.84 217.596 -61.7437 52.8443 217.647 -61.7587 52.8366 217.74 -61.7973 52.8169 217.825 -62.1815 52.618 218.974 -62.6392 52.3732 220.086 -63.2176 52.0508 220.046 -63.0349 52.1543 219.613 -62.7197 52.3292 218.684 + + + + + + + + + + 1 0 0 -0.001617491 -0.933632 -0.35823 -0.001617491 -0.933559 -0.3584202 -5.7986e-4 -0.9228925 -0.3850573 -9.46108e-4 -0.954348 -0.2986954 -0.00100708 -0.9375372 -0.3478837 -2.7467e-4 -0.945537 -0.3255147 0 -0.9551208 -0.2962169 0 -0.9640903 -0.265575 -2.13634e-4 -0.9716703 -0.2363407 -1.52594e-4 -0.9835323 -0.1807328 -3.66231e-4 -0.9935238 -0.1136232 0 -0.9925095 -0.1221677 6.10383e-5 -0.9887598 -0.1495133 -9.15566e-5 -0.9767873 -0.214212 0 -0.994897 -0.1008966 0 -0.9167734 -0.3994079 1.52594e-4 -0.8973138 -0.4413934 0 -0.9339132 -0.3575 9.15574e-5 -0.7945657 -0.6071782 0 -0.8334796 -0.5525503 0 -0.641852 -0.7668287 0 -0.1220136 -0.9925285 0 -0.5042714 -0.8635453 -1.52595e-4 -0.1330632 -0.9911076 0 0.08926713 -0.9960078 0 -0.2134229 -0.9769599 0 0.2839487 -0.9588395 0 0.2839537 -0.958838 0 0.2839562 -0.9588373 0 0.5105543 -0.8598456 0 0.6456646 -0.7636213 0 0.4912636 -0.871011 0 0.6045802 -0.7965443 0 0.8904369 -0.4551067 0 0.5264198 -0.8502249 0 0.8829461 -0.4694743 0 0.9805808 -0.1961161 1.22077e-4 0.9925169 0.1221075 9.15565e-5 0.9974774 -0.07098674 0 0.9859927 0.1667889 0 0.9741644 0.2258401 0 0.9999998 -7.32466e-4 0 0.9741577 0.2258691 0.002685606 0.9725366 0.2327349 6.71417e-4 0.9602187 0.2792487 5.18829e-4 0.9777791 0.2096374 0 0.9767873 0.214212 0.001892149 0.9758387 0.2184841 0 0.9853504 0.1705425 0.001037597 0.9800769 0.1986156 0.001739561 0.9383465 0.3456921 0.001342773 0.9390329 0.3438248 0.001281797 0.9405407 0.3396787 3.0519e-5 0.9538714 0.3002154 0 0.9618951 0.2734189 5.79867e-4 0.9456718 0.3251224 -0.4544308 0.8907821 -2.44318e-4 -0.4553304 0.8903226 2.37597e-4 -0.4547079 0.8906407 0 -0.453768 0.8911199 3.23151e-5 -0.4562989 0.8898262 7.71916e-4 -0.4589551 0.8884587 0.001129209 -0.4629769 0.8863704 2.74673e-4 -0.4587976 0.8885408 3.05194e-4 -0.4710286 0.8821181 6.10378e-5 -0.4823846 0.8759588 0.001220762 -0.474542 0.8802328 4.88306e-4 -0.4853729 0.8743061 0.001434385 -0.4870313 0.8733785 0.003265559 -0.469667 0.8828437 2.75253e-4 -0.4715353 0.881847 6.01388e-4 -0.4725334 0.8813124 8.74412e-4 -0.4733258 0.8808867 0.001146376 -0.4675203 0.8839824 9.15569e-5 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

13 0 0 10 0 1 11 0 2 12 0 3 13 0 4 11 0 5 9 0 6 10 0 7 13 0 8 14 0 9 7 0 10 8 0 11 8 0 12 9 0 13 14 0 14 6 0 15 7 0 16 14 0 17 13 0 18 14 0 19 9 0 20 1 0 21 2 0 22 0 0 23 14 0 24 0 0 25 2 0 26 4 0 27 5 0 28 14 0 29 14 0 30 3 0 31 4 0 32 14 0 33 2 0 34 3 0 35 6 0 36 14 0 37 5 0 38 25 1 39 27 2 40 26 3 41 15 4 42 27 2 43 25 1 44 24 5 45 15 4 46 25 1 47 23 6 48 15 4 49 24 5 50 23 6 51 22 7 52 15 4 53 22 7 54 21 8 55 15 4 56 20 9 57 15 4 58 21 8 59 16 10 60 15 4 61 20 9 62 16 10 63 18 11 64 17 12 65 18 11 66 16 10 67 28 13 68 16 10 69 20 9 70 29 14 71 18 11 72 28 13 73 19 15 74 28 13 75 16 10 76 29 14 77 41 16 78 30 17 79 36 18 80 32 19 81 30 17 82 41 16 83 31 18 84 41 16 85 36 18 86 40 20 87 32 19 88 41 16 89 40 20 90 39 21 91 32 19 92 39 21 93 34 22 94 33 23 95 37 24 96 35 25 97 34 22 98 38 26 99 37 24 100 39 21 101 34 22 102 39 21 103 37 24 104 32 19 105 39 21 106 33 23 107 45 27 108 46 27 109 44 27 110 45 28 111 44 28 112 42 28 113 43 27 114 47 27 115 46 27 116 43 29 117 46 29 118 45 29 119 54 30 120 50 31 121 48 32 122 61 33 123 51 34 124 50 31 125 61 33 126 54 30 127 49 35 128 50 31 129 54 30 130 61 33 131 61 33 132 60 36 133 51 34 134 60 36 135 59 37 136 51 34 137 53 38 138 52 39 139 57 40 140 55 41 141 53 38 142 57 40 143 52 39 144 59 37 145 58 42 146 55 41 147 57 40 148 56 43 149 57 40 150 52 39 151 58 42 152 51 34 153 59 37 154 52 39 155 74 44 156 63 45 157 66 46 158 62 47 159 66 46 160 63 45 161 67 48 162 74 44 163 66 46 164 66 46 165 65 49 166 68 50 167 66 46 168 68 50 169 67 48 170 69 51 171 64 52 172 63 45 173 70 53 174 69 51 175 63 45 176 72 54 177 63 45 178 73 55 179 63 45 180 72 54 181 71 56 182 63 45 183 71 56 184 70 53 185 74 44 186 73 55 187 63 45 188 84 57 189 83 57 190 82 57 191 85 58 192 84 58 193 82 58 194 86 59 195 85 59 196 80 59 197 81 60 198 85 60 199 82 60 200 80 61 201 85 61 202 81 61 203 80 62 204 79 63 205 86 64 206 79 63 207 87 65 208 86 64 209 88 66 210 87 65 211 91 67 212 88 66 213 90 68 214 89 69 215 90 68 216 88 66 217 91 67 218 77 70 219 87 70 220 78 70 221 77 71 222 76 71 223 87 71 224 87 72 225 76 72 226 75 72 227 75 73 228 91 73 229 87 73 230 79 63 231 78 74 232 87 65 233

+
+
+
+ + + + 0 50.5383 217.882 0 50.6314 217.692 0 50.6891 217.641 0 50.715 217.632 0 50.7374 217.634 0 50.8167 217.658 0 50.896 217.681 0 50.9155 217.692 0 50.9325 217.714 0 50.9528 217.788 0 50.9271 217.998 0 50.1955 221.335 0 49.0188 224.553 0 48.5656 224.582 0 49.3805 222.638 0 49.9809 220.874 0 50.3668 219.288 0 48.5656 224.582 0 49.3805 222.638 0 49.9809 220.874 0 50.3668 219.288 0 50.5383 217.882 -32.8 50.5383 217.882 -65.6001 50.5383 217.882 -65.9906 50.2555 219.826 -61.9146 50.0744 220.546 -57.8196 49.8975 221.15 -49.6012 49.5635 222.145 -41.3591 49.2697 222.925 -33.1006 49.0248 223.528 -24.8336 48.8338 223.978 -16.5592 48.6955 224.292 -65.7317 50.4442 218.824 -65.9635 50.2755 219.737 0 50.5383 217.882 -65.6001 50.5383 217.882 0 50.6314 217.692 0 50.6891 217.641 0 50.715 217.632 0 50.7374 217.634 -32.8 50.5383 217.882 -32.6577 50.7374 217.634 -65.3154 50.7374 217.634 -65.3623 50.7049 217.635 -65.40731 50.6737 217.651 -65.4864 50.6185 217.709 0 50.7374 217.634 -65.3154 50.7374 217.634 0 50.8167 217.658 0 50.896 217.681 -32.6577 50.7374 217.634 -32.5413 50.896 217.681 -65.08261 50.896 217.681 0 50.896 217.681 -65.08261 50.896 217.681 0 50.9155 217.692 0 50.9325 217.714 0 50.9528 217.788 0 50.9271 217.998 -32.5413 50.896 217.681 -32.5181 50.9271 217.998 -65.0363 50.9271 217.998 -64.9954 50.9545 217.826 -64.9998 50.9516 217.778 -65.01541 50.9411 217.733 -65.04441 50.9217 217.698 0 50.9271 217.998 0 50.1955 221.335 0 49.0188 224.553 -65.0363 50.9271 217.998 -32.5181 50.9271 217.998 -65.5466 50.5761 219.865 -65.2712 50.7678 218.941 -16.4453 49.149 224.254 -24.6628 49.281 223.941 -32.8734 49.4595 223.496 -41.0761 49.6833 222.904 -49.2633 49.9472 222.138 -57.4281 50.2452 221.162 -61.4965 50.4055 220.569 -65.6001 50.5383 217.882 -65.4864 50.6185 217.709 -65.40731 50.6737 217.651 -65.3623 50.7049 217.635 -65.3154 50.7374 217.634 -65.08261 50.896 217.681 -65.04441 50.9217 217.698 -65.01541 50.9411 217.733 -64.9998 50.9516 217.778 -64.9954 50.9545 217.826 -65.0363 50.9271 217.998 -65.2712 50.7678 218.941 -65.5466 50.5761 219.865 -65.9906 50.2555 219.826 -65.9635 50.2755 219.737 -65.7317 50.4442 218.824 + + + + + + + + + + 1 0 0 -3.66228e-4 -0.9350411 -0.3545392 -4.57785e-4 -0.922254 -0.3865843 -6.40905e-4 -0.92156 -0.3882357 -1.22078e-4 -0.9269663 -0.3751447 -3.96743e-4 -0.9231608 -0.3844138 3.05193e-5 -0.9353864 -0.3536273 -1.22077e-4 -0.9480159 -0.318223 3.05194e-5 -0.9591631 -0.2828537 -2.44153e-4 -0.9601299 -0.2795546 -9.15583e-5 -0.9838554 -0.178966 -3.05187e-4 -0.9697915 -0.2439356 -3.66226e-4 -0.993663 -0.1124008 0 -0.992644 -0.1210705 6.1038e-5 -0.9893651 -0.1454535 -1.52595e-4 -0.9749922 -0.2222397 -3.05192e-5 -0.9790239 -0.2037459 0 -0.9950475 -0.09940099 6.10379e-5 -0.9024449 -0.4308053 0 -0.7953064 -0.6062079 0 -0.8979874 -0.4400212 0 -0.8664817 -0.4992089 0 -0.9072516 -0.4205885 -3.05191e-5 -0.6719388 -0.7406067 0 -0.5048138 -0.8632283 0 -0.3784938 -0.9256038 0 -0.122442 -0.9924758 -3.05189e-5 0.01837235 -0.9998312 0 0.08884054 -0.9960459 0 -0.03048866 -0.9995352 0 0.2897113 -0.9571141 0 0.2785223 -0.9604298 7.42763e-6 0.2840967 -0.9587957 0 0.5266646 -0.8500732 0 0.654268 -0.7562628 0 0.4912405 -0.871024 0 0.656181 -0.7546036 3.05194e-5 0.8947688 -0.4465298 0 0.5515975 -0.8341104 0 0.9186629 -0.3950424 9.15559e-5 0.9925884 0.1215252 6.10382e-5 0.9973341 -0.07297116 0 0.9985842 0.0531947 0 0.9875466 0.1573274 0 0.9879754 -0.1546115 0 0.987552 0.1572929 6.1038e-4 0.9602807 0.2790353 7.32467e-4 0.9783315 0.2070439 0.002105772 0.9745072 0.2243463 0 0.9768 0.2141537 3.05192e-5 0.9651075 0.2618544 6.40894e-4 0.9820938 0.1883923 0 0.9860345 0.1665415 0.001281797 0.9784212 0.2066163 0.001800596 0.9380422 0.3465165 0.001190185 0.939189 0.3433988 0.001678526 0.9384601 0.3453838 4.88303e-4 0.9467585 0.3219443 -3.05194e-5 0.9559577 0.2935046 0.001220703 0.9407408 0.3391245 -0.5612906 0.8276172 0.001610815 -0.5563453 0.8309513 5.79949e-5 -0.5733006 0.8193451 -1.83114e-4 -0.561429 0.8275249 6.10382e-5 -0.5663786 0.8241452 2.74674e-4 -0.5561662 0.8310712 -1.98631e-4 -0.5584208 0.8295578 1.35429e-4 -0.561499 0.8274771 7.93509e-4 -0.5697225 0.8218372 1.52593e-4 -0.5752062 0.8180074 0.001354634 -0.5854463 0.8107071 0.002594113 -0.5820029 0.8131865 6.40905e-4 -0.5765981 0.8170279 3.35711e-4 -0.5857459 0.8104858 0.003814816 -0.5697499 0.8218182 1.5616e-4 -0.5720097 0.8202468 5.19414e-4 -0.5750916 0.8180881 0.001311302 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

15 0 0 11 0 1 12 0 2 10 0 3 16 0 4 9 0 5 11 0 6 15 0 7 10 0 8 15 0 9 12 0 10 14 0 11 16 0 12 8 0 13 9 0 14 16 0 15 7 0 16 8 0 17 6 0 18 7 0 19 16 0 20 10 0 21 15 0 22 16 0 23 13 0 24 14 0 25 12 0 26 2 0 27 16 0 28 0 0 29 4 0 30 5 0 31 16 0 32 3 0 33 16 0 34 2 0 35 16 0 36 3 0 37 4 0 38 1 0 39 2 0 40 0 0 41 6 0 42 16 0 43 5 0 44 18 1 45 17 2 46 31 3 47 29 4 48 18 1 49 30 5 50 31 3 51 30 5 52 18 1 53 28 6 54 18 1 55 29 4 56 27 7 57 18 1 58 28 6 59 26 8 60 19 9 61 27 7 62 19 9 63 18 1 64 27 7 65 20 10 66 19 9 67 25 11 68 20 10 69 22 12 70 21 13 71 22 12 72 20 10 73 32 14 74 24 15 75 20 10 76 25 11 77 33 16 78 20 10 79 24 15 80 32 14 81 20 10 82 33 16 83 32 14 84 23 17 85 22 12 86 26 8 87 25 11 88 19 9 89 40 18 90 36 19 91 34 20 92 45 21 93 36 19 94 40 18 95 35 22 96 45 21 97 40 18 98 44 23 99 36 19 100 45 21 101 44 23 102 37 24 103 36 19 104 43 25 105 38 26 106 37 24 107 41 27 108 39 28 109 38 26 110 42 29 111 41 27 112 43 25 113 38 26 114 43 25 115 41 27 116 44 23 117 43 25 118 37 24 119 48 30 120 46 30 121 50 30 122 48 30 123 50 30 124 47 30 125 51 31 126 49 31 127 48 31 128 48 31 129 52 31 130 51 31 131 47 32 132 52 32 133 48 32 134 59 33 135 55 34 136 53 35 137 65 36 138 56 37 139 55 34 140 54 38 141 65 36 142 59 33 143 55 34 144 59 33 145 65 36 146 65 36 147 64 39 148 56 37 149 58 40 150 57 41 151 62 42 152 60 43 153 58 40 154 62 42 155 57 41 156 64 39 157 63 44 158 60 43 159 62 42 160 61 45 161 62 42 162 57 41 163 63 44 164 56 37 165 64 39 166 57 41 167 67 46 168 70 47 169 79 48 170 66 49 171 70 47 172 67 46 173 78 50 174 67 46 175 79 48 176 72 51 177 70 47 178 69 52 179 70 47 180 72 51 181 71 53 182 70 47 183 71 53 184 79 48 185 73 54 186 68 55 187 67 46 188 74 56 189 73 54 190 67 46 191 76 57 192 67 46 193 77 58 194 67 46 195 76 57 196 75 59 197 67 46 198 75 59 199 74 56 200 78 50 201 77 58 202 67 46 203 89 60 204 88 60 205 87 60 206 90 61 207 89 61 208 86 61 209 91 62 210 90 63 211 84 64 212 86 65 213 89 65 214 87 65 215 85 66 216 90 66 217 86 66 218 85 67 219 84 64 220 90 63 221 84 64 222 83 68 223 91 62 224 95 69 225 91 69 226 80 69 227 94 70 228 92 71 229 95 72 230 92 71 231 94 70 232 93 73 233 82 74 234 91 74 235 83 74 236 81 75 237 91 75 238 82 75 239 91 76 240 81 76 241 80 76 242 92 71 243 91 62 244 95 72 245

+
+
+
+ + + + 0 48.6436 217.988 0 48.7367 217.799 0 48.7944 217.748 0 48.8203 217.739 0 48.8427 217.74 0 48.922 217.764 0 49.0013 217.788 0 49.0209 217.799 0 49.0378 217.82 0 49.0581 217.894 0 49.0325 218.104 0 48.3024 221.436 0 47.1287 224.649 0 46.6825 224.663 0 48.0893 220.97 0 48.473 219.39 0 46.6825 224.663 0 48.0893 220.97 0 48.473 219.39 0 48.6436 217.988 -33.9659 48.6436 217.988 -67.9318 48.6436 217.988 -68.1556 48.4301 219.611 -66.0581 48.3389 220.027 -63.9511 48.2487 220.394 -59.7241 48.0674 221.044 -51.2397 47.7145 222.124 -42.7287 47.3989 222.971 -34.1986 47.136 223.62 -25.6581 46.934 224.096 -17.1092 46.793 224.417 -68.0129 48.567 218.806 0 48.6436 217.988 -67.9318 48.6436 217.988 0 48.7367 217.799 0 48.7944 217.748 0 48.8203 217.739 0 48.8427 217.74 -33.9659 48.6436 217.988 -33.8582 48.8427 217.74 -67.7165 48.8427 217.74 -67.7548 48.8077 217.742 -67.79061 48.7748 217.76 -67.8506 48.7194 217.822 0 48.8427 217.74 -67.7165 48.8427 217.74 0 48.922 217.764 0 49.0013 217.788 -33.8582 48.8427 217.74 -33.7701 49.0013 217.788 -67.5402 49.0013 217.788 0 49.0013 217.788 -67.5402 49.0013 217.788 0 49.0209 217.799 0 49.0378 217.82 0 49.0581 217.894 0 49.0325 218.104 -33.7701 49.0013 217.788 -33.7526 49.0325 218.104 -67.5051 49.0325 218.104 -67.4742 49.0598 217.936 -67.4868 49.0487 217.846 -67.5072 49.0307 217.809 0 49.0325 218.104 0 48.3024 221.436 0 47.1287 224.649 -67.5051 49.0325 218.104 -33.7526 49.0325 218.104 -67.81491 48.7525 219.648 -67.6491 48.9038 218.881 -17.0213 47.2413 224.391 -25.5264 47.3766 224.071 -34.0234 47.5658 223.6 -42.511 47.8063 222.96 -50.9804 48.0907 222.127 -59.4242 48.4075 221.064 -63.6308 48.5747 220.422 -65.7275 48.6611 220.06 -68.1556 48.4301 219.611 -67.9318 48.6436 217.988 -67.8506 48.7194 217.822 -67.79061 48.7748 217.76 -67.7548 48.8077 217.742 -67.7165 48.8427 217.74 -67.5402 49.0013 217.788 -67.5072 49.0307 217.809 -67.4868 49.0487 217.846 -67.4742 49.0598 217.936 -67.5051 49.0325 218.104 -67.6491 48.9038 218.881 -67.81491 48.7525 219.648 -68.0129 48.567 218.806 + + + + + + + + + + 1 0 0 -6.40901e-4 -0.9246374 -0.3808479 -0.00149542 -0.9343532 -0.3563452 -2.13631e-4 -0.9176388 -0.3974156 -8.85057e-4 -0.955129 -0.2961888 -0.001586973 -0.9340295 -0.3571926 -8.54529e-4 -0.9395238 -0.3424829 -6.10389e-5 -0.9501922 -0.3116645 0 -0.9626967 -0.270583 -2.7467e-4 -0.9711413 -0.238505 -1.22075e-4 -0.9839226 -0.1785954 -9.15577e-5 -0.9765854 -0.2151302 -3.9675e-4 -0.993858 -0.1106626 0 -0.9926815 -0.1207624 3.05186e-5 -0.9910299 -0.1336408 3.05193e-5 -0.9848282 -0.1735329 0 -0.995647 -0.09320455 0 -0.8653741 -0.5011265 6.10378e-5 -0.8971028 -0.441822 0 -0.9096377 -0.4154027 6.10384e-5 -0.7946584 -0.607057 0 -0.909666 -0.4153406 -3.05193e-5 -0.6819224 -0.7314246 3.05187e-5 -0.504719 -0.8632838 0 -0.3846912 -0.9230453 0 -0.1442023 -0.9895483 -3.05186e-5 -0.01724302 -0.9998514 0 0.04489403 -0.9989917 0 -0.05700981 -0.9983736 0 0.2897092 -0.9571147 0 0.2897101 -0.9571145 0 0.2895256 -0.9571703 3.40406e-7 0.2896054 -0.9571461 -3.0519e-5 0.5469007 -0.8371976 0 0.6462103 -0.7631593 0 0.4894656 -0.8720227 0 0.7034351 -0.7107596 3.05191e-5 0.8904867 -0.4550095 0 0.5814172 -0.8136056 -3.05194e-5 0.9502524 -0.3114811 9.15582e-5 0.992644 0.1210705 6.10375e-5 0.997323 -0.07312297 0 0.9997821 0.02087515 0 0.9870556 0.1603789 0.002014219 0.9752118 0.2212645 5.49349e-4 0.9603239 0.2788864 8.85045e-4 0.9787372 0.2051167 0 0.9768269 0.2140309 0.00149542 0.9776273 0.2103396 3.96752e-4 0.9835484 0.1806442 0 0.9865601 0.1633992 8.24007e-4 0.9805686 0.1961748 0.001159667 0.9408947 0.3386976 0.001709043 0.938166 0.3461814 0.001770079 0.9378279 0.3470961 0.00100708 0.9392886 0.343127 -6.10385e-5 0.9577557 0.2875831 1.22076e-4 0.9675772 0.252576 3.9675e-4 0.9473473 0.3202077 -0.6615275 0.7499209 1.64232e-4 -0.6739524 0.7387748 -1.22076e-4 -0.6652859 0.7465887 2.13634e-4 -0.6673006 0.7447886 -6.10382e-5 -0.6618048 0.7496763 1.50465e-4 -0.6653515 0.7465302 1.87138e-4 -0.6719707 0.7405778 3.05192e-5 -0.6754509 0.7374049 4.27269e-4 -0.6874144 0.7262636 0.001645147 -0.6845603 0.7289562 3.86471e-4 -0.6764873 0.7364542 6.08885e-4 -0.6785664 0.7345389 6.71425e-4 -0.6770101 0.7359734 7.32464e-4 -0.6846339 0.7288864 0.001098632 -0.6824596 0.7309234 9.15562e-5 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 11 0 1 12 0 2 9 0 3 10 0 4 14 0 5 12 0 6 14 0 7 10 0 8 14 0 9 12 0 10 13 0 11 8 0 12 9 0 13 14 0 14 7 0 15 8 0 16 14 0 17 6 0 18 7 0 19 15 0 20 15 0 21 7 0 22 14 0 23 15 0 24 0 0 25 2 0 26 0 0 27 1 0 28 2 0 29 4 0 30 5 0 31 15 0 32 15 0 33 3 0 34 4 0 35 2 0 36 3 0 37 15 0 38 6 0 39 15 0 40 5 0 41 29 1 42 16 2 43 30 3 44 17 4 45 16 2 46 28 5 47 29 1 48 28 5 49 16 2 50 27 6 51 17 4 52 28 5 53 26 7 54 17 4 55 27 6 56 26 7 57 25 8 58 17 4 59 25 8 60 24 9 61 17 4 62 18 10 63 24 9 64 23 11 65 17 4 66 24 9 67 18 10 68 18 10 69 20 12 70 19 13 71 20 12 72 18 10 73 31 14 74 22 15 75 18 10 76 23 11 77 31 14 78 18 10 79 22 15 80 31 14 81 21 16 82 20 12 83 43 17 84 32 18 85 38 19 86 34 20 87 32 18 88 43 17 89 33 21 90 43 17 91 38 19 92 42 22 93 34 20 94 43 17 95 42 22 96 35 23 97 34 20 98 41 24 99 36 25 100 35 23 101 39 26 102 37 27 103 36 25 104 40 28 105 39 26 106 41 24 107 36 25 108 41 24 109 39 26 110 42 22 111 41 24 112 35 23 113 46 29 114 44 29 115 48 29 116 46 30 117 48 30 118 45 30 119 49 31 120 47 31 121 46 31 122 46 31 123 50 31 124 49 31 125 45 32 126 50 32 127 46 32 128 57 33 129 53 34 130 51 35 131 62 36 132 54 37 133 53 34 134 52 38 135 62 36 136 57 33 137 53 34 138 57 33 139 62 36 140 62 36 141 61 39 142 54 37 143 56 40 144 55 41 145 60 42 146 58 43 147 56 40 148 60 42 149 55 41 150 61 39 151 60 42 152 58 43 153 60 42 154 59 43 155 54 37 156 61 39 157 55 41 158 76 44 159 64 45 160 67 46 161 63 47 162 67 46 163 64 45 164 77 48 165 76 44 166 67 46 167 69 49 168 67 46 169 66 50 170 67 46 171 69 49 172 68 51 173 67 46 174 68 51 175 77 48 176 72 52 177 71 53 178 64 45 179 70 54 180 64 45 181 71 53 182 64 45 183 70 54 184 65 55 185 74 56 186 64 45 187 75 57 188 64 45 189 74 56 190 73 58 191 64 45 192 73 58 193 72 52 194 76 44 195 75 57 196 64 45 197 88 59 198 87 59 199 86 59 200 89 60 201 88 61 202 84 62 203 85 63 204 88 63 205 86 63 206 84 64 207 88 64 208 85 64 209 84 62 210 83 65 211 89 60 212 83 65 213 82 66 214 89 60 215 91 67 216 78 67 217 90 67 218 79 68 219 91 68 220 90 68 221 82 69 222 81 69 223 89 69 224 80 70 225 89 60 226 81 71 227 90 72 228 80 70 229 79 73 230 80 70 231 90 72 232 89 60 233

+
+
+
+ + + + 0 46.7464 218.018 0 46.8395 217.829 0 46.8972 217.778 0 46.9231 217.769 0 46.9455 217.771 0 47.0248 217.794 0 47.1041 217.818 0 47.1236 217.829 0 47.1406 217.85 0 47.1609 217.925 0 47.1352 218.134 0 46.4071 221.46 0 45.2373 224.666 0 44.7992 224.662 0 46.5768 219.415 0 46.5768 219.415 0 46.7464 218.018 -34.8404 46.7464 218.018 -69.6807 46.7464 218.018 -69.7247 46.6903 218.676 -69.8001 46.5929 219.326 -69.8001 46.5793 219.401 -69.67681 46.5741 219.429 -69.36071 46.5618 219.494 -69.0439 46.5499 219.556 -68.4096 46.5259 219.675 -67.13951 46.4765 219.905 -64.47071 46.3673 220.362 -56.4823 46.0069 221.596 -48.4553 45.6707 222.557 -40.4032 45.3859 223.292 -32.3343 45.1589 223.841 -24.2575 44.9907 224.232 -16.1743 44.8775 224.488 0 44.7992 224.662 0 46.7464 218.018 0 46.8395 217.829 0 46.8972 217.778 0 46.9231 217.769 0 46.9455 217.771 -69.6807 46.7464 218.018 -34.8404 46.7464 218.018 -34.7606 46.9455 217.771 -69.5213 46.9455 217.771 -69.55181 46.9078 217.773 -69.5795 46.8735 217.794 -69.6236 46.8185 217.858 0 46.9455 217.771 0 47.0248 217.794 0 47.1041 217.818 -69.5213 46.9455 217.771 -34.7606 46.9455 217.771 -34.6952 47.1041 217.818 -69.39041 47.1041 217.818 0 47.1041 217.818 0 47.1236 217.829 0 47.1406 217.85 0 47.1609 217.925 0 47.1352 218.134 -69.39041 47.1041 217.818 -34.6952 47.1041 217.818 -34.6821 47.1352 218.134 -69.36431 47.1352 218.134 -69.3413 47.1626 217.969 -69.34951 47.1528 217.88 -69.3648 47.1347 217.841 -69.3762 47.1211 217.827 0 47.1352 218.134 0 46.4071 221.46 -69.36431 47.1352 218.134 -34.6821 47.1352 218.134 0 45.2373 224.666 -69.5535 46.9057 219.436 -69.45301 47.0287 218.788 -56.1033 46.3673 221.595 -59.4779 46.4998 221.132 -62.8462 46.634 220.626 -64.5277 46.7011 220.355 -66.2071 46.7681 220.071 -67.8838 46.8352 219.772 -68.7204 46.8692 219.612 -69.1378 46.8869 219.528 -69.346 46.8961 219.483 -14.0585 45.2962 224.532 -28.108 45.5004 224.05 -42.1341 45.8616 223.121 -49.1288 46.0991 222.445 -69.8001 46.5929 219.326 -69.8001 46.5929 219.4 -69.8001 46.5793 219.401 -69.8001 46.5929 219.363 -69.8001 46.5929 219.326 -69.7247 46.6903 218.676 -69.6807 46.7464 218.018 -69.6236 46.8185 217.858 -69.5795 46.8735 217.794 -69.55181 46.9078 217.773 -69.5213 46.9455 217.771 -69.39041 47.1041 217.818 -69.3762 47.1211 217.827 -69.3648 47.1347 217.841 -69.34951 47.1528 217.88 -69.3413 47.1626 217.969 -69.36431 47.1352 218.134 -69.45301 47.0287 218.788 -69.5535 46.9057 219.436 -69.8001 46.5929 219.4 -69.8001 46.5929 219.363 + + + + + + + + + + 1 0 0 -3.6623e-4 -0.9214963 -0.3883872 -0.003021359 -0.9467108 -0.3220709 -9.15584e-5 -0.9159198 -0.4013615 -9.15589e-4 -0.9288044 -0.3705695 -0.002044796 -0.9397532 -0.3418477 -0.002472043 -0.9498488 -0.3126996 -0.00149542 -0.9752961 -0.2208966 -9.76624e-4 -0.9609061 -0.2768728 -2.44154e-4 -0.9723417 -0.2335634 -6.10372e-5 -0.9775112 -0.2108836 0 -0.9801452 -0.1982813 0 -0.9819934 -0.1889153 -9.15566e-5 -0.9832563 -0.182228 -4.27261e-4 -0.9940236 -0.1091653 0 -0.9927111 -0.1205182 -4.88311e-4 -0.9864178 -0.1642554 0 -0.9929609 -0.1184436 -0.001678526 -0.9840973 -0.1776227 -9.1558e-4 -0.9839437 -0.1784771 0 -0.9963866 -0.08493453 0 -0.8638143 -0.5038103 6.10395e-5 -0.8970969 -0.4418341 0 -0.9117193 -0.4108139 6.10387e-5 -0.7946324 -0.607091 0 -0.9117307 -0.4107885 -3.05194e-5 -0.6900125 -0.7237976 3.05194e-5 -0.504791 -0.8632416 0 -0.3958595 -0.9183111 0 -0.122442 -0.9924758 -3.05185e-5 0 -1 0 0.08887082 -0.9960432 0 -0.05294966 -0.9985972 0 0.2786654 -0.9603883 0 0.2786661 -0.9603881 0 0.2895135 -0.957174 -6.97257e-6 0.2841201 -0.9587888 0 0.4805299 -0.8769785 0 0.6458137 -0.7634952 0 0.4913954 -0.8709366 0 0.5539253 -0.8325664 0 0.4678583 -0.8838035 0 0.7980585 -0.6025801 3.05187e-5 0.8905053 -0.4549729 -3.05192e-5 0.9573885 -0.2888035 6.10376e-5 0.9974774 -0.07098674 0 0.9995689 0.02935957 9.15581e-5 0.9925206 0.1220775 0 0.9864845 0.1638545 0 0.9864944 0.1637951 0.002075254 0.9757899 0.2187004 7.62969e-4 0.9785835 0.2058489 0.001586973 0.977443 0.2111938 0.001068115 0.9795662 0.2011197 0.001129209 0.9792131 0.2028315 3.96746e-4 0.9603697 0.2787293 0 0.9768666 0.2138498 0.001074969 0.979584 0.2010329 2.74671e-4 0.9845746 0.1749656 0 0.9870008 0.1607157 5.49346e-4 0.98214 0.1881511 8.54526e-4 0.9805076 0.1964799 8.8506e-4 0.9804639 0.1966971 6.10382e-5 0.9534475 0.3015593 6.10389e-4 0.9451875 0.3265277 0.001403868 0.9389531 0.3440427 0.001617491 0.9379757 0.3466976 6.4091e-4 0.9394212 0.3427646 0.002411007 0.9741466 0.2259041 6.10391e-5 0.9665237 0.2565779 0 0.9610666 0.276317 -0.9999996 -9.47867e-4 0 -1 0 0 -0.7645987 0.6445063 -6.33733e-4 -0.774028 0.6331514 5.49346e-4 -0.7659652 0.6428821 0 -0.7697547 0.6383391 0.001037597 -0.7753086 0.6315634 0.004944086 -0.7765626 0.6300091 0.006256401 -0.7688612 0.6393966 0.00495398 -0.7671018 0.6415238 0.00143516 -0.7768605 0.6296675 0.002594113 -0.778732 0.6273559 -0.001129209 -0.7852365 0.6191961 0 -0.7850634 0.6194155 0 -0.7807556 0.6248364 3.05185e-4 -0.7853502 0.6190512 8.85056e-4 -0.7834495 0.6214554 2.13632e-4 -0.7770675 0.6294131 0.00230658 -0.7765191 0.6300596 0.006561517 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 0 44.6795 219.39 -69.8001 44.6795 219.39 0 44.8488 217.995 -69.8001 44.8488 217.995 -34.9 44.8488 217.995 -69.8001 44.6013 219.779 -61.16 44.2282 221.197 -52.473 43.8614 222.293 -43.7554 43.5457 223.125 -35.0179 43.2941 223.74 -26.2712 43.1084 224.173 -17.517 42.985 224.453 0 42.9064 224.628 0 44.8488 217.995 -69.8001 44.8488 217.995 0 44.9419 217.805 -69.8001 44.9419 217.805 0 44.9996 217.754 -69.8001 44.9996 217.754 0 45.0255 217.746 -69.8001 45.0255 217.746 0 45.0479 217.747 -69.8001 45.0479 217.747 -34.9 44.8488 217.995 -34.9 45.0479 217.747 0 45.0479 217.747 -69.8001 45.0479 217.747 0 45.1272 217.771 -69.8001 45.1272 217.771 0 45.2065 217.794 -69.8001 45.2065 217.794 -34.9 45.0479 217.747 -34.9 45.2065 217.794 0 45.2065 217.794 -69.8001 45.2065 217.794 0 45.2261 217.805 -69.8001 45.2261 217.805 0 45.243 217.827 -69.8001 45.243 217.827 0 45.2633 217.901 -69.8001 45.2633 217.901 0 45.2377 218.111 -69.8001 45.2377 218.111 -34.9 45.2065 217.794 -34.9 45.2377 218.111 0 45.2377 218.111 -69.8001 45.2377 218.111 0 44.5098 221.435 -34.9 45.2377 218.111 0 43.3416 224.638 -69.8001 44.9448 219.715 -69.8001 45.1039 218.916 -17.5179 43.4211 224.457 -26.2724 43.5426 224.172 -35.0193 43.7223 223.73 -43.7571 43.9614 223.106 -52.4748 44.2542 222.262 -61.1619 44.5902 221.152 0 44.8488 217.995 0 44.9419 217.805 0 44.9996 217.754 0 45.0255 217.746 0 45.0479 217.747 0 45.1272 217.771 0 45.2065 217.794 0 45.2261 217.805 0 45.243 217.827 0 45.2633 217.901 0 45.2377 218.111 0 44.5098 221.435 0 43.3416 224.638 0 42.9064 224.628 0 44.6795 219.39 -69.8001 44.8488 217.995 -69.8001 44.9419 217.805 -69.8001 44.9996 217.754 -69.8001 45.0255 217.746 -69.8001 45.0479 217.747 -69.8001 45.1272 217.771 -69.8001 45.2065 217.794 -69.8001 45.2261 217.805 -69.8001 45.243 217.827 -69.8001 45.2633 217.901 -69.8001 45.2377 218.111 -69.8001 45.1039 218.916 -69.8001 44.9448 219.715 -69.8001 44.6013 219.779 -69.8001 44.6795 219.39 + + + + + + + + + + -9.15559e-5 -0.916352 -0.4003738 -3.66232e-4 -0.921714 -0.38787 -0.002777218 -0.9468357 -0.3217056 -0.00100708 -0.9304291 -0.3664707 -0.003173947 -0.9456045 -0.3253033 -0.00137335 -0.9753094 -0.2208386 -0.001983702 -0.9524744 -0.3046123 0 -0.9927185 -0.120458 0 -0.9872974 -0.1588831 -3.05187e-5 -0.9792525 -0.2026439 -3.96744e-4 -0.9668647 -0.2552893 0 -0.8979874 -0.4400212 0 -0.7953064 -0.6062079 0 -0.8980174 -0.4399598 0 -0.4895845 -0.8719559 0 -0.4895612 -0.8719689 0 -0.8979995 -0.4399966 0 0.04422259 -0.9990218 0 -0.1272043 -0.9918766 0 0.289718 -0.9571121 0 0.2896953 -0.957119 0 0.2896833 -0.9571227 0 0.2786834 -0.960383 0 0.2786725 -0.9603863 0 0.2786718 -0.9603865 0 0.488977 -0.8722968 0 0.6543657 -0.7561783 0 0.4889175 -0.8723301 0 0.8954564 -0.4451494 0 0.9926555 0.1209766 0 0.9926518 0.1210067 0 0.997323 -0.07312297 0.002075254 0.9734707 0.2288024 3.96753e-4 0.960386 0.2786731 3.35711e-4 0.97753 0.2107961 0 0.9768538 0.213908 9.15564e-4 0.9799592 0.1991963 0 0.986469 0.1639486 3.66228e-4 0.9836887 0.179879 0.001617491 0.9377513 0.347304 7.01938e-4 0.9394675 0.3426373 0.001678526 0.937637 0.3476121 4.8831e-4 0.9460697 0.323963 -6.10392e-5 0.9565452 0.2915843 0.001281797 0.9395992 0.3422745 1 0 0 -1 0 0 -1 2.89352e-5 0 -1 -4.60851e-5 0 -0.9999998 -6.13497e-4 0 -1 -7.80275e-5 0 -0.9999999 6.26346e-4 0 -1 2.36922e-5 0 -1 -2.96578e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

11 0 0 10 1 1 12 2 2 9 3 3 12 2 4 10 1 5 9 3 6 8 4 7 12 2 8 0 5 9 8 4 10 7 6 11 0 5 12 12 2 13 8 4 14 4 7 15 2 7 16 0 5 17 1 8 18 4 7 19 0 5 20 5 9 21 0 5 22 6 10 23 1 8 24 0 5 25 5 9 26 1 8 27 3 7 28 4 7 29 7 6 30 6 10 31 0 5 32 23 11 33 15 12 34 13 13 35 16 12 36 18 14 37 17 15 38 16 12 39 17 15 40 15 12 41 14 16 42 16 12 43 23 11 44 15 12 45 23 11 46 16 12 47 24 17 48 21 17 49 19 18 50 20 18 51 24 17 52 19 18 53 19 18 54 17 15 55 18 14 56 19 18 57 18 14 58 20 18 59 24 17 60 20 18 61 22 17 62 31 19 63 27 19 64 25 19 65 31 20 66 26 20 67 28 20 68 28 21 69 27 21 70 31 21 71 27 22 72 28 22 73 32 22 74 32 23 75 28 23 76 30 23 77 29 24 78 27 24 79 32 24 80 43 25 81 35 26 82 33 27 83 36 26 84 38 28 85 37 28 86 36 26 87 37 28 88 35 26 89 34 27 90 36 26 91 43 25 92 35 26 93 43 25 94 36 26 95 44 29 96 41 30 97 39 31 98 40 31 99 44 29 100 39 31 101 39 31 102 37 28 103 38 28 104 39 31 105 38 28 106 40 31 107 44 29 108 40 31 109 42 30 110 57 32 111 47 33 112 48 34 113 45 35 114 48 34 115 47 33 116 50 36 117 57 32 118 48 34 119 48 34 120 46 37 121 51 38 122 48 34 123 51 38 124 50 36 125 52 39 126 49 40 127 47 33 128 53 41 129 52 39 130 47 33 131 55 42 132 47 33 133 56 43 134 47 33 135 55 42 136 54 44 137 47 33 138 54 44 139 53 41 140 57 32 141 56 43 142 47 33 143 72 45 144 68 45 145 69 45 146 72 45 147 67 45 148 68 45 149 72 45 150 66 45 151 67 45 152 72 45 153 65 45 154 66 45 155 64 45 156 65 45 157 72 45 158 70 45 159 72 45 160 69 45 161 59 45 162 60 45 163 58 45 164 72 45 165 58 45 166 60 45 167 71 45 168 72 45 169 70 45 170 62 45 171 63 45 172 72 45 173 72 45 174 61 45 175 62 45 176 72 45 177 60 45 178 61 45 179 64 45 180 72 45 181 63 45 182 79 46 183 78 46 184 83 46 185 83 46 186 87 46 187 84 46 188 81 46 189 83 46 190 82 46 191 80 46 192 83 46 193 81 46 194 80 46 195 79 46 196 83 46 197 87 47 198 85 47 199 84 47 200 83 48 201 78 48 202 87 48 203 78 46 204 73 46 205 87 46 206 74 49 207 73 49 208 75 49 209 77 50 210 73 50 211 78 50 212 73 51 213 77 51 214 76 51 215 73 52 216 76 52 217 75 52 218 86 53 219 85 53 220 87 53 221

+
+
+
+ + + + 0 38.9945 219.12 -69.8001 38.9945 219.12 0 39.1624 217.733 -69.8001 39.1624 217.733 -34.9 39.1624 217.733 -69.8001 38.7252 220.298 -61.1305 38.3808 221.439 -52.4315 38.0625 222.337 -43.7127 37.7921 223.031 -34.9804 37.5754 223.554 -26.2411 37.4143 223.929 -17.4963 37.3065 224.173 0 37.239 224.324 0 39.1624 217.733 -69.8001 39.1624 217.733 0 39.2555 217.544 -69.8001 39.2555 217.544 0 39.3132 217.493 -69.8001 39.3132 217.493 0 39.3391 217.484 -69.8001 39.3391 217.484 0 39.3615 217.485 -69.8001 39.3615 217.485 -34.9 39.1624 217.733 -34.9 39.3615 217.485 0 39.3615 217.485 -69.8001 39.3615 217.485 0 39.4408 217.509 -69.8001 39.4408 217.509 0 39.5201 217.533 -69.8001 39.5201 217.533 -34.9 39.3615 217.485 -34.9 39.5201 217.533 0 39.5201 217.533 -69.8001 39.5201 217.533 0 39.5396 217.543 -69.8001 39.5396 217.543 0 39.5566 217.565 -69.8001 39.5566 217.565 0 39.5769 217.639 -69.8001 39.5769 217.639 0 39.5512 217.849 -69.8001 39.5512 217.849 -34.9 39.5201 217.533 -34.9 39.5512 217.849 0 39.5512 217.849 -69.8001 39.5512 217.849 0 38.8257 221.166 -34.9 39.5512 217.849 0 37.6626 224.36 -69.8001 39.0604 220.3 -69.8001 39.3355 219.082 -17.4965 37.7275 224.211 -26.2414 37.8323 223.967 -34.9808 37.9875 223.59 -43.7132 38.1936 223.062 -52.4321 38.4469 222.36 -61.1311 38.7411 221.452 0 39.1624 217.733 0 39.2555 217.544 0 39.3132 217.493 0 39.3391 217.484 0 39.3615 217.485 0 39.4408 217.509 0 39.5201 217.533 0 39.5396 217.543 0 39.5566 217.565 0 39.5769 217.639 0 39.5512 217.849 0 38.8257 221.166 0 37.6626 224.36 0 37.239 224.324 0 38.9945 219.12 -69.8001 39.1624 217.733 -69.8001 39.2555 217.544 -69.8001 39.3132 217.493 -69.8001 39.3391 217.484 -69.8001 39.3615 217.485 -69.8001 39.4408 217.509 -69.8001 39.5201 217.533 -69.8001 39.5396 217.543 -69.8001 39.5566 217.565 -69.8001 39.5769 217.639 -69.8001 39.5512 217.849 -69.8001 39.3355 219.082 -69.8001 39.0604 220.3 -69.8001 38.7252 220.298 -69.8001 38.9945 219.12 + + + + + + + + + + -3.0519e-5 -0.9155076 -0.4023008 -2.74673e-4 -0.9213156 -0.3888154 -0.002716183 -0.9471583 -0.3207551 -7.01948e-4 -0.9280359 -0.3724901 -0.001648008 -0.93865 -0.3448675 -0.002349913 -0.9493257 -0.3142852 -0.001342833 -0.9754548 -0.220196 0 -0.9927554 -0.1201536 0 -0.9851443 -0.1717288 -9.15569e-5 -0.9736166 -0.2281904 -0.001098692 -0.9590724 -0.2831591 0 -0.8970726 -0.4418832 0 -0.794699 -0.6070037 0 -0.8970667 -0.4418953 0 -0.7947103 -0.606989 0 -0.5048726 -0.863194 0 -0.5048859 -0.8631862 0 0.04489403 -0.9989917 0 -0.144262 -0.9895396 0 0.2896946 -0.9571192 0 0.2896953 -0.957119 0 0.2896949 -0.9571191 0 0.4560546 -0.8899519 0 0.6391242 -0.7691037 0 0.456176 -0.8898896 0 0.8948297 -0.4464077 0 0.9925957 0.1214651 0 0.9973408 -0.07288008 0 0.9973385 -0.07291048 0 0.9925994 0.121435 7.01949e-4 0.978486 0.2063118 3.35713e-4 0.9604747 0.2783671 0 0.9769076 0.2136623 0.001556456 0.974803 0.2230623 0 0.9850424 0.1723122 8.8505e-4 0.9804216 0.1969083 -6.10374e-5 0.9631085 0.2691137 0.001617491 0.9375464 0.3478565 0.001464903 0.9379288 0.3468249 0.001342833 0.9388633 0.3442875 1.22077e-4 0.9513764 0.3080307 7.3246e-4 0.9433479 0.3318046 5.4934e-4 0.9396463 0.3421473 1 0 0 -1 -1.39233e-5 0 -1 0 0 -1 1.94894e-5 0 -0.9999997 -7.84929e-4 0 -1 -6.50682e-5 0 -1 3.09981e-4 0 -1 9.64294e-5 0 -1 3.62169e-4 0 -1 -7.08265e-5 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

11 0 0 10 1 1 12 2 2 9 3 3 12 2 4 10 1 5 9 3 6 8 4 7 12 2 8 7 5 9 12 2 10 8 4 11 7 5 12 0 6 13 12 2 14 4 7 15 2 7 16 0 6 17 1 8 18 4 7 19 0 6 20 5 9 21 0 6 22 6 10 23 1 8 24 0 6 25 5 9 26 1 8 27 3 7 28 4 7 29 7 5 30 6 10 31 0 6 32 23 11 33 15 12 34 13 13 35 16 14 36 18 15 37 17 16 38 16 14 39 17 16 40 15 12 41 14 11 42 16 14 43 23 11 44 15 12 45 23 11 46 16 14 47 24 17 48 21 17 49 19 18 50 20 18 51 24 17 52 19 18 53 19 18 54 17 16 55 18 15 56 19 18 57 18 15 58 20 18 59 24 17 60 20 18 61 22 17 62 31 19 63 27 19 64 25 19 65 31 20 66 26 20 67 28 20 68 28 21 69 27 21 70 31 21 71 27 21 72 28 21 73 32 21 74 32 20 75 28 20 76 30 20 77 29 19 78 27 19 79 32 19 80 43 22 81 35 23 82 33 24 83 36 23 84 38 25 85 37 25 86 36 23 87 37 25 88 35 23 89 34 24 90 36 23 91 43 22 92 35 23 93 43 22 94 36 23 95 44 26 96 41 26 97 39 27 98 40 28 99 44 26 100 39 27 101 39 27 102 37 25 103 38 25 104 39 27 105 38 25 106 40 28 107 44 26 108 40 28 109 42 29 110 48 30 111 47 31 112 45 32 113 50 33 114 47 31 115 48 30 116 48 30 117 46 34 118 51 35 119 48 30 120 51 35 121 50 33 122 50 33 123 57 36 124 47 31 125 53 37 126 52 38 127 47 31 128 47 31 129 54 39 130 53 37 131 57 36 132 56 40 133 47 31 134 55 41 135 47 31 136 56 40 137 54 39 138 47 31 139 55 41 140 52 38 141 49 42 142 47 31 143 72 43 144 68 43 145 69 43 146 72 43 147 67 43 148 68 43 149 72 43 150 66 43 151 67 43 152 72 43 153 65 43 154 66 43 155 64 43 156 65 43 157 72 43 158 70 43 159 72 43 160 69 43 161 70 43 162 71 43 163 72 43 164 60 43 165 72 43 166 58 43 167 59 43 168 60 43 169 58 43 170 62 43 171 63 43 172 72 43 173 72 43 174 61 43 175 62 43 176 72 43 177 60 43 178 61 43 179 64 43 180 72 43 181 63 43 182 84 44 183 86 44 184 85 44 185 87 45 186 84 45 187 83 45 188 81 45 189 83 45 190 82 45 191 83 45 192 81 45 193 80 45 194 79 45 195 83 45 196 80 45 197 86 46 198 84 46 199 87 46 200 75 47 201 73 47 202 76 47 203 87 48 204 77 48 205 73 48 206 75 49 207 74 49 208 73 49 209 78 45 210 87 45 211 79 45 212 87 50 213 78 50 214 77 50 215 73 51 216 77 51 217 76 51 218 83 52 219 79 52 220 87 52 221

+
+
+
+ + + + 69.8374 54.6989 215.619 58.9831 54.1197 220.311 57.543 54.6989 220.389 69.8517 53.599 216.205 69.0208 53.6355 216.843 68.06781 53.6721 217.442 66.9914 53.7073 218.004 65.7899 53.7394 218.528 64.4621 53.7668 219.017 63.0067 53.7881 219.471 61.4228 53.802 219.888 60.5822 53.8057 220.084 59.709 53.8071 220.27 58.6292 54.6989 220.186 59.672 54.6989 219.97 60.6715 54.6989 219.742 61.6279 54.6989 219.501 62.5415 54.6989 219.248 63.4125 54.6989 218.982 65.0275 54.6989 218.412 65.7719 54.6989 218.107 66.4748 54.6989 217.791 67.1365 54.6989 217.461 67.7573 54.6989 217.119 68.3375 54.6989 216.763 68.8773 54.6989 216.395 69.3772 54.6989 216.013 + + + + + + + + + + 0.5821292 0.3768855 0.7204742 0.6010758 0.3818563 0.7020639 0.582002 0.3810328 0.7183925 0.5376597 0.3815836 0.7518751 0.5413501 0.3874111 0.7462257 0.5010319 0.388386 0.7733843 0.4701778 0.3848158 0.7942605 0.4291889 0.3873779 0.815926 0.4618781 0.3902189 0.796491 0.4093224 0.3826792 0.8282583 0.3568588 0.3753838 0.8554174 0.3915581 0.3832875 0.8365244 0.3664122 0.3795965 0.8494991 0.3292757 0.3751466 0.8665118 0.2860271 0.3612878 0.887502 0.3081231 0.368826 0.8769422 0.2664305 0.3504187 0.8978984 0.2388437 0.3409612 0.90923 0.2587398 0.3523414 0.8993939 0.2172973 0.3338811 0.9172269 0.2307537 0.3361662 0.9130964 0.2093017 0.3278388 0.9212571 0.197763 0.3225247 0.9256715 0.1878427 0.3166622 0.9297528 0.1807965 0.3117855 0.9327929 0.194588 0.3199898 0.9272228 0.1747219 0.3085788 0.9350142 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

3 0 0 0 1 1 26 2 2 4 3 3 26 2 4 25 4 5 25 4 6 24 5 7 4 3 8 5 6 9 4 3 10 24 5 11 3 0 12 26 2 13 4 3 14 22 7 15 5 6 16 23 8 17 24 5 18 23 8 19 5 6 20 6 9 21 5 6 22 22 7 23 7 10 24 21 11 25 20 12 26 22 7 27 21 11 28 6 9 29 20 12 30 19 13 31 7 10 32 6 9 33 21 11 34 7 10 35 19 13 36 18 14 37 8 15 38 9 16 39 8 15 40 18 14 41 7 10 42 19 13 43 8 15 44 16 17 45 9 16 46 17 18 47 18 14 48 17 18 49 9 16 50 15 19 51 10 20 52 16 17 53 9 16 54 16 17 55 10 20 56 11 21 57 15 19 58 14 22 59 1 23 60 14 22 61 13 24 62 14 22 63 1 23 64 12 25 65 1 23 66 13 24 67 2 26 68 12 25 69 11 21 70 14 22 71 11 21 72 10 20 73 15 19 74

+
+
+
+ + + + -69.8374 54.6989 215.619 -58.9831 54.1197 220.311 -57.543 54.6989 220.389 -69.8517 53.599 216.205 -69.0208 53.6355 216.843 -68.06781 53.6721 217.442 -66.9914 53.7073 218.004 -65.7899 53.7394 218.528 -64.4621 53.7668 219.017 -63.0067 53.7881 219.471 -61.4228 53.802 219.888 -60.5822 53.8057 220.084 -59.709 53.8071 220.27 -58.6292 54.6989 220.186 -59.672 54.6989 219.97 -60.6715 54.6989 219.742 -61.6279 54.6989 219.501 -62.5415 54.6989 219.248 -63.4125 54.6989 218.982 -65.0275 54.6989 218.412 -65.7719 54.6989 218.107 -66.4748 54.6989 217.791 -67.1365 54.6989 217.461 -67.7573 54.6989 217.119 -68.3375 54.6989 216.763 -68.8773 54.6989 216.395 -69.3772 54.6989 216.013 + + + + + + + + + + -0.5821292 0.3768855 0.7204742 -0.582002 0.3810328 0.7183925 -0.6010758 0.3818563 0.7020639 -0.5376597 0.3815836 0.7518751 -0.5413501 0.3874111 0.7462257 -0.5010319 0.388386 0.7733843 -0.4701778 0.3848158 0.7942605 -0.4291889 0.3873779 0.815926 -0.4618781 0.3902189 0.796491 -0.4093224 0.3826792 0.8282583 -0.3568588 0.3753838 0.8554174 -0.3664122 0.3795965 0.8494991 -0.3915581 0.3832875 0.8365244 -0.3292757 0.3751466 0.8665118 -0.3081231 0.368826 0.8769422 -0.2860271 0.3612878 0.887502 -0.2664305 0.3504187 0.8978984 -0.2388437 0.3409612 0.90923 -0.2587398 0.3523414 0.8993939 -0.2172973 0.3338811 0.9172269 -0.2307537 0.3361662 0.9130964 -0.2093017 0.3278388 0.9212571 -0.197763 0.3225247 0.9256715 -0.1878427 0.3166622 0.9297528 -0.1807965 0.3117855 0.9327929 -0.194588 0.3199898 0.9272228 -0.1747219 0.3085788 0.9350142 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

3 0 0 26 1 1 0 2 2 4 3 3 25 4 4 26 1 5 25 4 6 4 3 7 24 5 8 5 6 9 24 5 10 4 3 11 3 0 12 4 3 13 26 1 14 22 7 15 23 8 16 5 6 17 24 5 18 5 6 19 23 8 20 6 9 21 22 7 22 5 6 23 7 10 24 20 11 25 21 12 26 22 7 27 6 9 28 21 12 29 20 11 30 7 10 31 19 13 32 6 9 33 7 10 34 21 12 35 19 13 36 8 14 37 18 15 38 9 16 39 18 15 40 8 14 41 7 10 42 8 14 43 19 13 44 16 17 45 17 18 46 9 16 47 18 15 48 9 16 49 17 18 50 15 19 51 16 17 52 10 20 53 9 16 54 10 20 55 16 17 56 11 21 57 14 22 58 15 19 59 1 23 60 13 24 61 14 22 62 14 22 63 12 25 64 1 23 65 1 23 66 2 26 67 13 24 68 12 25 69 14 22 70 11 21 71 11 21 72 15 19 73 10 20 74

+
+
+
+ + + + 86.0317 47.782 215.617 89.2549 49.4855 206.834 88.77201 49.5303 208.61 88.2087 49.5802 210.345 87.5592 49.635 212.027 86.7997 49.6958 213.678 89.2051 51.3191 206.205 88.72351 51.39 207.987 88.1625 51.4657 209.729 87.5163 51.5461 211.422 86.7612 51.6328 213.09 89.1555 53.1366 205.489 88.6754 53.2332 207.274 88.1168 53.3345 209.023 87.47401 53.4402 210.726 86.7234 53.5524 212.408 89.1062 54.934 204.685 88.6277 55.0561 206.473 88.0717 55.1826 208.226 87.43241 55.3132 209.938 86.6864 55.4504 211.633 89.4588 56.5661 201.998 89.0572 56.7076 203.793 88.5804 56.8548 205.582 88.0272 57.0062 207.339 87.39151 57.1613 209.057 86.6503 57.3232 210.764 89.4093 58.2873 201.023 89.0086 58.4536 202.815 88.5337 58.6256 204.602 87.9832 58.8016 206.361 87.3514 58.9809 208.085 86.61502 59.167 209.801 89.3601 59.9776 199.963 88.96051 60.1684 201.749 88.48751 60.3651 203.533 87.94001 60.5652 205.292 87.31211 60.7683 207.02 86.5806 60.9782 208.744 89.3113 61.6337 198.818 88.91281 61.8488 200.596 88.442 62.0696 202.376 87.8975 62.2936 204.134 87.2735 62.5202 205.863 86.5471 62.7535 207.593 89.2629 63.2522 197.588 88.8657 63.4912 199.358 88.39701 63.736 201.131 87.8557 63.9836 202.885 87.2359 64.2333 204.615 86.51451 64.4896 206.35 89.21501 64.83 196.276 88.8191 65.0927 198.035 88.3528 65.3611 199.8 87.8147 65.6319 201.548 87.1991 65.90441 203.276 86.48291 66.18341 205.014 89.1677 66.3641 194.882 88.7732 66.6502 196.628 88.30931 66.9419 198.382 87.7746 67.23571 200.123 87.1632 67.5306 201.848 86.4522 67.832 203.586 89.46051 67.5399 191.64 89.12091 67.8518 193.407 88.7279 68.16101 195.138 88.26651 68.4757 196.88 87.7353 68.7921 198.612 87.12831 69.1093 200.33 86.4226 69.4327 202.067 89.4136 68.9551 190.105 89.0747 69.2905 191.853 88.68341 69.6225 193.566 88.2246 69.9599 195.294 87.6969 70.2987 197.014 87.0943 70.6378 198.725 86.39402 70.9831 200.458 89.3673 70.3191 188.496 89.0292 70.6777 190.221 88.63961 71.0321 191.915 88.1835 71.3921 193.626 87.6594 71.7529 195.332 89.3217 71.6297 186.814 88.9844 72.0112 188.514 89.56201 72.4805 183.379 86.0317 72.4805 199.711 86.0317 71.83451 200.48 86.0317 71.1782 201.232 86.0317 70.51171 201.967 86.0317 69.8352 202.685 86.0317 69.14891 203.386 86.0317 68.45301 204.07 86.0317 67.74771 204.737 86.0317 67.0331 205.386 86.0317 66.3096 206.018 86.0317 65.5774 206.632 86.0317 64.8366 207.229 86.0317 64.0876 207.808 86.0317 63.3305 208.369 86.0317 62.5656 208.913 86.0317 61.7932 209.438 86.0317 61.0134 209.946 86.0317 60.2267 210.436 86.0317 59.4332 210.908 86.0317 58.6332 211.362 86.0317 57.8271 211.798 86.0317 57.0151 212.216 86.0317 56.1975 212.615 86.0317 55.3746 212.997 86.0317 54.5467 213.36 86.0317 53.7141 213.706 86.0317 52.8771 214.033 86.0317 52.0361 214.342 86.0317 51.1914 214.633 86.0317 50.3433 214.906 86.0317 49.4921 215.161 86.0317 48.6383 215.398 86.5924 47.782 214.636 87.1044 47.7821 213.626 87.5704 47.7822 212.595 87.9934 47.7822 211.548 88.4617 47.7822 210.24 88.87701 47.7821 208.913 89.2426 47.782 207.571 89.56201 47.782 206.22 89.56201 48.7375 205.821 89.56201 49.6814 205.401 89.56201 50.6136 204.959 89.56201 51.534 204.496 89.56201 52.4424 204.011 89.56201 53.3386 203.506 89.56201 54.2226 202.981 89.56201 55.0941 202.436 89.56201 55.9531 201.871 89.56201 56.7993 201.287 89.56201 57.6327 200.684 89.56201 58.453 200.063 89.56201 59.2601 199.424 89.56201 60.054 198.767 89.56201 60.8344 198.093 89.56201 61.6011 197.401 89.56201 62.388 196.661 89.56201 63.1587 195.903 89.56201 63.9181 195.125 89.56201 64.6609 194.33 89.56201 65.3975 193.508 89.56201 66.11602 192.673 89.56201 66.8173 191.822 89.56201 67.50201 190.957 89.56201 68.18811 190.053 89.56201 68.8558 189.136 89.56201 69.50521 188.206 89.56201 70.1363 187.263 89.56201 70.7493 186.309 89.56201 71.3443 185.343 89.56201 71.92131 184.366 89.4627 72.4805 184.262 89.3572 72.4804 185.13 89.2456 72.4804 185.983 89.1281 72.4803 186.821 89.0047 72.4803 187.645 88.8757 72.4803 188.453 88.6009 72.4803 190.024 88.3049 72.4805 191.535 87.9889 72.4805 192.987 87.6542 72.4805 194.38 87.30191 72.4805 195.714 86.999 72.4805 196.771 86.6859 72.4805 197.79 86.3631 72.4805 198.77 89.5086 54.8177 202.888 89.5079 66.07601 193.097 87.0613 72.1137 197.032 + + + + + + + + + + 0.9527724 0.1246395 0.2769293 0.9529405 0.1132578 0.2812066 0.9652902 0.1030936 0.2399721 0.9650855 0.1135628 0.2360373 0.9364578 0.1364828 0.3231396 0.9362318 0.123663 0.3289034 0.9154193 0.1482005 0.3742247 0.9143424 0.1333975 0.3823392 0.8892751 0.1583042 0.4291031 0.8869715 0.1412721 0.4396861 0.9523385 0.1372734 0.2724106 0.9648919 0.1240296 0.2315179 0.9363342 0.1508877 0.3170352 0.9158398 0.164466 0.3663176 0.8908898 0.1766764 0.4184505 0.9517653 0.1499093 0.2677126 0.9644451 0.1344076 0.227553 0.9359952 0.1652618 0.3108081 0.9160264 0.1807027 0.3581094 0.8920204 0.1948052 0.407861 0.9510648 0.1626664 0.2627078 0.9636297 0.1454524 0.2241908 0.9354748 0.179575 0.3043681 0.9159133 0.1967576 0.3498421 0.8931092 0.2118937 0.3968086 0.9626005 0.1572034 0.2206525 0.9716451 0.133156 0.195385 0.9711196 0.142677 0.191233 0.9501825 0.1754239 0.2576425 0.9347746 0.1939499 0.2976239 0.9155142 0.2128102 0.3413875 0.8936128 0.2296902 0.3856146 0.9615591 0.1686779 0.2166842 0.9704545 0.152261 0.1871752 0.949135 0.188301 0.25236 0.933824 0.2083235 0.2908167 0.9148437 0.2288635 0.3326899 0.8935822 0.2472695 0.3746581 0.9603804 0.1803078 0.2125056 0.969692 0.1619663 0.1829331 0.9479252 0.2013044 0.2468084 0.9326589 0.2227272 0.2837957 0.913861 0.2447624 0.3239592 0.8934499 0.2638691 0.3634838 0.9590638 0.1920264 0.2081404 0.9688462 0.1716729 0.1785094 0.9465143 0.214365 0.2411606 0.9312571 0.2372547 0.2765328 0.9126045 0.2607223 0.3149238 0.8927782 0.2810208 0.3521 0.9576011 0.2039293 0.203502 0.9678885 0.1814371 0.1739904 0.9449088 0.2275826 0.2352734 0.9296123 0.2517217 0.2691786 0.9110326 0.2766272 0.3057731 0.8916403 0.2980781 0.3407741 0.9559558 0.2160155 0.1987111 0.9667043 0.1913266 0.1699324 0.9431252 0.2408856 0.2291052 0.9277157 0.2663391 0.2615476 0.9091187 0.2925612 0.2964982 0.8901779 0.3146813 0.329483 0.9724822 0.1827467 0.1445066 0.9650996 0.2024319 0.1661449 0.9541493 0.2282829 0.1936132 0.941123 0.2543476 0.2226991 0.9255598 0.2809915 0.2537377 0.9068782 0.3085187 0.2870332 0.8882741 0.3314738 0.3179536 0.963272 0.214091 0.1620865 0.9712637 0.1922385 0.1403259 0.9521706 0.2406749 0.1882733 0.9389033 0.2679005 0.2160784 0.9226202 0.2971941 0.2458611 0.9046193 0.3238391 0.2771142 0.8858866 0.3481958 0.3065368 0.9612027 0.2262389 0.1578148 0.969968 0.2016417 0.136025 0.9504913 0.2516006 0.182383 0.9372218 0.2787342 0.209577 0.9220986 0.3054028 0.2376202 0.9606478 0.2313343 0.1537549 0.9694184 0.2071657 0.1315691 0.9696108 0.1030923 0.2218712 0.9700329 0.1058689 0.2186961 0.9636184 0.09982883 0.2479393 0.9687149 0.09561711 0.2290172 0.9697094 0.09524965 0.2249247 0.9695719 0.1235426 0.2113471 0.9708893 0.120705 0.2068923 0.9695867 0.113622 0.216776 0.9700819 0.1160643 0.2132374 0.9538707 0.1059619 0.2808967 0.941908 0.1120352 0.3166347 0.927194 0.1189931 0.3551787 0.9742343 0.1333079 0.181925 0.9737731 0.1402963 0.1791166 0.9740872 0.1250989 0.1884266 0.9738145 0.1324238 0.1847952 0.9736781 0.1504586 0.1712116 0.9731498 0.156744 0.1685547 0.9740386 0.1418514 0.1764292 0.9735179 0.1484737 0.1738348 0.9721199 0.1235101 0.1993192 0.9735038 0.1250069 0.1914779 0.9106975 0.1260754 0.393364 0.8727886 0.1322398 0.4698433 0.8944506 0.1302245 0.4277847 0.8738533 0.155037 0.4608079 0.8697054 0.1397168 0.4733832 0.8764786 0.1725551 0.4494551 0.8715384 0.1459431 0.4681043 0.8632686 0.1316602 0.487271 0.8612866 0.1258923 0.4922771 0.8773905 0.1786581 0.4452721 0.874421 0.1626034 0.4571086 0.8785942 0.1897395 0.4382594 0.8802943 0.2063399 0.427207 0.8821286 0.2292912 0.4114301 0.8828672 0.2456817 0.4002323 0.8833816 0.2505636 0.3960492 0.8832267 0.2616719 0.3891507 0.8852057 0.2638069 0.383167 0.8824757 0.2763555 0.3806106 0.8830063 0.2085974 0.4204604 0.8801493 0.1939813 0.4332535 0.8819531 0.2361295 0.4079239 0.8806206 0.2210783 0.4190844 0.9732034 0.1591893 0.1659341 0.9735371 0.1735941 0.1486293 0.9726416 0.1724325 0.1556776 0.9755613 0.1689821 0.1404471 0.9718774 0.1745076 0.1581189 0.9750021 0.1722513 0.1403585 0.9746141 0.1793583 0.1340075 0.9750188 0.1763079 0.1351073 0.9741184 0.1847339 0.1302568 0.9725525 0.1656272 0.1634298 0.9726269 0.1679489 0.1605938 0.973898 0.1872047 0.1283637 0.9730171 0.1973685 0.1195136 0.9730483 0.1951407 0.1228709 0.973227 0.1928203 0.1250982 0.9749432 0.1935485 0.1096581 0.9739267 0.195414 0.1152402 0.9743746 0.1941608 0.1135605 0.9726612 0.1990429 0.1196333 0.9656775 0.2192779 0.139227 0.9685523 0.2127177 0.129065 0.9626538 0.2281889 0.1456966 0.9569249 0.2425044 0.1596451 0.9533878 0.2486395 0.1709682 0.8832301 0.2986624 0.3615322 0.8822119 0.314498 0.3504188 0.8812474 0.3340957 0.3343399 0.8801333 0.3297562 0.341506 0.8796155 0.3495939 0.3225846 0.8784295 0.3442547 0.3314368 0.8823957 0.290907 0.3697987 0.883764 0.2826653 0.3729095 0.8829879 0.317402 0.3458155 0.8825266 0.3045826 0.3582966 0.9334518 0.2905402 0.2103669 0.9054266 0.3310161 0.2657651 0.9136446 0.3198992 0.2508349 0.925273 0.3037855 0.2271218 0.9435232 0.270825 0.1908348 0.8771329 0.3677305 0.3088887 0.8771978 0.3655347 0.3113012 0.8870447 0.3533835 0.2971058 0.8771136 0.3578038 0.3203876 0.8949477 0.3442271 0.2838599 0.9019061 0.3414193 0.2645717 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

7 0 0 2 1 1 1 2 2 7 0 3 1 2 4 6 3 5 8 4 6 3 5 7 2 1 8 8 4 9 2 1 10 7 0 11 9 6 12 4 7 13 3 5 14 9 6 15 3 5 16 8 4 17 10 8 18 5 9 19 4 7 20 10 8 21 4 7 22 9 6 23 12 10 24 7 0 25 6 3 26 12 10 27 6 3 28 11 11 29 13 12 30 8 4 31 7 0 32 13 12 33 7 0 34 12 10 35 14 13 36 9 6 37 8 4 38 14 13 39 8 4 40 13 12 41 15 14 42 10 8 43 9 6 44 15 14 45 9 6 46 14 13 47 17 15 48 12 10 49 11 11 50 17 15 51 11 11 52 16 16 53 18 17 54 13 12 55 12 10 56 18 17 57 12 10 58 17 15 59 19 18 60 14 13 61 13 12 62 19 18 63 13 12 64 18 17 65 20 19 66 15 14 67 14 13 68 20 19 69 14 13 70 19 18 71 23 20 72 17 15 73 16 16 74 23 20 75 16 16 76 22 21 77 24 22 78 18 17 79 17 15 80 24 22 81 17 15 82 23 20 83 25 23 84 19 18 85 18 17 86 25 23 87 18 17 88 24 22 89 26 24 90 20 19 91 19 18 92 26 24 93 19 18 94 25 23 95 28 25 96 22 21 97 21 26 98 28 25 99 21 26 100 27 27 101 29 28 102 23 20 103 22 21 104 29 28 105 22 21 106 28 25 107 30 29 108 24 22 109 23 20 110 30 29 111 23 20 112 29 28 113 31 30 114 25 23 115 24 22 116 31 30 117 24 22 118 30 29 119 32 31 120 26 24 121 25 23 122 32 31 123 25 23 124 31 30 125 34 32 126 28 25 127 27 27 128 34 32 129 27 27 130 33 33 131 35 34 132 29 28 133 28 25 134 35 34 135 28 25 136 34 32 137 36 35 138 30 29 139 29 28 140 36 35 141 29 28 142 35 34 143 37 36 144 31 30 145 30 29 146 37 36 147 30 29 148 36 35 149 38 37 150 32 31 151 31 30 152 38 37 153 31 30 154 37 36 155 40 38 156 34 32 157 33 33 158 40 38 159 33 33 160 39 39 161 41 40 162 35 34 163 34 32 164 41 40 165 34 32 166 40 38 167 42 41 168 36 35 169 35 34 170 42 41 171 35 34 172 41 40 173 43 42 174 37 36 175 36 35 176 43 42 177 36 35 178 42 41 179 44 43 180 38 37 181 37 36 182 44 43 183 37 36 184 43 42 185 46 44 186 40 38 187 39 39 188 46 44 189 39 39 190 45 45 191 47 46 192 41 40 193 40 38 194 47 46 195 40 38 196 46 44 197 48 47 198 42 41 199 41 40 200 48 47 201 41 40 202 47 46 203 49 48 204 43 42 205 42 41 206 49 48 207 42 41 208 48 47 209 50 49 210 44 43 211 43 42 212 50 49 213 43 42 214 49 48 215 52 50 216 46 44 217 45 45 218 52 50 219 45 45 220 51 51 221 53 52 222 47 46 223 46 44 224 53 52 225 46 44 226 52 50 227 54 53 228 48 47 229 47 46 230 54 53 231 47 46 232 53 52 233 55 54 234 49 48 235 48 47 236 55 54 237 48 47 238 54 53 239 56 55 240 50 49 241 49 48 242 56 55 243 49 48 244 55 54 245 58 56 246 52 50 247 51 51 248 58 56 249 51 51 250 57 57 251 59 58 252 53 52 253 52 50 254 59 58 255 52 50 256 58 56 257 60 59 258 54 53 259 53 52 260 60 59 261 53 52 262 59 58 263 61 60 264 55 54 265 54 53 266 61 60 267 54 53 268 60 59 269 62 61 270 56 55 271 55 54 272 62 61 273 55 54 274 61 60 275 63 62 276 64 63 277 57 57 278 65 64 279 58 56 280 57 57 281 65 64 282 57 57 283 64 63 284 66 65 285 59 58 286 58 56 287 66 65 288 58 56 289 65 64 290 67 66 291 60 59 292 59 58 293 67 66 294 59 58 295 66 65 296 68 67 297 61 60 298 60 59 299 68 67 300 60 59 301 67 66 302 69 68 303 62 61 304 61 60 305 69 68 306 61 60 307 68 67 308 71 69 309 64 63 310 63 62 311 71 69 312 63 62 313 70 70 314 72 71 315 65 64 316 64 63 317 72 71 318 64 63 319 71 69 320 73 72 321 66 65 322 65 64 323 73 72 324 65 64 325 72 71 326 74 73 327 67 66 328 66 65 329 74 73 330 66 65 331 73 72 332 75 74 333 68 67 334 67 66 335 75 74 336 67 66 337 74 73 338 76 75 339 69 68 340 68 67 341 76 75 342 68 67 343 75 74 344 78 76 345 71 69 346 70 70 347 78 76 348 70 70 349 77 77 350 79 78 351 72 71 352 71 69 353 79 78 354 71 69 355 78 76 356 80 79 357 73 72 358 72 71 359 80 79 360 72 71 361 79 78 362 81 80 363 74 73 364 73 72 365 81 80 366 73 72 367 80 79 368 75 74 369 74 73 370 81 80 371 83 81 372 78 76 373 77 77 374 83 81 375 77 77 376 82 82 377 1 2 378 126 83 379 127 84 380 123 85 381 124 86 382 125 87 383 125 87 384 126 83 385 1 2 386 11 11 387 130 88 388 131 89 389 6 3 390 128 90 391 129 91 392 129 91 393 130 88 394 11 11 395 6 3 396 127 84 397 128 90 398 2 1 399 122 92 400 123 85 401 125 87 402 1 2 403 123 85 404 122 92 405 2 1 406 121 93 407 1 2 408 2 1 409 123 85 410 129 91 411 11 11 412 6 3 413 121 93 414 2 1 415 3 5 416 6 3 417 1 2 418 127 84 419 120 94 420 121 93 421 3 5 422 11 11 423 131 89 424 16 16 425 27 27 426 135 95 427 136 96 428 21 26 429 133 97 430 134 98 431 134 98 432 135 95 433 21 26 434 39 39 435 139 99 436 140 100 437 33 33 438 137 101 439 138 102 440 138 102 441 139 99 442 33 33 443 27 27 444 136 96 445 137 101 446 170 103 447 132 104 448 133 97 449 131 89 450 132 104 451 170 103 452 21 26 453 22 21 454 16 16 455 21 26 456 16 16 457 170 103 458 133 97 459 21 26 460 170 103 461 131 89 462 170 103 463 16 16 464 27 27 465 21 26 466 135 95 467 27 27 468 137 101 469 33 33 470 33 33 471 139 99 472 39 39 473 4 7 474 119 105 475 120 94 476 5 9 477 117 106 478 118 107 479 118 107 480 119 105 481 4 7 482 118 107 483 4 7 484 5 9 485 10 8 486 113 108 487 5 9 488 115 109 489 117 106 490 5 9 491 4 7 492 120 94 493 3 5 494 15 14 495 111 110 496 10 8 497 5 9 498 114 111 499 115 109 500 117 106 501 116 112 502 0 113 503 117 106 504 115 109 505 116 112 506 15 14 507 110 114 508 111 110 509 10 8 510 112 115 511 113 108 512 10 8 513 111 110 514 112 115 515 113 108 516 114 111 517 5 9 518 110 114 519 15 14 520 109 116 521 26 24 522 107 117 523 20 19 524 104 118 525 26 24 526 32 31 527 32 31 528 38 37 529 102 119 530 102 119 531 38 37 532 101 120 533 100 121 534 38 37 535 44 43 536 44 43 537 99 122 538 100 121 539 99 122 540 44 43 541 98 123 542 101 120 543 38 37 544 100 121 545 26 24 546 106 124 547 107 117 548 20 19 549 108 125 550 109 116 551 20 19 552 107 117 553 108 125 554 32 31 555 102 119 556 103 126 557 26 24 558 104 118 559 105 127 560 32 31 561 103 126 562 104 118 563 105 127 564 106 124 565 26 24 566 15 14 567 20 19 568 109 116 569 141 128 570 39 39 571 140 100 572 171 129 573 145 130 574 146 131 575 171 129 576 57 57 577 145 130 578 144 132 579 145 130 580 51 51 581 171 129 582 146 131 583 147 133 584 149 134 585 63 62 586 148 135 587 63 62 588 171 129 589 147 133 590 63 62 591 147 133 592 148 135 593 150 136 594 70 70 595 149 134 596 45 45 597 142 137 598 143 138 599 142 137 600 45 45 601 141 128 602 45 45 603 143 138 604 51 51 605 149 134 606 70 70 607 63 62 608 51 51 609 143 138 610 144 132 611 51 51 612 145 130 613 57 57 614 57 57 615 171 129 616 63 62 617 70 70 618 150 136 619 151 139 620 154 140 621 82 82 622 153 141 623 152 142 624 77 77 625 151 139 626 77 77 627 152 142 628 153 141 629 156 143 630 155 143 631 84 143 632 155 144 633 156 145 634 157 146 635 154 140 636 155 144 637 157 146 638 82 82 639 154 140 640 157 146 641 153 141 642 82 82 643 77 77 644 83 81 645 79 78 646 78 76 647 83 81 648 82 82 649 159 147 650 82 82 651 158 148 652 159 147 653 83 81 654 160 149 655 161 150 656 83 81 657 159 147 658 160 149 659 158 148 660 82 82 661 157 146 662 151 139 663 77 77 664 70 70 665 161 150 666 162 151 667 83 81 668 56 55 669 95 152 670 50 49 671 93 153 672 56 55 673 62 61 674 69 68 675 90 154 676 62 61 677 62 61 678 90 154 679 91 155 680 76 75 681 88 156 682 69 68 683 69 68 684 88 156 685 89 157 686 90 154 687 69 68 688 89 157 689 50 49 690 95 152 691 96 158 692 97 159 693 98 123 694 44 43 695 50 49 696 96 158 697 97 159 698 62 61 699 91 155 700 92 160 701 56 55 702 93 153 703 94 161 704 62 61 705 92 160 706 93 153 707 94 161 708 95 152 709 56 55 710 97 159 711 44 43 712 50 49 713 80 79 714 164 162 715 81 80 716 172 163 717 81 80 718 166 164 719 81 80 720 165 165 721 166 164 722 163 166 723 80 79 724 79 78 725 81 80 726 172 163 727 75 74 728 79 78 729 162 151 730 163 166 731 81 80 732 164 162 733 165 165 734 80 79 735 163 166 736 164 162 737 162 151 738 79 78 739 83 81 740 85 167 741 86 168 742 169 169 743 76 75 744 169 169 745 86 168 746 76 75 747 86 168 748 87 170 749 88 156 750 76 75 751 87 170 752 168 171 753 172 163 754 167 172 755 166 164 756 167 172 757 172 163 758 168 171 759 169 169 760 76 75 761 168 171 762 76 75 763 75 74 764 75 74 765 172 163 766 168 171 767 141 128 768 45 45 769 39 39 770

+
+
+
+ + + + -86.0317 47.782 215.617 -89.2549 49.4855 206.834 -88.77201 49.5303 208.61 -88.2087 49.5802 210.345 -87.5592 49.635 212.027 -86.7997 49.6958 213.678 -89.2051 51.3191 206.205 -88.72351 51.39 207.987 -88.1625 51.4657 209.729 -87.5163 51.5461 211.422 -86.7612 51.6328 213.09 -89.1555 53.1366 205.489 -88.6754 53.2332 207.274 -88.1168 53.3345 209.023 -87.47401 53.4402 210.726 -86.7234 53.5524 212.408 -89.1062 54.934 204.685 -88.6277 55.0561 206.473 -88.0717 55.1826 208.226 -87.43241 55.3132 209.938 -86.6864 55.4504 211.633 -89.4588 56.5661 201.998 -89.0572 56.7076 203.793 -88.5804 56.8548 205.582 -88.0272 57.0062 207.339 -87.39151 57.1613 209.057 -86.6503 57.3232 210.764 -89.4093 58.2873 201.023 -89.0086 58.4536 202.815 -88.5337 58.6256 204.602 -87.9832 58.8016 206.361 -87.3514 58.9809 208.085 -86.61502 59.167 209.801 -89.3601 59.9776 199.963 -88.96051 60.1684 201.749 -88.48751 60.3651 203.533 -87.94001 60.5652 205.292 -87.31211 60.7683 207.02 -86.5806 60.9782 208.744 -89.3113 61.6337 198.818 -88.91281 61.8488 200.596 -88.442 62.0696 202.376 -87.8975 62.2936 204.134 -87.2735 62.5202 205.863 -86.5471 62.7535 207.593 -89.2629 63.2522 197.588 -88.8657 63.4912 199.358 -88.39701 63.736 201.131 -87.8557 63.9836 202.885 -87.2359 64.2333 204.615 -86.51451 64.4896 206.35 -89.21501 64.83 196.276 -88.8191 65.0927 198.035 -88.3528 65.3611 199.8 -87.8147 65.6319 201.548 -87.1991 65.90441 203.276 -86.48291 66.18341 205.014 -89.1677 66.3641 194.882 -88.7732 66.6502 196.628 -88.30931 66.9419 198.382 -87.7746 67.23571 200.123 -87.1632 67.5306 201.848 -86.4522 67.832 203.586 -89.46051 67.5399 191.64 -89.12091 67.8518 193.407 -88.7279 68.16101 195.138 -88.26651 68.4757 196.88 -87.7353 68.7921 198.612 -87.12831 69.1093 200.33 -86.4226 69.4327 202.067 -89.4136 68.9551 190.105 -89.0747 69.2905 191.853 -88.68341 69.6225 193.566 -88.2246 69.9599 195.294 -87.6969 70.2987 197.014 -87.0943 70.6378 198.725 -86.39402 70.9831 200.458 -89.3673 70.3191 188.496 -89.0292 70.6777 190.221 -88.63961 71.0321 191.915 -88.1835 71.3921 193.626 -87.6594 71.7529 195.332 -89.3217 71.6297 186.814 -88.9844 72.0112 188.514 -89.56201 72.4805 183.379 -86.0317 72.4805 199.711 -86.0317 71.83451 200.48 -86.0317 71.1782 201.232 -86.0317 70.51171 201.967 -86.0317 69.8352 202.685 -86.0317 69.14891 203.386 -86.0317 68.45301 204.07 -86.0317 67.74771 204.737 -86.0317 67.0331 205.386 -86.0317 66.3096 206.018 -86.0317 65.5774 206.632 -86.0317 64.8366 207.229 -86.0317 64.0876 207.808 -86.0317 63.3305 208.369 -86.0317 62.5656 208.913 -86.0317 61.7932 209.438 -86.0317 61.0134 209.946 -86.0317 60.2267 210.436 -86.0317 59.4332 210.908 -86.0317 58.6332 211.362 -86.0317 57.8271 211.798 -86.0317 57.0151 212.216 -86.0317 56.1975 212.615 -86.0317 55.3746 212.997 -86.0317 54.5467 213.36 -86.0317 53.7141 213.706 -86.0317 52.8771 214.033 -86.0317 52.0361 214.342 -86.0317 51.1914 214.633 -86.0317 50.3433 214.906 -86.0317 49.4921 215.161 -86.0317 48.6383 215.398 -86.5924 47.782 214.636 -87.1044 47.7821 213.626 -87.5704 47.7822 212.595 -87.9934 47.7822 211.548 -88.4617 47.7822 210.24 -88.87701 47.7821 208.913 -89.2426 47.782 207.571 -89.56201 47.782 206.22 -89.56201 48.7375 205.821 -89.56201 49.6814 205.401 -89.56201 50.6136 204.959 -89.56201 51.534 204.496 -89.56201 52.4424 204.011 -89.56201 53.3386 203.506 -89.56201 54.2226 202.981 -89.56201 55.0941 202.436 -89.56201 55.9531 201.871 -89.56201 56.7993 201.287 -89.56201 57.6327 200.684 -89.56201 58.453 200.063 -89.56201 59.2601 199.424 -89.56201 60.054 198.767 -89.56201 60.8344 198.093 -89.56201 61.6011 197.401 -89.56201 62.388 196.661 -89.56201 63.1587 195.903 -89.56201 63.9181 195.125 -89.56201 64.6609 194.33 -89.56201 65.3975 193.508 -89.56201 66.11602 192.673 -89.56201 66.8173 191.822 -89.56201 67.50201 190.957 -89.56201 68.18811 190.053 -89.56201 68.8558 189.136 -89.56201 69.50521 188.206 -89.56201 70.1363 187.263 -89.56201 70.7493 186.309 -89.56201 71.3443 185.343 -89.56201 71.92131 184.366 -89.4627 72.4805 184.262 -89.3572 72.4804 185.13 -89.2456 72.4804 185.983 -89.1281 72.4803 186.821 -89.0047 72.4803 187.645 -88.8757 72.4803 188.453 -88.6009 72.4803 190.024 -88.3049 72.4805 191.535 -87.9889 72.4805 192.987 -87.6542 72.4805 194.38 -87.30191 72.4805 195.714 -86.999 72.4805 196.771 -86.6859 72.4805 197.79 -86.3631 72.4805 198.77 -89.5086 54.8177 202.888 -89.5079 66.07601 193.097 -87.0613 72.1137 197.032 + + + + + + + + + + -0.9527724 0.1246395 0.2769293 -0.9650855 0.1135628 0.2360373 -0.9652902 0.1030936 0.2399721 -0.9529405 0.1132578 0.2812066 -0.9364578 0.1364828 0.3231396 -0.9362318 0.123663 0.3289034 -0.9154193 0.1482005 0.3742247 -0.9143424 0.1333975 0.3823392 -0.8892751 0.1583042 0.4291031 -0.8869715 0.1412721 0.4396861 -0.9523385 0.1372734 0.2724106 -0.9648919 0.1240296 0.2315179 -0.9363342 0.1508877 0.3170352 -0.9158398 0.164466 0.3663176 -0.8908898 0.1766764 0.4184505 -0.9517653 0.1499093 0.2677126 -0.9644451 0.1344076 0.227553 -0.9359952 0.1652618 0.3108081 -0.9160264 0.1807027 0.3581094 -0.8920204 0.1948052 0.407861 -0.9510648 0.1626664 0.2627078 -0.9636297 0.1454524 0.2241908 -0.9354748 0.179575 0.3043681 -0.9159133 0.1967576 0.3498421 -0.8931092 0.2118937 0.3968086 -0.9626005 0.1572034 0.2206525 -0.9711196 0.142677 0.191233 -0.9716451 0.133156 0.195385 -0.9501825 0.1754239 0.2576425 -0.9347746 0.1939499 0.2976239 -0.9155142 0.2128102 0.3413875 -0.8936128 0.2296902 0.3856146 -0.9615591 0.1686779 0.2166842 -0.9704545 0.152261 0.1871752 -0.949135 0.188301 0.25236 -0.933824 0.2083235 0.2908167 -0.9148437 0.2288635 0.3326899 -0.8935822 0.2472695 0.3746581 -0.9603804 0.1803078 0.2125056 -0.969692 0.1619663 0.1829331 -0.9479252 0.2013044 0.2468084 -0.9326508 0.2227253 0.2838237 -0.913861 0.2447624 0.3239592 -0.8934499 0.2638691 0.3634838 -0.9590638 0.1920264 0.2081404 -0.9688462 0.1716729 0.1785094 -0.9465143 0.214365 0.2411606 -0.9312571 0.2372547 0.2765328 -0.9126045 0.2607223 0.3149238 -0.8927782 0.2810208 0.3521 -0.9576011 0.2039293 0.203502 -0.9678885 0.1814371 0.1739904 -0.9449088 0.2275826 0.2352734 -0.9296123 0.2517217 0.2691786 -0.9110326 0.2766272 0.3057731 -0.8916403 0.2980781 0.3407741 -0.9559558 0.2160155 0.1987111 -0.9667043 0.1913266 0.1699324 -0.9431252 0.2408856 0.2291052 -0.9277157 0.2663391 0.2615476 -0.9091187 0.2925612 0.2964982 -0.8901779 0.3146813 0.329483 -0.9724822 0.1827467 0.1445066 -0.9650996 0.2024319 0.1661449 -0.9541493 0.2282829 0.1936132 -0.941123 0.2543476 0.2226991 -0.9255598 0.2809915 0.2537377 -0.9068782 0.3085187 0.2870332 -0.8882741 0.3314738 0.3179536 -0.963272 0.214091 0.1620865 -0.9712637 0.1922385 0.1403259 -0.9521706 0.2406749 0.1882733 -0.9389033 0.2679005 0.2160784 -0.9226202 0.2971941 0.2458611 -0.9046193 0.3238391 0.2771142 -0.8858866 0.3481958 0.3065368 -0.9612027 0.2262389 0.1578148 -0.969968 0.2016417 0.136025 -0.9504913 0.2516006 0.182383 -0.9372218 0.2787342 0.209577 -0.9220986 0.3054028 0.2376202 -0.9606478 0.2313343 0.1537549 -0.9694184 0.2071657 0.1315691 -0.9700329 0.1058689 0.2186961 -0.9696108 0.1030923 0.2218712 -0.9636184 0.09982883 0.2479393 -0.9697094 0.09524965 0.2249247 -0.9687149 0.09561711 0.2290172 -0.9708893 0.120705 0.2068923 -0.9695719 0.1235426 0.2113471 -0.9700819 0.1160643 0.2132374 -0.9695867 0.113622 0.216776 -0.9538707 0.1059619 0.2808967 -0.941908 0.1120352 0.3166347 -0.927194 0.1189931 0.3551787 -0.9737731 0.1402963 0.1791166 -0.9742343 0.1333079 0.181925 -0.9738145 0.1324238 0.1847952 -0.9740872 0.1250989 0.1884266 -0.9731498 0.156744 0.1685547 -0.9736781 0.1504586 0.1712116 -0.9735179 0.1484737 0.1738348 -0.9740386 0.1418514 0.1764292 -0.9721199 0.1235101 0.1993192 -0.9735038 0.1250069 0.1914779 -0.9106975 0.1260754 0.393364 -0.8944506 0.1302245 0.4277847 -0.8727886 0.1322398 0.4698433 -0.8738533 0.155037 0.4608079 -0.8697054 0.1397168 0.4733832 -0.8764786 0.1725551 0.4494551 -0.8715384 0.1459431 0.4681043 -0.8612866 0.1258923 0.4922771 -0.8632686 0.1316602 0.487271 -0.8773905 0.1786581 0.4452721 -0.874421 0.1626034 0.4571086 -0.8785942 0.1897395 0.4382594 -0.8802943 0.2063399 0.427207 -0.8821286 0.2292912 0.4114301 -0.8828672 0.2456817 0.4002323 -0.8833816 0.2505636 0.3960492 -0.8832267 0.2616719 0.3891507 -0.8852057 0.2638069 0.383167 -0.8824757 0.2763555 0.3806106 -0.8830063 0.2085974 0.4204604 -0.8801493 0.1939813 0.4332535 -0.8819531 0.2361295 0.4079239 -0.8806206 0.2210783 0.4190844 -0.9732034 0.1591893 0.1659341 -0.9735371 0.1735941 0.1486293 -0.9755613 0.1689821 0.1404471 -0.9726416 0.1724325 0.1556776 -0.9718774 0.1745076 0.1581189 -0.9750021 0.1722513 0.1403585 -0.9746141 0.1793583 0.1340075 -0.9750188 0.1763079 0.1351073 -0.9741184 0.1847339 0.1302568 -0.9726269 0.1679489 0.1605938 -0.9725525 0.1656272 0.1634298 -0.973898 0.1872047 0.1283637 -0.9730171 0.1973685 0.1195136 -0.9730483 0.1951407 0.1228709 -0.973227 0.1928203 0.1250982 -0.9749432 0.1935485 0.1096581 -0.9739267 0.195414 0.1152402 -0.9726612 0.1990429 0.1196333 -0.9743746 0.1941608 0.1135605 -0.9656775 0.2192779 0.139227 -0.9685523 0.2127177 0.129065 -0.9569249 0.2425044 0.1596451 -0.9626538 0.2281889 0.1456966 -0.9533878 0.2486395 0.1709682 -0.8832301 0.2986624 0.3615322 -0.8822119 0.314498 0.3504188 -0.8812474 0.3340957 0.3343399 -0.8801333 0.3297562 0.341506 -0.8796155 0.3495939 0.3225846 -0.8784295 0.3442547 0.3314368 -0.8823957 0.290907 0.3697987 -0.883764 0.2826653 0.3729095 -0.8829879 0.317402 0.3458155 -0.8825266 0.3045826 0.3582966 -0.9334518 0.2905402 0.2103669 -0.9054266 0.3310161 0.2657651 -0.9136446 0.3198992 0.2508349 -0.925273 0.3037855 0.2271218 -0.9435232 0.270825 0.1908348 -0.8771329 0.3677305 0.3088887 -0.8870447 0.3533835 0.2971058 -0.8771978 0.3655347 0.3113012 -0.8771136 0.3578038 0.3203876 -0.8949477 0.3442271 0.2838599 -0.9019061 0.3414193 0.2645717 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

7 0 0 6 1 1 1 2 2 7 0 3 1 2 4 2 3 5 8 4 6 7 0 7 2 3 8 8 4 9 2 3 10 3 5 11 9 6 12 8 4 13 3 5 14 9 6 15 3 5 16 4 7 17 10 8 18 9 6 19 4 7 20 10 8 21 4 7 22 5 9 23 12 10 24 11 11 25 6 1 26 12 10 27 6 1 28 7 0 29 13 12 30 12 10 31 7 0 32 13 12 33 7 0 34 8 4 35 14 13 36 13 12 37 8 4 38 14 13 39 8 4 40 9 6 41 15 14 42 14 13 43 9 6 44 15 14 45 9 6 46 10 8 47 17 15 48 16 16 49 11 11 50 17 15 51 11 11 52 12 10 53 18 17 54 17 15 55 12 10 56 18 17 57 12 10 58 13 12 59 19 18 60 18 17 61 13 12 62 19 18 63 13 12 64 14 13 65 20 19 66 19 18 67 14 13 68 20 19 69 14 13 70 15 14 71 23 20 72 22 21 73 16 16 74 23 20 75 16 16 76 17 15 77 24 22 78 23 20 79 17 15 80 24 22 81 17 15 82 18 17 83 25 23 84 24 22 85 18 17 86 25 23 87 18 17 88 19 18 89 26 24 90 25 23 91 19 18 92 26 24 93 19 18 94 20 19 95 28 25 96 27 26 97 21 27 98 28 25 99 21 27 100 22 21 101 29 28 102 28 25 103 22 21 104 29 28 105 22 21 106 23 20 107 30 29 108 29 28 109 23 20 110 30 29 111 23 20 112 24 22 113 31 30 114 30 29 115 24 22 116 31 30 117 24 22 118 25 23 119 32 31 120 31 30 121 25 23 122 32 31 123 25 23 124 26 24 125 34 32 126 33 33 127 27 26 128 34 32 129 27 26 130 28 25 131 35 34 132 34 32 133 28 25 134 35 34 135 28 25 136 29 28 137 36 35 138 35 34 139 29 28 140 36 35 141 29 28 142 30 29 143 37 36 144 36 35 145 30 29 146 37 36 147 30 29 148 31 30 149 38 37 150 37 36 151 31 30 152 38 37 153 31 30 154 32 31 155 40 38 156 39 39 157 33 33 158 40 38 159 33 33 160 34 32 161 41 40 162 40 38 163 34 32 164 41 40 165 34 32 166 35 34 167 42 41 168 41 40 169 35 34 170 42 41 171 35 34 172 36 35 173 43 42 174 42 41 175 36 35 176 43 42 177 36 35 178 37 36 179 44 43 180 43 42 181 37 36 182 44 43 183 37 36 184 38 37 185 46 44 186 45 45 187 39 39 188 46 44 189 39 39 190 40 38 191 47 46 192 46 44 193 40 38 194 47 46 195 40 38 196 41 40 197 48 47 198 47 46 199 41 40 200 48 47 201 41 40 202 42 41 203 49 48 204 48 47 205 42 41 206 49 48 207 42 41 208 43 42 209 50 49 210 49 48 211 43 42 212 50 49 213 43 42 214 44 43 215 52 50 216 51 51 217 45 45 218 52 50 219 45 45 220 46 44 221 53 52 222 52 50 223 46 44 224 53 52 225 46 44 226 47 46 227 54 53 228 53 52 229 47 46 230 54 53 231 47 46 232 48 47 233 55 54 234 54 53 235 48 47 236 55 54 237 48 47 238 49 48 239 56 55 240 55 54 241 49 48 242 56 55 243 49 48 244 50 49 245 58 56 246 57 57 247 51 51 248 58 56 249 51 51 250 52 50 251 59 58 252 58 56 253 52 50 254 59 58 255 52 50 256 53 52 257 60 59 258 59 58 259 53 52 260 60 59 261 53 52 262 54 53 263 61 60 264 60 59 265 54 53 266 61 60 267 54 53 268 55 54 269 62 61 270 61 60 271 55 54 272 62 61 273 55 54 274 56 55 275 63 62 276 57 57 277 64 63 278 65 64 279 64 63 280 57 57 281 65 64 282 57 57 283 58 56 284 66 65 285 65 64 286 58 56 287 66 65 288 58 56 289 59 58 290 67 66 291 66 65 292 59 58 293 67 66 294 59 58 295 60 59 296 68 67 297 67 66 298 60 59 299 68 67 300 60 59 301 61 60 302 69 68 303 68 67 304 61 60 305 69 68 306 61 60 307 62 61 308 71 69 309 70 70 310 63 62 311 71 69 312 63 62 313 64 63 314 72 71 315 71 69 316 64 63 317 72 71 318 64 63 319 65 64 320 73 72 321 72 71 322 65 64 323 73 72 324 65 64 325 66 65 326 74 73 327 73 72 328 66 65 329 74 73 330 66 65 331 67 66 332 75 74 333 74 73 334 67 66 335 75 74 336 67 66 337 68 67 338 76 75 339 75 74 340 68 67 341 76 75 342 68 67 343 69 68 344 78 76 345 77 77 346 70 70 347 78 76 348 70 70 349 71 69 350 79 78 351 78 76 352 71 69 353 79 78 354 71 69 355 72 71 356 80 79 357 79 78 358 72 71 359 80 79 360 72 71 361 73 72 362 81 80 363 80 79 364 73 72 365 81 80 366 73 72 367 74 73 368 75 74 369 81 80 370 74 73 371 83 81 372 82 82 373 77 77 374 83 81 375 77 77 376 78 76 377 1 2 378 127 83 379 126 84 380 123 85 381 125 86 382 124 87 383 125 86 384 1 2 385 126 84 386 11 11 387 131 88 388 130 89 389 6 1 390 129 90 391 128 91 392 129 90 393 11 11 394 130 89 395 6 1 396 128 91 397 127 83 398 2 3 399 123 85 400 122 92 401 125 86 402 123 85 403 1 2 404 122 92 405 121 93 406 2 3 407 1 2 408 123 85 409 2 3 410 129 90 411 6 1 412 11 11 413 121 93 414 3 5 415 2 3 416 6 1 417 127 83 418 1 2 419 120 94 420 3 5 421 121 93 422 11 11 423 16 16 424 131 88 425 27 26 426 136 95 427 135 96 428 21 27 429 134 97 430 133 98 431 134 97 432 21 27 433 135 96 434 39 39 435 140 99 436 139 100 437 33 33 438 138 101 439 137 102 440 138 101 441 33 33 442 139 100 443 27 26 444 137 102 445 136 95 446 170 103 447 133 98 448 132 104 449 131 88 450 170 103 451 132 104 452 21 27 453 170 103 454 16 16 455 21 27 456 16 16 457 22 21 458 133 98 459 170 103 460 21 27 461 131 88 462 16 16 463 170 103 464 27 26 465 135 96 466 21 27 467 27 26 468 33 33 469 137 102 470 33 33 471 39 39 472 139 100 473 4 7 474 120 94 475 119 105 476 5 9 477 118 106 478 117 107 479 118 106 480 4 7 481 119 105 482 118 106 483 5 9 484 4 7 485 10 8 486 5 9 487 113 108 488 115 109 489 5 9 490 117 107 491 4 7 492 3 5 493 120 94 494 15 14 495 10 8 496 111 110 497 5 9 498 115 109 499 114 111 500 117 107 501 0 112 502 116 113 503 117 107 504 116 113 505 115 109 506 15 14 507 111 110 508 110 114 509 10 8 510 113 108 511 112 115 512 10 8 513 112 115 514 111 110 515 113 108 516 5 9 517 114 111 518 110 114 519 109 116 520 15 14 521 26 24 522 20 19 523 107 117 524 104 118 525 32 31 526 26 24 527 32 31 528 102 119 529 38 37 530 102 119 531 101 120 532 38 37 533 100 121 534 44 43 535 38 37 536 44 43 537 100 121 538 99 122 539 99 122 540 98 123 541 44 43 542 101 120 543 100 121 544 38 37 545 26 24 546 107 117 547 106 124 548 20 19 549 109 116 550 108 125 551 20 19 552 108 125 553 107 117 554 32 31 555 103 126 556 102 119 557 26 24 558 105 127 559 104 118 560 32 31 561 104 118 562 103 126 563 105 127 564 26 24 565 106 124 566 15 14 567 109 116 568 20 19 569 141 128 570 140 99 571 39 39 572 171 129 573 146 130 574 145 131 575 171 129 576 145 131 577 57 57 578 144 132 579 51 51 580 145 131 581 171 129 582 147 133 583 146 130 584 149 134 585 148 135 586 63 62 587 63 62 588 147 133 589 171 129 590 63 62 591 148 135 592 147 133 593 150 136 594 149 134 595 70 70 596 45 45 597 143 137 598 142 138 599 142 138 600 141 128 601 45 45 602 45 45 603 51 51 604 143 137 605 149 134 606 63 62 607 70 70 608 51 51 609 144 132 610 143 137 611 51 51 612 57 57 613 145 131 614 57 57 615 63 62 616 171 129 617 70 70 618 151 139 619 150 136 620 154 140 621 153 141 622 82 82 623 152 142 624 151 139 625 77 77 626 77 77 627 153 141 628 152 142 629 156 143 630 84 143 631 155 143 632 155 144 633 157 145 634 156 146 635 154 140 636 157 145 637 155 144 638 82 82 639 157 145 640 154 140 641 153 141 642 77 77 643 82 82 644 83 81 645 78 76 646 79 78 647 83 81 648 159 147 649 82 82 650 82 82 651 159 147 652 158 148 653 83 81 654 161 149 655 160 150 656 83 81 657 160 150 658 159 147 659 158 148 660 157 145 661 82 82 662 151 139 663 70 70 664 77 77 665 161 149 666 83 81 667 162 151 668 56 55 669 50 49 670 95 152 671 93 153 672 62 61 673 56 55 674 69 68 675 62 61 676 90 154 677 62 61 678 91 155 679 90 154 680 76 75 681 69 68 682 88 156 683 69 68 684 89 157 685 88 156 686 90 154 687 89 157 688 69 68 689 50 49 690 96 158 691 95 152 692 97 159 693 44 43 694 98 123 695 50 49 696 97 159 697 96 158 698 62 61 699 92 160 700 91 155 701 56 55 702 94 161 703 93 153 704 62 61 705 93 153 706 92 160 707 94 161 708 56 55 709 95 152 710 97 159 711 50 49 712 44 43 713 80 79 714 81 80 715 164 162 716 172 163 717 166 164 718 81 80 719 81 80 720 166 164 721 165 165 722 163 166 723 79 78 724 80 79 725 81 80 726 75 74 727 172 163 728 79 78 729 163 166 730 162 151 731 81 80 732 165 165 733 164 162 734 80 79 735 164 162 736 163 166 737 162 151 738 83 81 739 79 78 740 85 167 741 169 168 742 86 169 743 76 75 744 86 169 745 169 168 746 76 75 747 87 170 748 86 169 749 88 156 750 87 170 751 76 75 752 168 171 753 167 172 754 172 163 755 166 164 756 172 163 757 167 172 758 168 171 759 76 75 760 169 168 761 168 171 762 75 74 763 76 75 764 75 74 765 168 171 766 172 163 767 141 128 768 39 39 769 45 45 770

+
+
+
+ + + + 69.77671 61.9297 210.867 69.7847 60.3033 212.089 68.9986 60.996 212.365 69.7969 58.5929 213.271 69.00701 59.3228 213.528 68.1129 60.0181 213.783 67.1148 60.6787 214.037 69.8136 56.795 214.411 69.0196 57.5649 214.647 68.1205 58.3002 214.881 67.11631 59.0009 215.114 66.0069 59.6669 215.345 64.7924 60.2983 215.574 63.4728 60.8951 215.802 69.0367 55.7188 215.719 68.1324 56.497 215.931 67.122 57.2405 216.142 66.0054 57.9495 216.35 64.7826 58.6239 216.557 63.4537 59.2638 216.763 62.0186 59.8691 216.966 60.4773 60.4398 217.168 67.13201 55.3943 217.118 66.00801 56.1492 217.303 64.7768 56.8695 217.487 63.4384 57.5554 217.669 61.9929 58.2068 217.848 60.4401 58.8236 218.026 58.6928 59.4347 218.211 56.8212 60.01 218.393 63.4271 55.7668 218.517 61.9709 56.4672 218.672 60.4065 57.1332 218.825 58.647 57.7956 218.983 56.7641 58.4215 219.139 54.7579 59.0109 219.292 52.6284 59.5638 219.443 60.3767 55.3657 219.561 58.6047 56.0826 219.692 56.7104 56.7624 219.82 54.6938 57.405 219.946 52.5548 58.0105 220.069 50.2936 58.5789 220.19 56.6603 55.0297 220.434 54.633 55.729 220.531 52.4844 56.3905 220.625 50.2144 57.0142 220.717 47.8232 57.6002 220.807 45.3106 58.1484 220.894 42.6767 58.6588 220.979 69.8374 54.6989 215.619 68.8773 54.6989 216.395 67.7573 54.6989 217.119 66.4748 54.6989 217.791 65.0275 54.6989 218.412 64.2411 54.6989 218.703 63.4125 54.6989 218.982 62.5415 54.6989 219.248 61.6279 54.6989 219.501 60.6715 54.6989 219.742 59.672 54.6989 219.97 58.6292 54.6989 220.186 57.543 54.6989 220.389 43.9748 58.876 220.804 45.2482 59.0796 220.617 46.4963 59.2709 220.419 47.7184 59.4511 220.209 48.913 59.6214 219.989 50.0794 59.7827 219.76 51.217 59.9358 219.52 52.3253 60.0817 219.271 53.4037 60.221 219.012 54.4517 60.3543 218.744 55.4689 60.4819 218.467 56.4552 60.6043 218.181 57.4099 60.7218 217.887 58.333 60.8346 217.583 59.2242 60.9428 217.272 60.0831 61.0466 216.951 60.9102 61.1461 216.623 61.7065 61.2411 216.286 63.2083 61.4174 215.589 64.5915 61.5739 214.861 65.8571 61.7074 214.104 67.0159 61.8146 213.317 68.04261 61.8888 212.521 68.9589 61.9283 211.707 + + + + + + + + + + 0.5871349 0.4508041 0.6723455 0.6158568 0.4350581 0.6568447 0.6253403 0.455592 0.6335499 0.5945149 0.4711561 0.6515859 0.5294733 0.472769 0.7043774 0.5755423 0.4283453 0.6966143 0.6039522 0.4131742 0.6815636 0.5177896 0.4477479 0.7289828 0.4657208 0.4628825 0.7542174 0.4750344 0.4887376 0.7317636 0.4191532 0.4754309 0.7734832 0.5032667 0.4231529 0.7534351 0.5647008 0.4074648 0.7176946 0.4513543 0.4353315 0.7789517 0.4055714 0.4449109 0.7984774 0.3652214 0.4524448 0.8135767 0.3781278 0.4825021 0.7900704 0.3290573 0.4583668 0.8256036 0.3405036 0.4874845 0.804 0.3882955 0.4157934 0.8224004 0.4344419 0.4089583 0.8025044 0.3493268 0.4192471 0.8379754 0.3143497 0.4240059 0.8493546 0.283192 0.4270007 0.8587624 0.2981427 0.4610851 0.8357701 0.255688 0.4286695 0.8665253 0.2683228 0.4600429 0.8463825 0.2995764 0.3929345 0.8694 0.2665228 0.3914678 0.880749 0.2395741 0.3908873 0.8887133 0.2154035 0.3901862 0.895185 0.2307236 0.4282121 0.8737283 0.1936435 0.3890877 0.9006181 0.206676 0.4247053 0.8814252 0.197581 0.3522521 0.9148116 0.2223944 0.3576866 0.9069736 0.1767364 0.347308 0.920946 0.1586694 0.3436768 0.9255865 0.1749057 0.3860378 0.9057499 0.1427065 0.3395535 0.929698 0.1572036 0.3790161 0.9119397 0.1509185 0.3222851 0.9345352 0.1641641 0.3252459 0.9312708 0.1347097 0.3177915 0.9385425 0.1204609 0.3127346 0.9421712 0.1283036 0.3329668 0.9341688 0.1097763 0.3085151 0.9448638 0.633251 0.4668887 0.6172587 0.6080383 0.4761639 0.6352616 0.5424789 0.4883988 0.6835081 0.4865686 0.4985627 0.7174164 0.4303565 0.4970722 0.7534672 0.5898465 0.3939431 0.7049043 0.5331134 0.398889 0.7461085 0.4655694 0.4030968 0.7878821 0.391282 0.3989728 0.8292884 0.3856722 0.4972507 0.7771736 0.3065346 0.4792121 0.8224307 0.3363256 0.4966144 0.8001621 0.2648453 0.4726197 0.8405282 0.2847163 0.4746084 0.8328766 0.2498028 0.4523613 0.8561354 0.2378382 0.4477816 0.8619307 0.2216009 0.4419811 0.8692214 0.2056986 0.4387119 0.8747686 0.1922726 0.4138135 0.8898257 0.3387653 0.4014826 0.8509113 0.313404 0.3935785 0.8642187 0.2426291 0.3672702 0.8979108 0.2619768 0.3757218 0.8889327 0.2816594 0.3798084 0.8811433 0.221202 0.3453535 0.9120311 0.2024324 0.3396763 0.9184994 0.1745394 0.3290888 0.9280284 0.1819248 0.3334831 0.9250364 0.1847626 0.4070028 0.8945455 0.1697798 0.3989505 0.9011179 0.1448729 0.3640288 0.9200516 0.1577817 0.3931725 0.9058259 0.1254045 0.3454501 0.9300205 0.1399015 0.3550642 0.9243144 0.1157595 0.3161795 0.9416105 0.1059613 0.3012511 0.9476393 0.097355 0.2906916 0.9518511 0.1005311 0.2898432 0.9517796 0.08365225 0.272198 0.9585983 0.085819 0.2760125 0.9573152 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -69.77671 61.9297 210.867 -69.7847 60.3033 212.089 -68.9986 60.996 212.365 -69.7969 58.5929 213.271 -69.00701 59.3228 213.528 -68.1129 60.0181 213.783 -67.1148 60.6787 214.037 -69.8136 56.795 214.411 -69.0196 57.5649 214.647 -68.1205 58.3002 214.881 -67.11631 59.0009 215.114 -66.0069 59.6669 215.345 -64.7924 60.2983 215.574 -63.4728 60.8951 215.802 -69.0367 55.7188 215.719 -68.1324 56.497 215.931 -67.122 57.2405 216.142 -66.0054 57.9495 216.35 -64.7826 58.6239 216.557 -63.4537 59.2638 216.763 -62.0186 59.8691 216.966 -60.4773 60.4398 217.168 -67.13201 55.3943 217.118 -66.00801 56.1492 217.303 -64.7768 56.8695 217.487 -63.4384 57.5554 217.669 -61.9929 58.2068 217.848 -60.4401 58.8236 218.026 -58.6928 59.4347 218.211 -56.8212 60.01 218.393 -63.4271 55.7668 218.517 -61.9709 56.4672 218.672 -60.4065 57.1332 218.825 -58.647 57.7956 218.983 -56.7641 58.4215 219.139 -54.7579 59.0109 219.292 -52.6284 59.5638 219.443 -60.3767 55.3657 219.561 -58.6047 56.0826 219.692 -56.7104 56.7624 219.82 -54.6938 57.405 219.946 -52.5548 58.0105 220.069 -50.2936 58.5789 220.19 -56.6603 55.0297 220.434 -54.633 55.729 220.531 -52.4844 56.3905 220.625 -50.2144 57.0142 220.717 -47.8232 57.6002 220.807 -45.3106 58.1484 220.894 -42.6767 58.6588 220.979 -69.8374 54.6989 215.619 -68.8773 54.6989 216.395 -67.7573 54.6989 217.119 -66.4748 54.6989 217.791 -65.0275 54.6989 218.412 -64.2411 54.6989 218.703 -63.4125 54.6989 218.982 -62.5415 54.6989 219.248 -61.6279 54.6989 219.501 -60.6715 54.6989 219.742 -59.672 54.6989 219.97 -58.6292 54.6989 220.186 -57.543 54.6989 220.389 -43.9748 58.876 220.804 -45.2482 59.0796 220.617 -46.4963 59.2709 220.419 -47.7184 59.4511 220.209 -48.913 59.6214 219.989 -50.0794 59.7827 219.76 -51.217 59.9358 219.52 -52.3253 60.0817 219.271 -53.4037 60.221 219.012 -54.4517 60.3543 218.744 -55.4689 60.4819 218.467 -56.4552 60.6043 218.181 -57.4099 60.7218 217.887 -58.333 60.8346 217.583 -59.2242 60.9428 217.272 -60.0831 61.0466 216.951 -60.9102 61.1461 216.623 -61.7065 61.2411 216.286 -63.2083 61.4174 215.589 -64.5915 61.5739 214.861 -65.8571 61.7074 214.104 -67.0159 61.8146 213.317 -68.04261 61.8888 212.521 -68.9589 61.9283 211.707 + + + + + + + + + + -0.5871349 0.4508041 0.6723455 -0.5945149 0.4711561 0.6515859 -0.6253403 0.455592 0.6335499 -0.6158568 0.4350581 0.6568447 -0.5294733 0.472769 0.7043774 -0.5755423 0.4283453 0.6966143 -0.6039522 0.4131742 0.6815636 -0.5177896 0.4477479 0.7289828 -0.4657208 0.4628825 0.7542174 -0.4750344 0.4887376 0.7317636 -0.4191532 0.4754309 0.7734832 -0.5032667 0.4231529 0.7534351 -0.5647008 0.4074648 0.7176946 -0.4513543 0.4353315 0.7789517 -0.4055714 0.4449109 0.7984774 -0.3652214 0.4524448 0.8135767 -0.3781278 0.4825021 0.7900704 -0.3290573 0.4583668 0.8256036 -0.3405036 0.4874845 0.804 -0.3882955 0.4157934 0.8224004 -0.4344419 0.4089583 0.8025044 -0.3493268 0.4192471 0.8379754 -0.3143497 0.4240059 0.8493546 -0.283192 0.4270007 0.8587624 -0.2981427 0.4610851 0.8357701 -0.255688 0.4286695 0.8665253 -0.2683228 0.4600429 0.8463825 -0.2995764 0.3929345 0.8694 -0.2665228 0.3914678 0.880749 -0.2395741 0.3908873 0.8887133 -0.2154035 0.3901862 0.895185 -0.2307236 0.4282121 0.8737283 -0.1936435 0.3890877 0.9006181 -0.206676 0.4247053 0.8814252 -0.197581 0.3522521 0.9148116 -0.2223944 0.3576866 0.9069736 -0.1767364 0.347308 0.920946 -0.1586694 0.3436768 0.9255865 -0.1749057 0.3860378 0.9057499 -0.1427065 0.3395535 0.929698 -0.1572036 0.3790161 0.9119397 -0.1509185 0.3222851 0.9345352 -0.1641641 0.3252459 0.9312708 -0.1347097 0.3177915 0.9385425 -0.1204609 0.3127346 0.9421712 -0.1283036 0.3329668 0.9341688 -0.1097763 0.3085151 0.9448638 -0.6080383 0.4761639 0.6352616 -0.633251 0.4668887 0.6172587 -0.5424789 0.4883988 0.6835081 -0.4865686 0.4985627 0.7174164 -0.4303565 0.4970722 0.7534672 -0.5898465 0.3939431 0.7049043 -0.5331134 0.398889 0.7461085 -0.4655694 0.4030968 0.7878821 -0.391282 0.3989728 0.8292884 -0.3856722 0.4972507 0.7771736 -0.3065346 0.4792121 0.8224307 -0.3363256 0.4966144 0.8001621 -0.2648453 0.4726197 0.8405282 -0.2847163 0.4746084 0.8328766 -0.2498028 0.4523613 0.8561354 -0.2216009 0.4419811 0.8692214 -0.2378382 0.4477816 0.8619307 -0.1922726 0.4138135 0.8898257 -0.2056986 0.4387119 0.8747686 -0.3387653 0.4014826 0.8509113 -0.313404 0.3935785 0.8642187 -0.2426291 0.3672702 0.8979108 -0.2619768 0.3757218 0.8889327 -0.2816594 0.3798084 0.8811433 -0.221202 0.3453535 0.9120311 -0.2024324 0.3396763 0.9184994 -0.1819248 0.3334831 0.9250364 -0.1745394 0.3290888 0.9280284 -0.1697798 0.3989505 0.9011179 -0.1847626 0.4070028 0.8945455 -0.1448729 0.3640288 0.9200516 -0.1577817 0.3931725 0.9058259 -0.1254045 0.3454501 0.9300205 -0.1399015 0.3550642 0.9243144 -0.1157595 0.3161795 0.9416105 -0.1059613 0.3012511 0.9476393 -0.097355 0.2906916 0.9518511 -0.1005311 0.2898432 0.9517796 -0.08365225 0.272198 0.9585983 -0.085819 0.2760125 0.9573152 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -69.8517 53.599 216.205 -69.8758 51.8978 217.053 -69.4869 52.3432 217.143 -69.0711 52.78 217.232 -69.90351 50.1269 217.865 -69.5128 50.5932 217.945 -69.095 51.0508 218.024 -68.1779 51.9403 218.18 -67.1523 52.7954 218.335 -69.9348 48.2841 218.64 -69.5423 48.7723 218.708 -69.1224 49.252 218.777 -68.2005 50.1854 218.912 -67.1692 51.0845 219.045 -66.02861 51.9492 219.175 -64.77861 52.7795 219.304 -69.97 46.3673 219.375 -69.5755 46.8785 219.433 -69.1534 47.3812 219.49 -68.2266 48.3608 219.603 -67.1896 49.3061 219.713 -66.0423 50.2171 219.821 -64.7848 51.0938 219.927 -63.4171 51.9362 220.031 -61.9391 52.7442 220.133 -60.3509 53.5179 220.232 -59.709 53.8071 220.27 -60.5822 53.8057 220.084 -61.4228 53.802 219.888 -62.2309 53.7961 219.684 -63.0067 53.7881 219.471 -63.7504 53.7783 219.249 -64.4621 53.7668 219.017 -65.7899 53.7394 218.528 -66.9914 53.7073 218.004 -68.06781 53.6721 217.442 -69.0208 53.6355 216.843 + + + + + + + + + + -0.5440449 0.3438964 0.7653434 -0.5635383 0.3627215 0.7421981 -0.5761376 0.3544171 0.7365149 -0.5558157 0.3357722 0.7604774 -0.5046359 0.3523448 0.7881598 -0.5216893 0.3701632 0.7686479 -0.520878 0.3250337 0.7893283 -0.5307936 0.317646 0.7857221 -0.4822363 0.3313485 0.8109602 -0.4330598 0.3380552 0.8355705 -0.4558041 0.3607367 0.8137026 -0.3835384 0.342978 0.8574756 -0.4043206 0.3662324 0.8380924 -0.3409354 0.345727 0.8742059 -0.5147097 0.3148991 0.7974413 -0.5228255 0.313555 0.7926769 -0.4784553 0.3206691 0.8174667 -0.4311749 0.3262195 0.8412307 -0.3795656 0.3305825 0.8640863 -0.3354405 0.3328158 0.8813135 -0.2977486 0.3333343 0.8945581 -0.3034495 0.3446195 0.8883444 -0.2662499 0.3317442 0.9050177 -0.5776053 0.3741341 0.7255315 -0.5400077 0.378683 0.7516589 -0.4696273 0.3747435 0.7993857 -0.408683 0.3742573 0.832412 -0.3513107 0.3623283 0.863307 -0.2798328 0.3383997 0.8984316 -0.3098946 0.3556738 0.8817378 -0.2624971 0.3321422 0.9059674 -0.2419571 0.3272281 0.9134432 -0.2074388 0.3139507 0.926501 -0.2229449 0.3219503 0.9201325 -0.2328943 0.3227438 0.9173859 -0.2024953 0.3141958 0.927511 -0.1980378 0.3176723 0.9272893 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 69.8517 53.599 216.205 69.8758 51.8978 217.053 69.4869 52.3432 217.143 69.0711 52.78 217.232 69.90351 50.1269 217.865 69.5128 50.5932 217.945 69.095 51.0508 218.024 68.1779 51.9403 218.18 67.1523 52.7954 218.335 69.9348 48.2841 218.64 69.5423 48.7723 218.708 69.1224 49.252 218.777 68.2005 50.1854 218.912 67.1692 51.0845 219.045 66.02861 51.9492 219.175 64.77861 52.7795 219.304 69.97 46.3673 219.375 69.5755 46.8785 219.433 69.1534 47.3812 219.49 68.2266 48.3608 219.603 67.1896 49.3061 219.713 66.0423 50.2171 219.821 64.7848 51.0938 219.927 63.4171 51.9362 220.031 61.9391 52.7442 220.133 60.3509 53.5179 220.232 59.709 53.8071 220.27 60.5822 53.8057 220.084 61.4228 53.802 219.888 62.2309 53.7961 219.684 63.0067 53.7881 219.471 63.7504 53.7783 219.249 64.4621 53.7668 219.017 65.7899 53.7394 218.528 66.9914 53.7073 218.004 68.06781 53.6721 217.442 69.0208 53.6355 216.843 + + + + + + + + + + 0.5440449 0.3438964 0.7653434 0.5558157 0.3357722 0.7604774 0.5761376 0.3544171 0.7365149 0.5635383 0.3627215 0.7421981 0.5046359 0.3523448 0.7881598 0.5216893 0.3701632 0.7686479 0.520878 0.3250337 0.7893283 0.5307936 0.317646 0.7857221 0.4822363 0.3313485 0.8109602 0.4330598 0.3380552 0.8355705 0.4558041 0.3607367 0.8137026 0.3835384 0.342978 0.8574756 0.4043206 0.3662324 0.8380924 0.3409354 0.345727 0.8742059 0.5147097 0.3148991 0.7974413 0.5228255 0.313555 0.7926769 0.4784553 0.3206691 0.8174667 0.4311749 0.3262195 0.8412307 0.3795656 0.3305825 0.8640863 0.3354405 0.3328158 0.8813135 0.2977486 0.3333343 0.8945581 0.3034495 0.3446195 0.8883444 0.2662499 0.3317442 0.9050177 0.5776053 0.3741341 0.7255315 0.5400077 0.378683 0.7516589 0.4696273 0.3747435 0.7993857 0.408683 0.3742573 0.832412 0.3513107 0.3623283 0.863307 0.3098946 0.3556738 0.8817378 0.2798328 0.3383997 0.8984316 0.2624971 0.3321422 0.9059674 0.2419571 0.3272281 0.9134432 0.2074388 0.3139507 0.926501 0.2328943 0.3227438 0.9173859 0.2229449 0.3219503 0.9201325 0.2024953 0.3141958 0.927511 0.1980378 0.3176723 0.9272893 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 69.29701 113.429 -209.163 76.4831 113.429 -200.166 75.56211 75.73571 -204.233 76.3183 73.42301 -199.334 75.8788 78.38771 -199.437 75.5368 83.4084 -199.542 75.30941 88.4624 -199.647 75.2131 93.5272 -199.752 75.2653 98.57701 -199.857 75.4832 103.592 -199.961 75.8835 108.55 -200.064 + + + + + + + + + + 0.9806144 0.1161868 -0.1577845 0.9899809 0.08530104 -0.1125242 0.9843824 0.1182602 -0.1304066 0.9024275 0.05041801 -0.4278817 0.8334584 -0.04138445 -0.5510305 0.875103 0.02655154 -0.483208 0.8222885 -0.0257585 -0.5684878 0.8478485 0.001281797 -0.5302371 0.776755 -0.1084057 -0.620403 0.7836749 -0.08865857 -0.6148116 0.8002762 -0.05527037 -0.5970789 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 86.0317 72.4805 199.711 87.1883 72.89321 195.57 86.6155 73.2209 197.055 88.6613 72.7364 189.3 88.2023 73.1406 191.05 87.70211 73.5241 192.707 87.165 73.8865 194.275 86.5954 74.2274 195.752 89.0431 73.2129 186.181 88.63101 73.6548 188.004 88.17401 74.0753 189.737 87.6763 74.4741 191.381 87.1422 74.8506 192.937 86.5759 75.2046 194.406 89.3741 73.6034 182.979 89.0119 74.0846 184.869 88.6012 74.5438 186.671 88.1462 74.9804 188.385 87.6511 75.3943 190.013 89.3118 75.2206 180.305 88.9507 75.7379 182.14 89.56201 76.13681 175.651 86.3631 72.4805 198.77 86.6859 72.4805 197.79 86.999 72.4805 196.771 87.30191 72.4805 195.714 87.6542 72.4805 194.38 87.9889 72.4805 192.987 88.3049 72.4805 191.535 88.6009 72.4803 190.024 88.8757 72.4803 188.453 89.1281 72.4803 186.821 89.2456 72.4804 185.983 89.3572 72.4804 185.13 89.4627 72.4805 184.262 89.56201 72.4805 183.379 89.56201 72.9926 182.438 89.56201 73.4882 181.49 89.56201 73.9676 180.535 89.56201 74.4313 179.573 89.56201 74.8796 178.604 89.56201 75.31301 177.627 89.56201 75.732 176.643 89.4414 76.13681 176.994 89.30661 76.13681 178.337 89.1565 76.1369 179.679 88.9902 76.1369 181.019 88.8068 76.1369 182.357 88.6052 76.1369 183.692 88.3845 76.13681 185.024 88.1438 76.13681 186.352 87.9229 76.13681 187.475 87.6859 76.13681 188.595 87.43201 76.13681 189.711 87.16001 76.13681 190.824 86.9021 76.13681 191.811 86.6287 76.13681 192.794 86.3389 76.13681 193.771 86.0317 76.13681 194.744 86.0317 75.2723 196.023 86.0317 74.37601 197.277 86.0317 73.44601 198.506 87.12001 75.7849 191.557 + + + + + + + + + + 0.9188026 0.326644 0.2215979 0.9028494 0.3521915 0.2466256 0.9028395 0.3474878 0.2532455 0.883914 0.3804596 0.2719312 0.8848385 0.3724544 0.2798901 0.9333395 0.3043379 0.1904096 0.934303 0.2981078 0.195473 0.9484226 0.2660686 0.1723433 0.9470556 0.2749211 0.1658438 0.9169244 0.336049 0.2152227 0.9001621 0.3637271 0.2396058 0.8814895 0.3912272 0.2644194 0.9683298 0.2208337 0.1164901 0.9585407 0.2498285 0.1370608 0.9592194 0.2447032 0.1414871 0.9457299 0.2822723 0.1609889 0.931628 0.3127604 0.1850682 0.9161304 0.3418474 0.2093933 0.9578102 0.2563601 0.1299196 0.9671804 0.228771 0.1105706 0.9424265 0.2821481 0.1795127 0.9535295 0.2561748 0.1586062 0.9259217 0.3103802 0.2152518 0.9363069 0.2905148 0.1973084 0.9125266 0.3344913 0.2353952 0.9655462 0.2277367 0.1259235 0.9709926 0.2090857 0.1160027 0.9734305 0.2011195 0.1094712 0.9730924 0.2034689 0.1081281 0.9604834 0.237809 0.1446325 0.9641513 0.2314243 0.1298272 0.8847579 0.3680031 0.2859669 0.8947407 0.3574446 0.2677172 0.9071933 0.3373935 0.2513284 0.8750164 0.3829551 0.2961279 0.8712935 0.3829858 0.3068708 0.874482 0.3808863 0.3003447 0.8748883 0.3895446 0.2877942 0.8726045 0.4005337 0.2795252 0.8711033 0.4068791 0.2750065 0.8756252 0.4033412 0.2656998 0.8876608 0.3861637 0.2508706 0.9713463 0.2130876 0.105262 0.9715178 0.2144279 0.100866 0.9718257 0.2103389 0.1063597 0.9613068 0.2472699 0.1214375 0.9507114 0.2736984 0.1457303 0.9704351 0.2203148 0.09857553 0.971475 0.216592 0.09656155 0.9705029 0.2196449 0.09940022 0.9728946 0.2141083 0.08737313 0.9725302 0.2140018 0.09158861 0.9730066 0.2131446 0.08847451 0.9644107 0.2396988 0.1116092 0.9532908 0.2679261 0.1394717 0.9210997 0.3353754 0.1977338 0.910117 0.355306 0.2131775 0.9006193 0.3683658 0.230633 0.8923272 0.3815845 0.241134 0.9047668 0.3625965 0.2234297 0.9359965 0.30678 0.1726171 0.9424673 0.2935654 0.1599212 0.9268682 0.325762 0.1865333 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

5 0 0 6 1 1 1 2 2 7 3 3 2 4 4 1 2 5 7 3 6 1 2 7 6 1 8 10 5 9 4 6 10 3 7 11 10 5 12 3 7 13 9 8 14 11 9 15 5 0 16 4 6 17 11 9 18 4 6 19 10 5 20 12 10 21 6 1 22 5 0 23 12 10 24 5 0 25 11 9 26 13 11 27 7 3 28 6 1 29 13 11 30 6 1 31 12 10 32 14 12 33 15 13 34 8 14 35 16 15 36 9 8 37 8 14 38 16 15 39 8 14 40 15 13 41 17 16 42 10 5 43 9 8 44 17 16 45 9 8 46 16 15 47 18 17 48 11 9 49 10 5 50 18 17 51 10 5 52 17 16 53 12 10 54 11 9 55 18 17 56 20 18 57 15 13 58 14 12 59 20 18 60 14 12 61 19 19 62 3 7 63 29 20 64 30 21 65 9 8 66 3 7 67 30 21 68 4 6 69 29 20 70 3 7 71 4 6 72 27 22 73 28 23 74 27 22 75 4 6 76 5 0 77 4 6 78 28 23 79 29 20 80 26 24 81 27 22 82 5 0 83 33 25 84 14 12 85 8 14 86 34 26 87 35 27 88 36 28 89 33 25 90 34 26 91 14 12 92 8 14 93 31 29 94 32 30 95 8 14 96 9 8 97 30 21 98 8 14 99 32 30 100 33 25 101 31 29 102 8 14 103 30 21 104 23 31 105 24 32 106 2 4 107 24 32 108 25 33 109 1 2 110 61 34 111 0 35 112 22 36 113 61 34 114 22 36 115 2 4 116 22 36 117 23 31 118 2 4 119 1 2 120 25 33 121 26 24 122 24 32 123 1 2 124 2 4 125 1 2 126 26 24 127 5 0 128 60 37 129 2 4 130 7 3 131 59 38 132 60 37 133 7 3 134 58 39 135 59 38 136 57 40 137 59 38 138 13 11 139 57 40 140 59 38 141 7 3 142 13 11 143 12 10 144 56 41 145 13 11 146 61 34 147 2 4 148 60 37 149 34 26 150 36 28 151 14 12 152 19 19 153 38 42 154 39 43 155 14 12 156 37 44 157 38 42 158 46 45 159 20 18 160 19 19 161 19 19 162 14 12 163 38 42 164 48 46 165 15 13 166 20 18 167 19 19 168 39 43 169 40 47 170 36 28 171 37 44 172 14 12 173 19 19 174 41 48 175 44 49 176 43 50 177 42 50 178 21 50 179 43 51 180 41 48 181 42 52 182 45 53 183 46 45 184 19 19 185 41 48 186 43 51 187 44 49 188 45 53 189 19 19 190 44 49 191 19 19 192 40 47 193 41 48 194 47 54 195 20 18 196 46 45 197 17 16 198 52 55 199 18 17 200 18 17 201 53 56 202 62 57 203 18 17 204 62 57 205 12 10 206 57 40 207 13 11 208 56 41 209 12 10 210 62 57 211 55 58 212 55 58 213 56 41 214 12 10 215 54 59 216 55 58 217 62 57 218 50 60 219 17 16 220 16 15 221 16 15 222 49 61 223 50 60 224 15 13 225 48 46 226 16 15 227 48 46 228 49 61 229 16 15 230 62 57 231 53 56 232 54 59 233 17 16 234 51 62 235 52 55 236 52 55 237 53 56 238 18 17 239 17 16 240 50 60 241 51 62 242 48 46 243 20 18 244 47 54 245

+
+
+
+ + + + -86.0317 72.4805 199.711 -87.1883 72.89321 195.57 -86.6155 73.2209 197.055 -88.6613 72.7364 189.3 -88.2023 73.1406 191.05 -87.70211 73.5241 192.707 -87.165 73.8865 194.275 -86.5954 74.2274 195.752 -89.0431 73.2129 186.181 -88.63101 73.6548 188.004 -88.17401 74.0753 189.737 -87.6763 74.4741 191.381 -87.1422 74.8506 192.937 -86.5759 75.2046 194.406 -89.3741 73.6034 182.979 -89.0119 74.0846 184.869 -88.6012 74.5438 186.671 -88.1462 74.9804 188.385 -87.6511 75.3943 190.013 -89.3118 75.2206 180.305 -88.9507 75.7379 182.14 -89.56201 76.13681 175.651 -86.3631 72.4805 198.77 -86.6859 72.4805 197.79 -86.999 72.4805 196.771 -87.30191 72.4805 195.714 -87.6542 72.4805 194.38 -87.9889 72.4805 192.987 -88.3049 72.4805 191.535 -88.6009 72.4803 190.024 -88.8757 72.4803 188.453 -89.1281 72.4803 186.821 -89.2456 72.4804 185.983 -89.3572 72.4804 185.13 -89.4627 72.4805 184.262 -89.56201 72.4805 183.379 -89.56201 72.9926 182.438 -89.56201 73.4882 181.49 -89.56201 73.9676 180.535 -89.56201 74.4313 179.573 -89.56201 74.8796 178.604 -89.56201 75.31301 177.627 -89.56201 75.732 176.643 -89.4414 76.13681 176.994 -89.30661 76.13681 178.337 -89.1565 76.1369 179.679 -88.9902 76.1369 181.019 -88.8068 76.1369 182.357 -88.6052 76.1369 183.692 -88.3845 76.13681 185.024 -88.1438 76.13681 186.352 -87.9229 76.13681 187.475 -87.6859 76.13681 188.595 -87.43201 76.13681 189.711 -87.16001 76.13681 190.824 -86.9021 76.13681 191.811 -86.6287 76.13681 192.794 -86.3389 76.13681 193.771 -86.0317 76.13681 194.744 -86.0317 75.2723 196.023 -86.0317 74.37601 197.277 -86.0317 73.44601 198.506 -87.12001 75.7849 191.557 + + + + + + + + + + -0.9188026 0.326644 0.2215979 -0.9028395 0.3474878 0.2532455 -0.9028494 0.3521915 0.2466256 -0.883914 0.3804596 0.2719312 -0.8848385 0.3724544 0.2798901 -0.9333395 0.3043379 0.1904096 -0.9470556 0.2749211 0.1658438 -0.9484226 0.2660686 0.1723433 -0.934303 0.2981078 0.195473 -0.9169244 0.336049 0.2152227 -0.9001621 0.3637271 0.2396058 -0.8814895 0.3912272 0.2644194 -0.9683298 0.2208337 0.1164901 -0.9592194 0.2447032 0.1414871 -0.9585407 0.2498285 0.1370608 -0.9457299 0.2822723 0.1609889 -0.931628 0.3127604 0.1850682 -0.9161304 0.3418474 0.2093933 -0.9578102 0.2563601 0.1299196 -0.9671804 0.228771 0.1105706 -0.9535295 0.2561748 0.1586062 -0.9424265 0.2821481 0.1795127 -0.9363069 0.2905148 0.1973084 -0.9259217 0.3103802 0.2152518 -0.9125266 0.3344913 0.2353952 -0.9655462 0.2277367 0.1259235 -0.9709926 0.2090857 0.1160027 -0.9730924 0.2034689 0.1081281 -0.9734305 0.2011195 0.1094712 -0.9641513 0.2314243 0.1298272 -0.9604834 0.237809 0.1446325 -0.8847579 0.3680031 0.2859669 -0.8947407 0.3574446 0.2677172 -0.9071933 0.3373935 0.2513284 -0.8750164 0.3829551 0.2961279 -0.874482 0.3808863 0.3003447 -0.8712935 0.3829858 0.3068708 -0.8748883 0.3895446 0.2877942 -0.8726045 0.4005337 0.2795252 -0.8711033 0.4068791 0.2750065 -0.8756252 0.4033412 0.2656998 -0.8876608 0.3861637 0.2508706 -0.9715178 0.2144279 0.100866 -0.9713463 0.2130876 0.105262 -0.9718257 0.2103389 0.1063597 -0.9613068 0.2472699 0.1214375 -0.9507114 0.2736984 0.1457303 -0.9704351 0.2203148 0.09857553 -0.9705029 0.2196449 0.09940022 -0.971475 0.216592 0.09656155 -0.9728946 0.2141083 0.08737313 -0.9725302 0.2140018 0.09158861 -0.9730066 0.2131446 0.08847451 -0.9644107 0.2396988 0.1116092 -0.9532908 0.2679261 0.1394717 -0.9210997 0.3353754 0.1977338 -0.9006193 0.3683658 0.230633 -0.910117 0.355306 0.2131775 -0.8923272 0.3815845 0.241134 -0.9047668 0.3625965 0.2234297 -0.9359965 0.30678 0.1726171 -0.9424673 0.2935654 0.1599212 -0.9268682 0.325762 0.1865333 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

5 0 0 1 1 1 6 2 2 7 3 3 6 2 4 1 1 5 7 3 6 1 1 7 2 4 8 10 5 9 9 6 10 3 7 11 10 5 12 3 7 13 4 8 14 11 9 15 10 5 16 4 8 17 11 9 18 4 8 19 5 0 20 12 10 21 11 9 22 5 0 23 12 10 24 5 0 25 6 2 26 13 11 27 12 10 28 6 2 29 13 11 30 6 2 31 7 3 32 14 12 33 8 13 34 15 14 35 16 15 36 15 14 37 8 13 38 16 15 39 8 13 40 9 6 41 17 16 42 16 15 43 9 6 44 17 16 45 9 6 46 10 5 47 18 17 48 17 16 49 10 5 50 18 17 51 10 5 52 11 9 53 12 10 54 18 17 55 11 9 56 20 18 57 19 19 58 14 12 59 20 18 60 14 12 61 15 14 62 3 7 63 30 20 64 29 21 65 9 6 66 30 20 67 3 7 68 4 8 69 3 7 70 29 21 71 4 8 72 28 22 73 27 23 74 27 23 75 5 0 76 4 8 77 4 8 78 29 21 79 28 22 80 26 24 81 5 0 82 27 23 83 33 25 84 8 13 85 14 12 86 34 26 87 36 27 88 35 28 89 33 25 90 14 12 91 34 26 92 8 13 93 32 29 94 31 30 95 8 13 96 30 20 97 9 6 98 8 13 99 33 25 100 32 29 101 31 30 102 30 20 103 8 13 104 23 31 105 2 4 106 24 32 107 24 32 108 1 1 109 25 33 110 61 34 111 22 35 112 0 36 113 61 34 114 2 4 115 22 35 116 22 35 117 2 4 118 23 31 119 1 1 120 26 24 121 25 33 122 24 32 123 2 4 124 1 1 125 1 1 126 5 0 127 26 24 128 60 37 129 7 3 130 2 4 131 59 38 132 7 3 133 60 37 134 58 39 135 57 40 136 59 38 137 59 38 138 57 40 139 13 11 140 59 38 141 13 11 142 7 3 143 12 10 144 13 11 145 56 41 146 61 34 147 60 37 148 2 4 149 34 26 150 14 12 151 36 27 152 19 19 153 39 42 154 38 43 155 14 12 156 38 43 157 37 44 158 46 45 159 19 19 160 20 18 161 19 19 162 38 43 163 14 12 164 48 46 165 20 18 166 15 14 167 19 19 168 40 47 169 39 42 170 36 27 171 14 12 172 37 44 173 19 19 174 44 48 175 41 49 176 43 50 177 21 50 178 42 50 179 43 51 180 42 52 181 41 49 182 45 53 183 19 19 184 46 45 185 41 49 186 44 48 187 43 51 188 45 53 189 44 48 190 19 19 191 19 19 192 41 49 193 40 47 194 47 54 195 46 45 196 20 18 197 17 16 198 18 17 199 52 55 200 18 17 201 62 56 202 53 57 203 18 17 204 12 10 205 62 56 206 57 40 207 56 41 208 13 11 209 12 10 210 55 58 211 62 56 212 55 58 213 12 10 214 56 41 215 54 59 216 62 56 217 55 58 218 50 60 219 16 15 220 17 16 221 16 15 222 50 60 223 49 61 224 15 14 225 16 15 226 48 46 227 48 46 228 16 15 229 49 61 230 62 56 231 54 59 232 53 57 233 17 16 234 52 55 235 51 62 236 52 55 237 18 17 238 53 57 239 17 16 240 51 62 241 50 60 242 48 46 243 47 54 244 20 18 245

+
+
+
+ + + + -69.29701 113.429 -209.163 -76.4831 113.429 -200.166 -75.56211 75.73571 -204.233 -76.3183 73.42301 -199.334 -75.8788 78.38771 -199.437 -75.5368 83.4084 -199.542 -75.30941 88.4624 -199.647 -75.2131 93.5272 -199.752 -75.2653 98.57701 -199.857 -75.4832 103.592 -199.961 -75.8835 108.55 -200.064 + + + + + + + + + + -0.9806144 0.1161868 -0.1577845 -0.9843824 0.1182602 -0.1304066 -0.9899809 0.08530104 -0.1125242 -0.9024275 0.05041801 -0.4278817 -0.8334584 -0.04138445 -0.5510305 -0.875103 0.02655154 -0.483208 -0.8478485 0.001281797 -0.5302371 -0.8222885 -0.0257585 -0.5684878 -0.7836749 -0.08865857 -0.6148116 -0.776755 -0.1084057 -0.620403 -0.8002762 -0.05527037 -0.5970789 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 63.1614 115.114 -209.33 66.0819 114.821 -209.317 69.1202 114.493 -209.303 63.1613 114.272 -209.329 66.15351 113.974 -209.261 69.2613 113.644 -209.192 63.1612 113.429 -209.329 64.6748 113.429 -209.272 66.1999 113.429 -209.225 67.7396 113.429 -209.189 69.29701 113.429 -209.163 + + + + + + + + + + 0.0173043 -0.0607025 -0.9980059 0.02725338 -0.004882991 -0.9996166 0.01812845 -0.01287913 -0.9997528 0.00350964 -0.07080411 -0.9974841 0.007324576 -0.1231749 -0.992358 -0.009582877 -0.13117 -0.9913136 0.01321458 -0.09521842 -0.9953687 0.01654112 -0.1309861 -0.9912463 0.02365201 -0.03079342 -0.9992459 0.02682644 -0.0636022 -0.9976148 0.03759974 0 -0.999293 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 71.9516 114.101 -192.388 71.9405 114.296 -192.694 71.90731 114.496 -192.98 71.7746 114.911 -193.491 71.5534 115.348 -193.923 71.2437 115.805 -194.275 70.8456 116.283 -194.546 70.3589 116.781 -194.737 69.7838 117.3 -194.849 69.1202 117.84 -194.88 71.9516 114.101 -192.388 71.9137 114.202 -192.718 71.8572 114.312 -193.056 71.6887 114.558 -193.758 71.44601 114.84 -194.493 71.1291 115.157 -195.26 70.7381 115.51 -196.061 70.27301 115.898 -196.895 69.7336 116.322 -197.762 69.1202 116.781 -198.662 71.9516 114.101 -192.388 71.88681 114.116 -192.734 71.8071 114.144 -193.117 71.6027 114.238 -193.992 71.3386 114.382 -195.013 71.01451 114.576 -196.181 70.6307 114.821 -197.495 70.18701 115.115 -198.956 69.6835 115.46 -200.562 69.1202 115.856 -202.315 71.9516 114.101 -192.388 71.86 114.04 -192.743 71.7569 113.996 -193.163 71.5168 113.957 -194.198 71.2311 113.982 -195.492 70.9 114.073 -197.045 70.5233 114.228 -198.859 70.1011 114.449 -200.931 69.6334 114.734 -203.264 69.1202 115.085 -205.855 71.9516 114.101 -192.388 71.8465 114.007 -192.745 71.73191 113.93 -193.181 71.4738 113.832 -194.291 71.1774 113.807 -195.717 70.8427 113.854 -197.46 70.4696 113.973 -199.518 70.0581 114.165 -201.892 69.6083 114.429 -204.583 69.1202 114.765 -207.589 71.8331 113.976 -192.746 71.7068 113.871 -193.198 71.4308 113.72 -194.38 71.12371 113.649 -195.935 70.7854 113.659 -197.864 70.4158 113.747 -200.164 70.0151 113.916 -202.838 69.5832 114.165 -205.884 69.1202 114.493 -209.303 + + + + + + + + + + 0.950378 -0.2350919 -0.2037483 0.9551345 -0.2102785 -0.2085694 0.9571906 -0.2271206 -0.1794503 0.9542415 -0.1709681 -0.2453432 0.9576011 -0.1325754 -0.2557814 0.959737 -0.03177046 -0.279098 0.9550754 0.02774214 -0.295062 0.9462693 0.1279047 -0.29701 0.9215772 0.2160428 -0.322523 0.9147675 0.2809035 -0.2903341 0.8617766 0.3931816 -0.3205454 0.8708527 0.4121863 -0.2678021 0.7896527 0.5369235 -0.2969208 0.8221248 0.5171775 -0.2379882 0.7197752 0.6423774 -0.2632014 0.774631 0.5977739 -0.2064299 0.6594302 0.7164707 -0.2276433 0.7356669 0.6529291 -0.1802162 0.6228736 0.7533447 -0.2109511 0.939445 -0.2792515 -0.1986501 0.9467678 -0.2608785 -0.1886088 0.9486117 -0.2224272 -0.2250824 0.9648228 -0.09375387 -0.2456157 0.9669533 0.04993009 -0.2500168 0.9526695 0.1899235 -0.2373815 0.9248549 0.3139208 -0.2147028 0.8889483 0.4177703 -0.1877204 0.8505371 0.5010017 -0.1599506 0.8061404 0.5764206 -0.1337056 0.9243192 -0.334149 -0.1843328 0.9329761 -0.3069024 -0.1880601 0.9391244 -0.2771412 -0.203072 0.964169 -0.153482 -0.2163826 0.976853 -0.01736527 -0.2132059 0.9733437 0.1168268 -0.1973666 0.9555085 0.2376487 -0.1747193 0.9278863 0.3416553 -0.1493273 0.8951735 0.4281304 -0.1239711 0.8488316 0.5190407 -0.1004083 0.9114404 -0.3746293 -0.1700863 0.9151456 -0.3638181 -0.1736231 0.9287825 -0.3206013 -0.1859518 0.9602438 -0.1947405 -0.2000203 0.9791183 -0.05496513 -0.1957198 0.9801438 0.0843541 -0.1794509 0.9649307 0.2106141 -0.1566864 0.938297 0.3199378 -0.1312956 0.9053931 0.4110679 -0.1062386 0.8564854 0.5093928 -0.08337789 0.9074191 -0.3867968 -0.1642528 0.9073157 -0.3866217 -0.1652328 0.9228047 -0.3432784 -0.1749047 0.9572277 -0.2227885 -0.1846092 0.9798785 -0.09122174 -0.1775299 0.9861338 0.04004108 -0.1610494 0.9769006 0.1618757 -0.1395049 0.9555835 0.270918 -0.1160336 0.9268246 0.3638448 -0.09280759 0.8796295 0.4680757 -0.08459967 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

11 0 0 1 1 1 0 2 2 12 3 3 2 4 4 1 1 5 12 3 6 1 1 7 11 0 8 13 5 9 3 6 10 2 4 11 13 5 12 2 4 13 12 3 14 14 7 15 4 8 16 3 6 17 14 7 18 3 6 19 13 5 20 15 9 21 5 10 22 4 8 23 15 9 24 4 8 25 14 7 26 16 11 27 6 12 28 5 10 29 16 11 30 5 10 31 15 9 32 17 13 33 7 14 34 6 12 35 17 13 36 6 12 37 16 11 38 18 15 39 8 16 40 7 14 41 18 15 42 7 14 43 17 13 44 19 17 45 9 18 46 8 16 47 19 17 48 8 16 49 18 15 50 21 19 51 11 0 52 10 20 53 22 21 54 12 3 55 11 0 56 22 21 57 11 0 58 21 19 59 23 22 60 13 5 61 12 3 62 23 22 63 12 3 64 22 21 65 24 23 66 14 7 67 13 5 68 24 23 69 13 5 70 23 22 71 25 24 72 15 9 73 14 7 74 25 24 75 14 7 76 24 23 77 26 25 78 16 11 79 15 9 80 26 25 81 15 9 82 25 24 83 27 26 84 17 13 85 16 11 86 27 26 87 16 11 88 26 25 89 28 27 90 18 15 91 17 13 92 28 27 93 17 13 94 27 26 95 29 28 96 19 17 97 18 15 98 29 28 99 18 15 100 28 27 101 31 29 102 21 19 103 20 30 104 32 31 105 22 21 106 21 19 107 32 31 108 21 19 109 31 29 110 33 32 111 23 22 112 22 21 113 33 32 114 22 21 115 32 31 116 34 33 117 24 23 118 23 22 119 34 33 120 23 22 121 33 32 122 35 34 123 25 24 124 24 23 125 35 34 126 24 23 127 34 33 128 36 35 129 26 25 130 25 24 131 36 35 132 25 24 133 35 34 134 37 36 135 27 26 136 26 25 137 37 36 138 26 25 139 36 35 140 38 37 141 28 27 142 27 26 143 38 37 144 27 26 145 37 36 146 39 38 147 29 28 148 28 27 149 39 38 150 28 27 151 38 37 152 41 39 153 31 29 154 30 40 155 42 41 156 32 31 157 31 29 158 42 41 159 31 29 160 41 39 161 43 42 162 33 32 163 32 31 164 43 42 165 32 31 166 42 41 167 44 43 168 34 33 169 33 32 170 44 43 171 33 32 172 43 42 173 45 44 174 35 34 175 34 33 176 45 44 177 34 33 178 44 43 179 46 45 180 36 35 181 35 34 182 46 45 183 35 34 184 45 44 185 47 46 186 37 36 187 36 35 188 47 46 189 36 35 190 46 45 191 48 47 192 38 37 193 37 36 194 48 47 195 37 36 196 47 46 197 49 48 198 39 38 199 38 37 200 49 48 201 38 37 202 48 47 203 50 49 204 41 39 205 40 50 206 51 51 207 42 41 208 41 39 209 51 51 210 41 39 211 50 49 212 52 52 213 43 42 214 42 41 215 52 52 216 42 41 217 51 51 218 53 53 219 44 43 220 43 42 221 53 53 222 43 42 223 52 52 224 54 54 225 45 44 226 44 43 227 54 54 228 44 43 229 53 53 230 55 55 231 46 45 232 45 44 233 55 55 234 45 44 235 54 54 236 56 56 237 47 46 238 46 45 239 56 56 240 46 45 241 55 55 242 57 57 243 48 47 244 47 46 245 57 57 246 47 46 247 56 56 248 58 58 249 49 48 250 48 47 251 58 58 252 48 47 253 57 57 254

+
+
+
+ + + + -63.1614 115.114 -209.33 -66.0819 114.821 -209.317 -69.1202 114.493 -209.303 -63.1613 114.272 -209.329 -66.15351 113.974 -209.261 -69.2613 113.644 -209.192 -63.1612 113.429 -209.329 -64.6748 113.429 -209.272 -66.1999 113.429 -209.225 -67.7396 113.429 -209.189 -69.29701 113.429 -209.163 + + + + + + + + + + -0.0173043 -0.0607025 -0.9980059 -0.00350964 -0.07080411 -0.9974841 -0.01812845 -0.01287913 -0.9997528 -0.02725338 -0.004882991 -0.9996166 -0.007324576 -0.1231749 -0.992358 0.009582877 -0.13117 -0.9913136 -0.01321458 -0.09521842 -0.9953687 -0.01654112 -0.1309861 -0.9912463 -0.02365201 -0.03079342 -0.9992459 -0.02682644 -0.0636022 -0.9976148 -0.03759974 0 -0.999293 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 69.1202 115.856 -202.315 69.1202 115.085 -205.855 69.1202 114.493 -209.303 54.9806 117.116 -202.376 55.1479 116.356 -205.913 55.3152 115.774 -209.358 48.1555 117.508 -202.394 48.3898 116.749 -205.931 48.6241 116.168 -209.375 40.9443 117.773 -202.406 41.2211 117.014 -205.943 41.4978 116.432 -209.387 23.716 118.026 -202.415 23.9637 117.261 -205.952 24.2115 116.675 -209.397 0 118.072 -202.411 0 117.301 -205.951 0 116.709 -209.399 69.1202 117.84 -194.88 61.659 118.555 -194.88 54.6432 119.098 -194.88 51.1801 119.313 -194.88 47.6819 119.494 -194.88 40.384 119.765 -194.88 36.4867 119.861 -194.88 34.4545 119.901 -194.88 32.3585 119.935 -194.88 23.2138 120.03 -194.88 17.8861 120.057 -194.88 12.5583 120.071 -194.88 6.27918 120.08 -194.88 0 120.084 -194.88 54.7834 118.209 -198.063 47.8783 118.604 -198.063 40.616 118.874 -198.063 + + + + + + + + + + 0.07339811 0.980056 -0.1846703 0.0719639 0.9719404 -0.2239488 0.08783543 0.9681738 -0.2343601 0.0904572 0.9776952 -0.1895512 0.074925 0.9837612 -0.1630955 0.09173953 0.9814243 -0.1684944 0.04693859 0.9816212 -0.1849772 0.04632812 0.9733795 -0.2244687 0.0478236 0.9854356 -0.1631863 0.02526962 0.9821587 -0.1863483 0.02517843 0.9738101 -0.2259649 0.02594083 0.9860265 -0.1645565 0.007904291 0.981939 -0.1890327 0.008209645 0.9720716 -0.2345411 0.008056998 0.9859188 -0.1670309 0.001709043 0.9815906 -0.1909894 0.001525938 0.971795 -0.2358224 0.001586973 0.9856022 -0.1690737 0.06677579 0.961749 -0.2656689 0.08050823 0.9604529 -0.26655 0.0681802 0.9641975 -0.2562709 0.04248243 0.9628752 -0.2665836 0.05478119 0.961677 -0.2686567 0.04495447 0.9658347 -0.2552304 0.02713167 0.9660296 -0.2570036 0.09216725 0.9620797 -0.2567254 0.02942049 0.9631254 -0.2674399 0.01608365 0.9602605 -0.2786415 0.01992857 0.9619753 -0.2724086 0.0174877 0.9636856 -0.2664663 0.003234982 0.9661625 -0.2579139 0.007355034 0.966505 -0.2565424 0.001861631 0.965856 -0.2590733 6.10385e-4 0.9661177 -0.2581014 0.001159727 0.9660024 -0.2585304 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 82.888 80.7262 79.40441 82.05381 85.7523 91.55561 81.17591 89.9229 103.918 80.3427 93.2027 116.456 79.8473 95.0935 129.28 82.00331 84.37641 82.8751 81.1971 87.5859 96.2201 80.2579 90.34571 109.044 79.1794 92.6748 121.406 77.8637 94.45401 133.401 81.2568 87.4523 86.83071 80.4617 89.16661 100.461 79.47261 90.6892 113.038 78.21791 92.0513 124.634 76.3315 93.2908 135.133 80.5496 90.3641 91.08351 79.75901 90.6805 104.628 78.72351 91.00801 116.657 77.3171 91.373 127.224 74.9497 91.8818 135.916 79.8473 93.2549 95.64791 79.05701 92.1954 108.868 77.9759 91.3202 120.142 76.429 90.6402 129.482 73.6241 90.27571 136.115 + + + + + + + + + + 0.8048725 0.5878227 -0.08151572 -0.1420986 0.913142 -0.382073 0.9552395 0.2948424 -0.02420139 0.9722179 0.2340208 0.005157709 -0.7258288 0.6603964 -0.1924821 -0.8992704 0.3927785 -0.1924523 -0.8743524 0.4560525 -0.1659038 -0.8866426 0.4314494 -0.166482 -0.7019788 0.6906256 -0.1739611 -0.5585942 0.817184 -0.1420672 0.921998 0.3868973 0.01516824 0.9800493 0.1956863 0.03479135 -0.2893481 0.9467828 -0.1409965 -0.8788924 0.4401176 -0.1839698 -0.7497272 0.6303373 -0.2014552 0.9603474 0.2716818 0.06262534 0.9854924 0.1602253 0.05597198 0.5134464 0.8575446 0.03146475 -0.8874748 0.4110053 -0.2084783 -0.7659435 0.5994911 -0.232252 0.9808002 0.1675817 0.09973722 0.9890182 0.1304062 0.069552 0.9375743 0.3030842 0.1705707 -0.9256818 -0.02780306 -0.3772799 -0.7811365 0.5703411 -0.254041 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

6 0 0 1 1 1 0 2 2 6 0 3 0 2 4 5 3 5 7 4 6 2 5 7 1 1 8 7 4 9 1 1 10 6 0 11 8 6 12 3 7 13 2 5 14 8 6 15 2 5 16 7 4 17 9 8 18 4 9 19 3 7 20 9 8 21 3 7 22 8 6 23 11 10 24 6 0 25 5 3 26 11 10 27 5 3 28 10 11 29 12 12 30 7 4 31 6 0 32 12 12 33 6 0 34 11 10 35 13 13 36 8 6 37 7 4 38 13 13 39 7 4 40 12 12 41 14 14 42 9 8 43 8 6 44 14 14 45 8 6 46 13 13 47 16 15 48 11 10 49 10 11 50 16 15 51 10 11 52 15 16 53 17 17 54 12 12 55 11 10 56 17 17 57 11 10 58 16 15 59 18 18 60 13 13 61 12 12 62 18 18 63 12 12 64 17 17 65 19 19 66 14 14 67 13 13 68 19 19 69 13 13 70 18 18 71 21 20 72 16 15 73 15 16 74 21 20 75 15 16 76 20 21 77 22 22 78 17 17 79 16 15 80 22 22 81 16 15 82 21 20 83 23 23 84 18 18 85 17 17 86 23 23 87 17 17 88 22 22 89 24 24 90 19 19 91 18 18 92 24 24 93 18 18 94 23 23 95

+
+
+
+ + + + -82.888 80.7262 79.40441 -82.05381 85.7523 91.55561 -81.17591 89.9229 103.918 -80.3427 93.2027 116.456 -79.8473 95.0935 129.28 -82.00331 84.37641 82.8751 -81.1971 87.5859 96.2201 -80.2579 90.34571 109.044 -79.1794 92.6748 121.406 -77.8637 94.45401 133.401 -81.2568 87.4523 86.83071 -80.4617 89.16661 100.461 -79.47261 90.6892 113.038 -78.21791 92.0513 124.634 -76.3315 93.2908 135.133 -80.5496 90.3641 91.08351 -79.75901 90.6805 104.628 -78.72351 91.00801 116.657 -77.3171 91.373 127.224 -74.9497 91.8818 135.916 -79.8473 93.2549 95.64791 -79.05701 92.1954 108.868 -77.9759 91.3202 120.142 -76.429 90.6402 129.482 -73.6241 90.27571 136.115 + + + + + + + + + + -0.8048725 0.5878227 -0.08151572 -0.9722179 0.2340208 0.005157709 -0.9552395 0.2948424 -0.02420139 0.1420986 0.913142 -0.382073 0.7258288 0.6603964 -0.1924821 0.8992704 0.3927785 -0.1924523 0.8743524 0.4560525 -0.1659038 0.8866426 0.4314494 -0.166482 0.7019788 0.6906256 -0.1739611 0.5585942 0.817184 -0.1420672 -0.921998 0.3868973 0.01516824 -0.9800493 0.1956863 0.03479135 0.2893481 0.9467828 -0.1409965 0.8788924 0.4401176 -0.1839698 0.7497272 0.6303373 -0.2014552 -0.9603474 0.2716818 0.06262534 -0.9854924 0.1602253 0.05597198 -0.5134464 0.8575446 0.03146475 0.8874748 0.4110053 -0.2084783 0.7659435 0.5994911 -0.232252 -0.9808002 0.1675817 0.09973722 -0.9890182 0.1304062 0.069552 -0.9375743 0.3030842 0.1705707 0.9256818 -0.02780306 -0.3772799 0.7811365 0.5703411 -0.254041 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

6 0 0 5 1 1 0 2 2 6 0 3 0 2 4 1 3 5 7 4 6 6 0 7 1 3 8 7 4 9 1 3 10 2 5 11 8 6 12 7 4 13 2 5 14 8 6 15 2 5 16 3 7 17 9 8 18 8 6 19 3 7 20 9 8 21 3 7 22 4 9 23 11 10 24 10 11 25 5 1 26 11 10 27 5 1 28 6 0 29 12 12 30 11 10 31 6 0 32 12 12 33 6 0 34 7 4 35 13 13 36 12 12 37 7 4 38 13 13 39 7 4 40 8 6 41 14 14 42 13 13 43 8 6 44 14 14 45 8 6 46 9 8 47 16 15 48 15 16 49 10 11 50 16 15 51 10 11 52 11 10 53 17 17 54 16 15 55 11 10 56 17 17 57 11 10 58 12 12 59 18 18 60 17 17 61 12 12 62 18 18 63 12 12 64 13 13 65 19 19 66 18 18 67 13 13 68 19 19 69 13 13 70 14 14 71 21 20 72 20 21 73 15 16 74 21 20 75 15 16 76 16 15 77 22 22 78 21 20 79 16 15 80 22 22 81 16 15 82 17 17 83 23 23 84 22 22 85 17 17 86 23 23 87 17 17 88 18 18 89 24 24 90 23 23 91 18 18 92 24 24 93 18 18 94 19 19 95

+
+
+
+ + + + 69.8396 16.1015 200.464 69.83 16.3931 201.63 69.8213 16.669 202.741 69.8134 16.9294 203.796 69.8064 17.1741 204.795 69.8002 17.4032 205.739 69.7949 17.6166 206.627 69.7904 17.8144 207.46 69.7868 17.9966 208.237 69.78401 18.1632 208.959 69.78202 18.3141 209.626 69.7809 18.4494 210.237 69.7806 18.5691 210.792 69.7812 18.6731 211.292 69.7826 18.7616 211.736 69.7849 18.8344 212.125 69.788 18.8915 212.458 69.8396 16.1015 200.464 69.9435 16.3661 201.642 70.0477 16.6191 202.763 70.1521 16.8603 203.827 70.2567 17.0898 204.835 70.36151 17.3075 205.785 70.4666 17.5136 206.68 70.5719 17.7078 207.517 70.6774 17.8904 208.298 70.78321 18.0612 209.022 70.8891 18.2203 209.689 70.9954 18.3677 210.3 71.1018 18.5033 210.854 71.20851 18.6272 211.352 71.3154 18.7394 211.792 71.4225 18.8398 212.176 71.5298 18.9285 212.503 69.8396 16.1015 200.464 70.0548 16.3365 201.654 70.2696 16.564 202.785 70.4839 16.784 203.859 70.6979 16.9964 204.874 70.9113 17.2013 205.832 71.1244 17.3987 206.731 71.33702 17.5885 207.573 71.5492 17.7708 208.357 71.76091 17.9456 209.082 71.9722 18.1129 209.75 72.18301 18.2726 210.36 72.3935 18.4247 210.912 72.6034 18.5694 211.406 72.81301 18.7065 211.842 73.0221 18.836 212.22 73.2308 18.9581 212.54 69.8396 16.1015 200.464 70.1595 16.3046 201.665 70.4784 16.5047 202.807 70.7961 16.7016 203.889 71.1127 16.8954 204.912 71.4281 17.0861 205.876 71.7424 17.2736 206.78 72.05561 17.4581 207.625 72.3676 17.6394 208.411 72.6785 17.8176 209.138 72.9883 17.9927 209.805 73.2969 18.1647 210.413 73.6044 18.3335 210.962 73.9107 18.4992 211.451 74.21601 18.6618 211.882 74.52 18.8213 212.252 74.82302 18.9777 212.564 69.8396 16.1015 200.464 70.2731 16.2636 201.678 70.7047 16.4282 202.831 71.1342 16.5952 203.924 71.5617 16.7646 204.955 71.9872 16.9364 205.925 72.4107 17.1106 206.834 72.8322 17.2872 207.682 73.2516 17.4663 208.47 73.6691 17.6478 209.196 74.08451 17.8317 209.862 74.498 18.018 210.466 74.9094 18.2067 211.009 75.3188 18.3978 211.492 75.7262 18.5914 211.914 76.1316 18.7873 212.274 76.5349 18.9857 212.574 69.8396 16.1015 200.464 70.38861 16.21 201.693 70.9345 16.328 202.859 71.47731 16.4553 203.961 72.0169 16.5922 205.001 72.5534 16.7384 205.977 73.0869 16.8941 206.89 73.61711 17.0592 207.74 74.1443 17.2337 208.528 74.66841 17.4177 209.252 75.1893 17.6111 209.913 75.7071 17.8139 210.51 76.2218 18.0261 211.045 76.7333 18.2478 211.517 77.2417 18.4789 211.926 77.7471 18.7194 212.271 78.2492 18.9694 212.554 70.5007 16.1278 201.71 71.1571 16.1739 202.89 71.8087 16.2397 204.004 72.4556 16.3253 205.051 73.0977 16.4306 206.033 73.7351 16.5556 206.948 74.3677 16.7004 207.797 74.9955 16.8649 208.579 75.6186 17.0491 209.296 76.23701 17.2531 209.946 76.8506 17.4768 210.53 77.4594 17.7203 211.048 78.0635 17.9835 211.5 78.66281 18.2664 211.886 79.2574 18.5691 212.205 79.8473 18.8915 212.458 72.1327 16.28 204.536 72.2706 16.4607 205.028 71.7475 16.5226 204.489 71.6687 16.349 203.984 71.9701 16.4031 204.514 72.7772 16.3754 205.55 72.8685 16.587 206.008 72.2856 16.6641 205.497 72.57 16.522 205.526 73.417 16.4906 206.498 73.4624 16.7278 206.923 72.82051 16.8151 206.441 73.1659 16.6556 206.473 74.052 16.6255 207.38 74.0525 16.8833 207.773 73.3524 16.9755 207.323 73.7579 16.8037 207.356 74.6822 16.7801 208.196 74.6385 17.0533 208.558 73.88111 17.1453 208.142 74.346 16.9665 208.174 75.3077 16.9545 208.946 75.22071 17.2379 209.279 74.4067 17.3245 208.897 74.9301 17.1438 208.927 75.9284 17.1486 209.629 75.7989 17.4371 209.935 74.9292 17.5132 209.59 75.5103 17.3357 209.615 76.54441 17.3625 210.247 76.3732 17.6509 210.527 75.4486 17.7113 210.219 76.0865 17.5421 210.239 77.1556 17.5961 210.798 76.9435 17.8792 211.054 75.9648 17.9188 210.786 76.6589 17.7632 210.799 77.7621 17.8494 211.282 77.50991 18.1221 211.516 76.4779 18.1358 211.289 77.22721 17.9989 211.293 78.3638 18.1225 211.701 78.07241 18.3797 211.914 76.9879 18.3622 211.729 77.7917 18.2491 211.723 78.9607 18.4153 212.054 78.6309 18.6518 212.247 77.4948 18.598 212.106 78.3521 18.5139 212.089 79.5529 18.7278 212.34 79.1855 18.9385 212.516 77.9985 18.8432 212.42 78.9087 18.7933 212.39 + + + + + + + + + + -0.2603921 -0.936429 0.2351526 -0.2472621 -0.9402799 0.233956 -0.2483659 -0.9402075 0.2330757 -0.2430877 -0.9407021 0.2366175 -0.2293539 -0.9447305 0.2342675 -0.226602 -0.9444344 0.2381076 -0.2127806 -0.9485708 0.2343883 -0.2096354 -0.947983 0.239544 -0.1961167 -0.9522008 0.2342047 -0.1924534 -0.9512498 0.2410093 -0.1786609 -0.9558088 0.2334739 -0.1748146 -0.9543085 0.2423538 -0.1612955 -0.9591366 0.2324671 -0.1570516 -0.9570203 0.2438176 -0.1434708 -0.9623323 0.230939 -0.1390429 -0.9594143 0.2453393 -0.1255849 -0.96531 0.2289216 -0.1206727 -0.9615059 0.2468694 -0.1073042 -0.9681798 0.2260836 -0.1020861 -0.9632725 0.2483639 -0.08874815 -0.9708894 0.2224808 -0.08328771 -0.9646609 0.2499853 -0.07025498 -0.9733762 0.218181 -0.0643953 -0.965655 0.2517216 -0.05160772 -0.9758164 0.2124126 -0.04529052 -0.9661482 0.2539812 -0.03274667 -0.9781895 0.205117 -0.02609395 -0.96618 0.2565453 -0.01367253 -0.9806074 0.195505 -0.006714105 -0.965736 0.2594401 0.005493402 -0.9832296 0.1822898 0.006103694 -0.9670147 0.2546478 0.01657158 -0.9855061 0.1688288 -0.2892326 -0.9269359 0.2390281 -0.2733606 -0.9330944 0.2336856 -0.2719233 -0.9312229 0.2426556 -0.2539833 -0.9353007 0.2463839 -0.2355772 -0.9390738 0.2502874 -0.2170544 -0.9423497 0.254685 -0.1978853 -0.9453265 0.2592285 -0.1784438 -0.9478245 0.2641713 -0.1588206 -0.9496887 0.2699401 -0.1388626 -0.9509804 0.2763215 -0.1185048 -0.9516705 0.2833374 -0.09790509 -0.9515232 0.2915791 -0.07715201 -0.9503309 0.3015276 -0.05609458 -0.9479317 0.313495 -0.03506666 -0.9438707 0.3284488 -0.01388603 -0.9374462 0.3478534 0.001678526 -0.9366499 0.3502632 -0.3293941 -0.9111822 0.2474805 -0.3058976 -0.9219962 0.2373812 -0.3107119 -0.9161133 0.253367 -0.291272 -0.920754 0.2595629 -0.2712221 -0.9249688 0.2662169 -0.2504403 -0.9287289 0.2733907 -0.2294124 -0.9317495 0.2814475 -0.2077126 -0.934188 0.2900835 -0.1856167 -0.9357743 0.2997884 -0.1631878 -0.9362772 0.3110547 -0.1403258 -0.9356173 0.3239274 -0.1168882 -0.9336716 0.3385182 -0.09317517 -0.9297682 0.3561594 -0.06930971 -0.9234889 0.3773123 -0.04529041 -0.9135911 0.4041042 -0.02114957 -0.8987821 0.4378854 -0.002349972 -0.8956483 0.4447569 -0.3935804 -0.8798794 0.2662833 -0.3538054 -0.9021688 0.2468062 -0.3724868 -0.8864301 0.2747643 -0.3513047 -0.8924073 0.2831861 -0.3309801 -0.8957673 0.2967376 -0.307941 -0.9001706 0.3080021 -0.2841286 -0.9037486 0.3201711 -0.2595984 -0.9062751 0.3335776 -0.2342337 -0.9074534 0.3488022 -0.2078359 -0.9072753 0.3655897 -0.1808867 -0.9049524 0.385151 -0.1531134 -0.9001862 0.4077023 -0.1247299 -0.8923969 0.4336705 -0.09582972 -0.8802604 0.4647133 -0.06644064 -0.8618061 0.5028677 -0.03711163 -0.8346468 0.5495339 -0.01886093 -0.821824 0.5694293 -0.5134533 -0.7995087 0.3116915 -0.4338866 -0.8596552 0.2696952 -0.489194 -0.80925 0.3252748 -0.4382287 -0.8391932 0.3220412 -0.4252021 -0.843232 0.3288815 -0.4113391 -0.8458728 0.3395577 -0.3980315 -0.850723 0.3432801 -0.3842679 -0.8520365 0.3554883 -0.3695282 -0.8570442 0.3590601 -0.3556412 -0.8573477 0.3721216 -0.3395885 -0.8620183 0.3763033 -0.3251529 -0.8612859 0.3904643 -0.3078789 -0.8656195 0.394859 -0.2928939 -0.8633304 0.4109426 -0.2750119 -0.8665425 0.4165007 -0.2595986 -0.8630907 0.4332239 -0.2402191 -0.8654422 0.4396643 -0.2245892 -0.859659 0.4588531 -0.2044798 -0.8604021 0.4667938 -0.1886372 -0.8528808 0.4868372 -0.1673968 -0.8518773 0.4962697 -0.1511602 -0.8405828 0.5201646 -0.1288512 -0.8378079 0.5305425 -0.112462 -0.8226358 0.5573354 -0.08960479 -0.8165454 0.5702847 -0.07321506 -0.7961798 0.600614 -0.04995995 -0.7846497 0.617923 -0.03390681 -0.7581583 0.6511885 -0.01059007 -0.7410313 0.671387 0.003021299 -0.7308022 0.6825826 -0.5884167 -0.7307294 0.3461221 -0.5904803 -0.7370322 0.328811 -0.5657041 -0.737985 0.3679091 -0.5445222 -0.7496107 0.3762702 -0.5975061 -0.6908035 0.4071574 -0.5687863 -0.7019416 0.4286727 -0.5154114 -0.7603601 0.3952261 -0.5301757 -0.7545207 0.3867976 -0.5841651 -0.6949188 0.4193317 -0.5374487 -0.7126306 0.4508953 -0.4854391 -0.7697259 0.4145734 -0.500691 -0.7652888 0.4045264 -0.5534625 -0.7077362 0.4390772 -0.5025609 -0.7230626 0.4739338 -0.4526049 -0.7785843 0.4346899 -0.4692692 -0.7744651 0.4242528 -0.5204151 -0.7183938 0.4616044 -0.4649314 -0.7309988 0.4994792 -0.4171704 -0.7855708 0.4569983 -0.4349576 -0.7824782 0.4455782 -0.4837045 -0.7282271 0.4855051 -0.4233934 -0.7374975 0.5261517 -0.3783773 -0.7912108 0.4804335 -0.3979685 -0.7887345 0.4685285 -0.4442335 -0.7348653 0.5124739 -0.3783825 -0.739735 0.556434 -0.3374192 -0.7933441 0.5067086 -0.3585109 -0.7924962 0.4933759 -0.4013271 -0.739327 0.5406777 -0.3293335 -0.7396652 0.5868857 -0.2933446 -0.7928729 0.5341362 -0.3156923 -0.7935339 0.520233 -0.3542358 -0.740181 0.5715322 -0.2760171 -0.7341127 0.6203976 -0.2466864 -0.7876997 0.564513 -0.2705852 -0.7904837 0.5494717 -0.3033286 -0.736302 0.6048566 -0.2189459 -0.7212947 0.6571124 -0.1970006 -0.7763748 0.5986928 -0.2222108 -0.7828499 0.5811786 -0.2478758 -0.7280324 0.6391608 -0.1597377 -0.7009661 0.6950759 -0.1454549 -0.7590146 0.6346179 -0.1714276 -0.7688149 0.6160651 -0.1896751 -0.7128306 0.6752007 -0.09815013 -0.670662 0.7352408 -0.09231925 -0.7328776 0.6740679 -0.1190874 -0.7470586 0.6540044 -0.1291579 -0.6878758 0.7142446 -0.03500533 -0.6283569 0.7771372 -0.03824055 -0.6946179 0.7183618 -0.06540197 -0.7145386 0.6965324 -0.06628817 -0.6506434 0.7564848 0.007599174 -0.61746 0.7865657 0.01187205 -0.6721923 0.7402814 -0.01141422 -0.6704508 0.7418662 -0.003357052 -0.6017774 0.7986568 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

18 0 0 1 1 1 0 2 2 19 3 3 2 4 4 1 1 5 19 3 6 1 1 7 18 0 8 20 5 9 3 6 10 2 4 11 20 5 12 2 4 13 19 3 14 21 7 15 4 8 16 3 6 17 21 7 18 3 6 19 20 5 20 22 9 21 5 10 22 4 8 23 22 9 24 4 8 25 21 7 26 23 11 27 6 12 28 5 10 29 23 11 30 5 10 31 22 9 32 24 13 33 7 14 34 6 12 35 24 13 36 6 12 37 23 11 38 25 15 39 8 16 40 7 14 41 25 15 42 7 14 43 24 13 44 26 17 45 9 18 46 8 16 47 26 17 48 8 16 49 25 15 50 27 19 51 10 20 52 9 18 53 27 19 54 9 18 55 26 17 56 28 21 57 11 22 58 10 20 59 28 21 60 10 20 61 27 19 62 29 23 63 12 24 64 11 22 65 29 23 66 11 22 67 28 21 68 30 25 69 13 26 70 12 24 71 30 25 72 12 24 73 29 23 74 31 27 75 14 28 76 13 26 77 31 27 78 13 26 79 30 25 80 32 29 81 15 30 82 14 28 83 32 29 84 14 28 85 31 27 86 33 31 87 16 32 88 15 30 89 33 31 90 15 30 91 32 29 92 35 33 93 18 0 94 17 34 95 36 35 96 19 3 97 18 0 98 36 35 99 18 0 100 35 33 101 37 36 102 20 5 103 19 3 104 37 36 105 19 3 106 36 35 107 38 37 108 21 7 109 20 5 110 38 37 111 20 5 112 37 36 113 39 38 114 22 9 115 21 7 116 39 38 117 21 7 118 38 37 119 40 39 120 23 11 121 22 9 122 40 39 123 22 9 124 39 38 125 41 40 126 24 13 127 23 11 128 41 40 129 23 11 130 40 39 131 42 41 132 25 15 133 24 13 134 42 41 135 24 13 136 41 40 137 43 42 138 26 17 139 25 15 140 43 42 141 25 15 142 42 41 143 44 43 144 27 19 145 26 17 146 44 43 147 26 17 148 43 42 149 45 44 150 28 21 151 27 19 152 45 44 153 27 19 154 44 43 155 46 45 156 29 23 157 28 21 158 46 45 159 28 21 160 45 44 161 47 46 162 30 25 163 29 23 164 47 46 165 29 23 166 46 45 167 48 47 168 31 27 169 30 25 170 48 47 171 30 25 172 47 46 173 49 48 174 32 29 175 31 27 176 49 48 177 31 27 178 48 47 179 50 49 180 33 31 181 32 29 182 50 49 183 32 29 184 49 48 185 52 50 186 35 33 187 34 51 188 53 52 189 36 35 190 35 33 191 53 52 192 35 33 193 52 50 194 54 53 195 37 36 196 36 35 197 54 53 198 36 35 199 53 52 200 55 54 201 38 37 202 37 36 203 55 54 204 37 36 205 54 53 206 56 55 207 39 38 208 38 37 209 56 55 210 38 37 211 55 54 212 57 56 213 40 39 214 39 38 215 57 56 216 39 38 217 56 55 218 58 57 219 41 40 220 40 39 221 58 57 222 40 39 223 57 56 224 59 58 225 42 41 226 41 40 227 59 58 228 41 40 229 58 57 230 60 59 231 43 42 232 42 41 233 60 59 234 42 41 235 59 58 236 61 60 237 44 43 238 43 42 239 61 60 240 43 42 241 60 59 242 62 61 243 45 44 244 44 43 245 62 61 246 44 43 247 61 60 248 63 62 249 46 45 250 45 44 251 63 62 252 45 44 253 62 61 254 64 63 255 47 46 256 46 45 257 64 63 258 46 45 259 63 62 260 65 64 261 48 47 262 47 46 263 65 64 264 47 46 265 64 63 266 66 65 267 49 48 268 48 47 269 66 65 270 48 47 271 65 64 272 67 66 273 50 49 274 49 48 275 67 66 276 49 48 277 66 65 278 69 67 279 52 50 280 51 68 281 70 69 282 53 52 283 52 50 284 70 69 285 52 50 286 69 67 287 71 70 288 54 53 289 53 52 290 71 70 291 53 52 292 70 69 293 72 71 294 55 54 295 54 53 296 72 71 297 54 53 298 71 70 299 73 72 300 56 55 301 55 54 302 73 72 303 55 54 304 72 71 305 74 73 306 57 56 307 56 55 308 74 73 309 56 55 310 73 72 311 75 74 312 58 57 313 57 56 314 75 74 315 57 56 316 74 73 317 76 75 318 59 58 319 58 57 320 76 75 321 58 57 322 75 74 323 77 76 324 60 59 325 59 58 326 77 76 327 59 58 328 76 75 329 78 77 330 61 60 331 60 59 332 78 77 333 60 59 334 77 76 335 79 78 336 62 61 337 61 60 338 79 78 339 61 60 340 78 77 341 80 79 342 63 62 343 62 61 344 80 79 345 62 61 346 79 78 347 81 80 348 64 63 349 63 62 350 81 80 351 63 62 352 80 79 353 82 81 354 65 64 355 64 63 356 82 81 357 64 63 358 81 80 359 83 82 360 66 65 361 65 64 362 83 82 363 65 64 364 82 81 365 84 83 366 67 66 367 66 65 368 84 83 369 66 65 370 83 82 371 86 84 372 69 67 373 68 85 374 87 86 375 70 69 376 69 67 377 87 86 378 69 67 379 86 84 380 88 87 381 71 70 382 70 69 383 88 87 384 70 69 385 87 86 386 120 88 387 89 89 388 72 71 389 71 70 390 88 87 391 120 88 392 72 71 393 71 70 394 120 88 395 125 90 396 90 91 397 73 72 398 72 71 399 89 89 400 125 90 401 73 72 402 72 71 403 125 90 404 129 92 405 91 93 406 74 73 407 73 72 408 90 91 409 129 92 410 74 73 411 73 72 412 129 92 413 133 94 414 92 95 415 75 74 416 74 73 417 91 93 418 133 94 419 75 74 420 74 73 421 133 94 422 137 96 423 93 97 424 76 75 425 75 74 426 92 95 427 137 96 428 76 75 429 75 74 430 137 96 431 141 98 432 94 99 433 77 76 434 76 75 435 93 97 436 141 98 437 77 76 438 76 75 439 141 98 440 145 100 441 95 101 442 78 77 443 77 76 444 94 99 445 145 100 446 78 77 447 77 76 448 145 100 449 149 102 450 96 103 451 79 78 452 78 77 453 95 101 454 149 102 455 79 78 456 78 77 457 149 102 458 153 104 459 97 105 460 80 79 461 79 78 462 96 103 463 153 104 464 80 79 465 79 78 466 153 104 467 157 106 468 98 107 469 81 80 470 80 79 471 97 105 472 157 106 473 81 80 474 80 79 475 157 106 476 161 108 477 99 109 478 82 81 479 81 80 480 98 107 481 161 108 482 82 81 483 81 80 484 161 108 485 165 110 486 100 111 487 83 82 488 82 81 489 99 109 490 165 110 491 83 82 492 82 81 493 165 110 494 169 112 495 101 113 496 84 83 497 83 82 498 100 111 499 169 112 500 84 83 501 83 82 502 169 112 503 102 114 504 86 84 505 85 115 506 103 116 507 87 86 508 86 84 509 103 116 510 86 84 511 102 114 512 121 117 513 88 87 514 87 86 515 103 116 516 104 118 517 121 117 518 87 86 519 103 116 520 121 117 521 105 119 522 119 120 523 122 121 524 105 119 525 122 121 526 118 122 527 119 120 528 89 89 529 120 88 530 119 120 531 120 88 532 122 121 533 122 121 534 120 88 535 88 87 536 122 121 537 88 87 538 121 117 539 118 122 540 122 121 541 121 117 542 118 122 543 121 117 544 104 118 545 106 123 546 124 124 547 126 125 548 106 123 549 126 125 550 123 126 551 124 124 552 90 91 553 125 90 554 124 124 555 125 90 556 126 125 557 126 125 558 125 90 559 89 89 560 126 125 561 89 89 562 119 120 563 123 126 564 126 125 565 119 120 566 123 126 567 119 120 568 105 119 569 107 127 570 128 128 571 130 129 572 107 127 573 130 129 574 127 130 575 128 128 576 91 93 577 129 92 578 128 128 579 129 92 580 130 129 581 130 129 582 129 92 583 90 91 584 130 129 585 90 91 586 124 124 587 127 130 588 130 129 589 124 124 590 127 130 591 124 124 592 106 123 593 108 131 594 132 132 595 134 133 596 108 131 597 134 133 598 131 134 599 132 132 600 92 95 601 133 94 602 132 132 603 133 94 604 134 133 605 134 133 606 133 94 607 91 93 608 134 133 609 91 93 610 128 128 611 131 134 612 134 133 613 128 128 614 131 134 615 128 128 616 107 127 617 109 135 618 136 136 619 138 137 620 109 135 621 138 137 622 135 138 623 136 136 624 93 97 625 137 96 626 136 136 627 137 96 628 138 137 629 138 137 630 137 96 631 92 95 632 138 137 633 92 95 634 132 132 635 135 138 636 138 137 637 132 132 638 135 138 639 132 132 640 108 131 641 110 139 642 140 140 643 142 141 644 110 139 645 142 141 646 139 142 647 140 140 648 94 99 649 141 98 650 140 140 651 141 98 652 142 141 653 142 141 654 141 98 655 93 97 656 142 141 657 93 97 658 136 136 659 139 142 660 142 141 661 136 136 662 139 142 663 136 136 664 109 135 665 111 143 666 144 144 667 146 145 668 111 143 669 146 145 670 143 146 671 144 144 672 95 101 673 145 100 674 144 144 675 145 100 676 146 145 677 146 145 678 145 100 679 94 99 680 146 145 681 94 99 682 140 140 683 143 146 684 146 145 685 140 140 686 143 146 687 140 140 688 110 139 689 112 147 690 148 148 691 150 149 692 112 147 693 150 149 694 147 150 695 148 148 696 96 103 697 149 102 698 148 148 699 149 102 700 150 149 701 150 149 702 149 102 703 95 101 704 150 149 705 95 101 706 144 144 707 147 150 708 150 149 709 144 144 710 147 150 711 144 144 712 111 143 713 113 151 714 152 152 715 154 153 716 113 151 717 154 153 718 151 154 719 152 152 720 97 105 721 153 104 722 152 152 723 153 104 724 154 153 725 154 153 726 153 104 727 96 103 728 154 153 729 96 103 730 148 148 731 151 154 732 154 153 733 148 148 734 151 154 735 148 148 736 112 147 737 114 155 738 156 156 739 158 157 740 114 155 741 158 157 742 155 158 743 156 156 744 98 107 745 157 106 746 156 156 747 157 106 748 158 157 749 158 157 750 157 106 751 97 105 752 158 157 753 97 105 754 152 152 755 155 158 756 158 157 757 152 152 758 155 158 759 152 152 760 113 151 761 115 159 762 160 160 763 162 161 764 115 159 765 162 161 766 159 162 767 160 160 768 99 109 769 161 108 770 160 160 771 161 108 772 162 161 773 162 161 774 161 108 775 98 107 776 162 161 777 98 107 778 156 156 779 159 162 780 162 161 781 156 156 782 159 162 783 156 156 784 114 155 785 116 163 786 164 164 787 166 165 788 116 163 789 166 165 790 163 166 791 164 164 792 100 111 793 165 110 794 164 164 795 165 110 796 166 165 797 166 165 798 165 110 799 99 109 800 166 165 801 99 109 802 160 160 803 163 166 804 166 165 805 160 160 806 163 166 807 160 160 808 115 159 809 117 167 810 168 168 811 170 169 812 117 167 813 170 169 814 167 170 815 168 168 816 101 113 817 169 112 818 168 168 819 169 112 820 170 169 821 170 169 822 169 112 823 100 111 824 170 169 825 100 111 826 164 164 827 167 170 828 170 169 829 164 164 830 167 170 831 164 164 832 116 163 833

+
+
+
+ + + + -69.8396 16.1015 200.464 -69.83 16.3931 201.63 -69.8213 16.669 202.741 -69.8134 16.9294 203.796 -69.8064 17.1741 204.795 -69.8002 17.4032 205.739 -69.7949 17.6166 206.627 -69.7904 17.8144 207.46 -69.7868 17.9966 208.237 -69.78401 18.1632 208.959 -69.78202 18.3141 209.626 -69.7809 18.4494 210.237 -69.7806 18.5691 210.792 -69.7812 18.6731 211.292 -69.7826 18.7616 211.736 -69.7849 18.8344 212.125 -69.788 18.8915 212.458 -69.8396 16.1015 200.464 -69.9435 16.3661 201.642 -70.0477 16.6191 202.763 -70.1521 16.8603 203.827 -70.2567 17.0898 204.835 -70.36151 17.3075 205.785 -70.4666 17.5136 206.68 -70.5719 17.7078 207.517 -70.6774 17.8904 208.298 -70.78321 18.0612 209.022 -70.8891 18.2203 209.689 -70.9954 18.3677 210.3 -71.1018 18.5033 210.854 -71.20851 18.6272 211.352 -71.3154 18.7394 211.792 -71.4225 18.8398 212.176 -71.5298 18.9285 212.503 -69.8396 16.1015 200.464 -70.0548 16.3365 201.654 -70.2696 16.564 202.785 -70.4839 16.784 203.859 -70.6979 16.9964 204.874 -70.9113 17.2013 205.832 -71.1244 17.3987 206.731 -71.33702 17.5885 207.573 -71.5492 17.7708 208.357 -71.76091 17.9456 209.082 -71.9722 18.1129 209.75 -72.18301 18.2726 210.36 -72.3935 18.4247 210.912 -72.6034 18.5694 211.406 -72.81301 18.7065 211.842 -73.0221 18.836 212.22 -73.2308 18.9581 212.54 -69.8396 16.1015 200.464 -70.1595 16.3046 201.665 -70.4784 16.5047 202.807 -70.7961 16.7016 203.889 -71.1127 16.8954 204.912 -71.4281 17.0861 205.876 -71.7424 17.2736 206.78 -72.05561 17.4581 207.625 -72.3676 17.6394 208.411 -72.6785 17.8176 209.138 -72.9883 17.9927 209.805 -73.2969 18.1647 210.413 -73.6044 18.3335 210.962 -73.9107 18.4992 211.451 -74.21601 18.6618 211.882 -74.52 18.8213 212.252 -74.82302 18.9777 212.564 -69.8396 16.1015 200.464 -70.2731 16.2636 201.678 -70.7047 16.4282 202.831 -71.1342 16.5952 203.924 -71.5617 16.7646 204.955 -71.9872 16.9364 205.925 -72.4107 17.1106 206.834 -72.8322 17.2872 207.682 -73.2516 17.4663 208.47 -73.6691 17.6478 209.196 -74.08451 17.8317 209.862 -74.498 18.018 210.466 -74.9094 18.2067 211.009 -75.3188 18.3978 211.492 -75.7262 18.5914 211.914 -76.1316 18.7873 212.274 -76.5349 18.9857 212.574 -69.8396 16.1015 200.464 -70.38861 16.21 201.693 -70.9345 16.328 202.859 -71.47731 16.4553 203.961 -72.0169 16.5922 205.001 -72.5534 16.7384 205.977 -73.0869 16.8941 206.89 -73.61711 17.0592 207.74 -74.1443 17.2337 208.528 -74.66841 17.4177 209.252 -75.1893 17.6111 209.913 -75.7071 17.8139 210.51 -76.2218 18.0261 211.045 -76.7333 18.2478 211.517 -77.2417 18.4789 211.926 -77.7471 18.7194 212.271 -78.2492 18.9694 212.554 -70.5007 16.1278 201.71 -71.1571 16.1739 202.89 -71.8087 16.2397 204.004 -72.4556 16.3253 205.051 -73.0977 16.4306 206.033 -73.7351 16.5556 206.948 -74.3677 16.7004 207.797 -74.9955 16.8649 208.579 -75.6186 17.0491 209.296 -76.23701 17.2531 209.946 -76.8506 17.4768 210.53 -77.4594 17.7203 211.048 -78.0635 17.9835 211.5 -78.66281 18.2664 211.886 -79.2574 18.5691 212.205 -79.8473 18.8915 212.458 -72.1327 16.28 204.536 -72.2706 16.4607 205.028 -71.7475 16.5226 204.489 -71.6687 16.349 203.984 -71.9701 16.4031 204.514 -72.7772 16.3754 205.55 -72.8685 16.587 206.008 -72.2856 16.6641 205.497 -72.57 16.522 205.526 -73.417 16.4906 206.498 -73.4624 16.7278 206.923 -72.82051 16.8151 206.441 -73.1659 16.6556 206.473 -74.052 16.6255 207.38 -74.0525 16.8833 207.773 -73.3524 16.9755 207.323 -73.7579 16.8037 207.356 -74.6822 16.7801 208.196 -74.6385 17.0533 208.558 -73.88111 17.1453 208.142 -74.346 16.9665 208.174 -75.3077 16.9545 208.946 -75.22071 17.2379 209.279 -74.4067 17.3245 208.897 -74.9301 17.1438 208.927 -75.9284 17.1486 209.629 -75.7989 17.4371 209.935 -74.9292 17.5132 209.59 -75.5103 17.3357 209.615 -76.54441 17.3625 210.247 -76.3732 17.6509 210.527 -75.4486 17.7113 210.219 -76.0865 17.5421 210.239 -77.1556 17.5961 210.798 -76.9435 17.8792 211.054 -75.9648 17.9188 210.786 -76.6589 17.7632 210.799 -77.7621 17.8494 211.282 -77.50991 18.1221 211.516 -76.4779 18.1358 211.289 -77.22721 17.9989 211.293 -78.3638 18.1225 211.701 -78.07241 18.3797 211.914 -76.9879 18.3622 211.729 -77.7917 18.2491 211.723 -78.9607 18.4153 212.054 -78.6309 18.6518 212.247 -77.4948 18.598 212.106 -78.3521 18.5139 212.089 -79.5529 18.7278 212.34 -79.1855 18.9385 212.516 -77.9985 18.8432 212.42 -78.9087 18.7933 212.39 + + + + + + + + + + 0.2603921 -0.936429 0.2351526 0.2483659 -0.9402075 0.2330757 0.2472621 -0.9402799 0.233956 0.2430877 -0.9407021 0.2366175 0.2293539 -0.9447305 0.2342675 0.226602 -0.9444344 0.2381076 0.2127806 -0.9485708 0.2343883 0.2096354 -0.947983 0.239544 0.1961167 -0.9522008 0.2342047 0.1924534 -0.9512498 0.2410093 0.1786609 -0.9558088 0.2334739 0.1748146 -0.9543085 0.2423538 0.1612955 -0.9591366 0.2324671 0.1570516 -0.9570203 0.2438176 0.1434708 -0.9623323 0.230939 0.1390429 -0.9594143 0.2453393 0.1255849 -0.96531 0.2289216 0.1206727 -0.9615059 0.2468694 0.1073042 -0.9681798 0.2260836 0.1020861 -0.9632725 0.2483639 0.08874815 -0.9708894 0.2224808 0.08328771 -0.9646609 0.2499853 0.07025498 -0.9733762 0.218181 0.0643953 -0.965655 0.2517216 0.05160772 -0.9758164 0.2124126 0.04529052 -0.9661482 0.2539812 0.03274667 -0.9781895 0.205117 0.02609395 -0.96618 0.2565453 0.01367253 -0.9806074 0.195505 0.006714105 -0.965736 0.2594401 -0.005493402 -0.9832296 0.1822898 -0.006103694 -0.9670147 0.2546478 -0.01657158 -0.9855061 0.1688288 0.2892326 -0.9269359 0.2390281 0.2733606 -0.9330944 0.2336856 0.2719233 -0.9312229 0.2426556 0.2539833 -0.9353007 0.2463839 0.2355772 -0.9390738 0.2502874 0.2170544 -0.9423497 0.254685 0.1978853 -0.9453265 0.2592285 0.1784438 -0.9478245 0.2641713 0.1588206 -0.9496887 0.2699401 0.1388626 -0.9509804 0.2763215 0.1185048 -0.9516705 0.2833374 0.09790509 -0.9515232 0.2915791 0.07715201 -0.9503309 0.3015276 0.05609458 -0.9479317 0.313495 0.03506666 -0.9438707 0.3284488 0.01388603 -0.9374462 0.3478534 -0.001678526 -0.9366499 0.3502632 0.3293941 -0.9111822 0.2474805 0.3058976 -0.9219962 0.2373812 0.3107119 -0.9161133 0.253367 0.291272 -0.920754 0.2595629 0.2712221 -0.9249688 0.2662169 0.2504403 -0.9287289 0.2733907 0.2294124 -0.9317495 0.2814475 0.2077126 -0.934188 0.2900835 0.1856167 -0.9357743 0.2997884 0.1631878 -0.9362772 0.3110547 0.1403258 -0.9356173 0.3239274 0.1168882 -0.9336716 0.3385182 0.09317517 -0.9297682 0.3561594 0.06930971 -0.9234889 0.3773123 0.04529041 -0.9135911 0.4041042 0.02114957 -0.8987821 0.4378854 0.002349972 -0.8956483 0.4447569 0.3935804 -0.8798794 0.2662833 0.3538054 -0.9021688 0.2468062 0.3724868 -0.8864301 0.2747643 0.3513047 -0.8924073 0.2831861 0.3309801 -0.8957673 0.2967376 0.307941 -0.9001706 0.3080021 0.2841286 -0.9037486 0.3201711 0.2595984 -0.9062751 0.3335776 0.2342337 -0.9074534 0.3488022 0.2078359 -0.9072753 0.3655897 0.1808867 -0.9049524 0.385151 0.1531134 -0.9001862 0.4077023 0.1247299 -0.8923969 0.4336705 0.09582972 -0.8802604 0.4647133 0.06644064 -0.8618061 0.5028677 0.03711163 -0.8346468 0.5495339 0.01886093 -0.821824 0.5694293 0.5134533 -0.7995087 0.3116915 0.4338866 -0.8596552 0.2696952 0.489194 -0.80925 0.3252748 0.4382287 -0.8391932 0.3220412 0.4252021 -0.843232 0.3288815 0.4113391 -0.8458728 0.3395577 0.3980315 -0.850723 0.3432801 0.3842679 -0.8520365 0.3554883 0.3695282 -0.8570442 0.3590601 0.3556412 -0.8573477 0.3721216 0.3395885 -0.8620183 0.3763033 0.3251529 -0.8612859 0.3904643 0.3078789 -0.8656195 0.394859 0.2928939 -0.8633304 0.4109426 0.2750119 -0.8665425 0.4165007 0.2595986 -0.8630907 0.4332239 0.2402191 -0.8654422 0.4396643 0.2245892 -0.859659 0.4588531 0.2044798 -0.8604021 0.4667938 0.1886372 -0.8528808 0.4868372 0.1673968 -0.8518773 0.4962697 0.1511602 -0.8405828 0.5201646 0.1288512 -0.8378079 0.5305425 0.112462 -0.8226358 0.5573354 0.08960479 -0.8165454 0.5702847 0.07321506 -0.7961798 0.600614 0.04995995 -0.7846497 0.617923 0.03390681 -0.7581583 0.6511885 0.01059007 -0.7410313 0.671387 -0.003021299 -0.7308022 0.6825826 0.5884167 -0.7307294 0.3461221 0.5904803 -0.7370322 0.328811 0.5657041 -0.737985 0.3679091 0.5445222 -0.7496107 0.3762702 0.5975061 -0.6908035 0.4071574 0.5687863 -0.7019416 0.4286727 0.5841651 -0.6949188 0.4193317 0.5301757 -0.7545207 0.3867976 0.5154114 -0.7603601 0.3952261 0.5374487 -0.7126306 0.4508953 0.5534625 -0.7077362 0.4390772 0.500691 -0.7652888 0.4045264 0.4854391 -0.7697259 0.4145734 0.5025609 -0.7230626 0.4739338 0.5204151 -0.7183938 0.4616044 0.4692692 -0.7744651 0.4242528 0.4526049 -0.7785843 0.4346899 0.4649314 -0.7309988 0.4994792 0.4837045 -0.7282271 0.4855051 0.4349576 -0.7824782 0.4455782 0.4171704 -0.7855708 0.4569983 0.4233934 -0.7374975 0.5261517 0.4442335 -0.7348653 0.5124739 0.3979685 -0.7887345 0.4685285 0.3783773 -0.7912108 0.4804335 0.3783825 -0.739735 0.556434 0.4013271 -0.739327 0.5406777 0.3585109 -0.7924962 0.4933759 0.3374192 -0.7933441 0.5067086 0.3293335 -0.7396652 0.5868857 0.3542358 -0.740181 0.5715322 0.3156923 -0.7935339 0.520233 0.2933446 -0.7928729 0.5341362 0.2760171 -0.7341127 0.6203976 0.3033286 -0.736302 0.6048566 0.2705852 -0.7904837 0.5494717 0.2466864 -0.7876997 0.564513 0.2189459 -0.7212947 0.6571124 0.2478758 -0.7280324 0.6391608 0.2222108 -0.7828499 0.5811786 0.1970006 -0.7763748 0.5986928 0.1597377 -0.7009661 0.6950759 0.1896751 -0.7128306 0.6752007 0.1714276 -0.7688149 0.6160651 0.1454549 -0.7590146 0.6346179 0.09815013 -0.670662 0.7352408 0.1291579 -0.6878758 0.7142446 0.1190874 -0.7470586 0.6540044 0.09231925 -0.7328776 0.6740679 0.03500533 -0.6283569 0.7771372 0.06628817 -0.6506434 0.7564848 0.06540197 -0.7145386 0.6965324 0.03824055 -0.6946179 0.7183618 -0.007599174 -0.61746 0.7865657 0.003357052 -0.6017774 0.7986568 0.01141422 -0.6704508 0.7418662 -0.01187205 -0.6721923 0.7402814 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

18 0 0 0 1 1 1 2 2 19 3 3 18 0 4 1 2 5 19 3 6 1 2 7 2 4 8 20 5 9 19 3 10 2 4 11 20 5 12 2 4 13 3 6 14 21 7 15 20 5 16 3 6 17 21 7 18 3 6 19 4 8 20 22 9 21 21 7 22 4 8 23 22 9 24 4 8 25 5 10 26 23 11 27 22 9 28 5 10 29 23 11 30 5 10 31 6 12 32 24 13 33 23 11 34 6 12 35 24 13 36 6 12 37 7 14 38 25 15 39 24 13 40 7 14 41 25 15 42 7 14 43 8 16 44 26 17 45 25 15 46 8 16 47 26 17 48 8 16 49 9 18 50 27 19 51 26 17 52 9 18 53 27 19 54 9 18 55 10 20 56 28 21 57 27 19 58 10 20 59 28 21 60 10 20 61 11 22 62 29 23 63 28 21 64 11 22 65 29 23 66 11 22 67 12 24 68 30 25 69 29 23 70 12 24 71 30 25 72 12 24 73 13 26 74 31 27 75 30 25 76 13 26 77 31 27 78 13 26 79 14 28 80 32 29 81 31 27 82 14 28 83 32 29 84 14 28 85 15 30 86 33 31 87 32 29 88 15 30 89 33 31 90 15 30 91 16 32 92 35 33 93 17 34 94 18 0 95 36 35 96 35 33 97 18 0 98 36 35 99 18 0 100 19 3 101 37 36 102 36 35 103 19 3 104 37 36 105 19 3 106 20 5 107 38 37 108 37 36 109 20 5 110 38 37 111 20 5 112 21 7 113 39 38 114 38 37 115 21 7 116 39 38 117 21 7 118 22 9 119 40 39 120 39 38 121 22 9 122 40 39 123 22 9 124 23 11 125 41 40 126 40 39 127 23 11 128 41 40 129 23 11 130 24 13 131 42 41 132 41 40 133 24 13 134 42 41 135 24 13 136 25 15 137 43 42 138 42 41 139 25 15 140 43 42 141 25 15 142 26 17 143 44 43 144 43 42 145 26 17 146 44 43 147 26 17 148 27 19 149 45 44 150 44 43 151 27 19 152 45 44 153 27 19 154 28 21 155 46 45 156 45 44 157 28 21 158 46 45 159 28 21 160 29 23 161 47 46 162 46 45 163 29 23 164 47 46 165 29 23 166 30 25 167 48 47 168 47 46 169 30 25 170 48 47 171 30 25 172 31 27 173 49 48 174 48 47 175 31 27 176 49 48 177 31 27 178 32 29 179 50 49 180 49 48 181 32 29 182 50 49 183 32 29 184 33 31 185 52 50 186 34 51 187 35 33 188 53 52 189 52 50 190 35 33 191 53 52 192 35 33 193 36 35 194 54 53 195 53 52 196 36 35 197 54 53 198 36 35 199 37 36 200 55 54 201 54 53 202 37 36 203 55 54 204 37 36 205 38 37 206 56 55 207 55 54 208 38 37 209 56 55 210 38 37 211 39 38 212 57 56 213 56 55 214 39 38 215 57 56 216 39 38 217 40 39 218 58 57 219 57 56 220 40 39 221 58 57 222 40 39 223 41 40 224 59 58 225 58 57 226 41 40 227 59 58 228 41 40 229 42 41 230 60 59 231 59 58 232 42 41 233 60 59 234 42 41 235 43 42 236 61 60 237 60 59 238 43 42 239 61 60 240 43 42 241 44 43 242 62 61 243 61 60 244 44 43 245 62 61 246 44 43 247 45 44 248 63 62 249 62 61 250 45 44 251 63 62 252 45 44 253 46 45 254 64 63 255 63 62 256 46 45 257 64 63 258 46 45 259 47 46 260 65 64 261 64 63 262 47 46 263 65 64 264 47 46 265 48 47 266 66 65 267 65 64 268 48 47 269 66 65 270 48 47 271 49 48 272 67 66 273 66 65 274 49 48 275 67 66 276 49 48 277 50 49 278 69 67 279 51 68 280 52 50 281 70 69 282 69 67 283 52 50 284 70 69 285 52 50 286 53 52 287 71 70 288 70 69 289 53 52 290 71 70 291 53 52 292 54 53 293 72 71 294 71 70 295 54 53 296 72 71 297 54 53 298 55 54 299 73 72 300 72 71 301 55 54 302 73 72 303 55 54 304 56 55 305 74 73 306 73 72 307 56 55 308 74 73 309 56 55 310 57 56 311 75 74 312 74 73 313 57 56 314 75 74 315 57 56 316 58 57 317 76 75 318 75 74 319 58 57 320 76 75 321 58 57 322 59 58 323 77 76 324 76 75 325 59 58 326 77 76 327 59 58 328 60 59 329 78 77 330 77 76 331 60 59 332 78 77 333 60 59 334 61 60 335 79 78 336 78 77 337 61 60 338 79 78 339 61 60 340 62 61 341 80 79 342 79 78 343 62 61 344 80 79 345 62 61 346 63 62 347 81 80 348 80 79 349 63 62 350 81 80 351 63 62 352 64 63 353 82 81 354 81 80 355 64 63 356 82 81 357 64 63 358 65 64 359 83 82 360 82 81 361 65 64 362 83 82 363 65 64 364 66 65 365 84 83 366 83 82 367 66 65 368 84 83 369 66 65 370 67 66 371 86 84 372 68 85 373 69 67 374 87 86 375 86 84 376 69 67 377 87 86 378 69 67 379 70 69 380 88 87 381 87 86 382 70 69 383 88 87 384 70 69 385 71 70 386 120 88 387 72 71 388 89 89 389 71 70 390 120 88 391 88 87 392 72 71 393 120 88 394 71 70 395 125 90 396 73 72 397 90 91 398 72 71 399 125 90 400 89 89 401 73 72 402 125 90 403 72 71 404 129 92 405 74 73 406 91 93 407 73 72 408 129 92 409 90 91 410 74 73 411 129 92 412 73 72 413 133 94 414 75 74 415 92 95 416 74 73 417 133 94 418 91 93 419 75 74 420 133 94 421 74 73 422 137 96 423 76 75 424 93 97 425 75 74 426 137 96 427 92 95 428 76 75 429 137 96 430 75 74 431 141 98 432 77 76 433 94 99 434 76 75 435 141 98 436 93 97 437 77 76 438 141 98 439 76 75 440 145 100 441 78 77 442 95 101 443 77 76 444 145 100 445 94 99 446 78 77 447 145 100 448 77 76 449 149 102 450 79 78 451 96 103 452 78 77 453 149 102 454 95 101 455 79 78 456 149 102 457 78 77 458 153 104 459 80 79 460 97 105 461 79 78 462 153 104 463 96 103 464 80 79 465 153 104 466 79 78 467 157 106 468 81 80 469 98 107 470 80 79 471 157 106 472 97 105 473 81 80 474 157 106 475 80 79 476 161 108 477 82 81 478 99 109 479 81 80 480 161 108 481 98 107 482 82 81 483 161 108 484 81 80 485 165 110 486 83 82 487 100 111 488 82 81 489 165 110 490 99 109 491 83 82 492 165 110 493 82 81 494 169 112 495 84 83 496 101 113 497 83 82 498 169 112 499 100 111 500 84 83 501 169 112 502 83 82 503 102 114 504 85 115 505 86 84 506 103 116 507 102 114 508 86 84 509 103 116 510 86 84 511 87 86 512 121 117 513 87 86 514 88 87 515 103 116 516 121 117 517 104 118 518 87 86 519 121 117 520 103 116 521 105 119 522 118 120 523 122 121 524 105 119 525 122 121 526 119 122 527 119 122 528 122 121 529 120 88 530 119 122 531 120 88 532 89 89 533 122 121 534 121 117 535 88 87 536 122 121 537 88 87 538 120 88 539 118 120 540 104 118 541 121 117 542 118 120 543 121 117 544 122 121 545 106 123 546 123 124 547 126 125 548 106 123 549 126 125 550 124 126 551 124 126 552 126 125 553 125 90 554 124 126 555 125 90 556 90 91 557 126 125 558 119 122 559 89 89 560 126 125 561 89 89 562 125 90 563 123 124 564 105 119 565 119 122 566 123 124 567 119 122 568 126 125 569 107 127 570 127 128 571 130 129 572 107 127 573 130 129 574 128 130 575 128 130 576 130 129 577 129 92 578 128 130 579 129 92 580 91 93 581 130 129 582 124 126 583 90 91 584 130 129 585 90 91 586 129 92 587 127 128 588 106 123 589 124 126 590 127 128 591 124 126 592 130 129 593 108 131 594 131 132 595 134 133 596 108 131 597 134 133 598 132 134 599 132 134 600 134 133 601 133 94 602 132 134 603 133 94 604 92 95 605 134 133 606 128 130 607 91 93 608 134 133 609 91 93 610 133 94 611 131 132 612 107 127 613 128 130 614 131 132 615 128 130 616 134 133 617 109 135 618 135 136 619 138 137 620 109 135 621 138 137 622 136 138 623 136 138 624 138 137 625 137 96 626 136 138 627 137 96 628 93 97 629 138 137 630 132 134 631 92 95 632 138 137 633 92 95 634 137 96 635 135 136 636 108 131 637 132 134 638 135 136 639 132 134 640 138 137 641 110 139 642 139 140 643 142 141 644 110 139 645 142 141 646 140 142 647 140 142 648 142 141 649 141 98 650 140 142 651 141 98 652 94 99 653 142 141 654 136 138 655 93 97 656 142 141 657 93 97 658 141 98 659 139 140 660 109 135 661 136 138 662 139 140 663 136 138 664 142 141 665 111 143 666 143 144 667 146 145 668 111 143 669 146 145 670 144 146 671 144 146 672 146 145 673 145 100 674 144 146 675 145 100 676 95 101 677 146 145 678 140 142 679 94 99 680 146 145 681 94 99 682 145 100 683 143 144 684 110 139 685 140 142 686 143 144 687 140 142 688 146 145 689 112 147 690 147 148 691 150 149 692 112 147 693 150 149 694 148 150 695 148 150 696 150 149 697 149 102 698 148 150 699 149 102 700 96 103 701 150 149 702 144 146 703 95 101 704 150 149 705 95 101 706 149 102 707 147 148 708 111 143 709 144 146 710 147 148 711 144 146 712 150 149 713 113 151 714 151 152 715 154 153 716 113 151 717 154 153 718 152 154 719 152 154 720 154 153 721 153 104 722 152 154 723 153 104 724 97 105 725 154 153 726 148 150 727 96 103 728 154 153 729 96 103 730 153 104 731 151 152 732 112 147 733 148 150 734 151 152 735 148 150 736 154 153 737 114 155 738 155 156 739 158 157 740 114 155 741 158 157 742 156 158 743 156 158 744 158 157 745 157 106 746 156 158 747 157 106 748 98 107 749 158 157 750 152 154 751 97 105 752 158 157 753 97 105 754 157 106 755 155 156 756 113 151 757 152 154 758 155 156 759 152 154 760 158 157 761 115 159 762 159 160 763 162 161 764 115 159 765 162 161 766 160 162 767 160 162 768 162 161 769 161 108 770 160 162 771 161 108 772 99 109 773 162 161 774 156 158 775 98 107 776 162 161 777 98 107 778 161 108 779 159 160 780 114 155 781 156 158 782 159 160 783 156 158 784 162 161 785 116 163 786 163 164 787 166 165 788 116 163 789 166 165 790 164 166 791 164 166 792 166 165 793 165 110 794 164 166 795 165 110 796 100 111 797 166 165 798 160 162 799 99 109 800 166 165 801 99 109 802 165 110 803 163 164 804 115 159 805 160 162 806 163 164 807 160 162 808 166 165 809 117 167 810 167 168 811 170 169 812 117 167 813 170 169 814 168 170 815 168 170 816 170 169 817 169 112 818 168 170 819 169 112 820 101 113 821 170 169 822 164 166 823 100 111 824 170 169 825 100 111 826 169 112 827 167 168 828 116 163 829 164 166 830 167 168 831 164 166 832 170 169 833

+
+
+
+ + + + 42.6767 58.6588 215.031 33.3926 58.6588 215.719 23.1465 58.6588 216.273 17.6952 58.6587 216.498 0 58.6588 216.965 42.6767 58.6588 220.979 33.3926 58.6588 221.667 23.1465 58.6588 222.221 17.6952 58.6587 222.446 12.025 58.6584 222.636 0 58.6588 222.913 0 58.6588 219.939 3.07951 58.6588 216.909 6.11288 58.6586 216.844 9.096071 58.6585 216.77 12.025 58.6584 216.688 14.8908 58.6585 216.597 20.4509 58.6588 216.39 25.7912 58.6588 216.147 28.3821 58.6588 216.013 30.9168 58.6588 215.87 35.8094 58.6588 215.559 38.1655 58.6588 215.391 40.4561 58.6588 215.214 42.6767 58.6588 218.005 0 58.6588 216.965 0 46.3673 218.722 0 58.6588 222.913 0 55.8084 223.627 0 52.8096 224.158 0 49.6626 224.506 0 46.3673 224.67 0 58.6588 219.939 0 46.3673 221.696 0 49.6626 218.558 0 52.8096 218.21 0 55.8084 217.679 0 46.3673 218.722 0 34.5897 218.089 0 46.3673 224.67 0 39.9325 224.512 0 34.5897 224.037 0 46.3673 221.696 0 34.5897 221.063 0 37.1246 218.366 0 39.9325 218.564 0 43.0134 218.683 0 34.5897 218.089 15.8092 34.5897 217.931 30.6479 34.5897 217.44 41.1555 34.5897 216.857 42.8559 34.5897 216.742 44.5419 34.5897 216.623 49.5137 34.5897 216.234 51.1425 34.5897 216.094 52.73 34.5889 215.952 55.3299 33.268 215.45 55.8515 31.6541 214.999 0 34.5897 224.037 15.8092 34.5897 223.879 30.6479 34.5897 223.388 37.7114 34.5897 223.019 41.1555 34.5897 222.805 42.8559 34.5897 222.69 44.5419 34.5897 222.571 47.8707 34.5897 222.317 49.5137 34.5897 222.182 51.1425 34.5897 222.043 51.938 34.5897 221.972 52.73 34.5889 221.901 53.518 34.555 221.822 54.2814 34.383 221.72 54.9 33.9463 221.58 55.3299 33.268 221.399 55.6283 32.4701 221.184 55.8515 31.6541 220.948 55.6283 32.4701 215.236 54.9 33.9463 215.631 54.2814 34.383 215.772 53.518 34.555 215.874 51.938 34.5897 216.024 47.8707 34.5897 216.368 37.7114 34.5897 217.071 34.1802 34.5897 217.267 26.9392 34.5897 217.597 23.23 34.5897 217.73 19.52 34.5897 217.841 11.8571 34.5897 218.003 7.905 34.5897 218.053 3.95269 34.5897 218.082 0 34.5897 221.063 55.8515 31.6541 217.973 47.8707 34.5897 219.275 51.938 34.5897 216.859 53.518 34.555 217.21 54.9 33.9463 217.02 55.6283 32.4701 216.755 54.2814 34.383 217.151 55.8515 31.6541 214.999 56.7331 28.6552 213.887 57.5602 25.8414 212.467 59.0819 20.665 208.74 55.8515 31.6541 220.948 56.7331 28.6552 219.835 57.5602 25.8414 218.415 58.3406 23.1866 216.696 59.0819 20.665 214.688 58.3406 23.1866 210.747 55.8515 31.6541 217.973 59.0819 20.665 211.714 59.0819 20.665 208.74 69.91851 20.665 207.903 59.0819 20.665 214.688 69.91851 20.665 213.851 64.5029 20.665 208.357 59.0819 20.665 211.714 69.91851 20.665 210.877 69.91851 20.665 207.903 70.2215 26.6795 211.517 70.3311 32.9681 213.642 70.1328 42.9147 214.039 69.97 46.3673 213.427 69.91851 20.665 213.851 70.0942 23.638 215.844 70.2215 26.6795 217.465 70.3005 29.7896 218.713 70.3311 32.9681 219.59 70.3134 36.2151 220.094 70.2473 39.5307 220.227 70.1328 42.9147 219.987 69.97 46.3673 219.375 69.91851 20.665 210.877 69.97 46.3673 216.401 70.2473 39.5307 214.278 70.3134 36.2151 214.146 70.3005 29.7896 212.765 70.0942 23.638 209.896 69.97 46.3673 213.427 68.1783 48.408 213.66 56.3831 55.1301 214.499 47.7084 57.6267 214.863 42.6767 58.6588 215.031 69.97 46.3673 219.375 68.1783 48.408 219.608 65.9238 50.3047 219.832 63.2064 52.0573 220.046 60.0262 53.6657 220.251 56.3831 55.1301 220.447 52.2772 56.4505 220.634 47.7084 57.6267 220.811 42.6767 58.6588 220.979 69.97 46.3673 216.401 42.6767 58.6588 218.005 45.2504 58.1608 214.948 50.0506 57.0566 214.775 52.2772 56.4505 214.686 54.388 55.8083 214.594 60.0262 53.6657 214.303 63.2064 52.0573 214.098 65.9238 50.3047 213.884 69.97 46.3673 213.427 67.9133 47.7675 213.773 65.5479 49.0809 214.103 62.8735 50.3076 214.418 59.8903 51.4473 214.716 56.5982 52.5003 214.998 52.9973 53.4665 215.265 49.0875 54.3459 215.515 44.8688 55.1384 215.75 40.3412 55.8441 215.968 35.5048 56.463 216.171 24.9053 57.4404 216.528 69.97 46.3673 213.427 67.4411 47.3163 213.891 64.6663 48.2076 214.33 61.6457 49.0409 214.745 58.3791 49.8163 215.135 54.8666 50.5339 215.502 51.1083 51.1936 215.843 47.104 51.7954 216.16 42.8538 52.3394 216.453 38.3578 52.8254 216.722 33.6158 53.2536 216.966 23.3941 53.9364 217.38 12.1889 54.3876 217.697 66.96881 46.8496 213.989 63.7848 47.303 214.518 60.4178 47.7275 215.015 56.8679 48.123 215.478 53.135 48.4895 215.909 49.2193 48.8272 216.306 45.1205 49.1359 216.671 40.8389 49.4157 217.003 36.3743 49.6665 217.302 31.7268 49.8884 217.568 21.8829 50.2453 218.001 11.3073 50.4866 218.303 69.97 46.3673 213.427 66.4966 46.3673 214.068 62.9033 46.3673 214.668 55.3567 46.3673 215.744 51.4034 46.3673 216.219 38.8239 46.3673 217.398 34.3908 46.3673 217.709 29.8378 46.3673 217.977 20.3717 46.3673 218.391 10.4258 46.3673 218.639 0 46.3673 218.722 0 58.6588 216.965 3.07951 58.6588 216.909 6.11288 58.6586 216.844 9.096071 58.6585 216.77 12.025 58.6584 216.688 14.8908 58.6585 216.597 17.6952 58.6587 216.498 20.4509 58.6588 216.39 23.1465 58.6588 216.273 25.7912 58.6588 216.147 28.3821 58.6588 216.013 30.9168 58.6588 215.87 33.3926 58.6588 215.719 35.8094 58.6588 215.559 38.1655 58.6588 215.391 40.4561 58.6588 215.214 42.6767 58.6588 215.031 59.19 46.3673 215.226 47.3302 46.3673 216.654 43.1371 46.3673 217.047 40.9955 46.3673 217.228 36.6224 46.3673 217.559 32.1293 46.3673 217.848 27.5162 46.3673 218.096 25.1647 46.3673 218.205 22.7832 46.3673 218.303 17.9302 46.3673 218.469 15.4587 46.3673 218.536 12.9573 46.3673 218.593 7.86433 46.3673 218.676 5.27288 46.3673 218.701 2.65143 46.3673 218.717 0 49.6626 218.558 0 52.8096 218.21 0 55.8084 217.679 45.2504 58.1608 214.948 47.7084 57.6267 214.863 50.0506 57.0566 214.775 52.2772 56.4505 214.686 54.388 55.8083 214.594 56.3831 55.1301 214.499 60.0262 53.6657 214.303 63.2064 52.0573 214.098 65.9238 50.3047 213.884 68.1783 48.408 213.66 8.18954 58.2204 216.918 69.97 46.3673 213.427 61.8457 35.6566 215.175 61.9221 39.0898 215.418 61.9543 42.6601 215.299 53.2624 38.8713 216.354 53.3974 42.5195 216.328 44.5564 38.6633 217.083 44.7508 42.3858 217.133 35.8232 38.4649 217.632 36.0392 42.2581 217.742 26.9978 38.2734 218.026 27.2021 42.135 218.182 18.3414 38.0932 218.275 18.5058 42.0191 218.465 9.342122 37.913 218.405 9.43843 41.9032 218.619 0 46.3673 218.722 55.8515 31.6541 214.999 55.6283 32.4701 215.236 55.3299 33.268 215.45 54.9 33.9463 215.631 54.2814 34.383 215.772 53.518 34.555 215.874 52.73 34.5889 215.952 51.938 34.5897 216.024 51.1425 34.5897 216.094 49.5137 34.5897 216.234 47.8707 34.5897 216.368 44.5419 34.5897 216.623 42.8559 34.5897 216.742 41.1555 34.5897 216.857 37.7114 34.5897 217.071 34.1802 34.5897 217.267 30.6479 34.5897 217.44 26.9392 34.5897 217.597 23.23 34.5897 217.73 19.52 34.5897 217.841 15.8092 34.5897 217.931 11.8571 34.5897 218.003 7.905 34.5897 218.053 3.95269 34.5897 218.082 0 34.5897 218.089 59.0819 20.665 208.74 58.3406 23.1866 210.747 57.5602 25.8414 212.467 56.7331 28.6552 213.887 69.91851 20.665 207.903 64.5029 20.665 208.357 2.65143 46.3673 218.717 5.27288 46.3673 218.701 7.86433 46.3673 218.676 10.4258 46.3673 218.639 12.9573 46.3673 218.593 15.4587 46.3673 218.536 17.9302 46.3673 218.469 20.3717 46.3673 218.391 22.7832 46.3673 218.303 25.1647 46.3673 218.205 27.5162 46.3673 218.096 29.8378 46.3673 217.977 32.1293 46.3673 217.848 34.3908 46.3673 217.709 36.6224 46.3673 217.559 38.8239 46.3673 217.398 40.9955 46.3673 217.228 43.1371 46.3673 217.047 47.3302 46.3673 216.654 51.4034 46.3673 216.219 55.3567 46.3673 215.744 59.19 46.3673 215.226 62.9033 46.3673 214.668 66.4966 46.3673 214.068 70.1328 42.9147 214.039 70.2473 39.5307 214.278 70.3134 36.2151 214.146 70.3311 32.9681 213.642 70.3005 29.7896 212.765 70.2215 26.6795 211.517 70.0942 23.638 209.896 0 37.1246 218.366 0 39.9325 218.564 0 43.0134 218.683 61.0971 23.2938 210.58 61.5599 29.2012 213.602 61.7249 32.3604 214.569 + + + + + + + + + + 0 -1 0 0 -1 4.49706e-6 0 -1 1.98389e-6 3.59917e-5 -1 0 7.07334e-5 -1 0 0 -1 -2.02805e-6 1.78535e-5 -1 -7.53683e-6 5.27641e-5 -1 9.05624e-6 3.46088e-5 -1 0 -3.38631e-5 -1 0 -3.32541e-5 -1 -1.72259e-6 -6.68494e-5 -1 -6.4491e-5 -3.2826e-5 -1 0 -3.29921e-5 -1 0 0 -1 -1.49638e-6 1 0 0 0 1 0 0 1 1.38885e-6 0.007599294 0.9999693 0.001953244 5.1883e-4 0.9999999 0 0.1236628 0.9923238 0.001037597 0.1382802 0.9903932 0 0.02288943 0.9997188 0.006195366 0.4238442 0.9057351 0 0.7533614 0.6575928 0.004303157 0.9023021 0.4306573 0.01962387 0.7416804 0.6707534 0 0.9395722 0.3422757 0.007172048 0.9645664 0.2638404 0 0.9538513 0.3002797 0 0.406062 0.9138456 0 0 1 -7.27782e-7 4.57792e-4 0.9999999 0 0.1253418 0.9921137 0 0.387593 0.9218306 0 0.02072262 0.9997853 -3.35714e-4 0.7064504 0.7077627 0 0.9492374 0.314561 0 0.9645763 0.2638043 0 0.8883697 0.4591237 -0.002197325 0.9594022 0.2820416 0 0.9594101 0.282015 0 0.9594112 0.2820109 0 0.9594057 0.28203 0 0.9594078 0.2820228 0 0.9594005 0.2820473 0 0.9594027 0.2820398 0 0.9594026 0.2820404 0 0.9594016 0.2820437 0 0.9594007 0.2820468 0 -0.999359 0.03579926 0 -0.998581 0.05325561 0 -0.9988791 0.04733455 0 -0.9995126 0.03122043 0 -0.9999954 0.003051877 0 -0.9998181 0.01907408 0 -0.9998751 0.01580899 0 -0.9999995 0.001007139 0 -0.9999251 -0.01223808 0 -0.9999136 -0.01315349 0 -0.999161 -0.04095643 0 -0.9996377 -0.02691739 0 -0.999641 -0.02679544 0 -0.999203 -0.03991925 0 -0.9988907 -0.04709094 0 -0.9982584 0.05899393 0 -0.9982602 0.05896353 0 -0.7514735 -0.6597634 0 -0.7023758 -0.7118064 0 -0.4991138 -0.8665366 0 -0.5963706 -0.8027092 0 -0.5917698 -0.8061071 0 -0.4955439 -0.8685829 0 -0.4138374 -0.9103509 0 -0.4111615 -0.9115626 0 -0.696809 -0.7172567 0 -0.3405681 -0.940217 -0.002349972 -0.3069009 -0.9517407 -0.001281797 -0.3482823 -0.9373898 0 -0.2771765 -0.9608094 -0.004303216 -0.2772354 -0.960802 0 -0.2238908 -0.9746087 -0.003326594 -0.2246789 -0.974433 0 -0.2498888 -0.9682737 -0.001281738 -0.2011486 -0.9795581 -0.002288877 -0.1969369 -0.9804121 -0.002807676 -0.1899498 -0.9817938 0 -0.2009381 -0.979604 0 0.1827452 0.04391616 0.9821791 0.2087532 0.06555581 0.9757688 0.1967846 0.07498443 0.9775752 0.1650171 0.0667454 0.9840297 0.1778638 0.1027265 0.9786787 0.1484758 0.08716273 0.9850674 0.160501 0.128059 0.9786933 0.1331844 0.1052597 0.9854859 0.1456075 0.1488425 0.9780821 0.1188725 0.1215888 0.9854367 0.1268063 0.167366 0.9777059 0.1054744 0.1356273 0.9851296 0.1120053 0.1843357 0.9764606 0.0931434 0.1479552 0.9845982 0.0986976 0.2005082 0.9747079 0.08166956 0.158334 0.9840023 0.08701121 0.2139421 0.9729635 0.07089495 0.1671815 0.9833739 0.07586938 0.224831 0.9714397 0.05847465 0.1756377 0.9827167 0.06390738 0.2313973 0.9707581 0.04199409 0.1844263 0.9819489 0.04586935 0.2399674 0.9696967 0.1751803 0.009674549 0.9844889 0.1867167 0.01727384 0.982262 0.1586381 0.02954244 0.9868948 0.1427689 0.04699957 0.9886396 0.1281813 0.06259518 0.9897734 0.1141716 0.07593125 0.9905551 0.1012939 0.08756017 0.990996 0.08923804 0.09744769 0.9912319 0.07748878 0.1058108 0.9913626 0.06698858 0.1116069 0.9914921 0.05475097 0.1172538 0.9915917 0.03805762 0.1198495 0.9920625 0.02047806 0.1156356 0.9930807 0.02975583 0.1892165 0.9814845 0.1946499 0.09170943 0.9765761 0.1536942 0.1469495 0.9771304 0.1731657 0.1202149 0.9775286 0.143102 0.174933 0.9741255 0.1248534 0.1984653 0.972123 0.1130444 0.2110426 0.9709182 0.1067861 0.2184553 0.9699867 0.09705066 0.2298697 0.9683703 0.09283965 0.2363719 0.9672173 0.08475083 0.2472027 0.9652503 0.07999151 0.2544409 0.9637745 0.0770303 0.2550483 0.9638552 0.07248204 0.255503 0.9640874 0.06646949 0.2593165 0.9635024 0.06015342 0.2564533 0.9646831 0.05591082 0.2497677 0.9666903 0.05395859 0.2541061 0.9656701 0.04858666 0.2657313 0.962822 0.04263472 0.2632552 0.9637837 0.03827136 0.2494965 0.9676192 0.03451669 0.2283415 0.9729691 0.02536159 0.249252 0.9681065 0.03277742 0.2151591 0.9760289 0.03064084 0.2408847 0.9700701 0.0264905 0.2702767 0.9624182 0.01837229 0.2474463 0.9687274 0.01944029 0.208564 0.9778155 0.02002048 0.2404901 0.9704452 0.01760923 0.2429288 0.9698843 0.1684648 -0.003234982 0.9857023 0.1814357 -0.01660233 0.9832627 0.1372457 0.03009212 0.9900799 0.1525657 0.01477128 0.988183 0.1231437 0.04416078 0.9914059 0.09704941 0.06570667 0.9931083 0.1095634 0.0556972 0.9924182 0.08035665 0.07693856 0.9937924 0.06988829 0.08267569 0.994123 0.0736733 0.08072322 0.9940102 0.08670401 0.0727874 0.9935716 0.06299155 0.08478224 0.9944064 0.05270594 0.08725321 0.9947909 0.05868816 0.08575856 0.9945859 0.0471819 0.09271579 0.9945741 0.03897333 0.08655327 0.9954847 0.04522889 0.09100717 0.9948226 0.02359133 0.139412 0.9899535 0.01611399 0.08697921 0.9960799 0.02096652 0.07855588 0.9966893 0.02789455 0.08600324 0.9959043 0.01382511 0.06994968 0.9974548 0.02813875 0.09140515 0.9954162 0.03350949 0.08703923 0.9956412 0.0159918 0.07788383 0.9968343 0.01092565 0.081088 0.9966471 0.004882931 0.05209523 0.9986302 0.001861631 0.04968482 0.9987633 0.09588986 -0.04974555 0.9941481 0.1199718 -0.1272659 0.9845864 0.1277233 -0.02023428 0.9916035 0.1064795 0.04513704 0.99329 0.1395038 0.07758009 0.9871778 0.08215796 0.01968491 0.9964249 0.07495546 -0.06427371 0.9951134 0.06085437 4.883e-4 0.9981466 0.05563622 -0.07345932 0.9957453 0.04208624 -0.01355057 0.9990222 0.03875935 -0.07867842 0.9961464 0.02606326 -0.02377432 0.9993776 0.02386605 -0.08105915 0.9964236 0.01156669 -0.03140413 0.9994398 0.01068168 -0.08130288 0.9966323 0.07461977 -0.5798978 0.8112648 0.06927824 -0.5583158 0.826731 0.07986855 -0.5180622 0.8516058 0.08188325 -0.5385437 0.8386095 0.06283932 -0.6041915 0.7943575 0.1120661 -0.4606553 0.880476 0.1066327 -0.3693994 0.9231325 0.09503686 -0.4297413 0.8979368 0.1115462 -0.3177313 0.9415967 0.1148439 -0.2106744 0.9707869 0.1158517 -0.2398827 0.9638645 0.09918725 -0.2788841 0.9551888 0.1216193 -0.0967766 0.9878478 0.07178026 -0.5623704 0.8237641 0.1015694 -0.2337194 0.9669844 0.09622621 -0.367967 0.9248464 0.1073973 -0.1751806 0.9786612 0.1077333 -0.1991693 0.9740253 0.08829241 -0.1036436 0.9906879 0.0915879 -0.1043449 0.9903151 0.09580063 -0.1079169 0.9895334 0.1018416 -0.1435609 0.9843875 0.129431 0.01528996 0.9914706 0.1372758 0.121711 0.9830269 0.1204571 0.09466886 0.9881943 0.149633 0.1134378 0.9822127 0.1578776 0.1496983 0.9760456 0.178505 0.1798783 0.9673572 0.1567485 0.1265647 0.9794955 0.08206635 -0.09964549 0.9916329 0.08588182 -0.102698 0.9909983 0.0817905 -0.1053205 0.9910691 0.07294017 -0.1121569 0.9910099 0.1103578 0.08524042 0.9902299 0.09463918 0.06399816 0.9934524 0.08749908 0.05694913 0.9945355 0.06814843 -0.1114241 0.9914336 0.06479257 -0.1105411 0.9917574 0.05099713 -0.1150564 0.9920491 0.05926859 -0.1146612 0.9916351 0.0459004 -0.1132556 0.9925051 0.0318011 -0.1128909 0.9930984 0.03875887 -0.116185 0.9924712 0.0574969 0.02896207 0.9979256 0.05127251 0.01910507 0.998502 0.07953369 0.05124217 0.9955143 0.0719648 0.0382713 0.9966726 0.02746731 -0.1137757 0.9931267 0.009247183 -0.1092577 0.9939705 0.01559519 -0.1090748 0.9939112 0.01989841 -0.1119135 0.9935188 0.004577875 -0.1057496 0.9943823 0.002349913 -0.08957237 0.9959776 0.001739501 -0.1086156 0.9940824 0.002441465 -0.05432379 0.9985204 0.07019406 0.03442561 0.9969393 0.06347954 0.03344881 0.9974225 0.04886054 0.01666325 0.9986667 0.0355547 0.006500542 0.9993466 0.04294079 0.01522916 0.9989616 0.03476071 0.002075254 0.9993936 0.02929842 0.002960324 0.9995663 0.02407944 5.49341e-4 0.99971 0.01858615 -0.006317436 0.9998074 0.003204464 -0.02487307 0.9996855 0.006500542 -0.0126959 0.9998983 0.01654124 -0.008117973 0.9998303 0.01150566 -0.008697926 0.9998961 0.004882991 -0.01397764 0.9998905 0.001861631 -0.01162779 0.9999307 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 79.8473 18.8915 212.458 79.5529 18.7278 212.34 79.2574 18.5691 212.205 78.9607 18.4153 212.054 78.66281 18.2664 211.886 78.3638 18.1225 211.701 78.0635 17.9835 211.5 77.7621 17.8494 211.282 77.4594 17.7203 211.048 77.1556 17.5961 210.798 76.8506 17.4768 210.53 76.23701 17.2531 209.946 75.6186 17.0491 209.296 74.9955 16.8649 208.579 74.3677 16.7004 207.797 73.7351 16.5556 206.948 72.4556 16.3253 205.051 71.1571 16.1739 202.89 69.8396 16.1015 200.464 79.8473 18.8915 212.458 79.95771 18.61 212.278 80.0335 18.3467 212.068 80.07701 18.1008 211.827 80.0903 17.8719 211.557 80.0753 17.6592 211.256 80.03401 17.4623 210.926 79.9684 17.2804 210.566 79.88021 17.113 210.177 79.7713 16.9595 209.759 79.6434 16.8192 209.313 79.3368 16.5757 208.339 78.9729 16.3775 207.26 78.5628 16.2195 206.084 78.1169 16.0964 204.82 77.6443 16.003 203.478 76.65071 15.8838 200.605 75.6345 15.8182 197.573 74.6313 15.7617 194.514 79.8473 18.8915 212.458 80.37191 18.4993 212.208 80.8287 18.1384 211.915 81.2219 17.8076 211.578 81.5559 17.5056 211.197 81.83451 17.2313 210.773 82.0618 16.9835 210.306 82.2415 16.761 209.796 82.37741 16.5624 209.244 82.47301 16.3866 208.652 82.5316 16.2323 208.019 82.5512 15.9832 206.64 82.4607 15.805 205.117 82.2829 15.6874 203.467 82.038 15.6199 201.706 81.7446 15.592 199.854 81.07501 15.6122 195.974 80.37921 15.6608 192.042 79.7286 15.6484 188.318 79.8473 18.8915 212.458 80.7957 18.3957 212.131 81.64302 17.9443 211.747 82.3955 17.5356 211.305 83.0596 17.1677 210.807 83.64141 16.8389 210.251 84.1468 16.5473 209.639 84.5815 16.2911 208.972 84.95101 16.0684 208.25 85.2606 15.8774 207.475 85.51541 15.7162 206.649 85.88021 15.4757 204.848 86.0823 15.3316 202.867 86.1557 15.2685 200.727 86.13101 15.2708 198.454 86.0358 15.3226 196.078 85.7284 15.5105 191.159 85.3912 15.7015 186.296 85.1315 15.7617 181.878 81.22911 18.2991 212.046 82.47631 17.7644 211.563 83.5977 17.2848 211.01 84.6016 16.8581 210.386 85.4962 16.4818 209.691 86.2892 16.1535 208.927 86.9883 15.8707 208.095 87.6009 15.631 207.195 88.1341 15.4319 206.23 88.5946 15.2709 205.201 89.3237 15.0531 202.965 89.8375 14.9573 200.509 90.1813 14.9629 197.864 90.3958 15.0491 195.063 90.51802 15.1948 192.148 90.61101 15.5788 186.161 90.6706 15.9405 180.335 90.8398 16.1015 175.192 + + + + + + + + + + 0.0317099 0.5898232 -0.8069096 0.0383315 0.5951455 -0.8027033 0.03109866 0.5470505 -0.8365218 0.04443597 0.6677913 -0.7430211 0.03946185 0.6526013 -0.7566733 0.05371373 0.733986 -0.6770372 0.04004198 0.7037569 -0.7093116 0.06100761 0.7888571 -0.6115413 0.0403468 0.7494687 -0.6608093 0.06695902 0.8336922 -0.5481549 0.03924733 0.7884877 -0.6137972 0.07095646 0.8692703 -0.4892182 0.03769129 0.822464 -0.5675671 0.07373458 0.8976028 -0.4345946 0.03540241 0.8514596 -0.5232239 0.07535099 0.9198375 -0.3849951 0.03241151 0.8759958 -0.4812285 0.07599222 0.9372683 -0.3402255 0.02975589 0.8972248 -0.4405707 0.07797741 0.9538272 -0.2900577 0.02646034 0.9229685 -0.3839649 0.07303339 0.9694249 -0.2342685 0.01754838 0.9461174 -0.3233481 0.06933879 0.9811805 -0.1802137 0.01162773 0.9636065 -0.2670717 0.06433331 0.988408 -0.1375171 0.006408929 0.9756618 -0.2191874 0.05847364 0.9928626 -0.1039465 0.002288877 0.983903 -0.1786889 0.05438506 0.9958389 -0.07312381 0.002899289 0.9909634 -0.134102 0.0373243 0.9982653 -0.04553383 -0.001617491 0.9958962 -0.09048885 0.02389639 0.9992851 -0.02929824 0.008545279 0.9983389 -0.056979 0.01107847 0.9996618 -0.02353042 0.02017277 0.9989649 -0.04077279 0.009094715 0.5916171 -0.8061679 0.001709043 0.5392088 -0.8421704 0.02734565 0.6896541 -0.7236225 0.04318499 0.7691207 -0.6376429 0.05603313 0.8302121 -0.5546243 0.06588959 0.8757615 -0.4782264 0.07364249 0.9094682 -0.4091996 0.07940995 0.9339979 -0.3483418 0.08322513 0.9516113 -0.2958202 0.08575946 0.9644129 -0.2501064 0.08997023 0.9754512 -0.2009987 0.08597314 0.9850749 -0.1491178 0.08380442 0.9913706 -0.1008034 0.07938039 0.9947425 -0.06470066 0.07321512 0.9965991 -0.03781306 0.06683737 0.9976477 -0.01522916 0.0431233 0.9990697 4.57785e-4 0.0149542 0.9998877 9.76602e-4 -0.01037627 0.9999423 -0.002807676 -0.02157694 0.5714081 -0.8203824 -0.03314369 0.5053352 -0.8622865 0.002807736 0.6924123 -0.7214968 0.02508682 0.7863896 -0.6172214 0.04281848 0.8538987 -0.518675 0.05691879 0.901271 -0.4295008 0.06741613 0.9331754 -0.3530423 0.07532018 0.9547175 -0.2878221 0.08099859 0.9691452 -0.2328023 0.08478212 0.9787488 -0.186716 0.09024584 0.9862039 -0.1387717 0.08700913 0.9921365 -0.08996945 0.08578997 0.995268 -0.04562646 0.08188343 0.9965485 -0.01364213 0.0756874 0.9970899 0.009125173 0.06827127 0.9973044 0.02688735 0.04104828 0.9985266 0.03549379 0.003295958 0.9996675 0.02557456 -0.03149545 0.9994023 0.0142523 0.002716124 0.6672018 -0.7448721 -0.07651203 0.4428971 -0.8933019 0.02972579 0.7778458 -0.6277518 0.05346995 0.856557 -0.513275 0.07007086 0.9072898 -0.4146267 0.08218854 0.939782 -0.3317452 0.09094703 0.9605293 -0.262892 0.0972346 0.9738112 -0.2055172 0.1013839 0.9821918 -0.1581798 0.1040687 0.9874629 -0.1186872 0.1113322 0.9910647 -0.07345855 0.1089535 0.9935526 -0.03134322 0.1055356 0.9944093 0.003540217 0.09997928 0.9945741 0.02874857 0.0924108 0.994637 0.04644954 0.08395665 0.9946926 0.05948072 0.05179154 0.9968575 0.05994021 -0.001434385 0.9993547 0.03589069 -0.02160757 0.999444 0.02539199 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

20 0 0 1 1 1 0 2 2 21 3 3 2 4 4 1 1 5 21 3 6 1 1 7 20 0 8 22 5 9 3 6 10 2 4 11 22 5 12 2 4 13 21 3 14 23 7 15 4 8 16 3 6 17 23 7 18 3 6 19 22 5 20 24 9 21 5 10 22 4 8 23 24 9 24 4 8 25 23 7 26 25 11 27 6 12 28 5 10 29 25 11 30 5 10 31 24 9 32 26 13 33 7 14 34 6 12 35 26 13 36 6 12 37 25 11 38 27 15 39 8 16 40 7 14 41 27 15 42 7 14 43 26 13 44 28 17 45 9 18 46 8 16 47 28 17 48 8 16 49 27 15 50 29 19 51 10 20 52 9 18 53 29 19 54 9 18 55 28 17 56 30 21 57 11 22 58 10 20 59 30 21 60 10 20 61 29 19 62 31 23 63 12 24 64 11 22 65 31 23 66 11 22 67 30 21 68 32 25 69 13 26 70 12 24 71 32 25 72 12 24 73 31 23 74 33 27 75 14 28 76 13 26 77 33 27 78 13 26 79 32 25 80 34 29 81 15 30 82 14 28 83 34 29 84 14 28 85 33 27 86 35 31 87 16 32 88 15 30 89 35 31 90 15 30 91 34 29 92 36 33 93 17 34 94 16 32 95 36 33 96 16 32 97 35 31 98 37 35 99 18 36 100 17 34 101 37 35 102 17 34 103 36 33 104 39 37 105 20 0 106 19 38 107 40 39 108 21 3 109 20 0 110 40 39 111 20 0 112 39 37 113 41 40 114 22 5 115 21 3 116 41 40 117 21 3 118 40 39 119 42 41 120 23 7 121 22 5 122 42 41 123 22 5 124 41 40 125 43 42 126 24 9 127 23 7 128 43 42 129 23 7 130 42 41 131 44 43 132 25 11 133 24 9 134 44 43 135 24 9 136 43 42 137 45 44 138 26 13 139 25 11 140 45 44 141 25 11 142 44 43 143 46 45 144 27 15 145 26 13 146 46 45 147 26 13 148 45 44 149 47 46 150 28 17 151 27 15 152 47 46 153 27 15 154 46 45 155 48 47 156 29 19 157 28 17 158 48 47 159 28 17 160 47 46 161 49 48 162 30 21 163 29 19 164 49 48 165 29 19 166 48 47 167 50 49 168 31 23 169 30 21 170 50 49 171 30 21 172 49 48 173 51 50 174 32 25 175 31 23 176 51 50 177 31 23 178 50 49 179 52 51 180 33 27 181 32 25 182 52 51 183 32 25 184 51 50 185 53 52 186 34 29 187 33 27 188 53 52 189 33 27 190 52 51 191 54 53 192 35 31 193 34 29 194 54 53 195 34 29 196 53 52 197 55 54 198 36 33 199 35 31 200 55 54 201 35 31 202 54 53 203 56 55 204 37 35 205 36 33 206 56 55 207 36 33 208 55 54 209 58 56 210 39 37 211 38 57 212 59 58 213 40 39 214 39 37 215 59 58 216 39 37 217 58 56 218 60 59 219 41 40 220 40 39 221 60 59 222 40 39 223 59 58 224 61 60 225 42 41 226 41 40 227 61 60 228 41 40 229 60 59 230 62 61 231 43 42 232 42 41 233 62 61 234 42 41 235 61 60 236 63 62 237 44 43 238 43 42 239 63 62 240 43 42 241 62 61 242 64 63 243 45 44 244 44 43 245 64 63 246 44 43 247 63 62 248 65 64 249 46 45 250 45 44 251 65 64 252 45 44 253 64 63 254 66 65 255 47 46 256 46 45 257 66 65 258 46 45 259 65 64 260 67 66 261 48 47 262 47 46 263 67 66 264 47 46 265 66 65 266 68 67 267 49 48 268 48 47 269 68 67 270 48 47 271 67 66 272 69 68 273 50 49 274 49 48 275 69 68 276 49 48 277 68 67 278 70 69 279 51 50 280 50 49 281 70 69 282 50 49 283 69 68 284 71 70 285 52 51 286 51 50 287 71 70 288 51 50 289 70 69 290 72 71 291 53 52 292 52 51 293 72 71 294 52 51 295 71 70 296 73 72 297 54 53 298 53 52 299 73 72 300 53 52 301 72 71 302 74 73 303 55 54 304 54 53 305 74 73 306 54 53 307 73 72 308 75 74 309 56 55 310 55 54 311 75 74 312 55 54 313 74 73 314 76 75 315 58 56 316 57 76 317 77 77 318 59 58 319 58 56 320 77 77 321 58 56 322 76 75 323 78 78 324 60 59 325 59 58 326 78 78 327 59 58 328 77 77 329 79 79 330 61 60 331 60 59 332 79 79 333 60 59 334 78 78 335 80 80 336 62 61 337 61 60 338 80 80 339 61 60 340 79 79 341 81 81 342 63 62 343 62 61 344 81 81 345 62 61 346 80 80 347 82 82 348 64 63 349 63 62 350 82 82 351 63 62 352 81 81 353 83 83 354 65 64 355 64 63 356 83 83 357 64 63 358 82 82 359 84 84 360 66 65 361 65 64 362 84 84 363 65 64 364 83 83 365 85 85 366 67 66 367 66 65 368 85 85 369 66 65 370 84 84 371 86 86 372 68 67 373 67 66 374 86 86 375 67 66 376 85 85 377 87 87 378 69 68 379 68 67 380 87 87 381 68 67 382 86 86 383 88 88 384 70 69 385 69 68 386 88 88 387 69 68 388 87 87 389 89 89 390 71 70 391 70 69 392 89 89 393 70 69 394 88 88 395 90 90 396 72 71 397 71 70 398 90 90 399 71 70 400 89 89 401 91 91 402 73 72 403 72 71 404 91 91 405 72 71 406 90 90 407 92 92 408 74 73 409 73 72 410 92 92 411 73 72 412 91 91 413 93 93 414 75 74 415 74 73 416 93 93 417 74 73 418 92 92 419

+
+
+
+ + + + -79.8473 18.8915 212.458 -79.5529 18.7278 212.34 -79.2574 18.5691 212.205 -78.9607 18.4153 212.054 -78.66281 18.2664 211.886 -78.3638 18.1225 211.701 -78.0635 17.9835 211.5 -77.7621 17.8494 211.282 -77.4594 17.7203 211.048 -77.1556 17.5961 210.798 -76.8506 17.4768 210.53 -76.23701 17.2531 209.946 -75.6186 17.0491 209.296 -74.9955 16.8649 208.579 -74.3677 16.7004 207.797 -73.7351 16.5556 206.948 -72.4556 16.3253 205.051 -71.1571 16.1739 202.89 -69.8396 16.1015 200.464 -79.8473 18.8915 212.458 -79.95771 18.61 212.278 -80.0335 18.3467 212.068 -80.07701 18.1008 211.827 -80.0903 17.8719 211.557 -80.0753 17.6592 211.256 -80.03401 17.4623 210.926 -79.9684 17.2804 210.566 -79.88021 17.113 210.177 -79.7713 16.9595 209.759 -79.6434 16.8192 209.313 -79.3368 16.5757 208.339 -78.9729 16.3775 207.26 -78.5628 16.2195 206.084 -78.1169 16.0964 204.82 -77.6443 16.003 203.478 -76.65071 15.8838 200.605 -75.6345 15.8182 197.573 -74.6313 15.7617 194.514 -79.8473 18.8915 212.458 -80.37191 18.4993 212.208 -80.8287 18.1384 211.915 -81.2219 17.8076 211.578 -81.5559 17.5056 211.197 -81.83451 17.2313 210.773 -82.0618 16.9835 210.306 -82.2415 16.761 209.796 -82.37741 16.5624 209.244 -82.47301 16.3866 208.652 -82.5316 16.2323 208.019 -82.5512 15.9832 206.64 -82.4607 15.805 205.117 -82.2829 15.6874 203.467 -82.038 15.6199 201.706 -81.7446 15.592 199.854 -81.07501 15.6122 195.974 -80.37921 15.6608 192.042 -79.7286 15.6484 188.318 -79.8473 18.8915 212.458 -80.7957 18.3957 212.131 -81.64302 17.9443 211.747 -82.3955 17.5356 211.305 -83.0596 17.1677 210.807 -83.64141 16.8389 210.251 -84.1468 16.5473 209.639 -84.5815 16.2911 208.972 -84.95101 16.0684 208.25 -85.2606 15.8774 207.475 -85.51541 15.7162 206.649 -85.88021 15.4757 204.848 -86.0823 15.3316 202.867 -86.1557 15.2685 200.727 -86.13101 15.2708 198.454 -86.0358 15.3226 196.078 -85.7284 15.5105 191.159 -85.3912 15.7015 186.296 -85.1315 15.7617 181.878 -81.22911 18.2991 212.046 -82.47631 17.7644 211.563 -83.5977 17.2848 211.01 -84.6016 16.8581 210.386 -85.4962 16.4818 209.691 -86.2892 16.1535 208.927 -86.9883 15.8707 208.095 -87.6009 15.631 207.195 -88.1341 15.4319 206.23 -88.5946 15.2709 205.201 -89.3237 15.0531 202.965 -89.8375 14.9573 200.509 -90.1813 14.9629 197.864 -90.3958 15.0491 195.063 -90.51802 15.1948 192.148 -90.61101 15.5788 186.161 -90.6706 15.9405 180.335 -90.8398 16.1015 175.192 + + + + + + + + + + -0.0317099 0.5898232 -0.8069096 -0.03109866 0.5470505 -0.8365218 -0.0383315 0.5951455 -0.8027033 -0.04443597 0.6677913 -0.7430211 -0.03946185 0.6526013 -0.7566733 -0.05371373 0.733986 -0.6770372 -0.04004198 0.7037569 -0.7093116 -0.06100761 0.7888571 -0.6115413 -0.0403468 0.7494687 -0.6608093 -0.06695902 0.8336922 -0.5481549 -0.03924733 0.7884877 -0.6137972 -0.07095646 0.8692703 -0.4892182 -0.03769129 0.822464 -0.5675671 -0.07373458 0.8976028 -0.4345946 -0.03540241 0.8514596 -0.5232239 -0.07535099 0.9198375 -0.3849951 -0.03241151 0.8759958 -0.4812285 -0.07599222 0.9372683 -0.3402255 -0.02975589 0.8972248 -0.4405707 -0.07797741 0.9538272 -0.2900577 -0.02646034 0.9229685 -0.3839649 -0.07303339 0.9694249 -0.2342685 -0.01754838 0.9461174 -0.3233481 -0.06933879 0.9811805 -0.1802137 -0.01162773 0.9636065 -0.2670717 -0.06433331 0.988408 -0.1375171 -0.006408929 0.9756618 -0.2191874 -0.05847364 0.9928626 -0.1039465 -0.002288877 0.983903 -0.1786889 -0.05438506 0.9958389 -0.07312381 -0.002899289 0.9909634 -0.134102 -0.0373243 0.9982653 -0.04553383 0.001617491 0.9958962 -0.09048885 -0.02389639 0.9992851 -0.02929824 -0.008545279 0.9983389 -0.056979 -0.01107847 0.9996618 -0.02353042 -0.02017277 0.9989649 -0.04077279 -0.009094715 0.5916171 -0.8061679 -0.001709043 0.5392088 -0.8421704 -0.02734565 0.6896541 -0.7236225 -0.04318499 0.7691207 -0.6376429 -0.05603313 0.8302121 -0.5546243 -0.06588959 0.8757615 -0.4782264 -0.07364249 0.9094682 -0.4091996 -0.07940995 0.9339979 -0.3483418 -0.08322513 0.9516113 -0.2958202 -0.08575946 0.9644129 -0.2501064 -0.08997023 0.9754512 -0.2009987 -0.08597314 0.9850749 -0.1491178 -0.08380442 0.9913706 -0.1008034 -0.07938039 0.9947425 -0.06470066 -0.07321512 0.9965991 -0.03781306 -0.06683737 0.9976477 -0.01522916 -0.0431233 0.9990697 4.57785e-4 -0.0149542 0.9998877 9.76602e-4 0.01037627 0.9999423 -0.002807676 0.02157694 0.5714081 -0.8203824 0.03314369 0.5053352 -0.8622865 -0.002807736 0.6924123 -0.7214968 -0.02508682 0.7863896 -0.6172214 -0.04281848 0.8538987 -0.518675 -0.05691879 0.901271 -0.4295008 -0.06741613 0.9331754 -0.3530423 -0.07532018 0.9547175 -0.2878221 -0.08099859 0.9691452 -0.2328023 -0.08478212 0.9787488 -0.186716 -0.09024584 0.9862039 -0.1387717 -0.08700913 0.9921365 -0.08996945 -0.08578997 0.995268 -0.04562646 -0.08188343 0.9965485 -0.01364213 -0.0756874 0.9970899 0.009125173 -0.06827127 0.9973044 0.02688735 -0.04104828 0.9985266 0.03549379 -0.003295958 0.9996675 0.02557456 0.03149545 0.9994023 0.0142523 -0.002716124 0.6672018 -0.7448721 0.07651203 0.4428971 -0.8933019 -0.02972579 0.7778458 -0.6277518 -0.05346995 0.856557 -0.513275 -0.07007086 0.9072898 -0.4146267 -0.08218854 0.939782 -0.3317452 -0.09094703 0.9605293 -0.262892 -0.0972346 0.9738112 -0.2055172 -0.1013839 0.9821918 -0.1581798 -0.1040687 0.9874629 -0.1186872 -0.1113322 0.9910647 -0.07345855 -0.1089535 0.9935526 -0.03134322 -0.1055356 0.9944093 0.003540217 -0.09997928 0.9945741 0.02874857 -0.0924108 0.994637 0.04644954 -0.08395665 0.9946926 0.05948072 -0.05179154 0.9968575 0.05994021 0.001434385 0.9993547 0.03589069 0.02160757 0.999444 0.02539199 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

20 0 0 0 1 1 1 2 2 21 3 3 20 0 4 1 2 5 21 3 6 1 2 7 2 4 8 22 5 9 21 3 10 2 4 11 22 5 12 2 4 13 3 6 14 23 7 15 22 5 16 3 6 17 23 7 18 3 6 19 4 8 20 24 9 21 23 7 22 4 8 23 24 9 24 4 8 25 5 10 26 25 11 27 24 9 28 5 10 29 25 11 30 5 10 31 6 12 32 26 13 33 25 11 34 6 12 35 26 13 36 6 12 37 7 14 38 27 15 39 26 13 40 7 14 41 27 15 42 7 14 43 8 16 44 28 17 45 27 15 46 8 16 47 28 17 48 8 16 49 9 18 50 29 19 51 28 17 52 9 18 53 29 19 54 9 18 55 10 20 56 30 21 57 29 19 58 10 20 59 30 21 60 10 20 61 11 22 62 31 23 63 30 21 64 11 22 65 31 23 66 11 22 67 12 24 68 32 25 69 31 23 70 12 24 71 32 25 72 12 24 73 13 26 74 33 27 75 32 25 76 13 26 77 33 27 78 13 26 79 14 28 80 34 29 81 33 27 82 14 28 83 34 29 84 14 28 85 15 30 86 35 31 87 34 29 88 15 30 89 35 31 90 15 30 91 16 32 92 36 33 93 35 31 94 16 32 95 36 33 96 16 32 97 17 34 98 37 35 99 36 33 100 17 34 101 37 35 102 17 34 103 18 36 104 39 37 105 19 38 106 20 0 107 40 39 108 39 37 109 20 0 110 40 39 111 20 0 112 21 3 113 41 40 114 40 39 115 21 3 116 41 40 117 21 3 118 22 5 119 42 41 120 41 40 121 22 5 122 42 41 123 22 5 124 23 7 125 43 42 126 42 41 127 23 7 128 43 42 129 23 7 130 24 9 131 44 43 132 43 42 133 24 9 134 44 43 135 24 9 136 25 11 137 45 44 138 44 43 139 25 11 140 45 44 141 25 11 142 26 13 143 46 45 144 45 44 145 26 13 146 46 45 147 26 13 148 27 15 149 47 46 150 46 45 151 27 15 152 47 46 153 27 15 154 28 17 155 48 47 156 47 46 157 28 17 158 48 47 159 28 17 160 29 19 161 49 48 162 48 47 163 29 19 164 49 48 165 29 19 166 30 21 167 50 49 168 49 48 169 30 21 170 50 49 171 30 21 172 31 23 173 51 50 174 50 49 175 31 23 176 51 50 177 31 23 178 32 25 179 52 51 180 51 50 181 32 25 182 52 51 183 32 25 184 33 27 185 53 52 186 52 51 187 33 27 188 53 52 189 33 27 190 34 29 191 54 53 192 53 52 193 34 29 194 54 53 195 34 29 196 35 31 197 55 54 198 54 53 199 35 31 200 55 54 201 35 31 202 36 33 203 56 55 204 55 54 205 36 33 206 56 55 207 36 33 208 37 35 209 58 56 210 38 57 211 39 37 212 59 58 213 58 56 214 39 37 215 59 58 216 39 37 217 40 39 218 60 59 219 59 58 220 40 39 221 60 59 222 40 39 223 41 40 224 61 60 225 60 59 226 41 40 227 61 60 228 41 40 229 42 41 230 62 61 231 61 60 232 42 41 233 62 61 234 42 41 235 43 42 236 63 62 237 62 61 238 43 42 239 63 62 240 43 42 241 44 43 242 64 63 243 63 62 244 44 43 245 64 63 246 44 43 247 45 44 248 65 64 249 64 63 250 45 44 251 65 64 252 45 44 253 46 45 254 66 65 255 65 64 256 46 45 257 66 65 258 46 45 259 47 46 260 67 66 261 66 65 262 47 46 263 67 66 264 47 46 265 48 47 266 68 67 267 67 66 268 48 47 269 68 67 270 48 47 271 49 48 272 69 68 273 68 67 274 49 48 275 69 68 276 49 48 277 50 49 278 70 69 279 69 68 280 50 49 281 70 69 282 50 49 283 51 50 284 71 70 285 70 69 286 51 50 287 71 70 288 51 50 289 52 51 290 72 71 291 71 70 292 52 51 293 72 71 294 52 51 295 53 52 296 73 72 297 72 71 298 53 52 299 73 72 300 53 52 301 54 53 302 74 73 303 73 72 304 54 53 305 74 73 306 54 53 307 55 54 308 75 74 309 74 73 310 55 54 311 75 74 312 55 54 313 56 55 314 76 75 315 57 76 316 58 56 317 77 77 318 76 75 319 58 56 320 77 77 321 58 56 322 59 58 323 78 78 324 77 77 325 59 58 326 78 78 327 59 58 328 60 59 329 79 79 330 78 78 331 60 59 332 79 79 333 60 59 334 61 60 335 80 80 336 79 79 337 61 60 338 80 80 339 61 60 340 62 61 341 81 81 342 80 80 343 62 61 344 81 81 345 62 61 346 63 62 347 82 82 348 81 81 349 63 62 350 82 82 351 63 62 352 64 63 353 83 83 354 82 82 355 64 63 356 83 83 357 64 63 358 65 64 359 84 84 360 83 83 361 65 64 362 84 84 363 65 64 364 66 65 365 85 85 366 84 84 367 66 65 368 85 85 369 66 65 370 67 66 371 86 86 372 85 85 373 67 66 374 86 86 375 67 66 376 68 67 377 87 87 378 86 86 379 68 67 380 87 87 381 68 67 382 69 68 383 88 88 384 87 87 385 69 68 386 88 88 387 69 68 388 70 69 389 89 89 390 88 88 391 70 69 392 89 89 393 70 69 394 71 70 395 90 90 396 89 89 397 71 70 398 90 90 399 71 70 400 72 71 401 91 91 402 90 90 403 72 71 404 91 91 405 72 71 406 73 72 407 92 92 408 91 91 409 73 72 410 92 92 411 73 72 412 74 73 413 93 93 414 92 92 415 74 73 416 93 93 417 74 73 418 75 74 419

+
+
+
+ + + + -42.6767 58.6588 215.031 -33.3926 58.6588 215.719 -23.1465 58.6588 216.273 -17.6952 58.6587 216.498 0 58.6588 216.965 -42.6767 58.6588 220.979 -33.3926 58.6588 221.667 -23.1465 58.6588 222.221 -17.6952 58.6587 222.446 -12.025 58.6584 222.636 0 58.6588 222.913 0 58.6588 219.939 -3.07951 58.6588 216.909 -6.11288 58.6586 216.844 -9.096071 58.6585 216.77 -12.025 58.6584 216.688 -14.8908 58.6585 216.597 -20.4509 58.6588 216.39 -25.7912 58.6588 216.147 -28.3821 58.6588 216.013 -30.9168 58.6588 215.87 -35.8094 58.6588 215.559 -38.1655 58.6588 215.391 -40.4561 58.6588 215.214 -42.6767 58.6588 218.005 0 58.6588 216.965 0 46.3673 218.722 0 58.6588 222.913 0 55.8084 223.627 0 52.8096 224.158 0 49.6626 224.506 0 46.3673 224.67 0 58.6588 219.939 0 46.3673 221.696 0 49.6626 218.558 0 52.8096 218.21 0 55.8084 217.679 0 46.3673 218.722 0 34.5897 218.089 0 46.3673 224.67 0 39.9325 224.512 0 34.5897 224.037 0 46.3673 221.696 0 34.5897 221.063 0 37.1246 218.366 0 39.9325 218.564 0 43.0134 218.683 0 34.5897 218.089 -15.8092 34.5897 217.931 -30.6479 34.5897 217.44 -41.1555 34.5897 216.857 -42.8559 34.5897 216.742 -44.5419 34.5897 216.623 -49.5137 34.5897 216.234 -51.1425 34.5897 216.094 -52.73 34.5889 215.952 -55.3299 33.268 215.45 -55.8515 31.6541 214.999 0 34.5897 224.037 -15.8092 34.5897 223.879 -30.6479 34.5897 223.388 -37.7114 34.5897 223.019 -41.1555 34.5897 222.805 -42.8559 34.5897 222.69 -44.5419 34.5897 222.571 -47.8707 34.5897 222.317 -49.5137 34.5897 222.182 -51.1425 34.5897 222.043 -51.938 34.5897 221.972 -52.73 34.5889 221.901 -53.518 34.555 221.822 -54.2814 34.383 221.72 -54.9 33.9463 221.58 -55.3299 33.268 221.399 -55.6283 32.4701 221.184 -55.8515 31.6541 220.948 -55.6283 32.4701 215.236 -54.9 33.9463 215.631 -54.2814 34.383 215.772 -53.518 34.555 215.874 -51.938 34.5897 216.024 -47.8707 34.5897 216.368 -37.7114 34.5897 217.071 -34.1802 34.5897 217.267 -26.9392 34.5897 217.597 -23.23 34.5897 217.73 -19.52 34.5897 217.841 -11.8571 34.5897 218.003 -7.905 34.5897 218.053 -3.95269 34.5897 218.082 0 34.5897 221.063 -55.8515 31.6541 217.973 -47.8707 34.5897 219.275 -51.938 34.5897 216.859 -53.518 34.555 217.21 -54.9 33.9463 217.02 -55.6283 32.4701 216.755 -54.2814 34.383 217.151 -55.8515 31.6541 214.999 -56.7331 28.6552 213.887 -57.5602 25.8414 212.467 -59.0819 20.665 208.74 -55.8515 31.6541 220.948 -56.7331 28.6552 219.835 -57.5602 25.8414 218.415 -58.3406 23.1866 216.696 -59.0819 20.665 214.688 -58.3406 23.1866 210.747 -55.8515 31.6541 217.973 -59.0819 20.665 211.714 -59.0819 20.665 208.74 -69.91851 20.665 207.903 -59.0819 20.665 214.688 -69.91851 20.665 213.851 -64.5029 20.665 208.357 -59.0819 20.665 211.714 -69.91851 20.665 210.877 -69.91851 20.665 207.903 -70.2215 26.6795 211.517 -70.3311 32.9681 213.642 -70.1328 42.9147 214.039 -69.97 46.3673 213.427 -69.91851 20.665 213.851 -70.0942 23.638 215.844 -70.2215 26.6795 217.465 -70.3005 29.7896 218.713 -70.3311 32.9681 219.59 -70.3134 36.2151 220.094 -70.2473 39.5307 220.227 -70.1328 42.9147 219.987 -69.97 46.3673 219.375 -69.91851 20.665 210.877 -69.97 46.3673 216.401 -70.2473 39.5307 214.278 -70.3134 36.2151 214.146 -70.3005 29.7896 212.765 -70.0942 23.638 209.896 -69.97 46.3673 213.427 -68.1783 48.408 213.66 -56.3831 55.1301 214.499 -47.7084 57.6267 214.863 -42.6767 58.6588 215.031 -69.97 46.3673 219.375 -68.1783 48.408 219.608 -65.9238 50.3047 219.832 -63.2064 52.0573 220.046 -60.0262 53.6657 220.251 -56.3831 55.1301 220.447 -52.2772 56.4505 220.634 -47.7084 57.6267 220.811 -42.6767 58.6588 220.979 -69.97 46.3673 216.401 -42.6767 58.6588 218.005 -45.2504 58.1608 214.948 -50.0506 57.0566 214.775 -52.2772 56.4505 214.686 -54.388 55.8083 214.594 -60.0262 53.6657 214.303 -63.2064 52.0573 214.098 -65.9238 50.3047 213.884 -69.97 46.3673 213.427 -67.9133 47.7675 213.773 -65.5479 49.0809 214.103 -62.8735 50.3076 214.418 -59.8903 51.4473 214.716 -56.5982 52.5003 214.998 -52.9973 53.4665 215.265 -49.0875 54.3459 215.515 -44.8688 55.1384 215.75 -40.3412 55.8441 215.968 -35.5048 56.463 216.171 -24.9053 57.4404 216.528 -69.97 46.3673 213.427 -67.4411 47.3163 213.891 -64.6663 48.2076 214.33 -61.6457 49.0409 214.745 -58.3791 49.8163 215.135 -54.8666 50.5339 215.502 -51.1083 51.1936 215.843 -47.104 51.7954 216.16 -42.8538 52.3394 216.453 -38.3578 52.8254 216.722 -33.6158 53.2536 216.966 -23.3941 53.9364 217.38 -12.1889 54.3876 217.697 -66.96881 46.8496 213.989 -63.7848 47.303 214.518 -60.4178 47.7275 215.015 -56.8679 48.123 215.478 -53.135 48.4895 215.909 -49.2193 48.8272 216.306 -45.1205 49.1359 216.671 -40.8389 49.4157 217.003 -36.3743 49.6665 217.302 -31.7268 49.8884 217.568 -21.8829 50.2453 218.001 -11.3073 50.4866 218.303 -69.97 46.3673 213.427 -66.4966 46.3673 214.068 -62.9033 46.3673 214.668 -55.3567 46.3673 215.744 -51.4034 46.3673 216.219 -38.8239 46.3673 217.398 -34.3908 46.3673 217.709 -29.8378 46.3673 217.977 -20.3717 46.3673 218.391 -10.4258 46.3673 218.639 0 46.3673 218.722 0 58.6588 216.965 -3.07951 58.6588 216.909 -6.11288 58.6586 216.844 -9.096071 58.6585 216.77 -12.025 58.6584 216.688 -14.8908 58.6585 216.597 -17.6952 58.6587 216.498 -20.4509 58.6588 216.39 -23.1465 58.6588 216.273 -25.7912 58.6588 216.147 -28.3821 58.6588 216.013 -30.9168 58.6588 215.87 -33.3926 58.6588 215.719 -35.8094 58.6588 215.559 -38.1655 58.6588 215.391 -40.4561 58.6588 215.214 -42.6767 58.6588 215.031 -59.19 46.3673 215.226 -47.3302 46.3673 216.654 -43.1371 46.3673 217.047 -40.9955 46.3673 217.228 -36.6224 46.3673 217.559 -32.1293 46.3673 217.848 -27.5162 46.3673 218.096 -25.1647 46.3673 218.205 -22.7832 46.3673 218.303 -17.9302 46.3673 218.469 -15.4587 46.3673 218.536 -12.9573 46.3673 218.593 -7.86433 46.3673 218.676 -5.27288 46.3673 218.701 -2.65143 46.3673 218.717 0 49.6626 218.558 0 52.8096 218.21 0 55.8084 217.679 -45.2504 58.1608 214.948 -47.7084 57.6267 214.863 -50.0506 57.0566 214.775 -52.2772 56.4505 214.686 -54.388 55.8083 214.594 -56.3831 55.1301 214.499 -60.0262 53.6657 214.303 -63.2064 52.0573 214.098 -65.9238 50.3047 213.884 -68.1783 48.408 213.66 -8.18954 58.2204 216.918 -69.97 46.3673 213.427 -61.8457 35.6566 215.175 -61.9221 39.0898 215.418 -61.9543 42.6601 215.299 -53.2624 38.8713 216.354 -53.3974 42.5195 216.328 -44.5564 38.6633 217.083 -44.7508 42.3858 217.133 -35.8232 38.4649 217.632 -36.0392 42.2581 217.742 -26.9978 38.2734 218.026 -27.2021 42.135 218.182 -18.3414 38.0932 218.275 -18.5058 42.0191 218.465 -9.342122 37.913 218.405 -9.43843 41.9032 218.619 0 46.3673 218.722 -55.8515 31.6541 214.999 -55.6283 32.4701 215.236 -55.3299 33.268 215.45 -54.9 33.9463 215.631 -54.2814 34.383 215.772 -53.518 34.555 215.874 -52.73 34.5889 215.952 -51.938 34.5897 216.024 -51.1425 34.5897 216.094 -49.5137 34.5897 216.234 -47.8707 34.5897 216.368 -44.5419 34.5897 216.623 -42.8559 34.5897 216.742 -41.1555 34.5897 216.857 -37.7114 34.5897 217.071 -34.1802 34.5897 217.267 -30.6479 34.5897 217.44 -26.9392 34.5897 217.597 -23.23 34.5897 217.73 -19.52 34.5897 217.841 -15.8092 34.5897 217.931 -11.8571 34.5897 218.003 -7.905 34.5897 218.053 -3.95269 34.5897 218.082 0 34.5897 218.089 -59.0819 20.665 208.74 -58.3406 23.1866 210.747 -57.5602 25.8414 212.467 -56.7331 28.6552 213.887 -69.91851 20.665 207.903 -64.5029 20.665 208.357 -2.65143 46.3673 218.717 -5.27288 46.3673 218.701 -7.86433 46.3673 218.676 -10.4258 46.3673 218.639 -12.9573 46.3673 218.593 -15.4587 46.3673 218.536 -17.9302 46.3673 218.469 -20.3717 46.3673 218.391 -22.7832 46.3673 218.303 -25.1647 46.3673 218.205 -27.5162 46.3673 218.096 -29.8378 46.3673 217.977 -32.1293 46.3673 217.848 -34.3908 46.3673 217.709 -36.6224 46.3673 217.559 -38.8239 46.3673 217.398 -40.9955 46.3673 217.228 -43.1371 46.3673 217.047 -47.3302 46.3673 216.654 -51.4034 46.3673 216.219 -55.3567 46.3673 215.744 -59.19 46.3673 215.226 -62.9033 46.3673 214.668 -66.4966 46.3673 214.068 -70.1328 42.9147 214.039 -70.2473 39.5307 214.278 -70.3134 36.2151 214.146 -70.3311 32.9681 213.642 -70.3005 29.7896 212.765 -70.2215 26.6795 211.517 -70.0942 23.638 209.896 0 37.1246 218.366 0 39.9325 218.564 0 43.0134 218.683 -61.0971 23.2938 210.58 -61.5599 29.2012 213.602 -61.7249 32.3604 214.569 + + + + + + + + + + 0 -1 0 0 -1 4.49706e-6 0 -1 1.98389e-6 -3.59917e-5 -1 0 -7.07334e-5 -1 0 0 -1 -2.02805e-6 -1.78535e-5 -1 -7.53683e-6 -5.27641e-5 -1 9.05624e-6 -3.46088e-5 -1 0 3.38631e-5 -1 0 3.32541e-5 -1 -1.72259e-6 6.68494e-5 -1 -6.4491e-5 3.2826e-5 -1 0 3.29921e-5 -1 0 0 -1 -1.49638e-6 -1 0 0 0 1 0 0 1 1.38885e-6 -0.007599294 0.9999693 0.001953244 -5.1883e-4 0.9999999 0 -0.1236628 0.9923238 0.001037597 -0.02288943 0.9997188 0.006195366 -0.1382802 0.9903932 0 -0.4238442 0.9057351 0 -0.7533614 0.6575928 0.004303157 -0.7416804 0.6707534 0 -0.9023021 0.4306573 0.01962387 -0.9395722 0.3422757 0.007172048 -0.9538513 0.3002797 0 -0.9645664 0.2638404 0 -0.406062 0.9138456 0 0 1 -7.27782e-7 -4.57792e-4 0.9999999 0 -0.387593 0.9218306 0 -0.1253418 0.9921137 0 -0.02072262 0.9997853 -3.35714e-4 -0.7064504 0.7077627 0 -0.9645763 0.2638043 0 -0.9492374 0.314561 0 -0.8883697 0.4591237 -0.002197325 -0.9594022 0.2820416 0 -0.9594112 0.2820109 0 -0.9594101 0.282015 0 -0.9594078 0.2820228 0 -0.9594057 0.28203 0 -0.9594005 0.2820473 0 -0.9594026 0.2820404 0 -0.9594027 0.2820398 0 -0.9594016 0.2820437 0 -0.9594007 0.2820468 0 0.999359 0.03579926 0 0.9995126 0.03122043 0 0.9988791 0.04733455 0 0.998581 0.05325561 0 0.9999954 0.003051877 0 0.9999995 0.001007139 0 0.9998751 0.01580899 0 0.9998181 0.01907408 0 0.9999251 -0.01223808 0 0.9999136 -0.01315349 0 0.999161 -0.04095643 0 0.999203 -0.03991925 0 0.999641 -0.02679544 0 0.9996377 -0.02691739 0 0.9988907 -0.04709094 0 0.9982584 0.05899393 0 0.9982602 0.05896353 0 0.7514735 -0.6597634 0 0.7023758 -0.7118064 0 0.4991138 -0.8665366 0 0.4955439 -0.8685829 0 0.5917698 -0.8061071 0 0.5963706 -0.8027092 0 0.4138374 -0.9103509 0 0.4111615 -0.9115626 0 0.696809 -0.7172567 0 0.3405681 -0.940217 -0.002349972 0.3482823 -0.9373898 0 0.3069009 -0.9517407 -0.001281797 0.2771765 -0.9608094 -0.004303216 0.2772354 -0.960802 0 0.2238908 -0.9746087 -0.003326594 0.2498888 -0.9682737 -0.001281738 0.2246789 -0.974433 0 0.2011486 -0.9795581 -0.002288877 0.1969369 -0.9804121 -0.002807676 0.1899498 -0.9817938 0 0.2009381 -0.979604 0 -0.1827452 0.04391616 0.9821791 -0.1967846 0.07498443 0.9775752 -0.2087532 0.06555581 0.9757688 -0.1650171 0.0667454 0.9840297 -0.1778638 0.1027265 0.9786787 -0.1484758 0.08716273 0.9850674 -0.160501 0.128059 0.9786933 -0.1331844 0.1052597 0.9854859 -0.1456075 0.1488425 0.9780821 -0.1188725 0.1215888 0.9854367 -0.1268063 0.167366 0.9777059 -0.1054744 0.1356273 0.9851296 -0.1120053 0.1843357 0.9764606 -0.0931434 0.1479552 0.9845982 -0.0986976 0.2005082 0.9747079 -0.08166956 0.158334 0.9840023 -0.08701121 0.2139421 0.9729635 -0.07089495 0.1671815 0.9833739 -0.07586938 0.224831 0.9714397 -0.05847465 0.1756377 0.9827167 -0.06390738 0.2313973 0.9707581 -0.04199409 0.1844263 0.9819489 -0.04586935 0.2399674 0.9696967 -0.1751803 0.009674549 0.9844889 -0.1867167 0.01727384 0.982262 -0.1586381 0.02954244 0.9868948 -0.1427689 0.04699957 0.9886396 -0.1281813 0.06259518 0.9897734 -0.1141716 0.07593125 0.9905551 -0.1012939 0.08756017 0.990996 -0.08923804 0.09744769 0.9912319 -0.07748878 0.1058108 0.9913626 -0.06698858 0.1116069 0.9914921 -0.05475097 0.1172538 0.9915917 -0.03805762 0.1198495 0.9920625 -0.02047806 0.1156356 0.9930807 -0.02975583 0.1892165 0.9814845 -0.1946499 0.09170943 0.9765761 -0.1536942 0.1469495 0.9771304 -0.1731657 0.1202149 0.9775286 -0.143102 0.174933 0.9741255 -0.1130444 0.2110426 0.9709182 -0.1248534 0.1984653 0.972123 -0.09705066 0.2298697 0.9683703 -0.1067861 0.2184553 0.9699867 -0.09283965 0.2363719 0.9672173 -0.08475083 0.2472027 0.9652503 -0.07999151 0.2544409 0.9637745 -0.07248204 0.255503 0.9640874 -0.0770303 0.2550483 0.9638552 -0.06015342 0.2564533 0.9646831 -0.06646949 0.2593165 0.9635024 -0.05591082 0.2497677 0.9666903 -0.04858666 0.2657313 0.962822 -0.05395859 0.2541061 0.9656701 -0.03827136 0.2494965 0.9676192 -0.04263472 0.2632552 0.9637837 -0.03451669 0.2283415 0.9729691 -0.02536159 0.249252 0.9681065 -0.03064084 0.2408847 0.9700701 -0.03277742 0.2151591 0.9760289 -0.01837229 0.2474463 0.9687274 -0.0264905 0.2702767 0.9624182 -0.01944029 0.208564 0.9778155 -0.02002048 0.2404901 0.9704452 -0.01760923 0.2429288 0.9698843 -0.1814357 -0.01660233 0.9832627 -0.1684648 -0.003234982 0.9857023 -0.1525657 0.01477128 0.988183 -0.1372457 0.03009212 0.9900799 -0.1231437 0.04416078 0.9914059 -0.1095634 0.0556972 0.9924182 -0.09704941 0.06570667 0.9931083 -0.08035665 0.07693856 0.9937924 -0.0736733 0.08072322 0.9940102 -0.06988829 0.08267569 0.994123 -0.08670401 0.0727874 0.9935716 -0.06299155 0.08478224 0.9944064 -0.05868816 0.08575856 0.9945859 -0.05270594 0.08725321 0.9947909 -0.0471819 0.09271579 0.9945741 -0.04522889 0.09100717 0.9948226 -0.03897333 0.08655327 0.9954847 -0.01611399 0.08697921 0.9960799 -0.02359133 0.139412 0.9899535 -0.02789455 0.08600324 0.9959043 -0.02096652 0.07855588 0.9966893 -0.01382511 0.06994968 0.9974548 -0.03350949 0.08703923 0.9956412 -0.02813875 0.09140515 0.9954162 -0.0159918 0.07788383 0.9968343 -0.01092565 0.081088 0.9966471 -0.004882931 0.05209523 0.9986302 -0.001861631 0.04968482 0.9987633 -0.09588986 -0.04974555 0.9941481 -0.1277233 -0.02023428 0.9916035 -0.1199718 -0.1272659 0.9845864 -0.1064795 0.04513704 0.99329 -0.1395038 0.07758009 0.9871778 -0.08215796 0.01968491 0.9964249 -0.07495546 -0.06427371 0.9951134 -0.06085437 4.883e-4 0.9981466 -0.05563622 -0.07345932 0.9957453 -0.04208624 -0.01355057 0.9990222 -0.03875935 -0.07867842 0.9961464 -0.02606326 -0.02377432 0.9993776 -0.02386605 -0.08105915 0.9964236 -0.01156669 -0.03140413 0.9994398 -0.01068168 -0.08130288 0.9966323 -0.07461977 -0.5798978 0.8112648 -0.07986855 -0.5180622 0.8516058 -0.06927824 -0.5583158 0.826731 -0.08188325 -0.5385437 0.8386095 -0.06283932 -0.6041915 0.7943575 -0.1120661 -0.4606553 0.880476 -0.1066327 -0.3693994 0.9231325 -0.09503686 -0.4297413 0.8979368 -0.1115462 -0.3177313 0.9415967 -0.1148439 -0.2106744 0.9707869 -0.1158517 -0.2398827 0.9638645 -0.09918725 -0.2788841 0.9551888 -0.1216193 -0.0967766 0.9878478 -0.07178026 -0.5623704 0.8237641 -0.1015694 -0.2337194 0.9669844 -0.09622621 -0.367967 0.9248464 -0.1073973 -0.1751806 0.9786612 -0.1077333 -0.1991693 0.9740253 -0.0915879 -0.1043449 0.9903151 -0.08829241 -0.1036436 0.9906879 -0.09580063 -0.1079169 0.9895334 -0.1018416 -0.1435609 0.9843875 -0.129431 0.01528996 0.9914706 -0.1204571 0.09466886 0.9881943 -0.1372758 0.121711 0.9830269 -0.149633 0.1134378 0.9822127 -0.1578776 0.1496983 0.9760456 -0.178505 0.1798783 0.9673572 -0.1567485 0.1265647 0.9794955 -0.08206635 -0.09964549 0.9916329 -0.08588182 -0.102698 0.9909983 -0.0817905 -0.1053205 0.9910691 -0.07294017 -0.1121569 0.9910099 -0.1103578 0.08524042 0.9902299 -0.09463918 0.06399816 0.9934524 -0.08749908 0.05694913 0.9945355 -0.06814843 -0.1114241 0.9914336 -0.06479257 -0.1105411 0.9917574 -0.05099713 -0.1150564 0.9920491 -0.05926859 -0.1146612 0.9916351 -0.0459004 -0.1132556 0.9925051 -0.0318011 -0.1128909 0.9930984 -0.03875887 -0.116185 0.9924712 -0.05127251 0.01910507 0.998502 -0.0574969 0.02896207 0.9979256 -0.0719648 0.0382713 0.9966726 -0.07953369 0.05124217 0.9955143 -0.02746731 -0.1137757 0.9931267 -0.01559519 -0.1090748 0.9939112 -0.009247183 -0.1092577 0.9939705 -0.01989841 -0.1119135 0.9935188 -0.004577875 -0.1057496 0.9943823 -0.002349913 -0.08957237 0.9959776 -0.001739501 -0.1086156 0.9940824 -0.002441465 -0.05432379 0.9985204 -0.07019406 0.03442561 0.9969393 -0.06347954 0.03344881 0.9974225 -0.04886054 0.01666325 0.9986667 -0.0355547 0.006500542 0.9993466 -0.04294079 0.01522916 0.9989616 -0.03476071 0.002075254 0.9993936 -0.02929842 0.002960324 0.9995663 -0.02407944 5.49341e-4 0.99971 -0.01858615 -0.006317436 0.9998074 -0.003204464 -0.02487307 0.9996855 -0.006500542 -0.0126959 0.9998983 -0.01654124 -0.008117973 0.9998303 -0.01150566 -0.008697926 0.9998961 -0.004882991 -0.01397764 0.9998905 -0.001861631 -0.01162779 0.9999307 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 42.6767 58.6588 220.979 38.3598 59.3745 221.105 33.7522 59.9997 221.226 28.8537 60.5344 221.341 23.6645 60.9786 221.45 18.1846 61.3322 221.553 12.4138 61.5954 221.65 6.35229 61.768 221.742 0 61.8501 221.827 23.0269 59.4584 221.985 17.6724 59.7826 222.103 12.0498 60.0268 222.213 6.15895 60.1907 222.313 0 60.2746 222.404 0 58.6588 222.913 40.4561 58.6588 221.163 38.1655 58.6588 221.339 35.8094 58.6588 221.507 33.3926 58.6588 221.667 30.9168 58.6588 221.818 28.3821 58.6588 221.961 25.7912 58.6588 222.096 23.1465 58.6588 222.221 20.4509 58.6588 222.338 17.6952 58.6587 222.446 14.8908 58.6585 222.545 12.025 58.6584 222.636 9.096071 58.6585 222.718 6.11288 58.6586 222.792 3.07951 58.6588 222.857 + + + + + + + + + + 0.04303246 0.3026923 0.9521164 0.05191367 0.3031198 0.9515374 0.04397761 0.3156563 0.9478541 0.03528058 0.3085224 0.9505626 0.03595167 0.3242059 0.9453032 0.02810782 0.313703 0.9491051 0.02832162 0.3322603 0.9427625 0.02148526 0.3182507 0.9477632 0.02124106 0.338454 0.9407433 0.01742631 0.3220973 0.9465461 0.01699942 0.3438345 0.9388764 0.07080352 0.2943534 0.9530704 0.07800751 0.305377 0.9490309 0.07858741 0.3070251 0.9484512 0.07016438 0.2927433 0.9536133 0.06070339 0.2985728 0.9524544 0.06540215 0.2989029 0.9520397 0.0601533 0.297257 0.9529008 0.05536228 0.3017458 0.9517797 0.04895257 0.3012537 0.9522867 0.03164881 0.2961317 0.9546228 0.02469027 0.2982675 0.954163 0.03900361 0.2946941 0.9547954 0.04960745 0.3022038 0.9519518 0.04348975 0.2887724 0.9564096 0.03558516 0.2923723 0.9556424 0.02850484 0.2947233 0.9551575 0.02200442 0.2977162 0.9544009 0.01840293 0.3010088 0.9534439 0.01733475 0.3003981 0.9536565 0.053707 0.3012005 0.9520472 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

9 0 0 3 1 1 4 2 2 10 3 3 9 0 4 4 2 5 10 3 6 4 2 7 5 4 8 11 5 9 10 3 10 5 4 11 11 5 12 5 4 13 6 6 14 12 7 15 11 5 16 6 6 17 12 7 18 6 6 19 7 8 20 13 9 21 12 7 22 7 8 23 13 9 24 7 8 25 8 10 26 1 11 27 15 12 28 0 13 29 16 14 30 15 12 31 1 11 32 2 15 33 17 16 34 1 11 35 16 14 36 1 11 37 17 16 38 18 17 39 17 16 40 2 15 41 3 1 42 19 18 43 2 15 44 21 19 45 3 1 46 9 0 47 25 20 48 10 3 49 11 5 50 27 21 51 11 5 52 12 7 53 10 3 54 23 22 55 9 0 56 18 17 57 2 15 58 19 18 59 3 23 60 21 23 61 20 23 62 22 24 63 21 19 64 9 0 65 10 3 66 24 25 67 23 22 68 22 24 69 9 0 70 23 22 71 10 3 72 25 20 73 24 25 74 11 5 75 27 21 76 26 26 77 26 26 78 25 20 79 11 5 80 12 7 81 28 27 82 27 21 83 12 7 84 13 9 85 29 28 86 29 28 87 13 9 88 14 29 89 12 7 90 29 28 91 28 27 92 19 30 93 3 30 94 20 30 95

+
+
+
+ + + + 69.2208 142.507 14.1685 69.1972 145.684 -2.16074 69.1767 147.78 -18.8396 69.1594 148.794 -35.8679 69.1453 148.728 -53.2459 69.1343 147.58 -70.97351 69.12641 145.351 -89.0506 69.1217 142.041 -107.477 69.1202 137.65 -126.254 59.1157 142.981 14.2629 59.345 146.132 -2.15003 59.5772 148.213 -18.8939 59.812 149.224 -35.9688 60.0497 149.164 -53.3746 60.2902 148.034 -71.1114 60.5334 145.834 -89.1791 60.7794 142.563 -107.578 49.1888 143.431 14.3822 49.6697 146.546 -2.11871 50.153 148.603 -18.9312 50.6387 149.6 -36.0554 51.1268 149.538 -53.4911 51.6173 148.417 -71.23851 52.1102 146.238 -89.2974 52.6055 142.998 -107.668 39.5485 143.849 14.528 40.2474 146.92 -2.06487 40.9483 148.943 -18.9494 41.6513 149.919 -36.1255 42.3562 149.847 -53.5933 43.0631 148.728 -71.3528 43.7721 146.561 -89.4039 44.483 143.347 -107.747 29.6216 144.258 14.7158 30.4747 147.272 -1.9801 31.3293 149.251 -18.9456 32.1855 150.195 -36.1807 33.0433 150.105 -53.6854 33.9026 148.98 -71.4596 34.7636 146.821 -89.5035 35.626 143.627 -107.817 19.6997 144.637 14.9515 20.5695 147.584 -1.85814 21.4404 149.509 -18.9134 22.3124 150.414 -36.2144 23.1855 150.299 -53.7609 24.0597 149.162 -71.5531 24.935 147.005 -89.5909 25.8114 143.827 -107.874 9.78945 144.978 15.2499 10.4327 147.847 -1.68766 11.0765 149.711 -18.8444 11.721 150.57 -36.2203 12.366 150.423 -53.8155 13.0115 149.27 -71.6299 13.6577 147.112 -89.6635 14.3044 143.949 -107.916 0 145.263 15.6307 0 148.047 -1.45285 0 149.843 -18.7261 0 150.651 -36.1891 0 150.471 -53.8418 0 149.302 -71.6842 0 147.145 -89.7163 0 144 -107.938 0 139.866 -126.35 10.3745 139.827 -126.335 12.8021 139.812 -126.332 15.1713 139.794 -126.329 17.4859 139.773 -126.325 19.75 139.75 -126.322 24.142 139.692 -126.316 26.2779 139.658 -126.313 28.3789 139.62 -126.31 30.4491 139.578 -126.307 32.4922 139.531 -126.305 36.5132 139.423 -126.299 44.4095 139.142 -126.288 52.3017 138.763 -126.277 60.4569 138.271 -126.266 64.7094 137.978 -126.26 + + + + + + + + + + 0.04394686 0.9866998 0.1564998 0.04654163 0.9810369 0.1881503 0.04675501 0.9807567 0.1895531 0.04480254 0.986481 0.1576331 0.04260492 0.9948683 0.09177154 0.04443579 0.9947402 0.0922898 0.04315346 0.9986644 0.02841293 0.04590022 0.9985437 0.0283519 0.04529041 0.9984341 -0.03283858 0.04883056 0.9982499 -0.03335738 0.04886049 0.9946061 -0.09149521 0.05313318 0.9943024 -0.09241092 0.05353116 0.9876714 -0.1471039 0.05847471 0.9872041 -0.1483538 0.05868887 0.9780567 -0.1999023 0.06424295 0.97747 -0.2010607 0.04144477 0.9871061 0.1546092 0.04513818 0.9815961 0.185558 0.03872877 0.995108 0.09088605 0.03796523 0.9988769 0.02835184 0.03891134 0.9987249 -0.03216671 0.04129183 0.9950633 -0.09024387 0.04474061 0.9883531 -0.1454529 0.0491656 0.9789487 -0.1980969 0.03848457 0.9876286 0.1520156 0.04339879 0.982303 0.1822018 0.03427326 0.9954205 0.0892387 0.03210604 0.9991037 0.02758926 0.03177016 0.9989765 -0.03219747 0.03289997 0.9954228 -0.08972722 0.03512746 0.9888799 -0.1445079 0.03827065 0.9797177 -0.1966943 0.03494429 0.9882985 0.1484752 0.04126167 0.9832006 0.1778038 0.02914565 0.9958051 0.08673501 0.02557462 0.9993332 0.0260629 0.02395761 0.9991696 -0.03296077 0.02386552 0.9956697 -0.08984678 0.02493387 0.9892386 -0.1441711 0.02697879 0.9803012 -0.1956574 0.0305491 0.989108 0.1439868 0.03842318 0.9842933 0.1723093 0.02319467 0.9962429 0.08343988 0.01846373 0.9995462 0.02380448 0.01583939 0.9992861 -0.03430342 0.01486289 0.9957866 -0.09048998 0.01507633 0.9894246 -0.1442631 0.01614451 0.9806368 -0.195169 0.02514773 0.9900395 0.1385262 0.03466951 0.985579 0.1656263 0.01644992 0.9967038 0.07944208 0.01095634 0.9997182 0.02105826 0.007934927 0.9993199 -0.03601258 0.006714105 0.9957969 -0.09134262 0.006714165 0.9894855 -0.1444767 0.007446706 0.9807713 -0.1950189 0.02407974 0.9905673 0.1348956 0.03494435 0.9863774 0.1607441 0.01416063 0.9969542 0.07669347 0.007904529 0.9997857 0.01913565 0.004486322 0.9992977 -0.03720313 0.003051817 0.9957644 -0.09189182 0.002960324 0.9894991 -0.1445092 0.003662288 0.9808292 -0.1948352 0.06903362 0.9717509 -0.2256869 0.06250393 0.972657 -0.2236775 0.04071271 0.9744812 -0.220746 0.02414065 0.9752396 -0.2198294 0.03088498 0.9749535 -0.2202541 0.05261439 0.9736415 -0.2219327 0.07251274 0.9711704 -0.2270907 0.01910507 0.9753373 -0.2198919 0.0215466 0.9753964 -0.2194032 0.01690769 0.9753364 -0.2200748 0.01156675 0.9755177 -0.2196166 0.01440507 0.9753974 -0.2199832 0.004944086 0.9756358 -0.219341 0.009766101 0.9755445 -0.2195852 0.008453905 0.9755285 -0.2197106 0.006958305 0.9755412 -0.2197065 0.003967463 0.9757017 -0.2190674 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 82.888 80.7262 79.40441 82.64231 82.3521 83.0812 82.3857 83.9104 86.8219 82.1203 85.3973 90.61441 81.3145 89.32061 101.954 81.0411 90.4919 105.846 80.7735 91.57431 109.747 80.5278 92.5185 113.479 80.2857 93.40921 117.418 80.07061 94.1773 121.387 79.9049 94.7784 125.385 79.8473 95.0935 129.28 82.41481 82.67961 81.0401 82.178 83.982 85.0073 81.9275 85.23571 88.9972 81.66471 86.4378 92.9986 81.3976 87.56021 96.9086 81.1268 88.6098 100.739 80.83602 89.6509 104.731 80.5399 90.6281 108.687 80.23902 91.54351 112.619 79.9486 92.3564 116.35 79.6411 93.1435 120.259 79.3329 93.85231 124.169 79.03 94.4579 128.077 78.7558 94.8855 131.859 82.00331 84.37641 82.8751 81.7724 85.40541 87.00141 81.5256 86.3993 91.11811 81.2638 87.35601 95.2148 80.9944 88.2532 99.18801 80.7174 89.09661 103.053 80.4149 89.9383 107.052 80.1008 90.7346 110.986 79.7737 91.4878 114.868 79.4485 92.1654 118.526 79.0904 92.8331 122.329 78.7109 93.4513 126.101 78.3031 94.00701 129.834 77.8637 94.45401 133.401 81.6137 85.9822 84.8566 81.3871 86.75701 89.0785 81.1429 87.5078 93.2624 80.8814 88.2334 97.3981 80.6093 88.9168 101.383 80.3264 89.5624 105.234 80.0133 90.2106 109.193 79.6831 90.8284 113.061 79.3328 91.4181 116.851 78.9771 91.95481 120.396 78.5749 92.49211 124.051 78.1333 93.00151 127.642 77.6346 93.47821 131.154 77.0526 93.8973 134.446 81.2488 87.4854 86.8766 81.0255 88.0253 91.1509 80.7831 88.5506 95.3619 80.5213 89.0605 99.4998 80.2465 89.5432 103.463 79.958 90.00201 107.271 79.6352 90.4657 111.161 79.2905 90.9115 114.936 78.9196 91.3414 118.61 78.53701 91.7377 122.019 78.0959 92.1411 125.505 77.6 92.5331 128.893 77.0218 92.9145 132.158 76.3155 93.2762 135.146 80.8925 88.9524 88.9715 80.67201 89.2653 93.26921 80.4308 89.5719 97.48001 80.16841 89.87191 101.594 79.8907 90.1585 105.513 79.59671 90.4335 109.255 79.26461 90.7149 113.054 78.9062 90.98902 116.716 78.5161 91.25801 120.253 78.1083 91.51081 123.508 77.6313 91.77481 126.805 77.0852 92.0405 129.969 76.4337 92.3128 132.964 75.6128 92.5953 135.621 80.5446 90.38491 91.1152 80.3263 90.4779 95.4136 80.0859 90.5721 99.60301 79.8226 90.66761 103.674 79.5419 90.7624 107.529 79.2425 90.857 111.188 78.9015 90.9582 114.88 78.5301 91.06201 118.413 78.12181 91.1696 121.798 77.6905 91.2773 124.886 77.1799 91.3983 127.979 76.5869 91.53141 130.905 75.86721 91.6845 133.614 74.94001 91.87091 135.919 80.20391 91.7871 93.2939 79.9873 91.6665 97.57511 79.7475 91.55371 101.726 79.483 91.4494 105.738 79.1994 91.3561 109.515 78.8946 91.2733 113.079 78.5449 91.1966 116.65 78.1611 91.13111 120.042 77.73571 91.0776 123.264 77.2821 91.039 126.174 76.7398 91.0142 129.052 76.1027 91.01 131.727 75.3191 91.03601 134.138 74.2922 91.1133 136.075 79.8473 93.2549 95.64791 79.6322 92.91191 99.8945 79.3926 92.5833 103.989 79.1267 92.27021 107.924 78.8398 91.9798 111.605 78.52941 91.71051 115.055 78.1708 91.4462 118.487 77.7743 91.2014 121.717 77.3313 90.9761 124.755 76.85511 90.7807 127.465 76.2808 90.5981 130.104 75.5993 90.4432 132.502 74.7511 90.3266 134.584 73.6241 90.27571 136.115 82.2976 83.34 83.0302 82.4207 83.1301 83.9414 82.7661 81.5515 81.2433 82.6618 81.6603 80.1082 82.5423 82.40602 82.0283 78.8782 94.7152 130.115 79.3148 95.0415 130.646 79.8543 94.9942 127.482 79.4803 94.6578 126.782 79.37931 94.9005 128.862 75.4093 91.7779 134.909 75.27941 92.2446 135.787 76.02571 92.4612 134.436 76.1533 92.0074 133.301 75.7204 92.1297 134.687 74.8144 91.0684 135.249 74.6187 91.5021 136.012 75.5956 91.3679 133.886 75.11431 91.4319 135.091 74.1994 90.2884 135.491 73.9607 90.7045 136.11 75.0376 90.68891 134.371 74.5094 90.68721 135.382 81.8113 86.5749 93.8176 81.8304 86.57421 93.81781 81.8378 86.57431 93.81781 81.8297 86.57421 93.81781 81.8146 86.5747 93.81771 81.79821 86.5763 93.8172 + + + + + + + + + + 0.9416955 0.3329932 -0.04822003 0.9288083 0.3615864 -0.08105784 0.9499439 0.3069632 -0.05813926 0.9589682 0.2816904 -0.03210598 0.9227107 0.3725146 -0.09918665 0.9432843 0.3221901 -0.0800516 0.9575291 0.2830319 -0.05505597 0.9624533 0.2680196 -0.04300153 0.9645691 0.2621015 -0.03015327 0.8899271 0.44887 -0.08090519 0.8576478 0.4990484 -0.1240601 0.6973856 0.6977213 -0.163825 0.3251519 0.8879266 -0.3253656 -0.8584314 0.480182 -0.1803352 -0.9061601 0.3837851 -0.1777161 -0.8553295 0.4812564 -0.1918433 -0.7714709 0.6009282 -0.2090888 -0.8855835 0.4337123 -0.1662395 -0.9118417 0.3757174 -0.1654731 -0.8873525 0.4323688 -0.1601965 -0.9020146 0.4011395 -0.1595524 -0.8702867 0.4665476 -0.1579065 -0.8741289 0.4598928 -0.1561968 -0.8139246 0.5607958 -0.1517735 -0.8114063 0.5647525 -0.1505803 -0.6836537 0.716492 -0.1387694 -0.6525377 0.7455307 -0.1355677 -0.7379914 0.6583966 -0.1479279 -0.5797683 0.8063713 -0.1167654 -0.4239501 0.9017371 -0.08447867 -0.5155957 0.8504246 -0.1045901 -0.6633343 0.7354816 -0.1380382 -0.2346278 0.970556 -0.05450636 -0.4542742 0.8854151 -0.0983625 0.9635719 0.2668874 -0.01733469 0.9541519 0.2987828 -0.0179758 0.9233624 0.3824378 -0.03381538 0.8442572 0.5317695 -0.0667153 0.6006802 0.7883126 -0.1332166 0.1525964 0.9530257 -0.2616418 -0.02154606 0.9772344 -0.2110663 -0.4935213 0.8296871 -0.2608757 -0.5913776 0.7793781 -0.2069836 -0.7877353 0.588688 -0.1814376 -0.8519998 0.4958733 -0.1679462 -0.8711809 0.4629512 -0.1634628 -0.8686317 0.467429 -0.1642837 -0.8454462 0.5067428 -0.1686192 -0.7710464 0.6145726 -0.1666979 -0.6927287 0.7013046 -0.1682227 0.9639982 0.2658495 0.005615413 0.9748545 0.2224873 0.01257401 0.9448086 0.3276219 -7.93495e-4 0.9015318 0.432424 -0.01580882 0.7847282 0.6178823 -0.0492267 0.4244865 0.8979253 -0.1163683 -0.2914862 0.940227 -0.1760942 -0.6863097 0.7065438 -0.172554 -0.8141291 0.5570051 -0.164132 -0.8560596 0.4903497 -0.16346 -0.8665677 0.4694798 -0.1692605 -0.8557568 0.4844303 -0.1816805 -0.8211142 0.5331367 -0.203806 -0.7383551 0.6424327 -0.2052122 0.9710605 0.2376837 0.02340823 0.9787496 0.2033492 0.02642959 0.958412 0.2844961 0.02255338 0.9325383 0.3606429 0.01757889 0.8706353 0.4919164 0.003540277 0.6879561 0.7250365 -0.03222787 0.1109365 0.9879912 -0.1075489 -0.5293259 0.8351898 -0.1492391 -0.7663316 0.6235638 -0.1546092 -0.8402482 0.5178458 -0.1606823 -0.8642981 0.4722205 -0.1731953 -0.8618056 0.4681364 -0.1952933 -0.8359187 0.4968208 -0.2332576 -0.7816016 0.5591152 -0.2765667 0.9762835 0.2132387 0.03741669 0.9818843 0.1856769 0.03778237 0.9676743 0.2489456 0.04040747 0.9513882 0.3051559 0.04171895 0.9162807 0.3986124 0.03921729 0.8231334 0.5672299 0.02649062 0.4853795 0.8740737 -0.02005118 -0.2703647 0.9574921 -0.1005589 -0.6972168 0.7037479 -0.136483 -0.8219499 0.5481904 -0.1545504 -0.8620349 0.4751171 -0.1765209 -0.8660956 0.4537549 -0.2097258 -0.8380771 0.4824414 -0.25471 -0.802837 0.5205959 -0.290573 -0.7589899 0.5623832 -0.3281154 0.9801674 0.1920843 0.04873824 0.984393 0.1695334 0.04721301 0.9741383 0.2193101 0.05438494 0.9634521 0.2610894 0.05993914 0.9424369 0.3280828 0.0646094 0.8925976 0.4460089 0.06592166 0.7211065 0.6908926 0.05169939 0.1085875 0.9939211 -0.01815897 -0.5851354 0.8043208 -0.1033669 -0.7984516 0.5846319 -0.143808 -0.8598954 0.4779231 -0.1793585 -0.864834 0.4507745 -0.2210534 -0.8387259 0.4693837 -0.2760758 -0.835762 0.4648955 -0.2921886 -0.7486025 0.5387838 -0.386402 -0.7576089 0.549712 -0.351917 -0.802383 0.4929783 -0.3363837 -0.7959886 0.4806999 -0.3678723 0.9831143 0.173532 0.05807799 0.9863668 0.1550354 0.05517792 0.9787598 0.1941955 0.06570839 0.9715098 0.2250773 0.07422208 0.9583625 0.2730548 0.08356142 0.9304137 0.3544215 0.09335875 0.8450146 0.5252959 0.1000723 0.494563 0.8657675 0.0765115 -0.3824308 0.9230405 -0.04174965 -0.7642042 0.6326658 -0.125404 -0.8580249 0.4802852 -0.1819877 -0.8667242 0.4367955 -0.2408296 -0.8354682 0.4492759 -0.3164555 -0.8296008 0.4454263 -0.3366867 -0.715857 0.5203514 -0.4656 -0.7347183 0.5301483 -0.4232397 -0.7862103 0.4693273 -0.4020016 -0.7719162 0.4575098 -0.4413958 0.9858936 0.153115 0.06760007 0.9880344 0.1414573 0.06146597 0.982996 0.1666048 0.07721382 0.9785489 0.1860778 0.08841514 0.971257 0.2152482 0.1016272 0.9578061 0.2622187 0.117681 0.923379 0.358261 0.1379147 0.79344 0.5880453 0.1570217 0.04248189 0.9960666 0.07776141 -0.7447836 0.6571028 -0.1162465 -0.8796492 0.4231154 -0.2172343 -0.8754074 0.3840818 -0.2935014 -0.825201 0.4267461 -0.3700419 -0.8137324 0.390218 -0.4307779 -0.6816384 0.4749342 -0.5566027 -0.6892396 0.5111616 -0.513481 -0.7516359 0.4450973 -0.4867565 -0.7233321 0.3963814 -0.5653959 0 0 1 -0.0415945 -0.0415945 0.9982685 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

13 0 0 125 1 1 128 2 2 13 0 3 128 2 4 124 3 5 125 1 6 1 4 7 126 5 8 125 1 9 126 5 10 128 2 11 128 2 12 126 5 13 0 6 14 128 2 15 0 6 16 127 7 17 124 3 18 128 2 19 127 7 20 124 3 21 127 7 22 12 8 23 125 1 24 13 0 25 14 9 26 2 10 27 1 4 28 125 1 29 14 9 30 2 10 31 125 1 32 15 11 33 3 12 34 2 10 35 15 11 36 2 10 37 14 9 38 19 13 39 5 14 40 4 15 41 19 13 42 4 15 43 18 16 44 20 17 45 6 18 46 5 14 47 20 17 48 5 14 49 19 13 50 21 19 51 7 20 52 6 18 53 21 19 54 6 18 55 20 17 56 22 21 57 8 22 58 7 20 59 22 21 60 7 20 61 21 19 62 23 23 63 9 24 64 8 22 65 23 23 66 8 22 67 22 21 68 132 25 69 10 26 70 9 24 71 23 23 72 24 27 73 132 25 74 9 24 75 23 23 76 132 25 77 25 28 78 130 29 79 133 30 80 25 28 81 133 30 82 129 31 83 130 29 84 11 32 85 131 33 86 130 29 87 131 33 88 133 30 89 133 30 90 131 33 91 10 26 92 133 30 93 10 26 94 132 25 95 129 31 96 133 30 97 132 25 98 129 31 99 132 25 100 24 27 101 124 3 102 12 8 103 26 34 104 27 35 105 13 0 106 124 3 107 26 34 108 27 35 109 124 3 110 28 36 111 14 9 112 13 0 113 28 36 114 13 0 115 27 35 116 29 37 117 15 11 118 14 9 119 29 37 120 14 9 121 28 36 122 30 38 123 16 39 124 15 11 125 30 38 126 15 11 127 29 37 128 31 40 129 17 41 130 16 39 131 31 40 132 16 39 133 30 38 134 32 42 135 18 16 136 17 41 137 32 42 138 17 41 139 31 40 140 33 43 141 19 13 142 18 16 143 33 43 144 18 16 145 32 42 146 34 44 147 20 17 148 19 13 149 34 44 150 19 13 151 33 43 152 35 45 153 21 19 154 20 17 155 35 45 156 20 17 157 34 44 158 36 46 159 22 21 160 21 19 161 36 46 162 21 19 163 35 45 164 37 47 165 23 23 166 22 21 167 37 47 168 22 21 169 36 46 170 38 48 171 24 27 172 23 23 173 38 48 174 23 23 175 37 47 176 129 31 177 24 27 178 38 48 179 39 49 180 25 28 181 129 31 182 38 48 183 39 49 184 129 31 185 41 50 186 27 35 187 26 34 188 41 50 189 26 34 190 40 51 191 42 52 192 28 36 193 27 35 194 42 52 195 27 35 196 41 50 197 43 53 198 29 37 199 28 36 200 43 53 201 28 36 202 42 52 203 44 54 204 30 38 205 29 37 206 44 54 207 29 37 208 43 53 209 45 55 210 31 40 211 30 38 212 45 55 213 30 38 214 44 54 215 46 56 216 32 42 217 31 40 218 46 56 219 31 40 220 45 55 221 47 57 222 33 43 223 32 42 224 47 57 225 32 42 226 46 56 227 48 58 228 34 44 229 33 43 230 48 58 231 33 43 232 47 57 233 49 59 234 35 45 235 34 44 236 49 59 237 34 44 238 48 58 239 50 60 240 36 46 241 35 45 242 50 60 243 35 45 244 49 59 245 51 61 246 37 47 247 36 46 248 51 61 249 36 46 250 50 60 251 52 62 252 38 48 253 37 47 254 52 62 255 37 47 256 51 61 257 53 63 258 39 49 259 38 48 260 53 63 261 38 48 262 52 62 263 55 64 264 41 50 265 40 51 266 55 64 267 40 51 268 54 65 269 56 66 270 42 52 271 41 50 272 56 66 273 41 50 274 55 64 275 57 67 276 43 53 277 42 52 278 57 67 279 42 52 280 56 66 281 58 68 282 44 54 283 43 53 284 58 68 285 43 53 286 57 67 287 59 69 288 45 55 289 44 54 290 59 69 291 44 54 292 58 68 293 60 70 294 46 56 295 45 55 296 60 70 297 45 55 298 59 69 299 61 71 300 47 57 301 46 56 302 61 71 303 46 56 304 60 70 305 62 72 306 48 58 307 47 57 308 62 72 309 47 57 310 61 71 311 63 73 312 49 59 313 48 58 314 63 73 315 48 58 316 62 72 317 64 74 318 50 60 319 49 59 320 64 74 321 49 59 322 63 73 323 65 75 324 51 61 325 50 60 326 65 75 327 50 60 328 64 74 329 66 76 330 52 62 331 51 61 332 66 76 333 51 61 334 65 75 335 67 77 336 53 63 337 52 62 338 67 77 339 52 62 340 66 76 341 69 78 342 55 64 343 54 65 344 69 78 345 54 65 346 68 79 347 70 80 348 56 66 349 55 64 350 70 80 351 55 64 352 69 78 353 71 81 354 57 67 355 56 66 356 71 81 357 56 66 358 70 80 359 72 82 360 58 68 361 57 67 362 72 82 363 57 67 364 71 81 365 73 83 366 59 69 367 58 68 368 73 83 369 58 68 370 72 82 371 74 84 372 60 70 373 59 69 374 74 84 375 59 69 376 73 83 377 75 85 378 61 71 379 60 70 380 75 85 381 60 70 382 74 84 383 76 86 384 62 72 385 61 71 386 76 86 387 61 71 388 75 85 389 77 87 390 63 73 391 62 72 392 77 87 393 62 72 394 76 86 395 78 88 396 64 74 397 63 73 398 78 88 399 63 73 400 77 87 401 79 89 402 65 75 403 64 74 404 79 89 405 64 74 406 78 88 407 80 90 408 66 76 409 65 75 410 80 90 411 65 75 412 79 89 413 136 91 414 81 92 415 67 77 416 66 76 417 80 90 418 136 91 419 67 77 420 66 76 421 136 91 422 83 93 423 69 78 424 68 79 425 83 93 426 68 79 427 82 94 428 84 95 429 70 80 430 69 78 431 84 95 432 69 78 433 83 93 434 85 96 435 71 81 436 70 80 437 85 96 438 70 80 439 84 95 440 86 97 441 72 82 442 71 81 443 86 97 444 71 81 445 85 96 446 87 98 447 73 83 448 72 82 449 87 98 450 72 82 451 86 97 452 88 99 453 74 84 454 73 83 455 88 99 456 73 83 457 87 98 458 89 100 459 75 85 460 74 84 461 89 100 462 74 84 463 88 99 464 90 101 465 76 86 466 75 85 467 90 101 468 75 85 469 89 100 470 91 102 471 77 87 472 76 86 473 91 102 474 76 86 475 90 101 476 92 103 477 78 88 478 77 87 479 92 103 480 77 87 481 91 102 482 93 104 483 79 89 484 78 88 485 93 104 486 78 88 487 92 103 488 137 105 489 80 90 490 79 89 491 93 104 492 94 106 493 137 105 494 79 89 495 93 104 496 137 105 497 95 107 498 135 108 499 138 109 500 95 107 501 138 109 502 134 110 503 135 108 504 81 92 505 136 91 506 135 108 507 136 91 508 138 109 509 138 109 510 136 91 511 80 90 512 138 109 513 80 90 514 137 105 515 134 110 516 138 109 517 137 105 518 134 110 519 137 105 520 94 106 521 97 111 522 83 93 523 82 94 524 97 111 525 82 94 526 96 112 527 98 113 528 84 95 529 83 93 530 98 113 531 83 93 532 97 111 533 99 114 534 85 96 535 84 95 536 99 114 537 84 95 538 98 113 539 100 115 540 86 97 541 85 96 542 100 115 543 85 96 544 99 114 545 101 116 546 87 98 547 86 97 548 101 116 549 86 97 550 100 115 551 102 117 552 88 99 553 87 98 554 102 117 555 87 98 556 101 116 557 103 118 558 89 100 559 88 99 560 103 118 561 88 99 562 102 117 563 104 119 564 90 101 565 89 100 566 104 119 567 89 100 568 103 118 569 105 120 570 91 102 571 90 101 572 105 120 573 90 101 574 104 119 575 106 121 576 92 103 577 91 102 578 106 121 579 91 102 580 105 120 581 107 122 582 93 104 583 92 103 584 107 122 585 92 103 586 106 121 587 141 123 588 94 106 589 93 104 590 107 122 591 108 124 592 141 123 593 93 104 594 107 122 595 141 123 596 109 125 597 140 126 598 142 127 599 109 125 600 142 127 601 139 128 602 140 126 603 95 107 604 134 110 605 140 126 606 134 110 607 142 127 608 142 127 609 134 110 610 94 106 611 142 127 612 94 106 613 141 123 614 139 128 615 142 127 616 141 123 617 139 128 618 141 123 619 108 124 620 111 129 621 97 111 622 96 112 623 111 129 624 96 112 625 110 130 626 112 131 627 98 113 628 97 111 629 112 131 630 97 111 631 111 129 632 113 132 633 99 114 634 98 113 635 113 132 636 98 113 637 112 131 638 114 133 639 100 115 640 99 114 641 114 133 642 99 114 643 113 132 644 115 134 645 101 116 646 100 115 647 115 134 648 100 115 649 114 133 650 116 135 651 102 117 652 101 116 653 116 135 654 101 116 655 115 134 656 117 136 657 103 118 658 102 117 659 117 136 660 102 117 661 116 135 662 118 137 663 104 119 664 103 118 665 118 137 666 103 118 667 117 136 668 119 138 669 105 120 670 104 119 671 119 138 672 104 119 673 118 137 674 120 139 675 106 121 676 105 120 677 120 139 678 105 120 679 119 138 680 121 140 681 107 122 682 106 121 683 121 140 684 106 121 685 120 139 686 145 141 687 108 124 688 107 122 689 121 140 690 122 142 691 145 141 692 107 122 693 121 140 694 145 141 695 123 143 696 144 144 697 146 145 698 123 143 699 146 145 700 143 146 701 144 144 702 109 125 703 139 128 704 144 144 705 139 128 706 146 145 707 146 145 708 139 128 709 108 124 710 146 145 711 108 124 712 145 141 713 143 146 714 146 145 715 145 141 716 143 146 717 145 141 718 122 142 719 149 147 720 150 147 721 148 147 722 151 148 723 152 148 724 147 148 725

+
+
+
+ + + + 82.888 80.7262 79.40441 82.05381 85.7523 91.55561 81.17591 89.9229 103.918 80.3427 93.2027 116.456 79.8473 95.0935 129.28 82.00331 84.37641 82.8751 81.1971 87.5859 96.2201 80.2579 90.34571 109.044 79.1794 92.6748 121.406 77.8637 94.45401 133.401 81.2568 87.4523 86.83071 80.4617 89.16661 100.461 79.47261 90.6892 113.038 78.21791 92.0513 124.634 76.3315 93.2908 135.133 80.5496 90.3641 91.08351 79.75901 90.6805 104.628 78.72351 91.00801 116.657 77.3171 91.373 127.224 74.9497 91.8818 135.916 79.8473 93.2549 95.64791 79.05701 92.1954 108.868 77.9759 91.3202 120.142 76.429 90.6402 129.482 73.6241 90.27571 136.115 + + + + + + + + + + 0.8048725 0.5878227 -0.08151572 -0.1420986 0.913142 -0.382073 0.9552395 0.2948424 -0.02420139 0.9722179 0.2340208 0.005157709 -0.7258288 0.6603964 -0.1924821 -0.8992704 0.3927785 -0.1924523 -0.8743524 0.4560525 -0.1659038 -0.8866426 0.4314494 -0.166482 -0.7019788 0.6906256 -0.1739611 -0.5585942 0.817184 -0.1420672 0.921998 0.3868973 0.01516824 0.9800493 0.1956863 0.03479135 -0.2893481 0.9467828 -0.1409965 -0.8788924 0.4401176 -0.1839698 -0.7497272 0.6303373 -0.2014552 0.9603474 0.2716818 0.06262534 0.9854924 0.1602253 0.05597198 0.5134464 0.8575446 0.03146475 -0.8874748 0.4110053 -0.2084783 -0.7659435 0.5994911 -0.232252 0.9808002 0.1675817 0.09973722 0.9890182 0.1304062 0.069552 0.9375743 0.3030842 0.1705707 -0.9256818 -0.02780306 -0.3772799 -0.7811365 0.5703411 -0.254041 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

6 0 0 1 1 1 0 2 2 6 0 3 0 2 4 5 3 5 7 4 6 2 5 7 1 1 8 7 4 9 1 1 10 6 0 11 8 6 12 3 7 13 2 5 14 8 6 15 2 5 16 7 4 17 9 8 18 4 9 19 3 7 20 9 8 21 3 7 22 8 6 23 11 10 24 6 0 25 5 3 26 11 10 27 5 3 28 10 11 29 12 12 30 7 4 31 6 0 32 12 12 33 6 0 34 11 10 35 13 13 36 8 6 37 7 4 38 13 13 39 7 4 40 12 12 41 14 14 42 9 8 43 8 6 44 14 14 45 8 6 46 13 13 47 16 15 48 11 10 49 10 11 50 16 15 51 10 11 52 15 16 53 17 17 54 12 12 55 11 10 56 17 17 57 11 10 58 16 15 59 18 18 60 13 13 61 12 12 62 18 18 63 12 12 64 17 17 65 19 19 66 14 14 67 13 13 68 19 19 69 13 13 70 18 18 71 21 20 72 16 15 73 15 16 74 21 20 75 15 16 76 20 21 77 22 22 78 17 17 79 16 15 80 22 22 81 16 15 82 21 20 83 23 23 84 18 18 85 17 17 86 23 23 87 17 17 88 22 22 89 24 24 90 19 19 91 18 18 92 24 24 93 18 18 94 23 23 95

+
+
+
+ + + + 90.5422 48.5791 89.8632 90.6333 46.0292 88.7443 90.7275 43.412 87.8535 90.8236 40.7343 87.2088 90.3135 51.9708 89.0335 90.41571 49.5804 87.67031 90.5214 47.1153 86.5138 90.6296 44.5799 85.5812 90.03041 55.2489 88.3288 90.1427 53.0041 86.7339 90.25901 50.6783 85.32501 90.37841 48.2735 84.1183 89.6923 58.412 87.7507 89.81391 56.2996 85.9361 89.9401 54.1004 84.2876 90.0697 51.8148 82.8199 89.2985 61.459 87.3005 89.4289 59.4659 85.2778 89.5644 57.3812 83.4019 89.7037 55.204 81.68621 88.8483 64.3884 86.9798 88.9874 62.502 84.76 89.1319 60.5203 82.6686 89.2803 58.441 80.7172 88.3412 67.1988 86.7901 88.48902 65.4071 84.3837 88.6422 63.5172 82.08802 88.7995 61.5258 79.91281 87.7765 69.8889 86.73291 87.9332 68.1802 84.15 88.0953 66.3715 81.6608 88.2614 64.45851 79.27301 87.1534 72.4573 86.8097 87.31961 70.8204 84.0598 87.4909 69.08271 81.3873 87.6659 67.23902 78.7979 86.4713 74.90261 87.0221 86.6478 73.3267 84.1142 86.82891 71.6503 81.2681 87.013 69.8673 78.4873 85.7296 77.2232 87.37181 85.91751 75.69831 84.3141 86.109 74.0738 81.3036 86.3027 72.3434 78.3415 84.9274 79.4178 87.8603 85.1281 77.93402 84.6607 85.3311 76.3529 81.4944 85.53511 74.6674 78.3603 84.0641 81.4848 88.48931 84.2793 80.03302 85.15501 84.4951 78.4871 81.8409 84.7101 76.83921 78.5437 83.1389 83.4226 89.2605 83.3706 81.9943 85.79801 83.6006 80.4758 82.3437 83.8278 78.85881 78.8917 81.8936 86.5825 93.8151 82.1512 85.2298 90.1755 82.40171 83.81681 86.5909 82.6476 82.31871 83.00331 82.888 80.7262 79.40441 91.02201 33.8185 90.3673 90.9486 36.6486 90.9025 90.88311 39.475 91.4574 90.8191 42.3014 92.0131 90.749 45.1296 92.5581 90.6833 46.8157 92.1503 90.60511 48.4786 91.76902 90.5142 50.1182 91.4145 90.4107 51.7341 91.0869 90.2943 53.3264 90.7865 90.1649 54.8947 90.51361 90.0226 56.4388 90.26821 89.86701 57.9586 90.0507 89.69831 59.4539 89.8612 89.5161 60.9245 89.70001 89.32051 62.3701 89.5674 89.1114 63.7906 89.4636 88.8885 65.1857 89.3888 88.6518 66.5553 89.3432 88.4012 67.899 89.32711 88.1366 69.2168 89.3407 87.85781 70.5084 89.3844 87.5647 71.7736 89.4582 87.2573 73.0121 89.5626 86.93531 74.2238 89.6977 86.5987 75.4084 89.8638 86.2474 76.5656 90.06121 85.88111 77.6953 90.2902 85.4999 78.7971 90.55091 85.1035 79.871 90.8437 84.69181 80.91661 91.1689 84.2647 81.9336 91.52671 83.8221 82.9219 91.9174 83.3638 83.88121 92.3413 82.8898 84.81121 92.7987 82.3997 85.7118 93.2899 90.749 45.1296 92.5581 90.5049 53.0327 93.5375 90.5683 50.5047 92.6286 90.2442 58.2387 94.3422 90.3208 55.7879 93.1594 90.3967 53.3098 92.1357 89.9907 61.0305 94.1382 90.0804 58.6494 92.8421 90.1695 56.2325 91.69701 89.69271 63.7162 94.0237 89.7951 61.4114 92.61721 89.8973 59.0634 91.3527 89.35 66.29502 93.99901 89.4647 64.0731 92.4854 89.5796 61.8013 91.1038 88.9475 68.85321 94.06861 89.0744 66.7236 92.4478 89.20201 64.5382 90.9479 88.4676 71.43991 94.2488 88.6067 69.4151 92.5189 88.74691 67.3295 90.8972 87.9124 73.9825 94.5517 88.0629 72.07341 92.71421 88.2152 70.09941 90.97071 87.2742 76.4693 94.9914 87.43521 74.68721 93.0485 87.59851 72.8375 91.18441 86.7152 77.2418 93.5382 86.8881 75.52951 91.5554 85.89511 79.7184 94.1997 86.0755 78.1568 92.1019 81.8936 86.5825 93.8151 90.7135 46.8026 92.8714 90.6733 48.4772 93.1762 90.6271 50.1535 93.4713 90.5735 51.8313 93.7551 90.5113 53.5091 94.026 90.4384 55.1925 94.2835 90.35311 56.8776 94.52571 90.2537 58.5605 94.75051 90.13771 60.2455 94.957 90.00201 61.9371 95.1439 89.84391 63.6291 95.30902 89.6606 65.31501 95.4496 89.44802 66.9992 95.5642 89.20011 68.6875 95.65081 88.9121 70.3706 95.70671 88.5794 72.0393 95.72911 88.11071 74.0237 95.7082 87.5526 75.9834 95.63101 86.8911 77.9078 95.4933 86.1146 79.78302 95.2918 85.21611 81.5959 95.0246 84.2006 83.3344 94.6904 83.0841 84.9945 94.2889 82.3997 85.7118 93.2899 82.8898 84.81121 92.7987 83.3638 83.88121 92.3413 83.8221 82.9219 91.9174 84.2647 81.9336 91.52671 84.69181 80.91661 91.1689 85.1035 79.871 90.8437 85.4999 78.7971 90.55091 85.88111 77.6953 90.2902 86.2474 76.5656 90.06121 86.5987 75.4084 89.8638 86.93531 74.2238 89.6977 87.2573 73.0121 89.5626 87.5647 71.7736 89.4582 87.85781 70.5084 89.3844 88.1366 69.2168 89.3407 88.4012 67.899 89.32711 88.6518 66.5553 89.3432 88.8885 65.1857 89.3888 89.1114 63.7906 89.4636 89.32051 62.3701 89.5674 89.5161 60.9245 89.70001 89.69831 59.4539 89.8612 89.86701 57.9586 90.0507 90.0226 56.4388 90.26821 90.1649 54.8947 90.51361 90.2943 53.3264 90.7865 90.4107 51.7341 91.0869 90.5142 50.1182 91.4145 90.60511 48.4786 91.76902 90.6833 46.8157 92.1503 84.0816 83.1944 93.8239 + + + + + + + + + + 0.9975798 0.06054997 -0.03418141 0.996986 0.06695806 -0.03918606 0.9983784 0.04797631 -0.03064137 0.9989678 0.04257351 -0.01583915 0.9980998 0.05465984 -0.02844387 0.9991934 0.03906434 -0.009308278 0.9985682 0.04864662 -0.02224802 0.9993824 0.03494447 0.003723323 0.9959932 0.07831215 -0.04318457 0.9951539 0.08615428 -0.04739552 0.9967382 0.07098627 -0.03839242 0.9974138 0.06360107 -0.03347903 0.9938108 0.09851431 -0.05133241 0.9926813 0.1076394 -0.0547505 0.9948313 0.0898177 -0.0473656 0.9957525 0.08112019 -0.04355096 0.9908762 0.1211929 -0.05896365 0.9894295 0.1312016 -0.06177061 0.9922281 0.1112106 -0.05581891 0.9934592 0.1012014 -0.05288964 0.9869684 0.1465849 -0.06637978 0.9849056 0.1584235 -0.06973564 0.9887287 0.1353219 -0.06405967 0.9903502 0.1239998 -0.06189304 0.9818248 0.174843 -0.07382529 0.9791815 0.1882125 -0.07602357 0.984075 0.1623594 -0.0723598 0.9861961 0.1496659 -0.07083493 0.9750807 0.2063081 -0.08157718 0.9720851 0.2199795 -0.08160728 0.977916 0.1926656 -0.08099704 0.980691 0.1784434 -0.08002024 0.9662708 0.2413464 -0.08984869 0.9626006 0.255902 -0.08896291 0.9698029 0.2266037 -0.09018367 0.9734233 0.2107313 -0.0896638 0.9547858 0.2803472 -0.09894245 0.9503552 0.2956355 -0.09708029 0.9591194 0.2646604 -0.1002243 0.9638568 0.2469002 -0.1001029 0.9398071 0.3238083 -0.1091365 0.9345329 0.3396498 -0.1062378 0.9450785 0.3072642 -0.1114245 0.9512952 0.2873936 -0.1115455 0.9202706 0.37221 -0.1206722 0.9140779 0.3883557 -0.1167966 0.9266047 0.3550037 -0.124001 0.9348049 0.3327209 -0.1242439 0.8947592 0.4259857 -0.1339483 0.8876607 0.4420145 -0.1291586 0.9022446 0.408441 -0.1383138 0.9131037 0.3834736 -0.1385266 0.8614419 0.4854423 -0.1492096 0.8530713 0.5015518 -0.1439283 0.8701353 0.4679217 -0.1546412 0.8845425 0.4400586 -0.1547026 0.8403709 0.519128 -0.1558299 0.8316539 0.5345475 -0.1503691 0.8495999 0.5019531 -0.1619361 0.8586483 0.4846395 -0.1668771 0.9987596 0.03076297 -0.03915566 0.9975485 0.03189247 -0.06228953 0.9989867 0.03103804 -0.03259456 0.9986742 0.03964418 -0.03283846 0.9967902 0.06143528 -0.05133342 0.9979193 0.0538665 -0.03543287 0.9966033 0.06921744 -0.04461902 0.9947221 0.08829021 -0.05227828 0.9950443 0.08026516 -0.05868816 0.9927308 0.1012324 -0.06509757 0.9897027 0.1243652 -0.07086521 0.9922168 0.1095952 -0.05911606 0.9867902 0.1470999 -0.06787347 0.9889184 0.133278 -0.06540292 0.9992775 0.02887076 -0.02472019 0.9995331 0.02832174 -0.0114752 0.9995552 0.02945071 -0.004699885 0.9843273 0.1618725 -0.0699799 0.9818143 0.1749022 -0.07382452 0.9787108 0.1907432 -0.07577842 0.974152 0.2085397 -0.08682799 0.9657952 0.2422575 -0.09247165 0.9718012 0.2205337 -0.08347076 0.9550939 0.2793715 -0.09872913 0.9625522 0.2557528 -0.0899102 0.9414268 0.3201773 -0.1058407 0.9507099 0.2945427 -0.0969296 0.9355485 0.3372918 -0.1048009 0.9161331 0.3843621 -0.1138681 0.9240339 0.3649502 -0.1138981 0.8912919 0.4360322 -0.1243975 0.9017454 0.4142651 -0.1234494 0.8592954 0.4930358 -0.1361151 0.8747176 0.466337 -0.131905 0.8379914 0.5257207 -0.1462472 0.8186209 0.5541096 -0.1510708 0.8119243 0.5636227 -0.1520145 0.9955465 0.05847358 -0.07394647 0.9948899 0.06552433 -0.07681638 0.9967197 0.05020374 -0.06347948 0.9974518 0.04400831 -0.0561549 0.9921981 0.08398783 -0.09213638 0.9906485 0.09442591 -0.09848499 0.9937232 0.0743438 -0.08359098 0.9935045 0.07483172 -0.08572691 0.9886319 0.1052905 -0.1073352 0.9866226 0.117285 -0.1132259 0.9903884 0.09464097 -0.1008669 0.984012 0.1293684 -0.1224102 0.9815254 0.1429515 -0.1271731 0.9860905 0.1177718 -0.1172834 0.9779108 0.1574155 -0.1375172 0.9753944 0.1716096 -0.1384047 0.9808233 0.1436229 -0.131751 0.9697395 0.1906518 -0.1525031 0.965229 0.2083237 -0.157906 0.9742404 0.1733807 -0.1442041 0.9588376 0.2295008 -0.1672121 0.9520825 0.2510829 -0.1746318 0.9649372 0.2096694 -0.1579082 0.9442793 0.2751871 -0.1805791 0.9318447 0.3052537 -0.1961778 0.9526 0.2517235 -0.1708472 0.9360493 0.300765 -0.1826258 0.9262881 0.3248463 -0.1909586 0.9114078 0.3656557 -0.1887639 0.8937238 0.3932702 -0.2158622 0.9925796 0.06558597 -0.1023923 0.9955292 0.05945092 -0.07339811 0.9917872 0.08459961 -0.09592229 0.9935885 0.07642048 -0.08331781 0.9965584 0.04419106 -0.07013201 0.9977504 0.03982698 -0.05392664 0.9966452 0.05169844 -0.06344813 0.9839739 0.1292799 -0.1228098 0.9879827 0.1104778 -0.1080973 0.9735723 0.1678878 -0.1548254 0.9814912 0.1435919 -0.1267149 0.9700312 0.1871149 -0.1550084 0.989907 0.09955221 -0.1008645 0.9639704 0.2125031 -0.1600106 0.9987273 0.02894186 -0.04130727 0.997553 0.03537184 -0.06030607 0.9985405 0.03296011 -0.04278713 0.9985811 0.03332668 -0.04153633 0.9981807 0.03799599 -0.04681593 0.9971473 0.04638886 -0.05954253 0.996358 0.05404937 -0.06595182 0.996053 0.06250315 -0.06302201 0.9939965 0.07055938 -0.08362144 0.9924176 0.0820046 -0.09155702 0.9907996 0.09094661 -0.1002244 0.9888814 0.1034599 -0.106817 0.9865485 0.1158796 -0.1152998 0.9855794 0.1258602 -0.1131033 0.9812694 0.1424615 -0.1296741 0.9542208 0.2455288 -0.1708173 0.9406656 0.2827612 -0.1876021 0.9748914 0.1696843 -0.1442011 0.9710748 0.1873602 -0.1480203 0.9213218 0.3348901 -0.197522 0.9668886 0.2019781 -0.1559852 0.9616066 0.2228224 -0.1601966 0.9018422 0.3811237 -0.2035325 0.8615949 0.4372218 -0.2578589 0.9458424 0.2764099 -0.1702345 0.9354919 0.3047299 -0.1788705 0.864318 0.4674538 -0.1855837 0.8314579 0.5276418 -0.1739884 0.8581477 0.4681999 -0.2106456 0.9079442 0.3847241 -0.1662071 0.9234516 0.3711751 -0.09729534 0.9572064 0.237623 -0.1652008 0.9498123 0.2620667 -0.1708148 0.8611993 0.4753718 -0.1798819 0.9801917 0.1531158 -0.1256178 0.9328591 0.3179522 -0.1693527 0.9195532 0.3457556 -0.1867489 0.9039182 0.4044101 -0.1392287 0.8826152 0.4382252 -0.1701445 0.8599309 0.4864407 -0.1545782 0.8342357 0.5235222 -0.173134 0.8162086 0.5549632 -0.1606842 0.8120595 0.5635097 -0.1517118 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

5 0 0 4 1 1 0 2 2 5 0 3 0 2 4 1 3 5 6 4 6 5 0 7 1 3 8 6 4 9 1 3 10 2 5 11 7 6 12 6 4 13 2 5 14 7 6 15 2 5 16 3 7 17 9 8 18 8 9 19 4 1 20 9 8 21 4 1 22 5 0 23 10 10 24 9 8 25 5 0 26 10 10 27 5 0 28 6 4 29 11 11 30 10 10 31 6 4 32 11 11 33 6 4 34 7 6 35 13 12 36 12 13 37 8 9 38 13 12 39 8 9 40 9 8 41 14 14 42 13 12 43 9 8 44 14 14 45 9 8 46 10 10 47 15 15 48 14 14 49 10 10 50 15 15 51 10 10 52 11 11 53 17 16 54 16 17 55 12 13 56 17 16 57 12 13 58 13 12 59 18 18 60 17 16 61 13 12 62 18 18 63 13 12 64 14 14 65 19 19 66 18 18 67 14 14 68 19 19 69 14 14 70 15 15 71 21 20 72 20 21 73 16 17 74 21 20 75 16 17 76 17 16 77 22 22 78 21 20 79 17 16 80 22 22 81 17 16 82 18 18 83 23 23 84 22 22 85 18 18 86 23 23 87 18 18 88 19 19 89 25 24 90 24 25 91 20 21 92 25 24 93 20 21 94 21 20 95 26 26 96 25 24 97 21 20 98 26 26 99 21 20 100 22 22 101 27 27 102 26 26 103 22 22 104 27 27 105 22 22 106 23 23 107 29 28 108 28 29 109 24 25 110 29 28 111 24 25 112 25 24 113 30 30 114 29 28 115 25 24 116 30 30 117 25 24 118 26 26 119 31 31 120 30 30 121 26 26 122 31 31 123 26 26 124 27 27 125 33 32 126 32 33 127 28 29 128 33 32 129 28 29 130 29 28 131 34 34 132 33 32 133 29 28 134 34 34 135 29 28 136 30 30 137 35 35 138 34 34 139 30 30 140 35 35 141 30 30 142 31 31 143 37 36 144 36 37 145 32 33 146 37 36 147 32 33 148 33 32 149 38 38 150 37 36 151 33 32 152 38 38 153 33 32 154 34 34 155 39 39 156 38 38 157 34 34 158 39 39 159 34 34 160 35 35 161 41 40 162 40 41 163 36 37 164 41 40 165 36 37 166 37 36 167 42 42 168 41 40 169 37 36 170 42 42 171 37 36 172 38 38 173 43 43 174 42 42 175 38 38 176 43 43 177 38 38 178 39 39 179 45 44 180 44 45 181 40 41 182 45 44 183 40 41 184 41 40 185 46 46 186 45 44 187 41 40 188 46 46 189 41 40 190 42 42 191 47 47 192 46 46 193 42 42 194 47 47 195 42 42 196 43 43 197 49 48 198 48 49 199 44 45 200 49 48 201 44 45 202 45 44 203 50 50 204 49 48 205 45 44 206 50 50 207 45 44 208 46 46 209 51 51 210 50 50 211 46 46 212 51 51 213 46 46 214 47 47 215 53 52 216 52 53 217 48 49 218 53 52 219 48 49 220 49 48 221 54 54 222 53 52 223 49 48 224 54 54 225 49 48 226 50 50 227 55 55 228 54 54 229 50 50 230 55 55 231 50 50 232 51 51 233 58 56 234 57 57 235 52 53 236 58 56 237 52 53 238 53 52 239 59 58 240 58 56 241 53 52 242 59 58 243 53 52 244 54 54 245 60 59 246 59 58 247 54 54 248 60 59 249 54 54 250 55 55 251 64 60 252 66 61 253 65 62 254 64 60 255 67 63 256 66 61 257 0 2 258 69 64 259 68 65 260 0 2 261 70 66 262 69 64 263 0 2 264 68 65 265 67 63 266 4 1 267 72 67 268 71 68 269 8 9 270 73 69 271 72 67 272 12 13 273 75 70 274 74 71 275 16 17 276 77 72 277 76 73 278 12 13 279 76 73 280 75 70 281 8 9 282 74 71 283 73 69 284 4 1 285 71 68 286 70 66 287 0 2 288 64 60 289 63 74 290 0 2 291 67 63 292 64 60 293 1 3 294 0 2 295 63 74 296 2 5 297 62 75 298 61 76 299 62 75 300 2 5 301 1 3 302 1 3 303 63 74 304 62 75 305 3 7 306 2 5 307 61 76 308 4 1 309 8 9 310 72 67 311 70 66 312 0 2 313 4 1 314 8 9 315 12 13 316 74 71 317 20 21 318 78 77 319 77 72 320 20 21 321 77 72 322 16 17 323 12 13 324 16 17 325 76 73 326 20 21 327 79 78 328 78 77 329 24 25 330 80 79 331 79 78 332 24 25 333 79 78 334 20 21 335 24 25 336 81 80 337 80 79 338 28 29 339 83 81 340 82 82 341 32 33 342 85 83 343 84 84 344 28 29 345 84 84 346 83 81 347 24 25 348 82 82 349 81 80 350 36 37 351 87 85 352 86 86 353 36 37 354 88 87 355 87 85 356 40 41 357 90 88 358 89 89 359 44 45 360 92 90 361 91 91 362 44 45 363 91 91 364 90 88 365 40 41 366 89 89 367 88 87 368 32 33 369 86 86 370 85 83 371 28 29 372 82 82 373 24 25 374 32 33 375 84 84 376 28 29 377 40 41 378 88 87 379 36 37 380 48 49 381 92 90 382 44 45 383 40 41 384 44 45 385 90 88 386 32 33 387 36 37 388 86 86 389 52 53 390 94 92 391 93 93 392 52 53 393 93 93 394 48 49 395 52 53 396 95 94 397 94 92 398 57 57 399 96 95 400 95 94 401 57 57 402 95 94 403 52 53 404 96 95 405 57 57 406 56 96 407 93 93 408 92 90 409 48 49 410 102 97 411 101 98 412 98 99 413 102 97 414 98 99 415 99 100 416 104 101 417 103 102 418 100 103 419 104 101 420 100 103 421 101 98 422 105 104 423 104 101 424 101 98 425 105 104 426 101 98 427 102 97 428 107 105 429 106 106 430 103 102 431 107 105 432 103 102 433 104 101 434 108 107 435 107 105 436 104 101 437 108 107 438 104 101 439 105 104 440 110 108 441 109 109 442 106 106 443 110 108 444 106 106 445 107 105 446 111 110 447 110 108 448 107 105 449 111 110 450 107 105 451 108 107 452 113 111 453 112 112 454 109 109 455 113 111 456 109 109 457 110 108 458 114 113 459 113 111 460 110 108 461 114 113 462 110 108 463 111 110 464 116 114 465 115 115 466 112 112 467 116 114 468 112 112 469 113 111 470 117 116 471 116 114 472 113 111 473 117 116 474 113 111 475 114 113 476 119 117 477 118 118 478 115 115 479 119 117 480 115 115 481 116 114 482 120 119 483 119 117 484 116 114 485 120 119 486 116 114 487 117 116 488 122 120 489 121 121 490 118 118 491 122 120 492 118 118 493 119 117 494 123 122 495 122 120 496 119 117 497 123 122 498 119 117 499 120 119 500 125 123 501 124 124 502 122 120 503 125 123 504 122 120 505 123 122 506 127 125 507 126 126 508 124 124 509 127 125 510 124 124 511 125 123 512 100 103 513 135 127 514 134 128 515 100 103 516 137 129 517 136 130 518 135 127 519 100 103 520 136 130 521 101 98 522 100 103 523 134 128 524 98 99 525 132 131 526 131 132 527 133 133 528 98 99 529 134 128 530 101 98 531 134 128 532 98 99 533 99 100 534 98 99 535 131 132 536 132 131 537 98 99 538 133 133 539 103 102 540 137 129 541 100 103 542 140 134 543 139 135 544 106 106 545 142 136 546 141 137 547 109 109 548 106 106 549 141 137 550 140 134 551 143 138 552 142 136 553 109 109 554 137 129 555 103 102 556 138 139 557 103 102 558 139 135 559 138 139 560 106 106 561 139 135 562 103 102 563 109 109 564 141 137 565 106 106 566 109 109 567 112 112 568 143 138 569 112 112 570 144 140 571 143 138 572 129 141 573 97 141 574 182 141 575 130 142 576 99 100 577 131 132 578 99 100 579 129 143 580 182 144 581 129 143 582 99 100 583 130 142 584 99 100 585 181 145 586 180 146 587 99 100 588 180 146 589 102 97 590 99 100 591 182 144 592 181 145 593 102 97 594 180 146 595 179 147 596 179 147 597 178 148 598 105 104 599 105 104 600 102 97 601 179 147 602 178 148 603 177 149 604 105 104 605 105 104 606 177 149 607 176 150 608 105 104 609 176 150 610 108 107 611 108 107 612 175 151 613 174 152 614 108 107 615 174 152 616 111 110 617 111 110 618 174 152 619 173 153 620 111 110 621 173 153 622 114 113 623 108 107 624 176 150 625 175 151 626 114 113 627 173 153 628 172 154 629 171 155 630 114 113 631 172 154 632 145 156 633 144 140 634 115 115 635 118 118 636 146 157 637 145 156 638 121 121 639 146 157 640 118 118 641 115 115 642 118 118 643 145 156 644 117 116 645 169 158 646 168 159 647 117 116 648 168 159 649 120 119 650 147 160 651 121 121 652 122 120 653 120 119 654 167 161 655 166 162 656 120 119 657 166 162 658 123 122 659 121 121 660 147 160 661 146 157 662 114 113 663 171 155 664 117 116 665 148 163 666 147 160 667 124 124 668 126 126 669 149 164 670 148 163 671 127 125 672 149 164 673 126 126 674 124 124 675 126 126 676 148 163 677 125 123 678 163 165 679 162 166 680 125 123 681 162 166 682 127 125 683 183 167 684 151 168 685 150 169 686 159 170 687 158 171 688 183 167 689 150 169 690 127 125 691 183 167 692 127 125 693 150 169 694 149 164 695 123 122 696 165 172 697 164 173 698 123 122 699 164 173 700 125 123 701 147 160 702 122 120 703 124 124 704 183 167 705 155 174 706 151 168 707 117 116 708 171 155 709 170 175 710 120 119 711 168 159 712 167 161 713 169 158 714 117 116 715 170 175 716 123 122 717 166 162 718 165 172 719 125 123 720 164 173 721 163 165 722 127 125 723 161 176 724 160 177 725 159 170 726 183 167 727 127 125 728 183 167 729 158 171 730 157 178 731 159 170 732 127 125 733 160 177 734 183 167 735 156 179 736 155 174 737 151 168 738 155 174 739 154 180 740 151 168 741 153 181 742 152 182 743 151 168 744 152 182 745 128 183 746 153 181 747 151 168 748 154 180 749 156 179 750 183 167 751 157 178 752 161 176 753 127 125 754 162 166 755 115 115 756 144 140 757 112 112 758

+
+
+
+ + + + 90.8398 31.05 96.677 90.8398 27.3919 96.8418 90.8398 23.6483 97.35601 90.8398 19.8666 98.2444 90.8398 16.1015 99.5231 90.92411 35.2048 93.9816 90.9628 31.9317 93.8704 91.0027 28.602 94.0772 91.04301 25.2572 94.62371 91.02201 33.8185 90.3673 90.86911 32.8851 96.07611 90.8869 34.6991 95.4995 90.89321 36.4917 94.9472 90.8879 38.2629 94.4195 90.871 40.0125 93.9165 90.8422 41.7402 93.4385 90.8016 43.446 92.98561 90.749 45.1296 92.5581 90.88311 39.475 91.4574 90.9486 36.6486 90.9025 90.8398 70.37751 126.954 90.8398 69.4023 123.793 90.8398 68.1499 120.669 90.8398 66.6208 117.619 90.8398 64.8213 114.677 90.8398 62.7642 111.88 90.8398 60.4681 109.26 90.8398 57.9572 106.847 90.8398 55.2604 104.666 90.8398 52.41 102.736 90.8398 49.4408 101.071 90.8398 46.3885 99.6795 90.8398 43.2885 98.5616 90.8398 40.1748 97.7136 90.8398 37.0789 97.1262 90.8398 34.0291 96.7862 90.8398 31.05 96.677 90.4158 75.9525 127.024 90.4217 75.2214 123.944 90.43201 74.2302 120.877 90.4469 72.9774 117.855 90.46601 71.4665 114.908 90.48902 69.7059 112.067 90.5157 67.7092 109.362 90.5456 65.4945 106.821 90.5782 63.084 104.467 90.6129 60.5034 102.322 90.6491 57.7809 100.4 90.6864 54.9461 98.7145 90.7242 52.0292 97.2704 90.7619 49.0602 96.0701 90.7989 46.0677 95.1109 90.83501 43.0785 94.3864 89.7204 80.8174 127.157 89.7265 80.2827 124.203 89.7419 79.5085 121.24 89.7663 78.4927 118.292 89.7995 77.23661 115.387 89.8409 75.74591 112.551 89.8899 74.0299 109.809 89.9458 72.1019 107.188 90.0076 69.9783 104.709 90.0744 67.67881 102.392 90.1453 65.2252 100.256 90.2191 62.6412 98.3127 90.2949 59.9514 96.5737 88.7535 84.9721 127.353 88.7564 84.5915 124.57 88.7731 83.9954 121.754 88.8033 83.18151 118.927 88.84661 82.1502 116.109 88.9022 80.9049 113.323 88.9694 79.4519 110.592 89.04721 77.8004 107.938 89.1344 75.9622 105.38 89.2298 73.9514 102.939 89.332 71.7844 100.63 89.4397 69.4788 98.4708 89.5514 67.05371 96.4724 88.1682 86.7831 127.475 88.1688 86.4653 124.794 88.18531 85.9452 122.068 88.2174 85.2205 119.317 88.26461 84.2913 116.559 88.32601 83.1602 113.816 88.4009 81.8323 111.108 88.48801 80.3152 108.454 88.58631 78.6185 105.874 88.6942 76.75402 103.388 88.8105 74.7353 101.011 88.9335 72.5776 98.7588 89.0617 70.29701 96.64521 87.5151 88.41661 127.612 87.5132 88.1531 125.044 87.5292 87.70101 122.419 87.5627 87.0582 119.755 87.6131 86.2248 117.069 87.67961 85.2027 114.379 87.7612 83.99591 111.704 87.8567 82.6104 109.063 87.9648 81.054 106.473 88.08401 79.3365 103.953 88.21302 77.46891 101.519 88.3499 75.4639 99.1856 88.4933 73.3349 96.9673 86.7941 89.8726 127.766 86.78981 89.6553 125.321 86.8052 89.2639 122.808 86.8398 88.69651 120.241 86.89302 87.95301 117.636 86.9638 87.0349 115.01 87.0512 85.9451 112.38 87.1539 84.6884 109.763 87.2706 83.27101 107.175 87.39981 81.7007 104.634 87.5399 79.9864 102.154 87.6893 78.1382 99.7508 87.8461 76.1672 97.4386 86.00531 91.1511 127.935 85.9989 90.9728 125.624 86.0138 90.6353 123.233 86.0494 90.1371 120.774 86.1049 89.47801 118.261 86.1794 88.6589 115.711 86.2718 87.6823 113.136 86.3806 86.5516 110.554 86.5046 85.2717 107.98 86.6422 83.8486 105.428 86.7918 82.2891 102.915 86.9517 80.6012 100.454 87.1201 78.7938 98.05931 85.1486 92.25201 128.12 85.1406 92.10601 125.954 85.1553 91.8163 123.694 85.1919 91.3816 121.354 85.24961 90.8017 118.944 85.3272 90.0773 116.478 85.4236 89.21 113.971 85.5375 88.2025 111.435 85.6674 87.0583 108.885 85.8118 85.7818 106.336 85.969 84.3782 103.801 86.1374 82.8536 101.295 86.3152 81.2145 98.8296 86.5008 79.4683 96.41901 84.2241 93.1753 128.32 84.2153 93.0557 126.31 84.2302 92.8082 124.193 84.26802 92.4318 121.98 84.3276 91.9263 119.683 84.4079 91.2922 117.313 84.5076 90.5306 114.882 84.6254 89.64331 112.404 84.7597 88.6328 109.891 84.90911 87.5022 107.356 85.07201 86.2551 104.812 85.2466 84.8958 102.272 85.4314 83.4291 99.7495 85.6245 81.8603 97.2558 83.2317 93.92121 128.537 83.2231 93.8226 126.692 83.23902 93.6122 124.727 83.2783 93.2893 122.652 83.3398 92.8539 120.477 83.4223 92.30601 118.213 83.5245 91.6465 115.871 83.64501 90.87651 113.461 83.78231 89.9974 110.996 83.9349 89.0114 108.487 84.1012 87.9209 105.947 84.2796 86.7285 103.387 84.4685 85.4375 100.819 84.6661 84.0514 98.25502 84.8708 82.5739 95.7063 82.1714 94.4895 128.769 82.1644 94.40721 127.1 82.1821 94.2294 125.297 82.2233 93.9559 123.37 82.2867 93.58631 121.327 82.371 93.12091 119.179 82.47502 92.5599 116.935 82.597 91.9041 114.605 82.7358 91.1542 112.199 82.88961 90.3114 109.729 83.0571 89.3769 107.205 83.23661 88.35231 104.638 83.4265 87.2395 102.039 83.6252 86.0404 99.41761 83.8312 84.7573 96.7858 81.0433 94.88021 129.017 81.0393 94.81021 127.534 81.0598 94.6612 125.903 81.1035 94.43301 124.133 81.16901 94.1257 122.232 81.2549 93.73902 120.209 81.3599 93.2733 118.073 81.4823 92.7286 115.834 81.6208 92.1052 113.5 81.77391 91.40361 111.081 81.9401 90.6243 108.586 82.1177 89.7679 106.025 82.3054 88.83501 103.408 82.50151 87.8266 100.744 82.7046 86.7433 98.04351 82.913 85.58641 95.3152 79.8473 95.0935 129.28 79.84801 95.03221 127.994 79.8726 94.9085 126.545 79.9196 94.7224 124.941 79.9874 94.4738 123.191 80.0747 94.1626 121.303 80.1799 93.7887 119.286 80.3016 93.35202 117.148 80.4382 92.8524 114.897 80.5884 92.2899 112.541 80.75051 91.6644 110.088 80.9233 90.9757 107.548 81.10511 90.2238 104.928 81.2945 89.4086 102.236 81.4901 88.5301 99.4812 81.6903 87.5881 96.6715 81.8936 86.5825 93.8151 90.749 45.1296 92.5581 90.8016 43.446 92.98561 90.8422 41.7402 93.4385 90.871 40.0125 93.9165 90.8879 38.2629 94.4195 90.89321 36.4917 94.9472 90.8869 34.6991 95.4995 90.86911 32.8851 96.07611 83.0841 84.9945 94.2889 84.2006 83.3344 94.6904 85.21611 81.5959 95.0246 86.1146 79.78302 95.2918 86.8911 77.9078 95.4933 87.5526 75.9834 95.63101 88.11071 74.0237 95.7082 88.5794 72.0393 95.72911 88.9121 70.3706 95.70671 89.20011 68.6875 95.65081 89.44802 66.9992 95.5642 89.6606 65.31501 95.4496 89.84391 63.6291 95.30902 90.00201 61.9371 95.1439 90.13771 60.2455 94.957 90.2537 58.5605 94.75051 90.35311 56.8776 94.52571 90.4384 55.1925 94.2835 90.5113 53.5091 94.026 90.5735 51.8313 93.7551 90.6271 50.1535 93.4713 90.6733 48.4772 93.1762 90.7135 46.8026 92.8714 90.5275 54.7215 95.29911 + + + + + + + + + + 0.9992797 0.01187181 0.03604274 0.9998479 0.008392572 0.01528978 0.9986847 0.006622672 0.0508452 0.9970639 0.01706022 0.07465004 0.9985239 0.01712119 0.05154675 0.9933038 0.03647023 0.1096245 0.9954575 0.02716159 0.09125077 0.9928908 0.03827142 0.1127085 0.9996389 -0.001586914 0.0268259 0.9984033 0.002533078 0.05642986 0.9997331 0.007599115 0.0218209 0.9996997 -6.10373e-5 0.02450644 0.9999164 0.01080363 0.007110834 0.999653 0.01928806 0.01794523 0.999759 0.01077306 -0.01913511 0.9982135 0.007568657 -0.05926775 0.9928364 3.05188e-4 -0.1194809 0.9997548 0.01532071 -0.01599216 0.9992775 0.0195015 0.0326246 0.9995097 0.0182811 0.02542263 0.9940716 0.1053828 -0.02676534 0.9933665 0.1126155 -0.02325552 0.9970959 0.07336837 -0.02041739 0.9972378 0.07028514 -0.0240184 0.9944094 0.1003779 -0.03277766 0.9974507 0.0654326 -0.02847415 0.994783 0.09463804 -0.03808712 0.9976741 0.06003135 -0.03228932 0.99519 0.08823001 -0.0425738 0.997911 0.05414074 -0.03524947 0.9956271 0.08124202 -0.04611444 0.9981554 0.04788434 -0.03732472 0.996087 0.07382601 -0.0485866 0.9984077 0.0413841 -0.03833216 0.9965659 0.06610405 -0.04986792 0.9986639 0.03476077 -0.03823989 0.9970521 0.05826056 -0.0499289 0.9989192 0.02823013 -0.03692805 0.9975413 0.05041724 -0.04867762 0.9991669 0.02197378 -0.03439509 0.9980167 0.0428493 -0.04611486 0.9994043 0.01611399 -0.03051894 0.9984681 0.03570753 -0.04226917 0.9996206 0.01089525 -0.02530026 0.9984456 0.03161722 -0.04589992 0.9998036 0.006470024 -0.01873868 0.9992093 0.02362138 -0.03198343 0.9999369 0.003082454 -0.01080381 0.9996518 0.01760947 -0.01965427 0.9999986 9.15582e-4 -0.001464903 0.9998759 0.01516813 -0.004272699 0.9993559 0.003570735 0.03570759 0.9828355 0.1808864 -0.03625661 0.9815137 0.1889721 -0.0303356 0.9834956 0.1749331 -0.04620528 0.9842404 0.1679465 -0.05536156 0.9850862 0.159888 -0.06357067 0.9860328 0.150824 -0.07065105 0.9870674 0.1409355 -0.07638835 0.9881809 0.1303169 -0.08072322 0.9893512 0.1192361 -0.08346825 0.9905574 0.1078849 -0.08459883 0.9917677 0.09650027 -0.08417069 0.9929491 0.0853933 -0.0822193 0.9952369 0.07190364 -0.06583029 0.9634279 0.2645398 -0.04272675 0.9615593 0.2724118 -0.0345779 0.9644744 0.2580721 -0.05646085 0.9657219 0.2501971 -0.0691567 0.9672107 0.240826 -0.08066189 0.9689589 0.2299938 -0.09067296 0.970975 0.2177559 -0.09894388 0.973227 0.2042955 -0.1053218 0.9756507 0.1899175 -0.1097145 0.9781993 0.1748746 -0.1120052 0.980771 0.1595858 -0.1123418 0.9833022 0.1443259 -0.1108462 0.9858359 0.1308364 -0.1049255 0.9403668 0.3366301 -0.04889219 0.9380956 0.3441942 -0.03882026 0.9417006 0.3298516 -0.06631821 0.9433827 0.3212769 -0.08252424 0.9454867 0.3107776 -0.09732592 0.94807 0.2982918 -0.1103869 0.9511345 0.2839212 -0.1213753 0.9546279 0.267894 -0.1300711 0.9584635 0.2504732 -0.1364219 0.9625381 0.2320663 -0.1402347 0.9666988 0.2131468 -0.14164 0.9708061 0.1941612 -0.1408447 0.975081 0.1757282 -0.1354126 0.9125338 0.4055435 -0.0530734 0.9096069 0.4134188 -0.04123198 0.9140952 0.3987569 -0.07364153 0.916191 0.3898542 -0.0927788 0.9189958 0.3785609 -0.1101745 0.9225885 0.3647933 -0.1255245 0.926981 0.3486173 -0.1384642 0.9321061 0.3302443 -0.1487182 0.9378191 0.3100427 -0.1561048 0.9439219 0.2884655 -0.1606214 0.9502125 0.2660351 -0.1622396 0.9564056 0.2434198 -0.1613541 0.9626139 0.2209607 -0.1566868 0.8734601 0.4835466 -0.05700987 0.8697274 0.4916288 -0.04330629 0.8751382 0.4770457 -0.08099794 0.8776704 0.4680116 -0.1032463 0.881307 0.456142 -0.1234202 0.8862619 0.4411624 -0.1411231 0.8925536 0.4230825 -0.1560428 0.9000609 0.4021769 -0.1677619 0.908577 0.3788001 -0.1760633 0.9177266 0.3535587 -0.1810367 0.9271212 0.3271995 -0.1827202 0.9363948 0.3003715 -0.1814986 0.9450004 0.2750096 -0.1770426 0.8192784 0.5701836 -0.06061041 0.8146209 0.578249 -0.04495489 0.8208687 0.5642653 -0.08819979 0.8237249 0.5554878 -0.1136246 0.8284136 0.5432115 -0.1365734 0.8351624 0.527222 -0.1566559 0.8440995 0.5073814 -0.1733794 0.8550924 0.4837934 -0.1864429 0.8676619 0.4570866 -0.1955367 0.8812549 0.4278855 -0.2007582 0.8952248 0.3970571 -0.2022824 0.9089536 0.3655285 -0.2004806 0.9218158 0.3331831 -0.1981031 0.7457852 0.6631406 -0.06363147 0.7402178 0.6707862 -0.04608428 0.74683 0.6582334 -0.09473091 0.7498815 0.6499929 -0.1232355 0.7557125 0.6377869 -0.1487498 0.7649102 0.6210412 -0.1709397 0.7775121 0.5997062 -0.1892813 0.7932314 0.5739186 -0.2034733 0.8115165 0.5440427 -0.21321 0.8314071 0.5108934 -0.2185183 0.8518738 0.4754233 -0.219736 0.8719237 0.4388306 -0.2172027 0.8907558 0.4022089 -0.2116182 0.6495684 0.7574533 -0.06576859 0.6432037 0.7642756 -0.04660362 0.6494712 0.7537846 -0.09997969 0.6524052 0.7464649 -0.1309877 0.6595149 0.7347746 -0.1585765 0.6715433 0.7181765 -0.1823518 0.6888097 0.6962562 -0.2019125 0.7108725 0.6690315 -0.2169271 0.7367351 0.6369066 -0.2270938 0.7651159 0.6004648 -0.2324646 0.794386 0.5608525 -0.2332282 0.823059 0.5193063 -0.2299889 0.8498793 0.4772655 -0.223434 0.8744329 0.4359956 -0.2127791 0.9090654 0.3638154 -0.2030725 0.5295384 0.8456562 -0.06674546 0.5228536 0.8511478 -0.04660266 0.5277129 0.8431321 -0.1031864 0.5301218 0.8369943 -0.1356892 0.5384762 0.8264529 -0.164375 0.5538405 0.8109076 -0.1889168 0.5765138 0.7899063 -0.2089977 0.6061465 0.763047 -0.2243789 0.6414561 0.730359 -0.2347549 0.6804571 0.6923596 -0.2400339 0.7209043 0.6499462 -0.2405557 0.7605974 0.6045227 -0.2367367 0.7977448 0.5576493 -0.2294138 0.8310476 0.5110195 -0.2195882 0.389244 0.9187244 -0.06659322 0.3829219 0.9226199 -0.04629731 0.3852129 0.9169789 -0.1037346 0.3869271 0.9119858 -0.1362698 0.3964718 0.9031781 -0.1645582 0.4152455 0.8899426 -0.1886092 0.4437503 0.8716 -0.2083246 0.4814127 0.8475537 -0.2233713 0.5269126 0.81718 -0.2336238 0.5779116 0.780376 -0.2388127 0.6314074 0.7376441 -0.2391773 0.684297 0.6902482 -0.2351489 0.73388 0.6400659 -0.2274549 0.7783644 0.5890532 -0.2171754 0.7923505 0.5608592 -0.2400369 0.85615 0.471885 -0.2105507 0.236983 0.9692955 -0.06561666 0.23179 0.9716563 -0.04644954 0.2309047 0.9676575 -0.1015968 0.2320956 0.9636622 -0.132238 0.2429047 0.9570308 -0.1583962 0.2648455 0.9472545 -0.1804599 0.2986028 0.9335002 -0.1985294 0.3438275 0.9146862 -0.212443 0.3991565 0.8896253 -0.2219027 0.4620514 0.8573586 -0.2268141 0.5289542 0.8176938 -0.2271219 0.5958861 0.7714322 -0.2231864 0.6592899 0.7202991 -0.2156533 0.7164636 0.6666566 -0.2055453 0.7668758 0.611108 -0.1960831 0.1604099 0.9852271 -0.05997055 0.1653814 0.9851165 -0.04684633 0.1518912 0.9839814 -0.09332591 0.1506711 0.9810254 -0.122014 0.1590636 0.976294 -0.146795 0.178718 0.9694292 -0.168128 0.2106449 0.9597133 -0.1859547 0.2550461 0.9459627 -0.2002648 0.3112012 0.9267061 -0.2106413 0.3770669 0.9004743 -0.2167181 0.449274 0.8663196 -0.2182737 0.5234714 0.8243331 -0.215529 0.5956751 0.7756167 -0.2087823 0.6622301 0.7224135 -0.1989223 0.72083 0.6673606 -0.1871734 0.7716773 0.6108413 -0.1771638 0.797479 0.5716946 -0.1928538 0.998492 0.04684674 -0.02862685 0.9965264 0.05649006 -0.06118994 0.9983522 0.03708112 -0.0437954 0.9992656 0.03335767 -0.01886093 0.9992752 0.03747701 -0.006683588 0.992913 0.09671545 -0.06906503 0.9929043 0.1035814 -0.05841326 0.9931649 0.0837149 -0.08133441 0.9968672 0.06390643 -0.04660224 0.9953483 0.06586009 -0.07031589 0.9990394 -0.001586973 0.04379475 0.9991126 -5.49349e-4 0.0421167 0.9991531 0.007446527 0.04046785 0.9989414 0.01223802 0.04434376 0.999614 0.01113933 0.02545267 0.9995376 0.02621603 -0.01541221 0.9995732 0.02835166 -0.007049739 0.999778 0.01623618 -0.01342839 0.9999328 0.01132261 0.002533078 0.9996152 0.02649033 0.008240044 0.9994189 0.02545315 -0.02267587 0.9826321 0.1423118 -0.1190866 0.9727739 0.1844894 -0.1402669 0.9818425 0.1533909 -0.1116098 0.9885659 0.117589 -0.09439474 0.9558281 0.2425048 -0.166085 0.9402941 0.2874901 -0.1821991 0.9684556 0.2027674 -0.1448426 0.8992906 0.3856152 -0.206343 0.9349827 0.3220374 -0.1486584 0.8407104 0.5056409 -0.1937354 0.8747557 0.4345549 -0.2143934 0.8205783 0.5473675 -0.1644392 0.81187 0.5664046 -0.1416087 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

6 0 0 5 1 1 1 2 2 6 0 3 1 2 4 2 3 5 7 4 6 6 0 7 2 3 8 7 4 9 2 3 10 3 5 11 8 6 12 7 4 13 3 5 14 8 6 15 3 5 16 4 7 17 1 2 18 10 8 19 0 9 20 5 1 21 12 10 22 11 11 23 1 2 24 11 11 25 10 8 26 1 2 27 5 1 28 11 11 29 13 12 30 12 10 31 5 1 32 18 13 33 5 1 34 6 0 35 5 1 36 14 14 37 13 12 38 15 15 39 5 1 40 16 16 41 5 1 42 18 13 43 17 17 44 16 16 45 5 1 46 17 17 47 9 18 48 7 4 49 8 6 50 7 4 51 9 18 52 19 19 53 6 0 54 7 4 55 19 19 56 6 0 57 19 19 58 18 13 59 15 15 60 14 14 61 5 1 62 38 20 63 37 21 64 20 22 65 38 20 66 20 22 67 21 23 68 39 24 69 38 20 70 21 23 71 39 24 72 21 23 73 22 25 74 40 26 75 39 24 76 22 25 77 40 26 78 22 25 79 23 27 80 41 28 81 40 26 82 23 27 83 41 28 84 23 27 85 24 29 86 42 30 87 41 28 88 24 29 89 42 30 90 24 29 91 25 31 92 43 32 93 42 30 94 25 31 95 43 32 96 25 31 97 26 33 98 44 34 99 43 32 100 26 33 101 44 34 102 26 33 103 27 35 104 45 36 105 44 34 106 27 35 107 45 36 108 27 35 109 28 37 110 46 38 111 45 36 112 28 37 113 46 38 114 28 37 115 29 39 116 47 40 117 46 38 118 29 39 119 47 40 120 29 39 121 30 41 122 48 42 123 47 40 124 30 41 125 48 42 126 30 41 127 31 43 128 49 44 129 48 42 130 31 43 131 49 44 132 31 43 133 32 45 134 50 46 135 49 44 136 32 45 137 50 46 138 32 45 139 33 47 140 51 48 141 50 46 142 33 47 143 51 48 144 33 47 145 34 49 146 52 50 147 51 48 148 34 49 149 52 50 150 34 49 151 35 51 152 54 52 153 53 53 154 37 21 155 54 52 156 37 21 157 38 20 158 55 54 159 54 52 160 38 20 161 55 54 162 38 20 163 39 24 164 56 55 165 55 54 166 39 24 167 56 55 168 39 24 169 40 26 170 57 56 171 56 55 172 40 26 173 57 56 174 40 26 175 41 28 176 58 57 177 57 56 178 41 28 179 58 57 180 41 28 181 42 30 182 59 58 183 58 57 184 42 30 185 59 58 186 42 30 187 43 32 188 60 59 189 59 58 190 43 32 191 60 59 192 43 32 193 44 34 194 61 60 195 60 59 196 44 34 197 61 60 198 44 34 199 45 36 200 62 61 201 61 60 202 45 36 203 62 61 204 45 36 205 46 38 206 63 62 207 62 61 208 46 38 209 63 62 210 46 38 211 47 40 212 64 63 213 63 62 214 47 40 215 64 63 216 47 40 217 48 42 218 65 64 219 64 63 220 48 42 221 65 64 222 48 42 223 49 44 224 50 46 225 65 64 226 49 44 227 67 65 228 66 66 229 53 53 230 67 65 231 53 53 232 54 52 233 68 67 234 67 65 235 54 52 236 68 67 237 54 52 238 55 54 239 69 68 240 68 67 241 55 54 242 69 68 243 55 54 244 56 55 245 70 69 246 69 68 247 56 55 248 70 69 249 56 55 250 57 56 251 71 70 252 70 69 253 57 56 254 71 70 255 57 56 256 58 57 257 72 71 258 71 70 259 58 57 260 72 71 261 58 57 262 59 58 263 73 72 264 72 71 265 59 58 266 73 72 267 59 58 268 60 59 269 74 73 270 73 72 271 60 59 272 74 73 273 60 59 274 61 60 275 75 74 276 74 73 277 61 60 278 75 74 279 61 60 280 62 61 281 76 75 282 75 74 283 62 61 284 76 75 285 62 61 286 63 62 287 77 76 288 76 75 289 63 62 290 77 76 291 63 62 292 64 63 293 78 77 294 77 76 295 64 63 296 78 77 297 64 63 298 65 64 299 80 78 300 79 79 301 66 66 302 80 78 303 66 66 304 67 65 305 81 80 306 80 78 307 67 65 308 81 80 309 67 65 310 68 67 311 82 81 312 81 80 313 68 67 314 82 81 315 68 67 316 69 68 317 83 82 318 82 81 319 69 68 320 83 82 321 69 68 322 70 69 323 84 83 324 83 82 325 70 69 326 84 83 327 70 69 328 71 70 329 85 84 330 84 83 331 71 70 332 85 84 333 71 70 334 72 71 335 86 85 336 85 84 337 72 71 338 86 85 339 72 71 340 73 72 341 87 86 342 86 85 343 73 72 344 87 86 345 73 72 346 74 73 347 88 87 348 87 86 349 74 73 350 88 87 351 74 73 352 75 74 353 89 88 354 88 87 355 75 74 356 89 88 357 75 74 358 76 75 359 90 89 360 89 88 361 76 75 362 90 89 363 76 75 364 77 76 365 91 90 366 90 89 367 77 76 368 91 90 369 77 76 370 78 77 371 93 91 372 92 92 373 79 79 374 93 91 375 79 79 376 80 78 377 94 93 378 93 91 379 80 78 380 94 93 381 80 78 382 81 80 383 95 94 384 94 93 385 81 80 386 95 94 387 81 80 388 82 81 389 96 95 390 95 94 391 82 81 392 96 95 393 82 81 394 83 82 395 97 96 396 96 95 397 83 82 398 97 96 399 83 82 400 84 83 401 98 97 402 97 96 403 84 83 404 98 97 405 84 83 406 85 84 407 99 98 408 98 97 409 85 84 410 99 98 411 85 84 412 86 85 413 100 99 414 99 98 415 86 85 416 100 99 417 86 85 418 87 86 419 101 100 420 100 99 421 87 86 422 101 100 423 87 86 424 88 87 425 102 101 426 101 100 427 88 87 428 102 101 429 88 87 430 89 88 431 103 102 432 102 101 433 89 88 434 103 102 435 89 88 436 90 89 437 104 103 438 103 102 439 90 89 440 104 103 441 90 89 442 91 90 443 106 104 444 105 105 445 92 92 446 106 104 447 92 92 448 93 91 449 107 106 450 106 104 451 93 91 452 107 106 453 93 91 454 94 93 455 108 107 456 107 106 457 94 93 458 108 107 459 94 93 460 95 94 461 109 108 462 108 107 463 95 94 464 109 108 465 95 94 466 96 95 467 110 109 468 109 108 469 96 95 470 110 109 471 96 95 472 97 96 473 111 110 474 110 109 475 97 96 476 111 110 477 97 96 478 98 97 479 112 111 480 111 110 481 98 97 482 112 111 483 98 97 484 99 98 485 113 112 486 112 111 487 99 98 488 113 112 489 99 98 490 100 99 491 114 113 492 113 112 493 100 99 494 114 113 495 100 99 496 101 100 497 115 114 498 114 113 499 101 100 500 115 114 501 101 100 502 102 101 503 116 115 504 115 114 505 102 101 506 116 115 507 102 101 508 103 102 509 117 116 510 116 115 511 103 102 512 117 116 513 103 102 514 104 103 515 119 117 516 118 118 517 105 105 518 119 117 519 105 105 520 106 104 521 120 119 522 119 117 523 106 104 524 120 119 525 106 104 526 107 106 527 121 120 528 120 119 529 107 106 530 121 120 531 107 106 532 108 107 533 122 121 534 121 120 535 108 107 536 122 121 537 108 107 538 109 108 539 123 122 540 122 121 541 109 108 542 123 122 543 109 108 544 110 109 545 124 123 546 123 122 547 110 109 548 124 123 549 110 109 550 111 110 551 125 124 552 124 123 553 111 110 554 125 124 555 111 110 556 112 111 557 126 125 558 125 124 559 112 111 560 126 125 561 112 111 562 113 112 563 127 126 564 126 125 565 113 112 566 127 126 567 113 112 568 114 113 569 128 127 570 127 126 571 114 113 572 128 127 573 114 113 574 115 114 575 129 128 576 128 127 577 115 114 578 129 128 579 115 114 580 116 115 581 130 129 582 129 128 583 116 115 584 130 129 585 116 115 586 117 116 587 132 130 588 131 131 589 118 118 590 132 130 591 118 118 592 119 117 593 133 132 594 132 130 595 119 117 596 133 132 597 119 117 598 120 119 599 134 133 600 133 132 601 120 119 602 134 133 603 120 119 604 121 120 605 135 134 606 134 133 607 121 120 608 135 134 609 121 120 610 122 121 611 136 135 612 135 134 613 122 121 614 136 135 615 122 121 616 123 122 617 137 136 618 136 135 619 123 122 620 137 136 621 123 122 622 124 123 623 138 137 624 137 136 625 124 123 626 138 137 627 124 123 628 125 124 629 139 138 630 138 137 631 125 124 632 139 138 633 125 124 634 126 125 635 140 139 636 139 138 637 126 125 638 140 139 639 126 125 640 127 126 641 141 140 642 140 139 643 127 126 644 141 140 645 127 126 646 128 127 647 142 141 648 141 140 649 128 127 650 142 141 651 128 127 652 129 128 653 143 142 654 142 141 655 129 128 656 143 142 657 129 128 658 130 129 659 146 143 660 145 144 661 131 131 662 146 143 663 131 131 664 132 130 665 147 145 666 146 143 667 132 130 668 147 145 669 132 130 670 133 132 671 148 146 672 147 145 673 133 132 674 148 146 675 133 132 676 134 133 677 149 147 678 148 146 679 134 133 680 149 147 681 134 133 682 135 134 683 150 148 684 149 147 685 135 134 686 150 148 687 135 134 688 136 135 689 151 149 690 150 148 691 136 135 692 151 149 693 136 135 694 137 136 695 152 150 696 151 149 697 137 136 698 152 150 699 137 136 700 138 137 701 153 151 702 152 150 703 138 137 704 153 151 705 138 137 706 139 138 707 154 152 708 153 151 709 139 138 710 154 152 711 139 138 712 140 139 713 155 153 714 154 152 715 140 139 716 155 153 717 140 139 718 141 140 719 156 154 720 155 153 721 141 140 722 156 154 723 141 140 724 142 141 725 157 155 726 156 154 727 142 141 728 157 155 729 142 141 730 143 142 731 158 156 732 157 155 733 143 142 734 158 156 735 143 142 736 144 157 737 160 158 738 159 159 739 145 144 740 160 158 741 145 144 742 146 143 743 161 160 744 160 158 745 146 143 746 161 160 747 146 143 748 147 145 749 162 161 750 161 160 751 147 145 752 162 161 753 147 145 754 148 146 755 163 162 756 162 161 757 148 146 758 163 162 759 148 146 760 149 147 761 164 163 762 163 162 763 149 147 764 164 163 765 149 147 766 150 148 767 165 164 768 164 163 769 150 148 770 165 164 771 150 148 772 151 149 773 166 165 774 165 164 775 151 149 776 166 165 777 151 149 778 152 150 779 167 166 780 166 165 781 152 150 782 167 166 783 152 150 784 153 151 785 168 167 786 167 166 787 153 151 788 168 167 789 153 151 790 154 152 791 169 168 792 168 167 793 154 152 794 169 168 795 154 152 796 155 153 797 170 169 798 169 168 799 155 153 800 170 169 801 155 153 802 156 154 803 171 170 804 170 169 805 156 154 806 171 170 807 156 154 808 157 155 809 172 171 810 171 170 811 157 155 812 172 171 813 157 155 814 158 156 815 175 172 816 174 173 817 159 159 818 175 172 819 159 159 820 160 158 821 176 174 822 175 172 823 160 158 824 176 174 825 160 158 826 161 160 827 177 175 828 176 174 829 161 160 830 177 175 831 161 160 832 162 161 833 178 176 834 177 175 835 162 161 836 178 176 837 162 161 838 163 162 839 179 177 840 178 176 841 163 162 842 179 177 843 163 162 844 164 163 845 180 178 846 179 177 847 164 163 848 180 178 849 164 163 850 165 164 851 181 179 852 180 178 853 165 164 854 181 179 855 165 164 856 166 165 857 182 180 858 181 179 859 166 165 860 182 180 861 166 165 862 167 166 863 183 181 864 182 180 865 167 166 866 183 181 867 167 166 868 168 167 869 184 182 870 183 181 871 168 167 872 184 182 873 168 167 874 169 168 875 185 183 876 184 182 877 169 168 878 185 183 879 169 168 880 170 169 881 186 184 882 185 183 883 170 169 884 186 184 885 170 169 886 171 170 887 187 185 888 186 184 889 171 170 890 187 185 891 171 170 892 172 171 893 188 186 894 187 185 895 172 171 896 188 186 897 172 171 898 173 187 899 190 188 900 189 189 901 174 173 902 190 188 903 174 173 904 175 172 905 191 190 906 190 188 907 175 172 908 191 190 909 175 172 910 176 174 911 192 191 912 191 190 913 176 174 914 192 191 915 176 174 916 177 175 917 193 192 918 192 191 919 177 175 920 193 192 921 177 175 922 178 176 923 194 193 924 193 192 925 178 176 926 194 193 927 178 176 928 179 177 929 195 194 930 194 193 931 179 177 932 195 194 933 179 177 934 180 178 935 196 195 936 195 194 937 180 178 938 196 195 939 180 178 940 181 179 941 197 196 942 196 195 943 181 179 944 197 196 945 181 179 946 182 180 947 198 197 948 197 196 949 182 180 950 198 197 951 182 180 952 183 181 953 199 198 954 198 197 955 183 181 956 199 198 957 183 181 958 184 182 959 200 199 960 199 198 961 184 182 962 200 199 963 184 182 964 185 183 965 201 200 966 200 199 967 185 183 968 201 200 969 185 183 970 186 184 971 202 201 972 201 200 973 186 184 974 202 201 975 186 184 976 187 185 977 203 202 978 202 201 979 187 185 980 203 202 981 187 185 982 188 186 983 206 203 984 205 204 985 189 189 986 206 203 987 189 189 988 190 188 989 207 205 990 206 203 991 190 188 992 207 205 993 190 188 994 191 190 995 208 206 996 207 205 997 191 190 998 208 206 999 191 190 1000 192 191 1001 209 207 1002 208 206 1003 192 191 1004 209 207 1005 192 191 1006 193 192 1007 210 208 1008 209 207 1009 193 192 1010 210 208 1011 193 192 1012 194 193 1013 211 209 1014 210 208 1015 194 193 1016 211 209 1017 194 193 1018 195 194 1019 212 210 1020 211 209 1021 195 194 1022 212 210 1023 195 194 1024 196 195 1025 213 211 1026 212 210 1027 196 195 1028 213 211 1029 196 195 1030 197 196 1031 214 212 1032 213 211 1033 197 196 1034 214 212 1035 197 196 1036 198 197 1037 215 213 1038 214 212 1039 198 197 1040 215 213 1041 198 197 1042 199 198 1043 216 214 1044 215 213 1045 199 198 1046 216 214 1047 199 198 1048 200 199 1049 217 215 1050 216 214 1051 200 199 1052 217 215 1053 200 199 1054 201 200 1055 218 216 1056 217 215 1057 201 200 1058 218 216 1059 201 200 1060 202 201 1061 219 217 1062 218 216 1063 202 201 1064 219 217 1065 202 201 1066 203 202 1067 220 218 1068 219 217 1069 203 202 1070 220 218 1071 203 202 1072 204 219 1073 253 220 1074 50 46 1075 51 48 1076 65 64 1077 50 46 1078 253 220 1079 247 221 1080 253 220 1081 248 222 1082 248 222 1083 253 220 1084 51 48 1085 250 223 1086 249 224 1087 51 48 1088 248 222 1089 51 48 1090 249 224 1091 52 50 1092 250 223 1093 51 48 1094 243 225 1095 242 226 1096 65 64 1097 78 77 1098 65 64 1099 242 226 1100 244 227 1101 243 225 1102 65 64 1103 246 228 1104 253 220 1105 247 221 1106 65 64 1107 245 229 1108 244 227 1109 246 228 1110 245 229 1111 253 220 1112 245 229 1113 65 64 1114 253 220 1115 36 230 1116 229 231 1117 35 51 1118 228 232 1119 35 51 1120 229 231 1121 35 51 1122 228 232 1123 227 233 1124 227 233 1125 226 234 1126 52 50 1127 52 50 1128 35 51 1129 227 233 1130 252 235 1131 251 236 1132 52 50 1133 250 223 1134 52 50 1135 251 236 1136 224 237 1137 252 235 1138 52 50 1139 52 50 1140 225 238 1141 224 237 1142 252 235 1143 223 239 1144 222 240 1145 223 239 1146 252 235 1147 224 237 1148 226 234 1149 225 238 1150 52 50 1151 91 90 1152 78 77 1153 240 241 1154 238 242 1155 91 90 1156 239 243 1157 239 243 1158 91 90 1159 240 241 1160 78 77 1161 241 244 1162 240 241 1163 238 242 1164 104 103 1165 91 90 1166 242 226 1167 241 244 1168 78 77 1169 236 245 1170 117 116 1171 104 103 1172 235 246 1173 130 129 1174 117 116 1175 236 245 1176 104 103 1177 237 247 1178 143 142 1179 130 129 1180 144 157 1181 117 116 1182 236 245 1183 235 246 1184 235 246 1185 144 157 1186 130 129 1187 238 242 1188 237 247 1189 104 103 1190 233 248 1191 158 156 1192 144 157 1193 173 187 1194 172 171 1195 158 156 1196 233 248 1197 144 157 1198 234 249 1199 231 250 1200 173 187 1201 232 251 1202 158 156 1203 233 248 1204 232 251 1205 158 156 1206 232 251 1207 173 187 1208 235 246 1209 234 249 1210 144 157 1211 203 202 1212 188 186 1213 231 250 1214 173 187 1215 231 250 1216 188 186 1217 204 219 1218 203 202 1219 231 250 1220 220 218 1221 204 219 1222 230 252 1223 231 250 1224 230 252 1225 204 219 1226 230 252 1227 221 253 1228 220 218 1229

+
+
+
+ + + + 79.8473 97.1577 42.6349 79.8473 96.0059 58.2799 79.8473 94.85411 73.9248 80.5001 96.6383 42.8081 80.4329 95.16841 57.4107 80.3656 93.6985 72.0134 81.0578 95.8806 43.0325 80.9425 94.19931 56.6752 80.8272 92.5179 70.3179 81.5203 94.8844 43.3081 81.3762 93.09851 56.0732 81.2321 91.3125 68.83831 81.8875 93.6499 43.635 81.73381 91.8661 55.6048 82.1596 92.17691 44.0132 82.01551 90.50201 55.27 82.33641 90.4655 44.4426 82.2211 89.0063 55.0688 82.1058 87.5471 65.695 82.41801 88.5158 44.9233 82.3508 87.37902 55.0011 82.2835 86.24221 65.07901 82.40441 86.3276 45.4552 82.40441 85.62001 55.0671 82.40441 84.9124 64.679 81.8714 88.82711 66.5269 81.5801 90.0823 67.5747 80.6035 93.1113 71.13871 80.11351 94.27941 72.9421 79.8473 94.85411 73.9248 79.8473 94.6542 76.6402 79.8473 94.4543 79.3556 79.8473 94.2544 82.0709 79.8473 94.0545 84.7863 79.8473 93.8546 87.5017 80.2022 93.80601 75.2381 80.1931 93.5506 77.8852 80.1864 93.2874 80.5147 80.18201 93.0163 83.1266 80.18 92.7373 85.7209 80.1803 92.4505 88.2977 80.1829 92.1558 90.85691 80.5583 92.8817 73.84191 80.5412 92.57621 76.4226 80.5291 92.25431 78.9666 80.5217 91.91601 81.47401 80.5193 91.5614 83.9447 80.5217 91.1903 86.3788 80.52901 90.8029 88.7762 80.5411 90.3991 91.1369 80.88391 91.9538 72.5766 80.8608 91.60871 75.0991 80.8451 91.2387 77.56591 80.8367 90.84381 79.9769 80.8358 90.42401 82.3321 80.8422 89.9793 84.6316 80.8561 89.5096 86.8754 80.8773 89.0151 89.0634 81.2062 90.93161 71.3393 81.1786 90.5552 73.8073 81.1611 90.1446 76.1986 81.1538 89.6997 78.5132 81.1567 89.2206 80.7511 81.1698 88.7072 82.9124 81.193 88.1595 84.99691 81.2264 87.5775 87.0048 81.5324 89.7473 70.1082 81.50241 89.3506 72.5255 81.4858 88.90901 74.84191 81.4826 88.42221 77.0576 81.4927 87.89041 79.1723 81.5162 87.3135 81.1863 81.5531 86.6916 83.0993 81.6034 86.0246 84.9116 81.8456 88.3866 68.9581 81.81671 87.9874 71.3333 81.80471 87.5309 73.5802 81.8098 87.01702 75.6985 81.832 86.44561 77.6885 81.8712 85.8169 79.55001 81.9274 85.1308 81.2831 82.0007 84.3873 82.88771 82.1361 86.7526 67.9441 82.1136 86.3794 70.2915 82.1124 85.93402 72.4775 82.1327 85.4165 74.5021 82.1744 84.8269 76.3654 82.23751 84.1652 78.0673 82.32201 83.4314 79.60781 82.4279 82.6254 80.9869 82.40441 84.9124 64.679 82.37091 84.7056 67.2279 82.3642 84.4084 69.5744 82.3844 84.0207 71.7186 82.4314 83.5427 73.6605 82.50531 82.9742 75.4 82.60601 82.3153 76.93711 82.7336 81.566 78.2719 82.888 80.7262 79.40441 82.3843 84.8203 65.9787 82.27101 85.7312 67.5105 82.15541 86.9122 66.7099 82.28791 85.8714 66.2712 82.3642 84.5683 68.4264 82.25531 85.3899 69.8528 82.1222 86.57501 69.138 82.2602 85.5707 68.7044 82.371 84.2259 70.6718 82.2638 84.9673 72.0132 82.1103 86.16571 71.4047 82.2565 85.1887 70.95571 82.4046 83.79301 72.7148 82.29631 84.4635 73.9918 82.11991 85.68431 73.51 82.277 84.7255 73.0252 82.46501 83.2698 74.5555 82.35301 83.87831 75.7884 82.1509 85.1307 75.45391 82.3216 84.18101 74.91281 82.5523 82.6561 76.1938 82.4338 83.2119 77.4033 82.2033 84.5051 77.23651 82.39041 83.5553 76.6186 82.6665 81.9519 77.6298 82.53881 82.4643 78.8362 82.2771 83.8073 78.8577 82.4833 82.8483 78.1425 82.80751 81.1574 78.86351 82.6678 81.6354 80.0874 82.3723 83.0374 80.3175 82.60031 82.06 79.4845 80.11351 94.27941 72.9421 80.3656 93.6985 72.0134 80.6035 93.1113 71.13871 80.8272 92.5179 70.3179 81.2321 91.3125 68.83831 81.5801 90.0823 67.5747 81.8714 88.82711 66.5269 82.1058 87.5471 65.695 82.2835 86.24221 65.07901 80.3083 91.3573 92.6183 80.0722 92.6235 91.15161 79.8473 93.7044 89.5419 + + + + + + + + + + 0.8707484 0.4894393 0.04739654 0.6914731 0.7177501 0.08185243 0.621434 0.7793409 0.08029627 0.8418046 0.5378662 0.0454427 0.9194846 0.3898836 0.05038726 0.8381909 0.5398921 0.07715356 0.9522336 0.3012562 0.04996013 0.9212152 0.3835014 0.0654937 0.9727327 0.2274582 0.04532068 0.9646297 0.2586527 0.05087596 0.9860016 0.1627873 0.0360732 0.9861937 0.1617206 0.03561574 0.9941548 0.104802 0.02594107 0.9960525 0.08627754 0.02087503 0.9983804 0.05472123 0.01556485 0.9996109 0.02685648 0.00753808 0.9994789 0.03091609 0.00927788 0.99998 -0.006317377 -4.57782e-4 0.9244272 0.3803305 0.0279861 0.9257762 0.3768233 0.03070253 0.9455112 0.3231969 0.0394001 0.955544 0.291302 0.0455951 0.9658309 0.2549547 0.04657179 0.9393972 0.3406501 0.03860616 0.9746286 0.2196767 0.04290986 0.9827966 0.1804271 0.03946077 0.9894639 0.1416702 0.0298478 0.9941768 0.1067239 0.01492363 0.9960465 0.08859646 0.006500482 0.9525128 0.3028142 0.03198438 0.9445919 0.3264306 0.03448635 0.9415204 0.3355292 0.03097707 0.9503589 0.3098279 0.02871829 0.9592487 0.2809597 0.03006136 0.9578014 0.2862051 0.02652078 0.9648793 0.261179 0.02816873 0.963956 0.2649391 0.02441549 0.9695603 0.2434811 0.02588015 0.966104 0.2574568 0.01895219 0.9604689 0.2757102 0.03851515 0.9556319 0.2916765 0.04114049 0.9654024 0.2581588 0.03677517 0.9695957 0.2422005 0.03497499 0.9730964 0.228007 0.033113 0.9759755 0.2156186 0.03131276 0.9740551 0.2248054 0.0260635 0.978309 0.2050249 0.02960318 0.9771376 0.2110717 0.02551412 0.9671458 0.2505912 0.04281806 0.9634671 0.264237 0.04370373 0.9705498 0.2373194 0.04138439 0.9734994 0.2252007 0.03979694 0.9759909 0.2144555 0.03808742 0.9780687 0.2050868 0.03634792 0.9797614 0.1971547 0.0346089 0.980373 0.1944997 0.03222841 0.9790739 0.2017293 0.02682602 0.972953 0.2265747 0.04501581 0.970395 0.2372273 0.0453518 0.9749829 0.2178734 0.04403853 0.9767869 0.2098782 0.04287898 0.9783516 0.2027385 0.0415365 0.979666 0.1965741 0.04016321 0.9807442 0.1914183 0.03872925 0.9811885 0.189493 0.03689754 0.9784021 0.2018513 0.04455739 0.9775879 0.2056987 0.04483252 0.9791342 0.1983721 0.04409962 0.9797956 0.1952022 0.0435512 0.9803801 0.1923893 0.04290914 0.9808802 0.1899806 0.04220771 0.9812818 0.1880589 0.04147547 0.9815254 0.1869906 0.04052937 0.9839563 0.1738655 0.04001009 0.9843873 0.171272 0.0405901 0.9834666 0.1766425 0.03988796 0.9829423 0.1795158 0.03998053 0.9824079 0.1823512 0.04028511 0.9818899 0.1850066 0.04080396 0.9814999 0.1867743 0.04211264 0.9815164 0.186761 0.04178333 0.9815074 0.1868216 0.04172658 0.9815116 0.1868442 0.04152327 0.9895325 0.1407557 0.0318318 0.9888289 0.1458522 0.03073304 0.9900365 0.1371524 0.03189235 0.988223 0.1498463 0.03100687 0.9873899 0.1554041 0.03018355 0.9867081 0.159553 0.03082412 0.9857751 0.1652928 0.03042775 0.9850316 0.169472 0.03149557 0.9840348 0.1751504 0.03158748 0.983283 0.1790534 0.0330823 0.9822868 0.1843352 0.03366249 0.981574 0.1877512 0.03552377 0.9814112 0.1873888 0.04144525 0.9806473 0.1923328 0.03659266 0.980029 0.1950474 0.03872871 0.9812593 0.1881214 0.04171997 0.9795305 0.1972733 0.04004061 0.9957343 0.09027433 0.0190742 0.9961469 0.08527064 0.02050888 0.9946008 0.1007723 0.02478104 0.994118 0.1055644 0.02420133 0.9910668 0.1293996 0.03228884 0.9944316 0.1043445 0.01477116 0.9951428 0.09699028 0.01684665 0.9934813 0.1116991 0.02276706 0.992743 0.118321 0.02148514 0.9926081 0.1208257 0.01141417 0.9935846 0.1123414 0.0130012 0.9918953 0.1254022 0.02044767 0.9909364 0.1328817 0.01968502 0.9902009 0.1393209 0.009583055 0.9914785 0.1298593 0.01034599 0.9898646 0.1406942 0.01931869 0.9886875 0.1487487 0.01925736 0.9871995 0.1591873 0.009827077 0.9887653 0.1491785 0.009430468 0.9874042 0.1569885 0.01968455 0.9860362 0.16526 0.02053922 0.9837359 0.1791746 0.01266521 0.9855168 0.1692274 0.01089525 0.9846048 0.1734091 0.02197366 0.983142 0.1812834 0.02383536 0.9801017 0.1976439 0.01837271 0.9819179 0.1886988 0.01516789 0.9816734 0.1887598 0.02621579 0.9802451 0.1956278 0.02914577 0.9774895 0.2091764 0.02755856 0.9783341 0.2058173 0.02240061 0.9788843 0.2018195 0.03247177 0.9782106 0.2044195 0.03628766 0.9321132 0.3603996 0.03573781 0.9349578 0.3528637 0.03662312 0.9454655 0.3231411 0.04092669 0.9539716 0.2963727 0.04583996 0.9710474 0.2378025 0.02273648 0.975323 0.2193393 0.02520859 0.9783653 0.2055428 0.02352982 0.9618167 0.2696078 0.04712182 0.9707766 0.2352094 0.04764002 0.9786159 0.2006 0.04550349 0.9903244 0.1343159 0.03488367 0.9849861 0.1677351 0.04083508 0.9944868 0.1012004 0.02746695 0.9962249 0.0841403 0.02136313 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

4 0 0 3 1 1 0 2 2 4 0 3 0 2 4 1 3 5 7 4 6 6 5 7 3 1 8 7 4 9 3 1 10 4 0 11 10 6 12 9 7 13 6 5 14 10 6 15 6 5 16 7 4 17 13 8 18 12 9 19 9 7 20 13 8 21 9 7 22 10 6 23 15 10 24 14 11 25 12 9 26 15 10 27 12 9 28 13 8 29 17 12 30 16 13 31 14 11 32 17 12 33 14 11 34 15 10 35 20 14 36 19 15 37 16 13 38 20 14 39 16 13 40 17 12 41 23 16 42 22 17 43 19 15 44 23 16 45 19 15 46 20 14 47 1 3 48 2 18 49 28 19 50 4 0 51 1 3 52 28 19 53 7 4 54 4 0 55 27 20 56 10 6 57 7 4 58 8 21 59 10 6 60 8 21 61 11 22 62 4 0 63 28 19 64 5 23 65 7 4 66 27 20 67 8 21 68 27 20 69 4 0 70 5 23 71 26 24 72 13 8 73 10 6 74 26 24 75 10 6 76 11 22 77 13 8 78 26 24 79 25 25 80 13 8 81 25 25 82 15 10 83 20 14 84 17 12 85 18 26 86 20 14 87 18 26 88 21 27 89 23 16 90 20 14 91 21 27 92 23 16 93 21 27 94 24 28 95 15 10 96 25 25 97 18 26 98 15 10 99 18 26 100 17 12 101 36 29 102 35 30 103 30 31 104 36 29 105 30 31 106 31 32 107 37 33 108 36 29 109 31 32 110 37 33 111 31 32 112 32 34 113 38 35 114 37 33 115 32 34 116 38 35 117 32 34 118 33 36 119 39 37 120 38 35 121 33 36 122 39 37 123 33 36 124 34 38 125 43 39 126 42 40 127 35 30 128 43 39 129 35 30 130 36 29 131 44 41 132 43 39 133 36 29 134 44 41 135 36 29 136 37 33 137 45 42 138 44 41 139 37 33 140 45 42 141 37 33 142 38 35 143 46 43 144 45 42 145 38 35 146 46 43 147 38 35 148 39 37 149 47 44 150 46 43 151 39 37 152 47 44 153 39 37 154 40 45 155 48 46 156 47 44 157 40 45 158 48 46 159 40 45 160 41 47 161 51 48 162 50 49 163 42 40 164 51 48 165 42 40 166 43 39 167 52 50 168 51 48 169 43 39 170 52 50 171 43 39 172 44 41 173 53 51 174 52 50 175 44 41 176 53 51 177 44 41 178 45 42 179 54 52 180 53 51 181 45 42 182 54 52 183 45 42 184 46 43 185 55 53 186 54 52 187 46 43 188 55 53 189 46 43 190 47 44 191 56 54 192 55 53 193 47 44 194 56 54 195 47 44 196 48 46 197 57 55 198 56 54 199 48 46 200 57 55 201 48 46 202 49 56 203 59 57 204 58 58 205 50 49 206 59 57 207 50 49 208 51 48 209 60 59 210 59 57 211 51 48 212 60 59 213 51 48 214 52 50 215 61 60 216 60 59 217 52 50 218 61 60 219 52 50 220 53 51 221 62 61 222 61 60 223 53 51 224 62 61 225 53 51 226 54 52 227 63 62 228 62 61 229 54 52 230 63 62 231 54 52 232 55 53 233 64 63 234 63 62 235 55 53 236 64 63 237 55 53 238 56 54 239 65 64 240 64 63 241 56 54 242 65 64 243 56 54 244 57 55 245 67 65 246 66 66 247 58 58 248 67 65 249 58 58 250 59 57 251 68 67 252 67 65 253 59 57 254 68 67 255 59 57 256 60 59 257 69 68 258 68 67 259 60 59 260 69 68 261 60 59 262 61 60 263 70 69 264 69 68 265 61 60 266 70 69 267 61 60 268 62 61 269 71 70 270 70 69 271 62 61 272 71 70 273 62 61 274 63 62 275 72 71 276 71 70 277 63 62 278 72 71 279 63 62 280 64 63 281 73 72 282 72 71 283 64 63 284 73 72 285 64 63 286 65 64 287 75 73 288 74 74 289 66 66 290 75 73 291 66 66 292 67 65 293 76 75 294 75 73 295 67 65 296 76 75 297 67 65 298 68 67 299 77 76 300 76 75 301 68 67 302 77 76 303 68 67 304 69 68 305 78 77 306 77 76 307 69 68 308 78 77 309 69 68 310 70 69 311 79 78 312 78 77 313 70 69 314 79 78 315 70 69 316 71 70 317 80 79 318 79 79 319 71 79 320 80 80 321 71 80 322 72 80 323 81 81 324 80 81 325 72 81 326 81 82 327 72 82 328 73 82 329 105 83 330 75 73 331 83 84 332 74 74 333 105 83 334 82 85 335 75 73 336 105 83 337 74 74 338 109 86 339 76 75 340 84 87 341 75 73 342 109 86 343 83 84 344 76 75 345 109 86 346 75 73 347 113 88 348 77 76 349 85 89 350 76 75 351 113 88 352 84 87 353 77 76 354 113 88 355 76 75 356 117 90 357 78 77 358 86 91 359 77 76 360 117 90 361 85 89 362 78 77 363 117 90 364 77 76 365 121 92 366 79 78 367 87 93 368 78 77 369 121 92 370 86 91 371 79 78 372 121 92 373 78 77 374 125 94 375 80 95 376 88 96 377 79 78 378 125 94 379 87 93 380 80 95 381 125 94 382 79 78 383 129 97 384 81 98 385 89 99 386 80 95 387 129 97 388 88 96 389 81 98 390 129 97 391 80 95 392 91 100 393 99 101 394 102 102 395 91 100 396 102 102 397 100 103 398 100 103 399 102 102 400 101 104 401 100 103 402 101 104 403 82 85 404 92 105 405 103 106 406 106 107 407 92 105 408 106 107 409 104 108 410 104 108 411 106 107 412 105 83 413 104 108 414 105 83 415 83 84 416 106 107 417 100 103 418 82 85 419 106 107 420 82 85 421 105 83 422 103 106 423 91 100 424 100 103 425 103 106 426 100 103 427 106 107 428 93 109 429 107 110 430 110 111 431 93 109 432 110 111 433 108 112 434 108 112 435 110 111 436 109 86 437 108 112 438 109 86 439 84 87 440 110 111 441 104 108 442 83 84 443 110 111 444 83 84 445 109 86 446 107 110 447 92 105 448 104 108 449 107 110 450 104 108 451 110 111 452 94 113 453 111 114 454 114 115 455 94 113 456 114 115 457 112 116 458 112 116 459 114 115 460 113 88 461 112 116 462 113 88 463 85 89 464 114 115 465 108 112 466 84 87 467 114 115 468 84 87 469 113 88 470 111 114 471 93 109 472 108 112 473 111 114 474 108 112 475 114 115 476 95 117 477 115 118 478 118 119 479 95 117 480 118 119 481 116 120 482 116 120 483 118 119 484 117 90 485 116 120 486 117 90 487 86 91 488 118 119 489 112 116 490 85 89 491 118 119 492 85 89 493 117 90 494 115 118 495 94 113 496 112 116 497 115 118 498 112 116 499 118 119 500 96 121 501 119 122 502 122 123 503 96 121 504 122 123 505 120 124 506 120 124 507 122 123 508 121 92 509 120 124 510 121 92 511 87 93 512 122 123 513 116 120 514 86 91 515 122 123 516 86 91 517 121 92 518 119 122 519 95 117 520 116 120 521 119 122 522 116 120 523 122 123 524 97 125 525 123 126 526 126 127 527 97 125 528 126 127 529 124 128 530 124 128 531 126 127 532 125 94 533 124 128 534 125 94 535 88 96 536 126 127 537 120 124 538 87 93 539 126 127 540 87 93 541 125 94 542 123 126 543 96 121 544 120 124 545 123 126 546 120 124 547 126 127 548 98 129 549 127 130 550 130 131 551 98 129 552 130 131 553 128 132 554 128 132 555 130 131 556 129 97 557 128 132 558 129 97 559 89 99 560 130 131 561 124 128 562 88 96 563 130 131 564 88 96 565 129 97 566 127 130 567 97 125 568 124 128 569 127 130 570 124 128 571 130 131 572 29 133 573 30 31 574 35 30 575 29 133 576 35 30 577 131 134 578 35 30 579 132 135 580 131 134 581 42 40 582 133 136 583 132 135 584 42 40 585 132 135 586 35 30 587 39 37 588 34 38 589 142 137 590 39 37 591 142 137 592 40 45 593 41 47 594 40 45 595 141 138 596 142 137 597 141 138 598 40 45 599 41 47 600 140 139 601 49 56 602 41 47 603 49 56 604 48 46 605 141 138 606 140 139 607 41 47 608 50 49 609 134 140 610 133 136 611 50 49 612 133 136 613 42 40 614 135 141 615 58 58 616 66 66 617 135 141 618 66 66 619 136 142 620 134 140 621 50 49 622 58 58 623 134 140 624 58 58 625 135 141 626 74 74 627 138 143 628 137 144 629 139 145 630 102 102 631 99 101 632 139 145 633 99 101 634 90 146 635 138 143 636 101 104 637 102 102 638 138 143 639 102 102 640 139 145 641 136 142 642 66 66 643 74 74 644 136 142 645 74 74 646 137 144 647 74 74 648 82 85 649 101 104 650 101 104 651 138 143 652 74 74 653

+
+
+
+ + + + 79.8473 93.7044 89.5419 79.8473 93.4797 92.5949 79.8473 93.2549 95.64791 80.0812 92.2922 94.096 80.3083 91.3573 92.6183 79.95951 93.1827 90.3594 80.0722 92.6235 91.15161 80.1291 92.3283 91.5344 80.1875 92.0185 91.9097 80.2472 91.69461 92.2726 + + + + + + + + + + 0.9736098 0.2275785 0.01709049 0.9722744 0.2331652 0.01779258 0.971552 0.236189 0.01736545 0.9768898 0.2129021 0.01895242 0.9750229 0.2212631 0.01931852 0.9784384 0.2055148 0.02053922 0.9777669 0.2085972 0.02142429 0.9764883 0.2145186 0.02127176 0.97928 0.2011784 0.02319407 0.9787943 0.2036204 0.02237015 0.9785323 0.2049245 0.02192413 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 91.05101 30.72 -19.6897 91.0076 28.715 -39.1937 91.0021 27.1844 -39.3869 90.9923 25.6441 -39.6583 90.9601 28.5557 -58.5541 90.9559 27.0333 -58.8164 90.9487 25.5036 -59.1598 90.9089 28.6913 -78.4951 90.9065 27.1429 -78.7481 90.9023 25.589 -79.08 90.8561 30.8023 -99.2679 91.01371 24.3685 -20.9304 91.02941 25.7762 -20.6075 91.0319 30.4649 -28.9627 91.0106 30.2703 -38.3841 90.98751 30.1441 -47.9765 90.9629 30.0938 -57.7621 90.93721 30.1271 -67.76271 90.9106 30.2514 -77.9999 90.8835 30.4741 -88.4947 90.88761 24.8089 -84.5533 90.9051 24.8089 -76.85102 90.9226 24.8089 -69.1487 90.93991 24.8089 -61.4464 90.95671 24.8089 -53.744 90.97301 24.6988 -45.5406 90.98801 24.5887 -37.3372 91.0017 24.4786 -29.1338 90.86441 28.5753 -95.9267 90.8725 26.8664 -92.2931 90.88021 25.6117 -88.4833 91.05101 30.72 -19.6897 90.7438 36.9884 -22.0123 90.94701 33.8076 -25.9688 90.0058 41.7325 -23.5348 90.42961 39.0963 -27.973 90.7359 36.3005 -32.159 90.9276 33.3494 -36.0984 88.34951 44.9058 -25.3523 89.4005 43.0647 -30.2273 90.0376 40.8995 -34.6038 90.4356 38.3998 -38.8147 90.7238 35.7685 -42.8039 90.9051 33.0093 -46.5765 86.9183 45.6735 -33.1623 88.4028 44.2082 -38.1232 89.4475 42.4232 -42.5848 90.06401 40.3271 -46.5598 90.43701 37.9208 -50.374 90.7081 35.4112 -54.0002 90.88 32.8014 -57.4431 86.9559 45.3645 -47.8796 88.45021 43.8942 -52.227 89.48931 42.1177 -56.0908 90.0858 40.044 -59.4841 90.4349 37.683 -62.7173 90.6897 35.2473 -65.8005 90.85301 32.7396 -68.7376 86.9886 45.5323 -64.2472 88.4932 44.0031 -67.7754 89.5272 42.1823 -70.84101 90.1044 40.0789 -73.4573 90.4301 37.7096 -75.9104 90.6693 35.2952 -78.2566 90.8246 32.8374 -80.4986 87.01802 46.2225 -82.3935 88.53321 44.5744 -84.8796 89.5624 42.6506 -86.9304 90.1208 40.4603 -88.55931 90.4236 38.0239 -90.01821 90.6477 35.5729 -91.41941 90.79541 33.1083 -92.7643 85.0016 49.0455 -100.829 86.06901 48.3125 -101.674 87.00981 47.5142 -102.418 87.82621 46.6517 -103.063 88.52011 45.7261 -103.61 89.0935 44.7384 -104.06 89.5484 43.6898 -104.416 89.8866 42.5812 -104.679 90.1101 41.4138 -104.85 90.136 41.2152 -104.848 90.4554 38.1988 -104.428 90.67041 35.3746 -103.264 90.7955 32.8986 -101.485 90.8561 30.8023 -99.2679 90.81221 36.4742 -18.9889 89.9886 42.2052 -18.6202 89.37371 43.988 -18.5643 88.2672 45.5158 -18.5367 86.7293 46.5988 -18.5282 84.9712 47.2674 -18.5273 84.9813 46.8527 -26.5901 84.9888 46.5997 -35.2307 84.9942 46.5186 -44.478 84.9962 46.5456 -49.3383 84.99781 46.6193 -54.361 84.999 46.7411 -59.55 85 46.9123 -64.9087 85.0007 47.1339 -70.44081 85.0011 47.4075 -76.1499 85.00141 47.7341 -82.0396 85.00151 48.1152 -88.1136 85.0016 48.5519 -94.37551 90.8835 30.4741 -88.4947 90.9106 30.2514 -77.9999 90.93721 30.1271 -67.76271 90.9629 30.0938 -57.7621 90.98751 30.1441 -47.9765 91.0106 30.2703 -38.3841 91.0319 30.4649 -28.9627 85.0016 49.0455 -100.829 84.4667 51.0978 -23.4265 84.47502 50.5455 -33.3962 84.48011 50.2277 -44.1997 84.4825 50.1632 -55.8909 84.48291 50.3711 -68.5236 84.482 50.8703 -82.1518 84.2397 55.9019 -27.2592 84.2587 55.3373 -36.3741 84.2751 54.9542 -46.1343 84.2895 54.7671 -56.5814 84.3024 54.7908 -67.75701 84.3142 55.0398 -79.7028 84.2915 61.6309 -30.8108 84.3357 61.1025 -39.0564 84.3781 60.7024 -47.7586 84.4191 60.4411 -56.9468 84.4589 60.3288 -66.6506 84.4981 60.3761 -76.8993 84.45 69.3745 -20.093 84.5367 68.79811 -26.9706 84.622 68.2849 -34.0816 84.8711 67.18502 -56.9872 84.9526 66.9853 -65.2045 85.11441 66.87271 -82.6157 85.0016 48.5519 -94.37551 85.00151 48.1152 -88.1136 85.00141 47.7341 -82.0396 85.0011 47.4075 -76.1499 85.0007 47.1339 -70.44081 85 46.9123 -64.9087 84.999 46.7411 -59.55 84.99781 46.6193 -54.361 84.9962 46.5456 -49.3383 84.9942 46.5186 -44.478 84.9888 46.5997 -35.2307 84.9813 46.8527 -26.5901 84.9712 47.2674 -18.5273 84.7799 63.581 -85.2153 84.53691 60.5931 -87.72261 84.3854 57.9091 -90.13771 84.3256 55.5288 -92.46051 84.3572 53.4523 -94.691 84.4805 51.6795 -96.8292 84.6062 49.9013 -18.5557 84.3834 52.55 -18.6329 84.1985 57.8552 -18.9224 84.23191 63.1485 -19.3745 84.4067 68.4247 -19.9706 84.706 67.8409 -41.4431 84.789 67.4723 -49.0726 85.0336 66.87921 -73.7415 85.11441 66.87271 -82.6157 84.3865 76.1152 -32.0021 84.5632 75.8415 -47.3004 84.7367 75.8464 -63.5792 83.95901 82.63031 -33.6385 84.1039 82.90161 -48.2835 84.2467 83.35871 -63.5821 83.2983 88.07201 -35.4959 83.3843 88.7638 -49.5131 83.4692 89.5484 -63.8572 82.40441 91.4526 -24.1591 82.40441 95.4031 -77.81961 83.5536 90.4412 -78.5719 84.3883 84.03221 -79.62191 84.6878 80.28501 -80.2587 84.9086 76.17601 -80.9699 85.0508 71.7053 -81.7555 84.45 69.3745 -20.093 84.3151 74.96102 -20.9006 84.0086 80.5178 -21.8526 83.4416 86.0327 -22.9441 83.0055 88.7615 -23.5382 82.40441 91.94641 -30.8666 82.40441 92.4402 -37.5742 82.40441 92.93402 -44.2818 82.40441 93.4279 -50.9894 82.40441 93.9217 -57.6969 82.40441 94.4155 -64.40451 82.40441 94.9093 -71.1121 85.0336 66.87921 -73.7415 84.9526 66.9853 -65.2045 84.8711 67.18502 -56.9872 84.789 67.4723 -49.0726 84.706 67.8409 -41.4431 84.622 68.2849 -34.0816 84.5367 68.79811 -26.9706 79.8473 102.079 -24.2076 79.8473 104.145 -52.2761 81.1827 102.69 -51.4412 82.054 100.361 -50.1526 82.46131 97.1559 -48.4101 79.8473 106.211 -80.3446 81.2196 104.704 -79.3804 82.1033 102.345 -77.8888 82.4982 99.1345 -75.86991 79.8473 108.278 -108.413 81.2566 106.718 -107.32 82.1525 104.33 -105.625 82.53511 101.113 -103.33 82.40441 99.0637 -127.543 82.40441 95.4031 -77.81961 82.40441 94.9093 -71.1121 82.40441 94.4155 -64.40451 82.40441 93.9217 -57.6969 82.40441 93.4279 -50.9894 82.40441 92.93402 -44.2818 82.40441 92.4402 -37.5742 82.40441 91.94641 -30.8666 82.40441 91.4526 -24.1591 79.8473 109.365 -123.175 80.9192 108.409 -123.664 81.65921 107.223 -124.252 82.4088 104.581 -125.473 82.5763 101.852 -126.586 82.40441 98.6061 -121.328 82.40441 98.1486 -115.112 82.40441 97.691 -108.897 82.40441 97.2334 -102.681 82.40441 96.77581 -96.4659 82.40441 96.3182 -90.25051 82.40441 95.86071 -84.03511 82.41471 91.6427 -24.2042 82.4665 94.3912 -24.0106 82.2607 97.13871 -23.9561 81.57151 99.8637 -24.0393 80.8866 101.109 -24.1228 85.0016 49.0455 -100.829 87.3492 56.8759 -105.964 84.9164 53.735 -98.0604 85.401 55.7794 -99.6186 85.92031 57.7288 -101.483 84.6556 57.4226 -94.3025 85.0175 59.3022 -96.3941 85.401 61.097 -98.6897 84.7231 62.1558 -90.25241 84.9239 63.7021 -92.9413 85.1333 65.179 -95.7213 85.11441 66.87271 -82.6157 85.09941 70.88391 -95.82431 84.4805 51.6795 -96.8292 84.3572 53.4523 -94.691 84.3256 55.5288 -92.46051 84.3854 57.9091 -90.13771 84.53691 60.5931 -87.72261 84.7799 63.581 -85.2153 85.1142 67.9584 -86.0382 85.11251 68.9902 -89.3778 85.108 69.96601 -92.6385 87.02671 56.0259 -104.998 86.7107 55.1317 -104.123 86.4022 54.1967 -103.341 86.10221 53.2246 -102.652 85.8114 52.2195 -102.056 85.5306 51.1852 -101.555 85.2605 50.1258 -101.146 85.19802 68.6549 -97.2019 85.34671 66.5568 -98.5493 85.5464 64.5924 -99.8659 85.79821 62.7645 -101.151 86.10321 61.0759 -102.404 86.4626 59.5296 -103.624 86.8776 58.1285 -104.811 90.1308 53.2075 -108.104 89.1169 55.2616 -107.335 87.3492 56.8759 -105.964 88.22731 58.6334 -108.798 89.1025 60.07 -112.081 87.7875 57.7933 -107.32 88.6664 59.3931 -110.388 89.58361 58.44 -111.012 89.8649 56.7423 -109.978 90.0324 54.997 -109.004 89.7183 54.2896 -107.795 88.32711 56.1236 -106.725 87.3492 56.8759 -105.964 86.4626 59.5296 -103.624 87.0736 61.0872 -106.134 87.7136 62.508 -108.985 88.3586 63.7268 -112.086 85.79821 62.7645 -101.151 86.2447 64.248 -103.891 86.7131 65.62841 -106.879 87.18721 66.84761 -110.025 85.5837 67.8216 -101.555 85.8301 69.01731 -104.713 86.0774 70.098 -107.936 85.09941 70.88391 -95.82431 84.9845 74.2053 -109.077 89.1025 60.07 -112.081 88.6664 59.3931 -110.388 88.22731 58.6334 -108.798 87.7875 57.7933 -107.32 86.8776 58.1285 -104.811 86.10321 61.0759 -102.404 85.5464 64.5924 -99.8659 85.34671 66.5568 -98.5493 85.19802 68.6549 -97.2019 85.0925 71.3648 -97.5506 85.0838 71.8273 -99.2558 85.0732 72.2712 -100.941 85.06031 72.6963 -102.605 85.0452 73.1024 -104.251 85.02761 73.48941 -105.878 89.0296 64.6249 -115.414 89.10601 62.3756 -113.71 85.9958 71.81021 -110.661 87.00711 69.4151 -112.245 88.01831 67.02 -113.83 89.67121 46.2416 -104.787 89.7679 48.8292 -105.489 89.8722 51.3178 -106.558 88.7284 48.1423 -104.059 88.9302 50.5173 -104.85 89.1463 52.78 -106.009 87.3481 49.7901 -102.982 87.7081 51.9823 -103.904 88.0923 54.0512 -105.197 85.0016 49.0455 -100.829 87.3492 56.8759 -105.964 90.1101 41.4138 -104.85 89.8866 42.5812 -104.679 89.5484 43.6898 -104.416 89.0935 44.7384 -104.06 88.52011 45.7261 -103.61 87.82621 46.6517 -103.063 87.00981 47.5142 -102.418 86.06901 48.3125 -101.674 85.2605 50.1258 -101.146 85.5306 51.1852 -101.555 85.8114 52.2195 -102.056 86.10221 53.2246 -102.652 86.4022 54.1967 -103.341 86.7107 55.1317 -104.123 87.02671 56.0259 -104.998 90.1308 53.2075 -108.104 90.1614 52.2043 -107.644 90.1827 51.1883 -107.212 90.1961 50.16 -106.81 90.2034 49.1203 -106.439 90.2059 48.0685 -106.101 90.20401 47.0069 -105.799 90.1979 45.9355 -105.533 90.1876 44.8547 -105.305 90.1646 43.3008 -105.048 88.32711 56.1236 -106.725 89.1169 55.2616 -107.335 89.7183 54.2896 -107.795 90.1784 44.2441 -105.191 90.1873 44.8359 -105.301 89.0296 64.6249 -115.414 84.9845 74.2053 -109.077 84.5389 76.7022 -125.067 84.9089 75.0392 -113.239 84.8105 75.7332 -117.286 84.6876 76.2871 -121.227 86.2009 73.7432 -122.862 87.4654 70.7658 -120.43 88.3832 67.7362 -117.914 88.01831 67.02 -113.83 87.00711 69.4151 -112.245 85.9958 71.81021 -110.661 84.9845 74.2053 -109.077 85.11441 66.87271 -82.6157 84.7642 83.65702 -122.641 84.9281 82.9234 -114.372 85.0022 81.6821 -105.718 84.9911 79.3241 -93.8133 84.3917 89.7078 -126.77 84.5175 89.4524 -118.965 84.5778 88.86911 -110.935 84.57801 87.94741 -102.649 84.50701 86.2532 -91.44841 84.3883 84.03221 -79.62191 83.6926 94.5777 -123.246 83.73101 94.21791 -115.571 83.73651 93.6941 -107.785 83.7121 93.00101 -99.8693 83.6448 91.8528 -89.37701 82.40441 99.0637 -127.543 82.40441 95.4031 -77.81961 83.5536 90.4412 -78.5719 84.6878 80.28501 -80.2587 84.9086 76.17601 -80.9699 85.0508 71.7053 -81.7555 82.40441 98.6061 -121.328 82.40441 98.1486 -115.112 82.40441 97.691 -108.897 82.40441 97.2334 -102.681 82.40441 96.77581 -96.4659 82.40441 96.3182 -90.25051 82.40441 95.86071 -84.03511 85.1142 67.9584 -86.0382 85.11251 68.9902 -89.3778 85.108 69.96601 -92.6385 85.09941 70.88391 -95.82431 85.0925 71.3648 -97.5506 85.0838 71.8273 -99.2558 85.0732 72.2712 -100.941 85.06031 72.6963 -102.605 85.0452 73.1024 -104.251 85.02761 73.48941 -105.878 84.9089 75.0392 -113.239 84.8105 75.7332 -117.286 84.6876 76.2871 -121.227 84.5389 76.7022 -125.067 84.5728 79.2311 -126.58 84.5932 81.9317 -127.759 84.5739 84.76601 -128.569 84.47702 87.6808 -128.997 84.2593 90.61402 -129.06 83.8732 93.5189 -128.802 83.2713 96.3497 -128.275 + + + + + + + + + + 0.9999944 -0.002330839 -0.002434194 0.9999918 -0.003294408 -0.002351939 0.9999885 -0.004180073 -0.002345025 0.9999798 -0.005978226 -0.002192735 0.9999961 -0.00112152 -0.002575218 0.9999942 -0.002339065 -0.002491235 0.9999946 -0.002165138 -0.002490401 0.9999886 -0.004177927 -0.00234729 0.9999957 -0.00217837 -0.002000749 0.9999973 -7.66329e-4 -0.002245247 0.9999968 -5.28568e-4 -0.00251162 0.9999966 -9.65907e-4 -0.002445518 0.9999966 -4.83263e-4 -0.002571046 0.9999969 -6.9204e-4 -0.00239855 0.9999926 -0.003363907 -0.001880645 0.999953 -0.009526133 -0.001797318 0.9999645 -0.008216321 -0.001890361 0.9999406 -0.01078003 -0.001607537 0.9999801 -0.006025671 -0.001905679 0.999982 -0.005596399 -0.002195417 0.9999703 -0.007438182 -0.002087056 0.9999635 -0.008324325 -0.00194025 0.9999904 -0.004042804 -0.001757204 0.9999967 -2.74099e-4 -0.002601921 0.9999967 -2.74937e-4 -0.002587854 0.9999968 -9.06381e-5 -0.002545833 0.9999968 -5.86298e-4 -0.002498686 0.9999962 -0.001132845 -0.002544939 0.9999968 -6.05863e-5 -0.002552032 0.9999825 -0.00549215 -0.002181053 0.9999836 -0.005286931 -0.002246439 0.9999932 -0.002894997 -0.002272248 0.99999 -0.003838598 -0.0023458 0.9999969 -9.79743e-4 -0.002352058 0.9999946 -0.002315461 -0.002355217 0.9999932 -0.002925455 -0.002271234 0.9999946 -0.002178549 -0.002465963 0.9999966 -5.03103e-4 -0.002570927 0.9987407 0.05002093 -0.003875911 0.9953712 0.0958901 -0.006439447 0.9938912 0.1102662 -0.00463891 0.9987989 0.0488916 -0.003234982 0.8992582 0.4367651 -0.02389675 0.9681928 0.2495254 -0.01843363 0.9706338 0.2402779 -0.01168882 0.9895453 0.1440492 -0.007080376 0.9887372 0.1493925 -0.008972704 0.9955368 0.09424334 -0.004974603 0.9987225 0.05041676 -0.00338751 0.5465403 0.8368403 -0.03149592 0.7321345 0.679885 -0.04165923 0.7605791 0.6489078 -0.02093642 0.909485 0.4155858 -0.01120066 0.9739859 0.2265431 -0.005462884 0.9906892 0.1360858 -0.003967463 0.9958305 0.09115982 -0.003418087 0.9987367 0.05017334 -0.002807736 0.7885555 0.6149622 -0.001312315 0.6007335 0.7994418 -0.00350964 0.9198414 0.3922907 0 0.9774253 0.2112815 -9.15564e-5 0.9919542 0.1265922 -0.001190185 0.9962297 0.08673483 -0.001892149 0.9987838 0.04925709 -0.002166807 0.812254 0.58312 0.01464891 0.6471647 0.7621009 0.01950192 0.9292331 0.3693798 0.009186387 0.9806938 0.195504 0.004242122 0.9932271 0.1161842 0.00112915 0.9966944 0.08124196 -4.88306e-4 0.9988634 0.04764044 -0.001525938 0.8333256 0.5519695 0.02996981 0.683848 0.7285894 0.03885114 0.9381803 0.3456261 0.0189827 0.9839648 0.1781092 0.009521901 0.9944861 0.1048016 0.003753781 0.9972136 0.07458883 0.00125128 0.9989875 0.04498541 -5.79866e-4 0.4711822 0.8801057 -0.05832171 0.6953223 0.7164722 -0.05652183 0.8828336 0.4682585 -0.03659266 0.9688395 0.2471464 -0.01638889 0.4049829 0.9132409 -0.04449617 0.3590007 0.9317904 -0.05371427 0.5005993 0.8656648 -0.004974544 0.4525684 0.8915252 -0.01910495 0.5287812 0.8486563 0.01315391 0.512443 0.85868 0.008423209 0.9954621 0.09515756 4.27263e-4 0.9993017 0.03732424 0.001800596 0.999607 0.02789402 -0.002807676 0.9995756 0.02899265 -0.002868711 0.9995461 0.02999979 -0.002777159 0.9995214 0.03082394 -0.002624571 0.9995086 0.03125178 -0.002411007 0.9995104 0.03122133 -0.002075314 0.5630201 0.8258829 0.03042769 0.5543772 0.8320083 0.02069187 0.5657938 0.8238939 0.032808 0.5938038 0.8036508 0.03927761 0.8482195 0.5286838 0.03189253 0.785445 0.6177414 0.03836274 0.6043695 0.7953275 0.04681628 0.5918001 0.804062 0.05707108 0.6426949 0.7643427 0.05218708 0.5974805 0.7995501 0.06113058 0.5746152 0.8164187 0.05725395 0.7168092 0.6958423 0.0445888 0.9009249 0.4332191 0.02560555 0.9928433 0.1192986 0.005493402 0.9976772 0.06811916 1.83116e-4 0.9955086 0.09464031 0.002472043 0.9995253 0.03076303 -0.001678526 0.9995916 0.02856582 -7.93496e-4 0.9990347 0.04391658 -0.001037597 0.9874169 0.1579061 0.008575856 0.9722583 0.2335348 0.0132454 0.9426175 0.3333312 0.01904398 0.9998643 0.01641923 0.00137335 0.999786 0.02057009 0.002227902 0.9962485 0.08652013 -0.001831114 0.9961804 0.08728516 -0.002411007 0.9999139 0.01303142 0.001525878 0.9959056 0.09039813 -3.96751e-4 0.9999538 0.009491384 0.001586973 0.9955971 0.09372442 0.001434385 0.9999822 0.005737543 0.001617491 0.9952254 0.09753876 0.003570675 0.9999977 0.001770079 0.001220762 0.9948017 0.1016897 0.005371332 0.999529 -0.0298171 0.007263481 0.9996839 -0.02371335 0.008362233 0.9993174 -0.03637874 0.006439507 0.9990484 -0.0432763 0.005432426 0.9987131 -0.05053991 0.004211604 0.9983066 -0.05810815 0.002746701 0.9920728 0.1255541 -0.005279719 0.9913271 0.131416 6.71424e-4 0.9913192 0.1314454 -0.002868771 0.9905371 0.1372457 3.05194e-4 0.9901614 0.13993 2.44153e-4 0.9894149 0.1450857 0.002868711 0.9982935 0.05825996 -0.003997921 0.993366 0.1149959 -1.83115e-4 0.9891214 0.1470711 0.003021359 0.9881614 0.1533254 0.005340695 0.9880695 0.1538489 0.00701946 0.9873843 0.1582109 0.006439507 0.9864622 0.1637033 0.009674489 0.9867343 0.1619634 0.01110881 0.9851349 0.1714578 0.01055967 0.9986418 0.05209589 7.62974e-4 0.9999324 0.01120054 -0.003143429 0.9888427 0.148627 0.01001018 0.9845657 0.1745063 0.01333665 0.9999211 0.01242119 0.001892149 0.9997326 -0.02087479 0.009949088 0.9985423 -0.0526753 0.0117802 0.9988851 -0.04550373 0.01257377 0.9981178 -0.06033563 0.01098674 0.9991449 -0.03912585 0.01336747 0.9989252 -0.04342883 0.01620566 0.9991919 -0.03662276 0.01657181 0.99759 -0.06863617 0.01016265 0.9969331 -0.07770133 0.009338796 0.9994272 -0.03375369 -0.002441465 0.9983911 -0.05664283 -0.002624571 0.9960973 -0.0878936 0.008056879 0.9961378 -0.08774191 0.003296017 0.9940852 -0.1082192 0.009125053 0.9953619 0.09549248 0.01165807 0.9953348 0.09592002 0.01040685 0.9988374 0.04718291 0.009888231 0.9989122 0.04544252 0.01046794 0.9953265 0.09570854 0.01284861 0.9989981 0.04330599 0.01129186 0.9857613 0.1675488 0.01422178 0.9859806 0.1663596 0.01290953 0.9852478 0.1704796 0.01495432 0.999175 0.03912585 0.01089543 0.9996169 0.02563589 0.01043742 0.9995945 0.02676528 0.009735584 0.9995753 0.02743619 0.009826958 0.99961 0.02594089 0.01034581 0.9969092 0.07757973 0.01239079 0.9996438 0.02493387 0.009521842 0.9996712 0.02362143 0.009979605 0.9997008 0.02264481 0.009247124 0.9997707 0.01806718 0.0115056 0.9998921 0.01153612 0.009094595 0.9997438 0.02002048 0.01055955 0.9991515 0.03979635 0.01062047 0.9979017 0.06366205 0.01181071 0.9822903 0.1867774 0.01483231 0.991504 0.1293398 0.01382511 0.9772779 0.2115573 0.01309257 0.975016 0.2215363 0.01629704 0.9777346 0.2092376 0.01596134 0.9781357 0.2074075 0.0152595 0.9775261 0.2102459 0.01547312 0.994868 0.1003474 0.01297068 0.985085 0.1713629 0.01556456 0.9764031 0.2153745 0.01583945 0.9768504 0.2132664 0.01675486 0.9746304 0.2232174 0.01641929 0.9754784 0.2193704 0.01785355 0.8419023 0.5381448 0.04001063 0.7220821 0.6899454 0.05072271 0.7208023 0.6913512 0.04977679 0.8426374 0.5371089 0.03842377 0.9682782 0.249127 0.01931852 0.9684464 0.2485817 0.01785391 0.9986104 0.05249255 0.004669368 0.9983111 0.0579558 0.004028499 0.8406749 0.5398496 0.04275703 0.7203266 0.6914854 0.05456924 0.9679766 0.2501351 0.02130234 0.9989398 0.04577809 0.004882991 0.7935854 0.6067481 0.04559534 0.9325404 0.3598502 0.02960348 0.9876576 0.1559218 0.01486277 0.6789655 0.7321914 0.05386674 0.9996613 0.02588039 0.002746701 0.9998944 -0.0144965 -0.001068115 0.9997983 -0.0200814 -3.35708e-4 0.9998542 -0.01696836 -0.001953184 0.9997776 -0.02102768 -0.001648008 0.9992656 -0.03817969 -0.003265559 0.9984786 -0.05499458 -0.004028439 0.9997056 -0.02420139 -0.001770079 0.7911255 0.6100841 0.0437954 0.929593 0.3677903 0.02423244 0.9900062 0.1407536 0.008728384 0.9999342 -0.01144468 -8.8506e-4 0.6782333 0.7328631 0.05395835 0.9997063 -0.02417093 -0.001770079 0.9995693 -0.02932906 -0.00100708 0.9994158 -0.03409004 -0.00250256 0.9981887 -0.06000053 -0.00439471 0.9992355 -0.03909534 -3.05194e-4 0.9906615 -0.04696941 0.1279985 0.9921199 -0.07349032 0.1014765 0.9772333 -0.08356225 0.1950194 0.9724107 -0.04956358 0.2279497 0.9883646 -0.01321476 0.1515278 0.9679351 -0.003936886 0.2511699 0.9974739 -0.05475056 0.04525923 0.9965915 -0.0759918 0.03210574 0.9978144 -0.01483213 0.06439477 0.9774136 -0.1052919 0.1832383 0.9592487 -0.1619043 0.2315796 0.9602897 -0.1413959 0.2405226 0.9541602 -0.1357505 0.26674 0.9566658 -0.1033391 0.2722344 0.9855996 -0.09476035 0.14005 0.9505301 -0.09155851 0.2968327 0.9530468 -0.05218744 0.2982925 0.9473516 -0.03518879 0.3182559 0.9497607 0.01385575 0.3126702 0.9380254 0.035829 0.3447097 0.9546824 0.0423001 0.2946053 0.9620274 0.03250294 0.2710108 0.9716883 0.01181077 0.2359714 0.983671 0.01370316 0.1794541 0.994668 -0.08230912 0.06213623 0.9922848 -0.09128141 0.08389586 0.9960207 -0.08694881 0.01956272 0.9978203 -0.06573802 -0.00576806 0.9968049 -0.07986766 0.001098632 0.9996907 -0.02487319 1.52597e-4 0.9963897 -0.08090627 -0.02572762 0.9927685 0.01162755 0.1194801 0.9956207 0.02853524 0.08902382 0.9999459 0.007934868 0.006744623 0.9992262 0.01016283 0.03799629 0.9992064 0.03891223 0.008514881 0.8614445 0.3026317 0.4078326 0.8756633 0.2816332 0.3922967 0.8978981 0.2361862 0.3714767 0.8207045 0.3691049 0.4361261 0.8040284 0.3911951 0.4477777 0.7772084 0.4140269 0.473845 0.7836837 0.4482422 0.430022 0.7742651 0.4167054 0.4763088 0.7365278 0.4254117 0.525882 0.7968936 0.3993777 0.453275 0.7756741 0.4725276 0.4183866 0.7773575 0.4889805 0.395744 0.9672386 0.1457892 0.2078344 0.9778103 0.08478277 0.1915701 0.9565839 0.09531044 0.2754329 0.9493922 0.1593409 0.270675 0.9556698 0.2024626 0.2137851 0.9451941 0.2026745 0.2559907 0.9829499 0.1324821 0.1275076 0.991309 0.07870775 0.1054116 0.9672346 0.2125639 0.1388303 0.940723 0.07678622 0.33037 0.9489062 0.06613528 0.3085501 0.9410492 0.04577827 0.3351581 0.9648956 0.03982758 0.2595965 0.9840792 0.02798575 0.1755137 0.9725124 0.04940992 0.2275483 0.9888435 0.04583936 0.1417298 0.9430333 0.09827077 0.3178541 0.9426562 0.1416105 0.3022347 0.942313 0.1759741 0.2847448 0.942709 0.2060964 0.2623434 0.9409736 0.2270947 0.2509914 0.9452597 0.2322483 0.2292269 0.9956828 0.0255444 0.08923757 0.9972848 0.06482332 0.03494477 0.997154 0.03839313 0.06488382 0.9991828 0.03979641 0.007080316 0.990265 0.1303486 0.0488311 0.9936167 0.1102357 0.02395761 0.9494648 0.2873725 0.1262291 0.9493685 0.2522737 0.1872368 0.9631094 0.2634375 0.05496418 0.9795248 0.1926639 0.05841255 0.9591736 0.274333 0.06875872 0.9341219 0.3508145 0.06592077 0.7686293 0.1883653 0.6113327 0.7214437 0.1178041 0.6823791 0.7708761 0.09787398 0.6294211 0.8278239 0.1507021 0.5403669 0.8071118 0.2515091 0.5341477 0.8621292 0.196725 0.4669396 0.7253823 0.2151914 0.6538451 0.6910132 0.1306217 0.7109422 0.7520828 0.292068 0.5908197 0.9453091 0.03686743 0.3240859 0.9492299 0.04742634 0.3109877 0.8343356 0.1027584 0.5415948 0.7444291 0.06213748 0.664804 0.8350458 0.1112133 0.538823 0.7463264 0.05185276 0.6635572 0.7033486 0.07043862 0.7073466 0.7284218 0.06408935 0.6821248 0.7512195 0.04736512 0.6583508 0.8777886 0.1357792 0.4594031 0.8810058 0.153513 0.4475071 0.9022234 0.1768862 0.3933246 0.8943734 0.1592201 0.4180253 0.8598345 0.1214035 0.4959293 0.8880542 0.2107976 0.4085635 0.8328424 0.2489157 0.4943829 0.7903036 0.2909123 0.5392498 0.8836194 0.218059 0.4143273 0.6753324 0.08023536 0.7331361 0.6877449 0.07489353 0.7220788 0.6671301 0.08423435 0.7401637 0.6608397 0.08044952 0.7462029 0.6611105 0.09113079 0.7447336 0.6474081 0.06760048 0.7591397 0.6752811 0.1387735 0.7243875 0.6919891 0.1816799 0.6986728 0.7021875 0.2278874 0.674537 0.7552075 0.3330298 0.5645821 0.7339016 0.3452057 0.5849972 0.7226324 0.3097999 0.6179211 0.7164462 0.2672596 0.6444201 0.7312017 0.3722387 0.571649 0.9297921 0.3469401 0.1229611 0.9418585 0.3064146 0.1378865 0.9418409 0.3064699 0.1378839 0.9373387 0.3291504 0.1142641 0.9103575 0.405051 0.08475184 0.8910688 0.4505243 0.05499553 0.8807706 0.4713313 0.04571706 0.9296829 0.3587864 0.08344012 0.9159987 0.3938178 0.0765112 0.9323227 0.3574682 0.05468988 0.868348 0.4947993 0.03384518 0.8650383 0.5012791 0.02069205 0.99373 0.1116996 0.004882991 0.9994897 0.02932852 -0.01266527 0.9995633 0.01992899 -0.0218212 0.9941391 0.1079166 -0.006439566 0.9938943 0.1092289 0.01559537 0.9994053 0.03448641 3.0519e-5 0.9944789 0.1024509 0.02270579 0.9992138 0.03854513 0.009277641 0.9714615 0.2368607 0.01263499 0.9949233 0.1000111 -0.01120048 0.9760428 0.2174206 0.008301258 0.9700723 0.2420755 0.01895219 0.972115 0.2331025 0.02560526 0.9778824 0.2073445 0.02746689 0.9992843 -0.02136331 -0.03122091 0.9994576 -0.01486259 -0.0293895 0.9983188 -0.03903424 -0.04284918 0.9995699 -0.004608392 -0.02896285 0.9998746 0.004455804 -0.01519858 0.9998386 -0.002014219 -0.01785367 0.9999323 0.003296077 -0.01117002 0.9994992 -0.01077318 -0.02975606 0.9994911 0.02435398 -0.02060019 0.9999544 0.003479123 -0.00891149 0.9999608 0.008423268 -0.002746701 0.9998813 0.01504564 -0.003356993 0.9999014 0.01388621 -0.002105772 0.9999187 0.01275682 2.74669e-4 0.9999126 0.01318401 -9.76596e-4 0.9999174 0.0127263 0.001861631 0.9997904 0.01910465 0.007354974 0.9999122 0.01275676 0.003601193 0.9999102 0.01303142 0.00314337 0.999915 0.01245158 0.003875851 0.9990929 0.0394302 0.01608335 0.9978119 0.0627771 0.02075272 0.993593 0.112644 -0.009186089 0.9987024 0.04840302 -0.01583933 0.9867806 0.1620575 0.001190245 0.9531739 0.3019258 0.01733487 0.9663169 0.2572125 0.008575737 0.9540588 0.2988129 0.02197372 0.9480671 0.3172126 0.0233469 0.9468637 0.3208502 0.02246224 0.9490477 0.3140094 0.026582 0.9548579 0.295488 0.03054982 0.9828478 0.1821399 0.02890187 0.9946388 0.09936922 0.02862662 0.962319 0.2711901 0.01995927 0.9686211 0.2467179 0.03006148 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 90.9895 35.5228 89.5636 91.06501 33.1384 74.2791 91.07991 31.3523 75.0942 91.0849 29.6364 75.87802 91.0809 27.9034 76.6702 91.0681 26.1458 77.4743 91.0941 32.5087 58.334 91.1021 30.7863 59.042 91.1015 29.1316 59.7096 91.0928 27.4606 60.3719 91.07601 25.7662 61.0317 91.1085 31.8165 42.5368 91.1114 30.1636 43.105 91.1067 28.5758 43.6272 91.09481 26.9728 44.1318 91.0756 25.3479 44.6208 91.1095 31.1069 26.8851 91.10871 29.5241 27.2949 91.1014 28.0043 27.6555 91.0877 26.4706 27.9875 91.0987 30.4224 11.2485 91.0956 28.906 11.495 91.0869 27.4507 11.6905 91.0726 25.9832 11.848 91.07801 29.8035 -4.51603 91.0737 28.3454 -4.42543 91.0646 26.9472 -4.38644 91.0506 25.5387 -4.39351 91.0135 35.2572 82.29602 91.0353 34.9756 75.08351 91.0545 34.678 67.928 91.07061 34.3647 60.8317 91.0801 34.1296 55.7582 91.0879 33.8881 50.7116 91.094 33.6418 45.6871 91.0984 33.3923 40.6801 91.1014 33.1412 35.6859 91.1029 32.8902 30.6998 91.1029 32.6407 25.7174 91.1017 32.3944 20.7341 91.0991 32.1528 15.7455 91.0954 31.9174 10.7471 91.0905 31.6898 5.73464 91.08451 31.4715 0.703709 91.0775 31.2638 -4.34997 91.06961 31.0684 -9.43063 91.0607 30.8867 -14.5425 91.05101 30.72 -19.6897 91.01371 24.3685 -20.9304 91.02301 24.2684 -13.4758 91.0375 24.4524 -3.68716 91.0492 24.5901 6.19795 91.0579 24.6719 16.0837 91.06311 24.6881 25.8741 91.0646 24.6266 35.7128 91.06221 24.4694 45.5505 91.0557 24.191 55.3857 91.0445 23.7517 65.21501 91.0327 23.2845 72.4954 91.01702 22.6469 79.7628 91.0158 22.6269 81.2875 91.01461 22.6129 82.81221 91.0142 22.6409 84.3378 91.0158 22.7788 85.8574 91.01831 22.9528 86.6989 91.0226 23.2454 87.5069 91.0293 23.7078 88.2383 91.03791 24.3521 88.816 91.0467 25.1117 89.19831 91.0544 25.9319 89.4226 91.0643 27.6185 89.5636 91.05931 30.7332 89.8527 91.02201 33.8185 90.3673 91.02941 25.7762 -20.6075 82.888 80.7262 79.40441 84.5974 77.1133 78.58 86.1065 72.9692 78.3305 87.4152 68.2937 78.6557 88.5237 63.0869 79.5558 89.4692 57.0687 81.11341 90.1954 50.4687 83.3006 90.7022 43.2867 86.1173 90.9895 35.5228 89.5636 83.2397 78.1024 73.9006 84.9505 74.6597 72.3609 86.4412 70.705 71.38491 87.71231 66.2395 70.97161 88.7644 61.2643 71.1197 89.6455 55.522 71.8613 90.3162 49.2423 73.1886 90.7768 42.4264 75.10031 83.5663 75.22161 68.39521 85.2807 71.9764 66.1346 86.75521 68.2382 64.42881 87.9908 64.0091 63.2754 88.98851 59.2915 62.6721 89.80751 53.8516 62.6008 90.4251 47.918 63.0736 90.8423 41.493 64.08831 83.8502 72.1617 63.0736 85.57151 69.1363 60.1009 87.0333 65.63581 57.6762 88.2372 61.6635 55.7961 89.1848 57.2225 54.4572 89.94651 52.1035 53.5921 90.5158 46.5325 53.2333 90.89421 40.5126 53.3772 84.1091 68.7117 57.3739 85.8416 65.9433 53.6528 87.2937 62.7182 50.4746 88.4678 59.0406 47.8349 89.3661 54.9145 45.7292 90.07101 50.1571 44.0389 90.5935 44.9907 42.8171 90.93521 39.4191 42.0596 84.3216 65.25402 51.5004 86.06861 62.7499 47.0867 87.5148 59.8061 43.213 88.6633 56.4277 39.8738 89.51741 52.6196 37.0635 90.1711 48.2252 34.6159 90.65201 43.4621 32.6026 90.96202 38.3348 31.0187 84.49411 61.8799 45.1783 86.2586 59.6378 40.1511 87.7022 56.9721 35.6625 88.8291 53.8884 31.7059 89.6431 50.3924 28.2747 90.2504 46.353 25.1596 90.6943 41.9831 22.4471 90.9769 37.2876 20.132 84.6335 58.6458 38.1026 86.4181 56.657 32.5588 87.86201 54.2596 27.5532 88.9703 51.46 23.078 89.74781 48.2645 19.1258 90.3123 44.5666 15.4488 90.7229 40.5749 12.1444 90.9818 36.2943 9.20716 84.7447 55.6098 29.9557 86.552 53.8587 24.0135 87.9988 51.7135 18.6092 89.09111 49.1812 13.7342 89.8348 46.2686 9.37974 90.3596 42.8931 5.26557 90.7398 39.2593 1.49457 90.9779 35.3721 -1.939 84.8309 52.863 20.4784 86.6633 51.3243 14.2842 88.1152 49.4057 8.627071 89.1938 47.1147 3.49719 89.9062 44.4586 -1.115 90.3939 41.3771 -5.51565 90.7464 38.0718 -9.602972 90.9664 34.5477 -13.3828 84.89521 50.4963 9.41155 86.7548 49.135 3.14064 88.2139 47.4079 -2.59585 89.2809 45.3228 -7.80862 89.96401 42.8878 -12.5082 90.41701 40.0625 -17.0186 84.941 48.6007 -3.50396 86.8294 47.3719 -9.646942 88.2974 45.7914 -15.2609 84.9712 47.2674 -18.5273 91.05101 30.72 -19.6897 91.0607 30.8867 -14.5425 91.06961 31.0684 -9.43063 91.0775 31.2638 -4.34997 91.08451 31.4715 0.703709 91.0905 31.6898 5.73464 91.0954 31.9174 10.7471 91.0991 32.1528 15.7455 91.1017 32.3944 20.7341 91.1029 32.6407 25.7174 91.1029 32.8902 30.6998 91.1014 33.1412 35.6859 91.0984 33.3923 40.6801 91.094 33.6418 45.6871 91.0879 33.8881 50.7116 91.0801 34.1296 55.7582 91.07061 34.3647 60.8317 91.0545 34.678 67.928 91.0353 34.9756 75.08351 91.0135 35.2572 82.29602 86.7293 46.5988 -18.5282 88.2672 45.5158 -18.5367 89.37371 43.988 -18.5643 89.9886 42.2052 -18.6202 90.81221 36.4742 -18.9889 + + + + + + + + + + 0.9999964 0.002533078 9.1558e-4 0.9999696 0.007721126 0.001098632 0.9999269 0.01196342 0.001800596 0.9999787 0.006378412 0.001464843 0.9999968 -0.002441525 7.93503e-4 0.9999991 8.24024e-4 0.001129209 0.9999734 -0.007263422 6.7141e-4 0.9999901 -0.004364192 9.46093e-4 0.999928 -0.011994 5.79863e-4 0.999949 -0.01007115 7.93489e-4 0.9999999 -4.57792e-4 2.44156e-4 0.9999909 0.004242122 3.35711e-4 0.999987 -0.005096673 1.83114e-4 0.9999549 -0.009491384 1.83114e-4 0.9999104 -0.01339763 1.52593e-4 0.9999963 -0.002716183 -3.35713e-4 0.9999987 0.001617491 -3.35713e-4 0.999976 -0.006927728 -3.35706e-4 0.999938 -0.01113957 -2.74675e-4 0.9999301 -0.01182883 -7.16666e-5 0.9999912 -0.004120051 -9.15575e-4 0.9999995 -2.13636e-4 -9.46102e-4 0.9999682 -0.007934987 -8.54543e-4 0.9999318 -0.01165831 -7.62981e-4 0.9999948 -0.00304079 -0.001193463 0.9999967 -0.002252817 -0.001295804 0.9999779 -0.0065521 -0.001144945 0.9999806 -0.006122171 -0.001194894 0.9999501 -0.009930789 -0.001075923 0.9999507 -0.009867727 -0.001084864 0.999791 0.02028936 0.002559781 0.9998535 0.01699888 0.002014219 0.9998809 0.01528978 0.00213629 0.999883 0.01510667 0.002433121 0.9999743 0.006958246 0.001800596 0.9999966 -0.002258419 0.00137335 0.9998814 0.01527267 0.002047121 0.9999454 0.01031529 0.001709043 0.9999212 0.01248222 0.001403868 0.9999462 0.01031744 0.001051664 0.9999406 0.010818 0.001370906 0.9999977 -0.001730859 0.001249194 0.9999792 0.006390333 9.01735e-4 0.9999705 0.007671177 5.75043e-4 0.9999035 -0.01388454 5.89444e-4 0.9998794 -0.01551538 6.32493e-4 0.99993 -0.01183044 4.53627e-4 0.9998573 -0.01688814 5.29626e-4 0.9998347 -0.01818066 5.99427e-4 0.9998712 -0.01604241 5.0571e-4 0.999953 -0.009650528 9.73976e-4 0.9999065 -0.01366192 7.44043e-4 0.9999022 -0.01396697 8.0366e-4 0.9998928 -0.01463592 4.85388e-4 0.9999041 -0.01384794 2.68664e-4 0.9998377 -0.01800918 6.20414e-4 0.9998581 -0.016837 5.75436e-4 0.9998477 -0.01743936 6.27356e-4 0.999909 -0.01347565 6.36353e-4 0.9999707 -0.007599115 0.00100708 0.9999775 0.006713926 2.63955e-4 0.9999914 0.004154443 -2.07546e-4 0.9999942 0.003430843 1.27325e-4 0.9999895 0.004602253 -1.44982e-4 0.999999 0.001294136 -5.83898e-4 0.9999971 0.002271592 -7.90245e-4 0.999992 0.00397098 -4.36595e-4 0.9999751 0.007036209 5.27285e-4 0.9999977 0.001861274 -0.00106132 0.9999993 -1.93572e-4 -0.001183807 0.999999 6.49684e-4 -0.001338005 0.9999986 5.28811e-4 -0.001574516 0.9999989 5.15176e-4 -0.001406788 0.9999985 -1.07821e-4 -0.001737952 0.9999978 -0.001078009 -0.001846432 0.9999979 0.001930773 -8.31226e-4 0.999913 -0.01318907 -5.09594e-4 0.9999157 -0.01297938 -5.43817e-4 0.9999061 -0.01369184 -7.66469e-4 0.9999186 -0.01271903 -0.001006722 0.999884 -0.01523673 -1.75364e-7 0.9998892 -0.01488828 3.54017e-4 0.9999126 -0.01322209 -1.647e-4 0.9999086 -0.01352202 -2.36468e-4 0.9999933 -0.003090262 -0.001965343 0.9999498 -0.009930074 -0.001452565 0.9999771 -0.006563663 -0.001696228 0.9999899 -0.003978192 -0.002105474 0.9999165 -0.01286983 -0.001238167 0.999919 -0.01269555 -0.001006722 0.9999309 -0.01167845 -0.001405179 0.9999405 -0.01080924 -0.001465499 0.8900779 0.4361122 -0.1325427 0.8399291 0.5087307 -0.1889771 0.8726696 0.4660301 -0.1458213 0.9030321 0.4155187 -0.108984 0.943635 0.3240875 -0.06723463 0.947465 0.3150485 -0.05527001 0.9698356 0.2416806 -0.03177034 0.9705753 0.239363 -0.0262466 0.9838426 0.1785364 -0.01336729 0.9837473 0.1792072 -0.01123094 0.9916985 0.1285173 -0.004181146 0.9916225 0.1291257 -0.00338757 0.9962022 0.08707076 3.35709e-4 0.9962313 0.08673495 6.1038e-4 0.9986591 0.05172896 0.002044737 0.9987087 0.05075329 0.00225836 0.8471373 0.498614 -0.1836919 0.7595095 0.5938799 -0.2654285 0.9306603 0.3541172 -0.09204667 0.9666004 0.2525454 -0.04364228 0.9835457 0.1796366 -0.01919662 0.9919663 0.1262885 -0.007355093 0.9964503 0.08417177 -0.001464903 0.9988186 0.04858589 0.001037597 0.7668151 0.5903859 -0.2518715 0.590548 0.7140902 -0.3759365 0.9076031 0.400958 -0.1244562 0.9607298 0.271281 -0.05835181 0.9825165 0.1843382 -0.02609419 0.9919674 0.126014 -0.01101744 0.9965903 0.08243113 -0.003631711 0.9989335 0.04617458 -1.22074e-4 0.6247869 0.7101794 -0.324479 0.27531 0.830935 -0.4834786 0.8666915 0.4718918 -0.1617531 0.9506075 0.3013757 -0.07428336 0.9804694 0.1938903 -0.03296101 0.9916521 0.1281185 -0.01455754 0.9966056 0.08212721 -0.005707085 0.9990044 0.04458802 -0.001434385 0.4440836 0.8172407 -0.3672975 -0.03885102 0.8645193 -0.5010958 0.8076135 0.557138 -0.1932815 0.9362447 0.3402001 -0.08780437 0.9774996 0.2074085 -0.03842365 0.9910505 0.1323618 -0.01730436 0.9965057 0.08319473 -0.007416069 0.9990347 0.04385554 -0.002533018 0.2835247 0.8866176 -0.3654081 -0.2139378 0.8634728 -0.4567772 0.7381961 0.6411759 -0.2096662 0.9185982 0.3833215 -0.09613555 0.973887 0.2231843 -0.0416277 0.9902399 0.1380665 -0.01904362 0.9963073 0.08542388 -0.008636951 0.9990313 0.04388594 -0.0032655 0.1936444 0.9242743 -0.3289666 -0.2624975 0.879234 -0.3975459 0.6764208 0.7073059 -0.2053616 0.9004935 0.4239088 -0.09701985 0.970141 0.238873 -0.04202479 0.9893501 0.144235 -0.01956295 0.9960432 0.08838254 -0.009308218 0.9989939 0.0446791 -0.003875851 0.1837265 0.9437502 -0.2749184 -0.2217522 0.9155137 -0.3356497 0.6406109 0.7459654 -0.1820812 0.8862046 0.4545468 -0.08960312 0.9670401 0.251572 -0.03930908 0.9885583 0.1496677 -0.0187695 0.9957527 0.09158837 -0.00939989 0.9989372 0.04590004 -0.004211544 0.236277 0.9477937 -0.2141508 -0.1156048 0.955723 -0.2706092 0.6382834 0.7557222 -0.1465543 0.8796787 0.4695954 -0.07513767 0.9654591 0.2583714 -0.03366208 0.98809 0.1529623 -0.01675504 0.9954273 0.09506559 -0.009338676 0.9988992 0.0466336 -0.005066215 0.3237521 0.933595 -0.1535747 0.03085476 0.9787468 -0.2027382 0.6625699 0.7413398 -0.1068474 0.8801472 0.471127 -0.05813932 0.9650948 0.2604471 -0.02755844 0.9883003 0.1491163 -0.03204506 0.4113703 0.9057229 -0.1021788 0.1879081 0.9725933 -0.1369407 0.6974551 0.7128062 -0.07391744 0.9992831 0.037813 0.001892149 0.9993259 0.03662317 0.002594113 0.9993979 0.03466928 0.001434326 0.999458 0.03286862 0.001861631 0.9994961 0.03173971 5.49341e-4 0.9995495 0.02999991 9.46081e-4 0.9996301 0.02719271 -6.40906e-4 0.9996466 0.02658194 -5.4934e-4 0.9996585 0.02609395 -0.001464903 0.9996758 0.02542215 -0.001434385 0.9995725 0.02923756 -6.10389e-5 0.9996075 0.02801609 1.83112e-4 0.9996759 0.02539169 -0.001861631 0.9996789 0.02526968 -0.001953184 0.9996636 0.02591097 -0.001159727 0.9996783 0.02526962 -0.002227842 0.8906046 0.4524437 -0.04602259 0.9698683 0.2410708 -0.03521907 0.4690499 0.8795028 -0.0804181 0.3542066 0.9315701 -0.08194422 0.7057923 0.7052125 -0.06732583 0.9996693 0.02560514 -0.002410948 0.9996667 0.02569663 -0.002502501 0.9996501 0.02630734 -0.002777218 0.999643 0.02658182 -0.002716124 0.9964802 0.08163863 -0.01904392 0.9992721 0.03704959 -0.009094536 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

7 0 0 6 1 1 1 2 2 7 0 3 1 2 4 2 3 5 8 4 6 7 0 7 2 3 8 8 4 9 2 3 10 3 5 11 9 6 12 8 4 13 3 5 14 9 6 15 3 5 16 4 7 17 10 8 18 9 6 19 4 7 20 10 8 21 4 7 22 5 9 23 12 10 24 11 11 25 6 1 26 12 10 27 6 1 28 7 0 29 13 12 30 12 10 31 7 0 32 13 12 33 7 0 34 8 4 35 14 13 36 13 12 37 8 4 38 14 13 39 8 4 40 9 6 41 15 14 42 14 13 43 9 6 44 15 14 45 9 6 46 10 8 47 17 15 48 16 16 49 11 11 50 17 15 51 11 11 52 12 10 53 18 17 54 17 15 55 12 10 56 18 17 57 12 10 58 13 12 59 19 18 60 18 17 61 13 12 62 19 18 63 13 12 64 14 13 65 15 19 66 19 19 67 14 19 68 21 20 69 20 21 70 16 16 71 21 20 72 16 16 73 17 15 74 22 22 75 21 20 76 17 15 77 22 22 78 17 15 79 18 17 80 23 23 81 22 22 82 18 17 83 23 23 84 18 17 85 19 18 86 25 24 87 24 24 88 20 24 89 25 25 90 20 25 91 21 25 92 26 26 93 25 26 94 21 26 95 26 27 96 21 27 97 22 27 98 27 28 99 26 28 100 22 28 101 27 29 102 22 29 103 23 29 104 28 30 105 0 30 106 72 30 107 1 2 108 28 31 109 72 32 110 29 33 111 28 33 112 1 33 113 71 34 114 70 35 115 3 5 116 72 32 117 71 34 118 2 3 119 2 3 120 1 2 121 72 32 122 2 3 123 71 34 124 3 5 125 1 36 126 30 36 127 29 36 128 6 1 129 31 37 130 30 38 131 6 39 132 33 39 133 32 39 134 6 40 135 32 40 136 31 40 137 70 41 138 4 41 139 3 41 140 11 42 141 34 42 142 33 42 143 11 43 144 33 43 145 6 43 146 30 38 147 1 2 148 6 1 149 5 9 150 4 7 151 70 35 152 66 44 153 58 44 154 67 44 155 65 45 156 58 45 157 66 45 158 68 46 159 67 46 160 58 46 161 64 47 162 63 47 163 61 47 164 63 48 165 62 48 166 61 48 167 65 49 168 64 49 169 60 49 170 5 50 171 69 50 172 68 50 173 58 51 174 57 51 175 5 51 176 10 52 177 5 52 178 57 52 179 57 53 180 56 53 181 10 53 182 10 54 183 56 54 184 55 54 185 60 55 186 64 55 187 61 55 188 65 56 189 60 56 190 59 56 191 58 57 192 65 57 193 59 57 194 5 58 195 68 58 196 58 58 197 5 9 198 70 35 199 69 59 200 11 60 201 36 60 202 35 60 203 16 61 204 38 61 205 37 61 206 16 62 207 37 62 208 36 62 209 16 63 210 36 63 211 11 63 212 20 64 213 40 64 214 39 64 215 20 65 216 39 65 217 16 65 218 16 66 219 39 66 220 38 66 221 34 67 222 11 67 223 35 67 224 20 68 225 42 68 226 41 68 227 24 69 228 43 69 229 42 69 230 24 70 231 42 70 232 20 70 233 44 71 234 24 71 235 45 71 236 24 72 237 44 72 238 43 72 239 46 73 240 45 73 241 24 73 242 47 74 243 46 74 244 24 74 245 40 75 246 20 75 247 41 75 248 53 76 249 52 76 250 19 76 251 23 77 252 19 77 253 52 77 254 52 78 255 51 78 256 23 78 257 27 79 258 23 79 259 51 79 260 54 80 261 15 80 262 55 80 263 15 81 264 10 81 265 55 81 266 19 82 267 15 82 268 54 82 269 54 83 270 53 83 271 19 83 272 25 84 273 47 84 274 24 84 275 27 85 276 73 85 277 26 85 278 25 86 279 26 86 280 73 86 281 25 87 282 73 87 283 47 87 284 49 88 285 27 88 286 50 88 287 27 89 288 51 89 289 50 89 290 27 90 291 49 90 292 48 90 293 48 91 294 73 91 295 27 91 296 84 92 297 83 93 298 74 94 299 84 92 300 74 94 301 75 95 302 85 96 303 84 92 304 75 95 305 85 96 306 75 95 307 76 97 308 86 98 309 85 96 310 76 97 311 86 98 312 76 97 313 77 99 314 87 100 315 86 98 316 77 99 317 87 100 318 77 99 319 78 101 320 88 102 321 87 100 322 78 101 323 88 102 324 78 101 325 79 103 326 89 104 327 88 102 328 79 103 329 89 104 330 79 103 331 80 105 332 90 106 333 89 104 334 80 105 335 90 106 336 80 105 337 81 107 338 92 108 339 91 109 340 83 93 341 92 108 342 83 93 343 84 92 344 93 110 345 92 108 346 84 92 347 93 110 348 84 92 349 85 96 350 94 111 351 93 110 352 85 96 353 94 111 354 85 96 355 86 98 356 95 112 357 94 111 358 86 98 359 95 112 360 86 98 361 87 100 362 96 113 363 95 112 364 87 100 365 96 113 366 87 100 367 88 102 368 97 114 369 96 113 370 88 102 371 97 114 372 88 102 373 89 104 374 98 115 375 97 114 376 89 104 377 98 115 378 89 104 379 90 106 380 100 116 381 99 117 382 91 109 383 100 116 384 91 109 385 92 108 386 101 118 387 100 116 388 92 108 389 101 118 390 92 108 391 93 110 392 102 119 393 101 118 394 93 110 395 102 119 396 93 110 397 94 111 398 103 120 399 102 119 400 94 111 401 103 120 402 94 111 403 95 112 404 104 121 405 103 120 406 95 112 407 104 121 408 95 112 409 96 113 410 105 122 411 104 121 412 96 113 413 105 122 414 96 113 415 97 114 416 106 123 417 105 122 418 97 114 419 106 123 420 97 114 421 98 115 422 108 124 423 107 125 424 99 117 425 108 124 426 99 117 427 100 116 428 109 126 429 108 124 430 100 116 431 109 126 432 100 116 433 101 118 434 110 127 435 109 126 436 101 118 437 110 127 438 101 118 439 102 119 440 111 128 441 110 127 442 102 119 443 111 128 444 102 119 445 103 120 446 112 129 447 111 128 448 103 120 449 112 129 450 103 120 451 104 121 452 113 130 453 112 129 454 104 121 455 113 130 456 104 121 457 105 122 458 114 131 459 113 130 460 105 122 461 114 131 462 105 122 463 106 123 464 116 132 465 115 133 466 107 125 467 116 132 468 107 125 469 108 124 470 117 134 471 116 132 472 108 124 473 117 134 474 108 124 475 109 126 476 118 135 477 117 134 478 109 126 479 118 135 480 109 126 481 110 127 482 119 136 483 118 135 484 110 127 485 119 136 486 110 127 487 111 128 488 120 137 489 119 136 490 111 128 491 120 137 492 111 128 493 112 129 494 121 138 495 120 137 496 112 129 497 121 138 498 112 129 499 113 130 500 122 139 501 121 138 502 113 130 503 122 139 504 113 130 505 114 131 506 124 140 507 123 141 508 115 133 509 124 140 510 115 133 511 116 132 512 125 142 513 124 140 514 116 132 515 125 142 516 116 132 517 117 134 518 126 143 519 125 142 520 117 134 521 126 143 522 117 134 523 118 135 524 127 144 525 126 143 526 118 135 527 127 144 528 118 135 529 119 136 530 128 145 531 127 144 532 119 136 533 128 145 534 119 136 535 120 137 536 129 146 537 128 145 538 120 137 539 129 146 540 120 137 541 121 138 542 130 147 543 129 146 544 121 138 545 130 147 546 121 138 547 122 139 548 132 148 549 131 149 550 123 141 551 132 148 552 123 141 553 124 140 554 133 150 555 132 148 556 124 140 557 133 150 558 124 140 559 125 142 560 134 151 561 133 150 562 125 142 563 134 151 564 125 142 565 126 143 566 135 152 567 134 151 568 126 143 569 135 152 570 126 143 571 127 144 572 136 153 573 135 152 574 127 144 575 136 153 576 127 144 577 128 145 578 137 154 579 136 153 580 128 145 581 137 154 582 128 145 583 129 146 584 138 155 585 137 154 586 129 146 587 138 155 588 129 146 589 130 147 590 140 156 591 139 157 592 131 149 593 140 156 594 131 149 595 132 148 596 141 158 597 140 156 598 132 148 599 141 158 600 132 148 601 133 150 602 142 159 603 141 158 604 133 150 605 142 159 606 133 150 607 134 151 608 143 160 609 142 159 610 134 151 611 143 160 612 134 151 613 135 152 614 144 161 615 143 160 616 135 152 617 144 161 618 135 152 619 136 153 620 145 162 621 144 161 622 136 153 623 145 162 624 136 153 625 137 154 626 146 163 627 145 162 628 137 154 629 146 163 630 137 154 631 138 155 632 148 164 633 147 165 634 139 157 635 148 164 636 139 157 637 140 156 638 149 166 639 148 164 640 140 156 641 149 166 642 140 156 643 141 158 644 150 167 645 149 166 646 141 158 647 150 167 648 141 158 649 142 159 650 151 168 651 150 167 652 142 159 653 151 168 654 142 159 655 143 160 656 152 169 657 151 168 658 143 160 659 152 169 660 143 160 661 144 161 662 153 170 663 152 169 664 144 161 665 153 170 666 144 161 667 145 162 668 154 171 669 153 170 670 145 162 671 154 171 672 145 162 673 146 163 674 156 172 675 155 173 676 147 165 677 156 172 678 147 165 679 148 164 680 157 174 681 156 172 682 148 164 683 157 174 684 148 164 685 149 166 686 158 175 687 157 174 688 149 166 689 158 175 690 149 166 691 150 167 692 159 176 693 158 175 694 150 167 695 159 176 696 150 167 697 151 168 698 160 177 699 159 176 700 151 168 701 160 177 702 151 168 703 152 169 704 162 178 705 161 179 706 155 173 707 162 178 708 155 173 709 156 172 710 163 180 711 162 178 712 156 172 713 163 180 714 156 172 715 157 174 716 81 107 717 82 181 718 184 182 719 81 107 720 184 182 721 90 106 722 90 106 723 184 182 724 183 183 725 90 106 726 183 183 727 182 184 728 90 106 729 182 184 730 98 115 731 98 115 732 181 185 733 180 186 734 98 115 735 180 186 736 106 123 737 114 131 738 177 187 739 176 188 740 114 131 741 176 188 742 122 139 743 122 139 744 174 189 745 173 190 746 122 139 747 173 190 748 130 147 749 106 123 750 179 191 751 178 192 752 106 123 753 178 192 754 114 131 755 130 147 756 172 193 757 171 194 758 130 147 759 171 194 760 138 155 761 98 115 762 182 184 763 181 185 764 114 131 765 178 192 766 177 187 767 179 191 768 106 123 769 180 186 770 122 139 771 176 188 772 175 195 773 122 139 774 175 195 775 174 189 776 130 147 777 173 190 778 172 193 779 171 194 780 170 196 781 138 155 782 187 197 783 157 174 784 158 175 785 159 176 786 188 198 787 158 175 788 187 197 789 158 175 790 188 198 791 160 177 792 188 198 793 159 176 794 187 197 795 163 180 796 157 174 797 185 199 798 164 200 799 161 179 800 162 178 801 185 199 802 161 179 803 163 180 804 186 201 805 162 178 806 185 199 807 162 178 808 186 201 809 187 197 810 186 201 811 163 180 812 170 196 813 169 202 814 138 155 815 169 202 816 146 163 817 138 155 818 168 203 819 146 163 820 169 202 821 146 163 822 168 203 823 167 204 824 167 204 825 166 205 826 154 171 827 154 171 828 146 163 829 167 204 830 153 170 831 160 177 832 152 169 833 189 206 834 160 177 835 153 170 836 165 207 837 189 206 838 154 171 839 153 170 840 154 171 841 189 206 842 166 205 843 165 207 844 154 171 845 189 206 846 188 198 847 160 177 848

+
+
+
+ + + + 83.3654 77.055 71.8376 83.6696 74.1819 66.5329 83.9407 71.0371 61.205 84.1622 67.90911 56.0414 84.3524 64.6935 50.5026 84.5088 61.5632 44.5381 84.6352 58.6042 38.0024 84.73561 55.8782 30.7559 84.8137 53.4434 22.7115 84.8732 51.3439 13.815 84.9162 49.6498 4.30781 84.94841 48.2758 -6.42986 84.9712 47.2674 -18.5273 83.5431 74.7801 65.4599 83.78511 71.7974 59.7168 83.9821 68.83602 54.1659 84.15081 65.7937 48.2643 84.28881 62.8312 41.9923 84.3997 60.0269 35.2219 84.4871 57.437 27.8266 84.5544 55.1147 19.7299 84.6048 53.1002 10.8845 84.6406 51.4602 1.52994 84.6664 50.1107 -8.941591 83.4301 75.4228 64.4005 83.6485 72.6211 58.2479 83.8266 69.8445 52.3151 83.9792 66.9938 46.0563 84.1043 64.2168 39.4823 84.20491 61.5848 32.4824 84.2844 59.1481 24.9434 84.3459 56.9549 16.7995 84.3922 55.0415 8.01017 84.4252 53.4707 -1.18716 84.44931 52.1608 -11.388 83.2442 76.84191 62.3223 83.4328 74.4592 55.368 83.5893 72.10601 48.6879 83.72631 69.6932 41.7312 83.8417 67.3412 34.5694 83.9377 65.1061 27.1266 84.0169 63.027 19.316 84.0816 61.1417 11.0927 84.1341 59.4789 2.43002 84.1753 58.0917 -6.43907 82.9168 80.19551 67.90721 83.11201 78.4392 60.2982 83.2937 76.5512 52.5653 83.4503 74.69371 45.1597 83.5937 72.7917 37.5274 83.7209 70.9364 29.7995 83.8334 69.1682 21.9351 83.9329 67.5149 13.8735 84.0209 66.00402 5.591 84.0989 64.6559 -2.92544 84.16661 63.513 -11.4479 82.83 81.4505 66.6603 83.2311 78.8971 49.8397 83.1845 77.99781 70.49591 83.03501 79.0446 69.1857 82.9396 80.79901 62.2173 83.0466 80.1315 57.7821 83.14 79.5196 53.8103 83.32101 78.2586 45.8129 83.4087 77.61431 41.7733 83.4943 76.9666 37.7137 83.5777 76.3181 33.6271 83.65921 75.67131 29.5063 83.7388 75.02851 25.3445 83.8166 74.39241 21.1344 83.8927 73.76541 16.869 83.9672 73.15 12.5412 84.0401 72.5486 8.14399 84.11151 71.9637 3.6703 84.18161 71.39791 -0.886957 84.2504 70.8536 -5.53485 84.318 70.3333 -10.2804 84.3845 69.8394 -15.1308 84.45 69.3745 -20.093 84.4067 68.4247 -19.9706 84.23191 63.1485 -19.3745 84.1985 57.8552 -18.9224 84.3834 52.55 -18.6329 84.6062 49.9013 -18.5557 84.2096 56.9066 -16.0846 82.83 81.4505 66.6603 83.2311 78.8971 49.8397 84.45 69.3745 -20.093 83.123 81.2084 48.8369 83.4307 79.9052 32.5738 83.7257 78.5727 15.3166 84.0007 77.3794 -2.69606 82.94921 83.2173 47.7719 83.1905 82.9547 30.9896 83.4246 82.69461 13.3291 83.6455 82.5274 -4.8351 82.7097 84.9237 46.6447 82.8484 85.5354 29.3089 82.9842 86.1753 11.2095 83.11341 86.86161 -7.14164 82.40441 84.9124 64.679 82.40441 86.3276 45.4552 82.40441 87.6472 27.5316 82.40441 89.01451 8.957982 82.40441 90.3819 -9.61568 84.3845 69.8394 -15.1308 84.318 70.3333 -10.2804 84.2504 70.8536 -5.53485 84.18161 71.39791 -0.886957 84.11151 71.9637 3.6703 84.0401 72.5486 8.14399 83.9672 73.15 12.5412 83.8927 73.76541 16.869 83.8166 74.39241 21.1344 83.7388 75.02851 25.3445 83.65921 75.67131 29.5063 83.5777 76.3181 33.6271 83.4943 76.9666 37.7137 83.4087 77.61431 41.7733 83.32101 78.2586 45.8129 83.14 79.5196 53.8103 83.0466 80.1315 57.7821 82.9396 80.79901 62.2173 82.6711 83.4293 65.7206 82.40441 91.4526 -24.1591 83.0055 88.7615 -23.5382 83.4416 86.0327 -22.9441 84.0086 80.5178 -21.8526 84.3151 74.96102 -20.9006 82.888 80.7262 79.40441 83.01181 79.8479 77.5058 83.1328 78.9433 75.6104 83.2508 78.0123 73.7202 83.3654 77.055 71.8376 82.86811 80.5309 77.29341 82.8861 80.1856 74.8857 82.94181 79.6901 72.1827 82.888 80.7262 79.40441 82.7558 81.318 77.11251 82.7269 81.6802 70.7399 82.83 81.4505 66.6603 82.7191 81.5112 75.7429 82.70211 81.636 74.2242 82.7047 81.6923 72.55651 82.7687 81.5996 68.7745 82.9168 80.19551 67.90721 83.03501 79.0446 69.1857 83.1845 77.99781 70.49591 82.7558 81.318 77.11251 82.70211 81.636 74.2242 82.7269 81.6802 70.7399 82.83 81.4505 66.6603 82.888 80.7262 79.40441 82.6944 81.8786 77.0376 82.5937 82.71331 73.9678 82.58602 83.2302 70.1954 82.60601 82.3153 76.93711 82.4314 83.5427 73.6605 82.3642 84.4084 69.5744 82.40441 84.9124 64.679 82.7687 81.5996 68.7745 82.7047 81.6923 72.55651 82.7191 81.5112 75.7429 82.6711 83.4293 65.7206 + + + + + + + + + + 0.9912897 0.1284547 -0.0290541 0.9893902 0.142645 -0.0275585 0.9876871 0.1534496 -0.03045797 0.9900396 0.1368476 -0.03308266 0.9927934 0.1162481 -0.02911537 0.9917476 0.1237243 -0.03360146 0.9938001 0.107611 -0.02795565 0.9928582 0.114753 -0.03262525 0.9944067 0.1023308 -0.02615493 0.9934822 0.1097155 -0.03091561 0.9947071 0.09991931 -0.02395743 0.9937329 0.1080377 -0.02868795 0.9947751 0.09979796 -0.02151602 0.9936871 0.1091041 -0.02612394 0.9946461 0.1015979 -0.01889127 0.9933699 0.1125854 -0.02325564 0.9943369 0.1050461 -0.01611393 0.9927891 0.1181703 -0.02014261 0.9938645 0.1098088 -0.0132454 0.9919673 0.1253731 -0.01681607 0.9931451 0.11646 -0.01001018 0.9908405 0.1344071 -0.01303172 0.9938211 0.1095632 -0.01776206 0.9920592 0.1246101 -0.01706022 0.9950929 0.09735465 -0.01767033 0.9959772 0.08801585 -0.01681578 0.9965734 0.08124202 -0.01553422 0.9969648 0.07657217 -0.01406925 0.997216 0.07352083 -0.01245182 0.9973626 0.0717808 -0.01074266 0.9974341 0.07101857 -0.009033679 0.9974389 0.07113879 -0.007416009 0.9973904 0.0719332 -0.006164789 0.9964145 0.08450704 -0.004089534 0.995036 0.09943032 -0.004119992 0.9973582 0.07254344 -0.003753781 0.998034 0.06259453 -0.003173947 0.9985136 0.0544455 -0.002502501 0.9988645 0.04760998 -0.001800596 0.9991262 0.04178029 -0.00112915 0.9993258 0.03671473 -5.18829e-4 0.9994836 0.03213602 0 0.9996227 0.02746719 -2.74672e-4 0.9982823 0.05789488 0.008972585 0.9972824 0.07324653 0.007934987 0.9989106 0.04577815 0.009064078 0.9993236 0.03555494 0.00939989 0.999598 0.02667385 0.009613573 0.9997805 0.01870828 0.009430408 0.999882 0.01181066 0.009826958 0.9999395 0.004577755 0.01001006 0.9999532 -0.003173947 0.009155631 0.9999064 -0.01110905 0.007996022 0.9879855 0.152472 -0.02523905 0.9893512 0.1441437 -0.02017337 0.9929018 0.118749 -0.006683588 0.99545 0.09522038 0.003540217 0.9980637 0.06021404 0.01559519 0.9971814 0.0744971 0.00891155 0.9993348 0.03277707 0.01599174 0.999283 0.03500527 0.01443547 0.9996098 0.02264487 0.01635801 0.9995869 0.02450668 0.0150153 0.9988597 0.04486304 0.01632767 0.9984548 0.05420148 0.01226854 0.9904729 0.1373978 -0.009247303 0.9937331 0.1115474 -0.007202506 0.9981346 0.06097757 -0.003021359 0.9995266 0.03076308 6.10379e-4 0.9998838 0.00125122 0.01519829 0.9998547 0.006897211 0.01559501 0.999851 -0.002014219 0.01715141 0.9998846 0.01388597 0.006164729 0.9998107 -0.009735584 0.01684659 0.9998633 -0.006805717 0.01507633 0.9997692 0.01367247 0.01657176 0.9997639 0.01532036 0.01541197 0.998888 0.04455775 0.01541209 0.9995271 -0.02731448 0.01413023 0.999634 -0.02285903 0.01446616 0.9997739 -0.01922696 0.009094655 0.9992628 -0.0358296 0.01379472 0.9998157 -0.01034605 0.01617527 0.9997436 -0.01681596 0.01516795 0.9989131 -0.04330623 0.01724314 0.9936448 0.111914 0.01205503 0.9926467 0.1203079 0.01336753 0.9972134 0.07327646 0.01400828 0.9978272 0.06467026 0.01260441 0.994377 0.1052913 0.01132261 0.9982348 0.05822956 0.01168864 0.9948413 0.1007751 0.01162785 0.9985233 0.05313366 0.01132255 0.9837738 0.1788707 0.01394706 0.9822829 0.1868064 0.01495426 0.9849837 0.1721295 0.01336747 0.9856268 0.1683455 0.01413047 0.9756553 0.2187281 0.01596128 0.9740089 0.2259005 0.01660221 0.9771518 0.2119837 0.01541197 0.9776087 0.2097557 0.01684635 0.9963038 0.08453851 0.0152291 0.9979903 0.06143403 0.01553398 0.9982465 0.0571621 0.01538157 0.998416 0.05423152 0.0149846 0.9984979 0.05288982 0.01431351 0.9984862 0.0533775 0.01327568 0.9986482 0.0498988 0.0145576 0.998871 0.04550445 0.01364219 0.9989141 0.04474067 0.01300102 0.9989124 0.04498475 0.01226854 0.9990096 0.04245191 0.01333677 0.9991608 0.03903377 0.01242119 0.9991857 0.03854525 0.01193284 0.9991886 0.03863686 0.01138353 0.9992513 0.03668373 0.01229912 0.9993609 0.03387558 0.01141393 0.9993763 0.03354036 0.01104784 0.9993786 0.03360152 0.01065117 0.9994562 0.0306102 0.01226848 0.9990457 0.0423606 0.01065117 0.9926996 0.1196049 0.01556479 0.9817226 0.1895816 0.01672416 0.9996042 0.02591019 0.0109561 0.9965155 0.08285981 0.009552478 0.9996117 0.02569675 0.01077312 0.990535 0.1368181 0.01101744 0.9803849 0.1965408 0.01474052 0.975016 0.2215363 0.01629704 0.9857558 0.1669986 -0.01992869 0.9798954 0.1976087 -0.02749735 0.980437 0.1952939 -0.02456814 0.9877237 0.1558921 -0.009979724 0.9836315 0.1790557 -0.02020364 0.9904075 0.1380991 -0.004669427 0.9864389 0.162911 -0.01995944 0.9918389 0.1274476 0.003570675 0.9913623 0.1309588 -0.007111012 0.9902958 0.1384363 -0.01223826 0.9904339 0.1362369 -0.02191263 0.9885477 0.1506122 -0.009460926 0.9869809 0.1594612 -0.02099698 0.9950367 0.0986064 0.01336723 0.992852 0.1192387 0.005188226 0.992919 0.1186595 0.005646049 0.9947733 0.1012932 0.01287907 0.9929167 0.1178963 0.01474082 0.9955865 0.0911293 0.02243137 0.9788584 0.2032853 0.02261435 0.9898463 0.1416376 -0.01196336 0.9876837 0.1564399 0.002716183 0.9792439 0.201092 0.02536153 0.9883806 0.151373 0.01379448 0.979582 0.1991392 0.02762007 0.9887809 0.1478028 0.02160733 0.9941258 0.1058093 -0.02276712 0.995366 0.09588956 -0.007202386 0.9949712 0.1001624 2.74668e-4 0.9954094 0.09521943 0.009674489 0.9953519 0.09531134 0.01379466 0.995474 0.0925951 0.02139389 0.9865637 0.1613245 0.02581924 0.995633 0.09061193 0.02246224 0.9801374 0.1963875 0.02761936 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

14 0 0 13 1 1 1 2 2 14 0 3 1 2 4 2 3 5 15 4 6 14 0 7 2 3 8 15 4 9 2 3 10 3 5 11 16 6 12 15 4 13 3 5 14 16 6 15 3 5 16 4 7 17 17 8 18 16 6 19 4 7 20 17 8 21 4 7 22 5 9 23 18 10 24 17 8 25 5 9 26 18 10 27 5 9 28 6 11 29 19 12 30 18 10 31 6 11 32 19 12 33 6 11 34 7 13 35 20 14 36 19 12 37 7 13 38 20 14 39 7 13 40 8 15 41 21 16 42 20 14 43 8 15 44 21 16 45 8 15 46 9 17 47 22 18 48 21 16 49 9 17 50 22 18 51 9 17 52 10 19 53 23 20 54 22 18 55 10 19 56 23 20 57 10 19 58 11 21 59 25 22 60 24 23 61 13 1 62 25 22 63 13 1 64 14 0 65 26 24 66 25 22 67 14 0 68 26 24 69 14 0 70 15 4 71 27 25 72 26 24 73 15 4 74 27 25 75 15 4 76 16 6 77 28 26 78 27 25 79 16 6 80 28 26 81 16 6 82 17 8 83 29 27 84 28 26 85 17 8 86 29 27 87 17 8 88 18 10 89 30 28 90 29 27 91 18 10 92 30 28 93 18 10 94 19 12 95 31 29 96 30 28 97 19 12 98 31 29 99 19 12 100 20 14 101 32 30 102 31 29 103 20 14 104 32 30 105 20 14 106 21 16 107 33 31 108 32 30 109 21 16 110 33 31 111 21 16 112 22 18 113 34 32 114 33 31 115 22 18 116 34 32 117 22 18 118 23 20 119 36 33 120 35 34 121 24 23 122 36 33 123 24 23 124 25 22 125 37 35 126 36 33 127 25 22 128 37 35 129 25 22 130 26 24 131 38 36 132 37 35 133 26 24 134 38 36 135 26 24 136 27 25 137 39 37 138 38 36 139 27 25 140 39 37 141 27 25 142 28 26 143 40 38 144 39 37 145 28 26 146 40 38 147 28 26 148 29 27 149 41 39 150 40 38 151 29 27 152 41 39 153 29 27 154 30 28 155 42 40 156 41 39 157 30 28 158 42 40 159 30 28 160 31 29 161 43 41 162 42 40 163 31 29 164 43 41 165 31 29 166 32 30 167 44 42 168 43 41 169 32 30 170 44 42 171 32 30 172 33 31 173 34 32 174 44 42 175 33 31 176 47 43 177 46 44 178 35 34 179 47 43 180 35 34 181 36 33 182 48 45 183 47 43 184 36 33 185 48 45 186 36 33 187 37 35 188 49 46 189 48 45 190 37 35 191 49 46 192 37 35 193 38 36 194 50 47 195 49 46 196 38 36 197 50 47 198 38 36 199 39 37 200 51 48 201 50 47 202 39 37 203 51 48 204 39 37 205 40 38 206 52 49 207 51 48 208 40 38 209 52 49 210 40 38 211 41 39 212 53 50 213 52 49 214 41 39 215 53 50 216 41 39 217 42 40 218 54 51 219 53 50 220 42 40 221 54 51 222 42 40 223 43 41 224 55 52 225 54 51 226 43 41 227 55 52 228 43 41 229 44 42 230 13 1 231 0 53 232 1 2 233 0 53 234 13 1 235 24 23 236 0 53 237 24 23 238 58 54 239 35 34 240 59 55 241 58 54 242 35 34 243 58 54 244 24 23 245 59 55 246 35 34 247 46 44 248 59 55 249 46 44 250 45 56 251 46 44 252 60 57 253 56 58 254 46 44 255 56 58 256 45 56 257 48 45 258 64 59 259 63 60 260 48 45 261 63 60 262 47 43 263 49 46 264 66 61 265 65 62 266 49 46 267 65 62 268 48 45 269 47 43 270 62 63 271 61 64 272 47 43 273 61 64 274 46 44 275 12 65 276 23 20 277 11 21 278 83 66 279 34 32 280 23 20 281 12 65 282 83 66 283 23 20 284 82 67 285 34 32 286 83 66 287 82 67 288 84 68 289 34 32 290 51 48 291 70 69 292 69 70 293 51 48 294 69 70 295 50 47 296 52 49 297 71 71 298 70 69 299 52 49 300 70 69 301 51 48 302 34 32 303 84 68 304 44 42 305 81 72 306 44 42 307 84 68 308 81 72 309 55 52 310 44 42 311 82 67 312 81 72 313 84 68 314 53 50 315 73 73 316 72 74 317 53 50 318 72 74 319 52 49 320 50 47 321 68 75 322 67 76 323 50 47 324 67 76 325 49 46 326 60 57 327 46 44 328 61 64 329 57 77 330 47 43 331 63 60 332 62 63 333 47 43 334 57 77 335 66 61 336 49 46 337 67 76 338 68 75 339 50 47 340 69 70 341 64 59 342 48 45 343 65 62 344 52 49 345 72 74 346 71 71 347 55 52 348 77 78 349 76 79 350 55 52 351 76 79 352 54 51 353 80 80 354 79 81 355 55 52 356 55 52 357 79 81 358 77 78 359 81 72 360 80 80 361 55 52 362 73 73 363 53 50 364 74 82 365 74 82 366 53 50 367 75 83 368 54 51 369 76 79 370 75 83 371 79 81 372 78 84 373 77 78 374 53 50 375 54 51 376 75 83 377 93 85 378 92 86 379 88 87 380 93 85 381 88 87 382 89 88 383 94 89 384 93 85 385 89 88 386 94 89 387 89 88 388 90 90 389 95 91 390 94 89 391 90 90 392 95 91 393 90 90 394 91 92 395 97 93 396 96 94 397 92 86 398 97 93 399 92 86 400 93 85 401 98 95 402 97 93 403 93 85 404 98 95 405 93 85 406 94 89 407 99 96 408 98 95 409 94 89 410 99 96 411 94 89 412 95 91 413 102 97 414 101 98 415 96 94 416 102 97 417 96 94 418 97 93 419 103 99 420 102 97 421 97 93 422 103 99 423 97 93 424 98 95 425 104 100 426 103 99 427 98 95 428 104 100 429 98 95 430 99 96 431 88 87 432 85 101 433 122 102 434 88 87 435 121 103 436 120 104 437 121 103 438 88 87 439 122 102 440 88 87 441 86 105 442 119 106 443 89 88 444 118 107 445 117 108 446 89 88 447 117 108 448 116 109 449 118 107 450 88 87 451 119 106 452 86 105 453 88 87 454 120 104 455 89 88 456 115 110 457 114 111 458 90 90 459 113 112 460 112 113 461 90 90 462 112 113 463 111 114 464 113 112 465 90 90 466 114 111 467 91 92 468 110 115 469 109 116 470 91 92 471 108 117 472 107 118 473 91 92 474 107 118 475 106 119 476 108 117 477 91 92 478 109 116 479 110 115 480 90 90 481 111 114 482 115 110 483 89 88 484 116 109 485 89 88 486 114 111 487 90 90 488 91 92 489 106 119 490 128 120 491 90 90 492 110 115 493 91 92 494 123 121 495 92 86 496 96 94 497 123 121 498 96 94 499 100 122 500 100 122 501 96 94 502 101 98 503 88 87 504 92 86 505 123 121 506 123 121 507 85 101 508 88 87 509 106 119 510 105 123 511 128 120 512 127 124 513 95 91 514 91 92 515 87 125 516 128 120 517 105 123 518 128 120 519 127 124 520 91 92 521 127 124 522 126 126 523 95 91 524 125 127 525 104 100 526 99 96 527 126 126 528 125 127 529 99 96 530 124 128 531 104 100 532 125 127 533 95 91 534 126 126 535 99 96 536 88 87 537 118 107 538 89 88 539 134 129 540 129 130 541 130 131 542 135 132 543 134 129 544 130 131 545 135 132 546 130 131 547 131 133 548 136 134 549 135 132 550 131 133 551 136 134 552 131 133 553 132 135 554 135 132 555 142 136 556 141 137 557 135 132 558 141 137 559 134 129 560 134 129 561 138 138 562 137 139 563 147 140 564 132 135 565 133 141 566 145 142 567 136 134 568 146 143 569 147 140 570 146 143 571 136 134 572 147 140 573 136 134 574 132 135 575 136 134 576 143 144 577 135 132 578 138 138 579 134 129 580 141 137 581 142 136 582 135 132 583 143 144 584 136 134 585 144 145 586 139 146 587 139 146 588 143 144 589 136 134 590 136 134 591 145 142 592 144 145 593 145 142 594 140 147 595 144 145 596 156 148 597 152 149 598 153 150 599 157 151 600 156 148 601 153 150 602 157 151 603 153 150 604 154 152 605 158 153 606 157 151 607 154 152 608 158 153 609 154 152 610 155 154 611 148 155 612 153 150 613 152 149 614 153 150 615 148 155 616 162 156 617 154 152 618 149 157 619 161 158 620 155 154 621 150 159 622 160 160 623 150 159 624 155 154 625 161 158 626 149 157 627 154 152 628 162 156 629 153 150 630 162 156 631 154 152 632 155 154 633 160 160 634 163 161 635 154 152 636 161 158 637 155 154 638 151 162 639 163 161 640 160 160 641 159 163 642 158 153 643 155 154 644 159 163 645 155 154 646 163 161 647

+
+
+
+ + + + 79.8473 97.1577 42.6349 80.5001 96.6383 42.8081 81.0578 95.8806 43.0325 81.5203 94.8844 43.3081 81.8875 93.6499 43.635 82.33641 90.4655 44.4426 82.40441 86.3276 45.4552 79.8473 98.4842 24.6159 80.51401 97.9462 24.8246 81.0815 97.1734 25.0964 81.5499 96.16601 25.4313 81.9191 94.9239 25.8293 82.3601 91.73571 26.8143 82.40441 87.6089 28.0516 79.8473 99.8108 6.59681 80.5278 99.25402 6.84117 81.1052 98.4663 7.1604 81.5796 97.4476 7.5545 81.9508 96.19802 8.02347 82.3838 93.0059 9.18602 82.40441 88.8901 10.648 79.8473 101.137 -11.4223 80.54161 100.562 -11.1423 81.1289 99.7591 -10.7756 81.6092 98.7292 -10.3223 81.9824 97.47201 -9.78231 82.4075 94.2761 -8.442271 82.40441 90.1714 -6.75552 82.40441 91.4526 -24.1591 79.8473 102.079 -24.2076 80.8866 101.109 -24.1228 81.57151 99.8637 -24.0393 81.9992 98.5227 -23.9817 82.2607 97.13871 -23.9561 82.4665 94.3912 -24.0106 82.41471 91.6427 -24.2042 + + + + + + + + + + 0.7128059 0.699469 0.05148583 0.6160027 0.7856294 0.05768156 0.6122441 0.7885532 0.05780321 0.7272055 0.6845704 0.0503562 0.8542553 0.518425 0.03851485 0.8649085 0.5005421 0.0372942 0.9318483 0.3618072 0.02746742 0.9376485 0.3465787 0.02642983 0.9761192 0.2165627 0.01709061 0.9792543 0.2020034 0.0159918 0.9970986 0.07584065 0.006531119 0.9977594 0.06668412 0.005432367 0.9999312 0.01162779 0.001556456 0.9998595 0.01672434 0.001220703 0.7141231 0.6981309 0.05139464 0.6198179 0.7826387 0.05746793 0.8533902 0.519841 0.03860729 0.9312395 0.3633643 0.02755904 0.9762271 0.216078 0.01706039 0.9973898 0.07193315 0.006256341 0.9999822 0.005859613 0.001159667 0.7148581 0.69734 0.05191361 0.6229303 0.7801659 0.05743736 0.8525472 0.5211724 0.03927791 0.9306729 0.3647921 0.02783316 0.9759958 0.2169896 0.01864707 0.9976066 0.06869834 0.007843375 0.9999982 -5.79868e-4 0.001831114 0.6768332 0.7344846 0.0492891 0.7800965 0.624236 0.04217725 0.9682691 0.2491858 0.01901316 0.9995988 0.02826082 0.001953184 0.9909721 0.1336718 0.01031529 0.9153121 0.401746 0.02835172 0.999392 -0.03479117 -0.002319395 0.9984769 -0.05502498 -0.004028439 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 90.8398 46.3673 -108.797 90.8398 48.3558 -109.668 90.8398 50.2882 -110.64 90.8398 52.1571 -111.708 90.8398 53.9555 -112.865 90.8398 55.6776 -114.105 90.8398 57.3181 -115.421 90.8398 58.8725 -116.806 90.8398 60.3375 -118.25 90.6546 49.3438 -108.517 90.6614 50.9891 -109.406 90.66841 52.5778 -110.393 90.6755 54.1042 -111.474 90.6827 55.5629 -112.642 90.69001 56.9494 -113.89 90.6972 58.2599 -115.213 90.7045 59.4913 -116.602 90.7117 60.6411 -118.05 90.35401 53.5923 -109.147 90.38681 54.8421 -110.149 90.4199 56.0307 -111.242 90.4531 57.1543 -112.42 90.4861 58.2098 -113.677 90.51902 59.1944 -115.005 90.5515 60.1065 -116.398 90.58351 60.9446 -117.849 90.2315 54.2222 -109.058 90.2775 55.3904 -110.068 90.3238 56.4976 -111.167 90.37001 57.5406 -112.351 90.4161 58.5162 -113.613 90.4618 59.4224 -114.947 90.50701 60.2575 -116.344 90.5515 61.0205 -117.799 90.1179 55.9093 -109.947 90.1859 56.9403 -111.06 90.2538 57.9075 -112.256 90.32141 58.8084 -113.531 90.3883 59.641 -114.875 90.4544 60.4039 -116.284 90.5195 61.0964 -117.749 90.0063 57.3587 -110.919 90.1044 58.2552 -112.135 90.20201 59.0862 -113.428 90.2986 59.8501 -114.791 90.3938 60.5456 -116.217 90.4874 61.1722 -117.698 89.9219 58.5836 -111.987 90.0579 59.3497 -113.306 90.1925 60.0497 -114.694 90.32511 60.6826 -116.143 90.4554 61.2481 -117.648 89.7064 58.8928 -111.813 89.8893 59.599 -113.164 90.0701 60.2399 -114.583 90.2484 60.815 -116.064 90.4233 61.324 -117.598 89.45771 59.1828 -111.612 89.6959 59.8339 -113.002 89.93151 60.4207 -114.46 90.1635 60.9427 -115.977 90.3913 61.3999 -117.548 89.47801 60.0546 -112.821 89.77661 60.5921 -114.323 90.07061 61.0658 -115.885 90.3593 61.4758 -117.498 90.3272 61.5516 -117.447 90.7657 47.8599 -108.657 90.5065 50.8191 -108.378 90.32151 52.2857 -108.24 90.1308 53.2075 -108.104 90.0884 54.1076 -108.544 90.0324 54.997 -109.004 89.95951 55.8754 -109.483 89.8649 56.7423 -109.978 89.7425 57.598 -110.489 89.58361 58.44 -111.012 89.37601 59.2659 -111.545 89.1025 60.07 -112.081 89.41471 60.5068 -113.362 89.7233 60.8993 -114.686 90.0277 61.2475 -116.05 89.1025 60.07 -112.081 89.7233 60.8993 -114.686 90.3272 61.5516 -117.447 89.6784 63.0883 -116.431 89.0296 64.6249 -115.414 89.11301 61.2304 -112.885 89.10601 62.3756 -113.71 89.0793 63.5067 -114.554 90.0277 61.2475 -116.05 89.41471 60.5068 -113.362 90.8398 31.05 -105.803 90.8398 32.9526 -105.848 90.8398 34.8719 -105.983 90.8398 36.8018 -106.212 90.8398 38.7354 -106.536 90.8398 40.6659 -106.956 90.8398 42.5862 -107.474 90.8398 44.4891 -108.088 90.8398 46.3673 -108.797 90.6214 36.1569 -105.334 90.6245 37.8275 -105.408 90.6279 39.5036 -105.572 90.6317 41.1794 -105.827 90.6357 42.8491 -106.176 90.64 44.5066 -106.619 90.6446 46.1456 -107.157 90.6495 47.7601 -107.79 90.6546 49.3438 -108.517 90.2693 49.6644 -106.845 90.29502 50.9933 -107.497 90.32151 52.2857 -108.24 90.1308 53.2075 -108.104 90.5065 50.8191 -108.378 90.7657 47.8599 -108.657 90.1101 41.414 -104.85 90.1646 43.301 -105.048 90.1876 44.8548 -105.305 90.20401 47.007 -105.799 90.2034 49.1203 -106.439 90.1827 51.1883 -107.212 90.22071 46.9178 -105.82 90.2445 48.3042 -106.286 + + + + + + + + + + 0.9872986 0.08408057 0.1348036 0.9880521 0.07702988 0.13349 0.9934327 0.05395805 0.1008967 0.9909688 0.0621072 0.118843 0.9873444 0.0918616 0.1292777 0.9905029 0.07043844 0.118079 0.9866701 0.1019935 0.1268053 0.9893624 0.08142447 0.1205497 0.9849311 0.1162763 0.1280261 0.9871381 0.09695893 0.1271117 0.9811893 0.1380989 0.1348944 0.9826115 0.1211288 0.1407218 0.9722799 0.1767671 0.1530537 0.9722331 0.1635241 0.1674001 0.9458768 0.2425959 0.215556 0.9408196 0.2378982 0.2413774 0.9733332 0.13297 0.1869271 0.9706838 0.1270806 0.2040187 0.9750047 0.1401147 0.1724348 0.9756347 0.1489637 0.1610798 0.975136 0.1604982 0.1528075 0.9726842 0.1779282 0.1490873 0.9662426 0.2077147 0.1524136 0.9466878 0.261431 0.1882449 0.949299 0.1915078 0.2493112 0.9458743 0.1832664 0.2678344 0.9531967 0.199441 0.2272437 0.9558766 0.2075272 0.207924 0.9572774 0.2167196 0.1914494 0.9572026 0.2283138 0.1778656 0.9542682 0.2467156 0.1688311 0.9438975 0.2780908 0.17811 0.923921 0.2599357 0.2807196 0.9197294 0.2512043 0.3016527 0.9291864 0.2683244 0.2541941 0.9332348 0.2754933 0.2306001 0.9366616 0.2812945 0.208659 0.9395682 0.2859051 0.1883348 0.9434435 0.2812049 0.1756081 0.8992193 0.3243281 0.2936258 0.8922705 0.3167627 0.3217374 0.9057782 0.3306446 0.2650284 0.9129247 0.3322334 0.2370436 0.9233216 0.3231046 0.2075596 0.9429526 0.2820281 0.1769199 0.8673559 0.3755999 0.326525 0.8758401 0.3821309 0.2947545 0.8870716 0.3798422 0.2623432 0.9051298 0.3594212 0.2270607 0.9422817 0.2808076 0.1823524 0.8441801 0.4300096 0.320081 0.8341609 0.4246493 0.3519212 0.8593459 0.4246829 0.2849023 0.8859804 0.3931214 0.2459564 0.9417044 0.2765967 0.1915393 0.8110786 0.4748484 0.341571 0.8036037 0.4626421 0.3744108 0.8302461 0.4667006 0.3047654 0.8657907 0.4248231 0.2644463 0.9412195 0.2689678 0.2043581 0.7976475 0.5075023 0.3258831 0.7756689 0.5173568 0.3614966 0.8428093 0.4554026 0.2868469 0.9378033 0.2604839 0.2295066 0.9940156 0.04764068 0.09830284 0.9948511 0.04065096 0.0928381 0.9891973 0.06647139 0.1306539 0.9714956 0.1177746 0.2057317 0.9818689 0.0919243 0.1657811 0.9486141 0.1616272 0.2720441 0.931654 0.1992892 0.3038168 0.9275333 0.2219036 0.3007342 0.906385 0.2652715 0.3287816 0.8984913 0.293383 0.3265576 0.8707807 0.3488982 0.3464262 0.8464511 0.394217 0.3579297 0.7899591 0.48083 0.3804829 0.7658526 0.5203244 0.3777991 0.8516729 0.4463455 0.2746436 0.8053754 0.5050649 0.3102903 0.7784456 0.5240095 0.345596 0.9404154 0.2288627 0.2514774 0.9367265 0.2025561 0.2855073 0.9353419 0.1956869 0.2946901 0.936745 0.2022177 0.2856868 0.9394263 0.2152483 0.2667333 0.9386993 0.2134184 0.2707328 0.9390971 0.2280372 0.2570912 0.939968 0.2304648 0.2516866 0.9399382 0.2285296 0.2535557 0.9403303 0.2327097 0.248244 0.9425129 0.2196134 0.2518719 0.9067552 0.02386599 0.4209815 0.944988 0.01272636 0.3268577 0.9377125 0.00952208 0.3472817 0.9342427 0.009125113 0.3565211 0.9419974 0.03647011 0.333633 0.9619993 0.01992911 0.2723239 0.9596991 0.04529011 0.2773563 0.9749425 0.02704018 0.2208079 0.9696002 0.05221861 0.2390581 0.9816529 0.03238093 0.1879072 0.9766901 0.05722254 0.2068863 0.9855729 0.03695821 0.1651675 0.9809377 0.06213641 0.1841204 0.9880542 0.04117017 0.1485056 0.9812289 0.06824135 0.1803696 0.9895852 0.04455798 0.1368786 0.9613255 0.114264 0.2505935 0.9563997 0.1075789 0.2715262 0.8329655 0.03351026 0.5523093 0.9052901 0.05279815 0.4215002 0.9405355 0.07956308 0.3302464 0.9387767 0.06595242 0.3381549 0.9422056 0.1002541 0.319684 0.9937248 0.03949141 0.1046492 0.9893334 0.05252313 0.1358704 0.9728786 0.09271609 0.2119226 0.981312 0.07764065 0.1760648 0.9340043 0.09463948 0.3444988 0.9481335 0.1062061 0.299605 0.949395 0.1366044 0.2828225 0.9495907 0.1413933 0.2797958 0.9449464 0.1498205 0.2909124 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

11 0 0 10 1 1 1 2 2 11 0 3 1 2 4 2 3 5 12 4 6 11 0 7 2 3 8 12 4 9 2 3 10 3 5 11 13 6 12 12 4 13 3 5 14 13 6 15 3 5 16 4 7 17 14 8 18 13 6 19 4 7 20 14 8 21 4 7 22 5 9 23 15 10 24 14 8 25 5 9 26 15 10 27 5 9 28 6 11 29 16 12 30 15 10 31 6 11 32 16 12 33 6 11 34 7 13 35 17 14 36 16 12 37 7 13 38 17 14 39 7 13 40 8 15 41 19 16 42 18 17 43 10 1 44 19 16 45 10 1 46 11 0 47 20 18 48 19 16 49 11 0 50 20 18 51 11 0 52 12 4 53 21 19 54 20 18 55 12 4 56 21 19 57 12 4 58 13 6 59 22 20 60 21 19 61 13 6 62 22 20 63 13 6 64 14 8 65 23 21 66 22 20 67 14 8 68 23 21 69 14 8 70 15 10 71 24 22 72 23 21 73 15 10 74 24 22 75 15 10 76 16 12 77 25 23 78 24 22 79 16 12 80 25 23 81 16 12 82 17 14 83 27 24 84 26 25 85 18 17 86 27 24 87 18 17 88 19 16 89 28 26 90 27 24 91 19 16 92 28 26 93 19 16 94 20 18 95 29 27 96 28 26 97 20 18 98 29 27 99 20 18 100 21 19 101 30 28 102 29 27 103 21 19 104 30 28 105 21 19 106 22 20 107 31 29 108 30 28 109 22 20 110 31 29 111 22 20 112 23 21 113 32 30 114 31 29 115 23 21 116 32 30 117 23 21 118 24 22 119 33 31 120 32 30 121 24 22 122 33 31 123 24 22 124 25 23 125 35 32 126 34 33 127 27 24 128 35 32 129 27 24 130 28 26 131 36 34 132 35 32 133 28 26 134 36 34 135 28 26 136 29 27 137 37 35 138 36 34 139 29 27 140 37 35 141 29 27 142 30 28 143 38 36 144 37 35 145 30 28 146 38 36 147 30 28 148 31 29 149 39 37 150 38 36 151 31 29 152 39 37 153 31 29 154 32 30 155 40 38 156 39 37 157 32 30 158 40 38 159 32 30 160 33 31 161 42 39 162 41 40 163 35 32 164 42 39 165 35 32 166 36 34 167 43 41 168 42 39 169 36 34 170 43 41 171 36 34 172 37 35 173 44 42 174 43 41 175 37 35 176 44 42 177 37 35 178 38 36 179 45 43 180 44 42 181 38 36 182 45 43 183 38 36 184 39 37 185 46 44 186 45 43 187 39 37 188 46 44 189 39 37 190 40 38 191 47 45 192 41 40 193 42 39 194 48 46 195 47 45 196 42 39 197 48 46 198 42 39 199 43 41 200 49 47 201 48 46 202 43 41 203 49 47 204 43 41 205 44 42 206 50 48 207 49 47 208 44 42 209 50 48 210 44 42 211 45 43 212 51 49 213 50 48 214 45 43 215 51 49 216 45 43 217 46 44 218 53 50 219 52 51 220 47 45 221 53 50 222 47 45 223 48 46 224 54 52 225 53 50 226 48 46 227 54 52 228 48 46 229 49 47 230 55 53 231 54 52 232 49 47 233 55 53 234 49 47 235 50 48 236 56 54 237 55 53 238 50 48 239 56 54 240 50 48 241 51 49 242 58 55 243 57 56 244 52 51 245 58 55 246 52 51 247 53 50 248 59 57 249 58 55 250 53 50 251 59 57 252 53 50 253 54 52 254 60 58 255 59 57 256 54 52 257 60 58 258 54 52 259 55 53 260 61 59 261 60 58 262 55 53 263 61 59 264 55 53 265 56 54 266 63 60 267 62 61 268 58 55 269 63 60 270 58 55 271 59 57 272 64 62 273 63 60 274 59 57 275 64 62 276 59 57 277 60 58 278 65 63 279 64 62 280 60 58 281 65 63 282 60 58 283 61 59 284 1 2 285 67 64 286 0 65 287 67 64 288 10 1 289 9 66 290 1 2 291 10 1 292 67 64 293 69 67 294 68 68 295 18 17 296 69 67 297 18 17 298 26 25 299 69 67 300 26 25 301 70 69 302 68 68 303 9 66 304 10 1 305 26 25 306 71 70 307 70 69 308 68 68 309 10 1 310 18 17 311 72 71 312 26 25 313 27 24 314 34 33 315 73 72 316 72 71 317 41 40 318 74 73 319 35 32 320 35 32 321 74 73 322 34 33 323 74 73 324 73 72 325 34 33 326 27 24 327 34 33 328 72 71 329 72 71 330 71 70 331 26 25 332 41 40 333 47 45 334 75 74 335 47 45 336 52 51 337 76 75 338 76 75 339 75 74 340 47 45 341 74 73 342 41 40 343 75 74 344 57 56 345 77 76 346 76 75 347 57 56 348 58 55 349 77 76 350 52 51 351 57 56 352 76 75 353 62 61 354 78 77 355 77 76 356 77 76 357 58 55 358 62 61 359 64 62 360 81 78 361 80 79 362 64 62 363 80 79 364 63 60 365 63 60 366 80 79 367 79 80 368 63 60 369 79 80 370 62 61 371 81 78 372 64 62 373 65 63 374 81 78 375 65 63 376 66 81 377 79 80 378 78 77 379 62 61 380 87 82 381 82 83 382 91 84 383 88 85 384 83 86 385 90 87 386 85 88 387 90 88 388 84 88 389 83 86 390 87 82 391 91 84 392 90 87 393 85 89 394 88 85 395 86 90 396 89 91 397 85 89 398 88 85 399 85 89 400 89 91 401 87 82 402 83 86 403 88 85 404 102 92 405 101 93 406 92 94 407 102 92 408 92 94 409 93 95 410 103 96 411 102 92 412 93 95 413 103 96 414 93 95 415 94 97 416 104 98 417 103 96 418 94 97 419 104 98 420 94 97 421 95 99 422 105 100 423 104 98 424 95 99 425 105 100 426 95 99 427 96 101 428 106 102 429 105 100 430 96 101 431 106 102 432 96 101 433 97 103 434 107 104 435 106 102 436 97 103 437 107 104 438 97 103 439 98 105 440 108 106 441 107 104 442 98 105 443 108 106 444 98 105 445 99 107 446 111 108 447 110 109 448 107 104 449 111 108 450 107 104 451 108 106 452 116 110 453 101 93 454 102 92 455 117 111 456 102 92 457 103 96 458 105 100 459 122 112 460 118 113 461 105 100 462 118 113 463 104 98 464 106 102 465 123 114 466 122 112 467 106 102 468 122 112 469 105 100 470 104 98 471 118 113 472 103 96 473 100 115 474 115 116 475 99 107 476 108 106 477 99 107 478 115 116 479 114 117 480 108 106 481 109 118 482 115 116 483 109 118 484 108 106 485 107 104 486 110 109 487 123 114 488 107 104 489 123 114 490 106 102 491 119 119 492 118 113 493 122 112 494 123 114 495 119 119 496 122 112 497 120 120 498 119 119 499 123 114 500 118 113 501 117 111 502 103 96 503 110 109 504 120 120 505 123 114 506 114 117 507 111 108 508 108 106 509 121 121 510 110 109 511 111 108 512 112 122 513 111 108 514 114 117 515 121 121 516 111 108 517 113 123 518 113 123 519 111 108 520 112 122 521 120 120 522 110 109 523 121 121 524 116 110 525 102 92 526 117 111 527

+
+
+
+ + + + 90.8398 70.37751 -156.887 90.8398 69.1981 -160.612 90.8398 67.6352 -164.272 90.8398 65.6935 -167.808 90.8398 63.3893 -171.163 90.8398 60.7505 -174.283 90.8398 57.8157 -177.119 90.8398 54.632 -179.632 90.8398 51.2527 -181.793 85.78041 70.8675 -162.999 85.4351 69.53701 -166.786 85.0993 68.0217 -170.408 84.7833 66.3568 -173.825 84.49771 64.5824 -176.997 84.2539 62.7432 -179.888 84.0634 60.8868 -182.461 83.9376 59.0627 -184.686 81.2694 73.6389 -161.35 80.6738 72.5525 -165.408 80.0669 71.42601 -169.284 79.4619 70.3082 -172.962 78.8732 69.25241 -176.423 78.3174 68.3164 -179.643 77.8124 67.5626 -182.596 77.3779 67.0576 -185.253 77.0353 66.87271 -187.579 86.05461 72.0082 -159.119 90.8398 60.3375 -118.25 90.8398 61.8732 -119.936 90.8398 63.4256 -121.853 90.8398 64.8805 -123.892 90.8398 66.21791 -126.036 90.8398 67.4274 -128.275 90.8398 68.5497 -130.715 90.8398 69.5428 -133.324 90.8398 70.3715 -136.058 90.8398 71.0168 -138.898 90.8398 71.4625 -141.824 90.8398 71.7007 -144.933 90.8398 71.7014 -148.019 90.8398 71.4727 -151.055 90.8398 71.0265 -154.018 90.8398 70.37751 -156.887 87.7388 70.5767 -121.762 87.6646 71.4702 -124.572 87.5823 72.2371 -127.394 87.4868 72.9037 -130.366 87.37831 73.44271 -133.444 87.2575 73.8343 -136.584 87.12461 74.0693 -139.771 86.98001 74.1407 -142.991 86.8181 74.03701 -146.362 86.6493 73.7572 -149.67 86.4761 73.3127 -152.902 86.3007 72.7167 -156.044 84.4729 76.82801 -126.554 84.29901 77.0432 -130.034 84.0932 77.1439 -133.559 83.8558 77.1226 -137.083 83.58551 76.97702 -140.602 83.2816 76.7069 -144.11 82.9295 76.2958 -147.744 82.5492 75.7688 -151.286 82.1434 75.1397 -154.736 81.7154 74.42401 -158.091 81.2694 73.6389 -161.35 86.05461 72.0082 -159.119 89.0296 64.6249 -115.414 88.3832 67.7362 -117.914 87.4654 70.7658 -120.43 86.2009 73.7432 -122.862 84.5389 76.7022 -125.067 + + + + + + + + + + 0.4550691 0.8173604 -0.3533187 0.427879 0.8503562 -0.3062906 0.4280984 0.8512833 -0.3033953 0.4662154 0.8017771 -0.373894 0.4956321 0.7743946 -0.3932707 0.5135219 0.7392138 -0.4357275 0.5447971 0.7230288 -0.4247653 0.5637002 0.6669791 -0.4872176 0.5977243 0.6656301 -0.4468359 0.6114599 0.5890586 -0.5283246 0.6503931 0.6049501 -0.4593738 0.6529394 0.5091915 -0.5607088 0.7000581 0.5439199 -0.4626768 0.6854502 0.43068 -0.5870885 0.7184573 0.501617 -0.4818708 0.6935575 0.3881175 -0.6069124 0.441828 0.8362901 -0.3246644 0.4262629 0.8518239 -0.3044604 0.4731951 0.8145486 -0.335555 0.5174893 0.7874345 -0.3348909 0.5709852 0.7563899 -0.3191401 0.6297929 0.7235171 -0.2826377 0.6897956 0.6911994 -0.2154657 0.7207829 0.6567831 -0.2216032 0.4238546 0.8599475 -0.2843195 0.4192779 0.8643143 -0.2777892 0.4276049 0.855576 -0.2917943 0.8677182 0.4828727 0.1178951 0.8844128 0.4513773 0.1186277 0.884441 0.4008977 0.2388418 0.8473123 0.4674364 0.2521214 0.8359797 0.5391812 0.1020864 0.810469 0.5320114 0.245161 0.7928825 0.6022611 0.09283864 0.765074 0.6008461 0.2316158 0.7455872 0.6625441 0.07165938 0.7118564 0.6704421 0.209208 0.6919631 0.7205902 0.04400873 0.6530859 0.7363125 0.1769823 0.6345561 0.7728083 0.01028496 0.5922915 0.7943305 0.1350181 0.5770912 0.8161497 -0.02942067 0.5338516 0.8414602 0.0833494 0.5219714 0.8498097 -0.07327681 0.4805601 0.8766117 0.02478182 0.4766504 0.8708682 -0.1199713 0.4402135 0.8970602 -0.03866821 0.443781 0.880512 -0.1666048 0.4144456 0.9041813 -0.1033977 0.4243663 0.8803198 -0.2120153 0.4033088 0.8996394 -0.1673052 0.8047212 0.5936528 5.79858e-4 0.8281638 0.5604816 0.002288877 0.7618829 0.6473135 -0.02279788 0.7127622 0.6995782 -0.05059981 0.6593084 0.7473871 -0.08200532 0.6046057 0.7879924 -0.1162762 0.5503315 0.8210414 -0.151744 0.5032634 0.8435842 -0.1873275 0.466422 0.8566076 -0.2206219 0.44109 0.8617323 -0.2507129 0.9321083 0.3126051 0.1828998 0.9419692 0.2481805 0.2260543 0.9321174 0.2859954 0.2221798 0.9181166 0.3617165 0.1619362 0.9115747 0.3385177 0.2333184 0.892865 0.4290671 0.1367253 0.3991039 0.8943139 -0.2022835 0.413507 0.8806061 -0.2313979 0.8398618 0.5411995 0.04165887 0.8639138 0.4979247 0.07565766 0.4284316 0.8666599 -0.2556307 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 77.0353 66.87271 -187.579 77.4593 67.1365 -184.74 78.00981 67.8421 -181.433 78.6505 68.8679 -177.715 79.3702 70.14101 -173.507 80.07511 71.4412 -169.233 80.8039 72.7923 -164.546 81.51271 74.0712 -159.599 82.1828 75.2032 -154.413 82.7989 76.1231 -149 83.3492 76.77481 -143.364 83.82521 77.1118 -137.505 84.2222 77.0968 -131.411 84.5389 76.7022 -125.067 78.6039 71.55931 -187.297 78.9416 71.7979 -184.08 79.39 72.42311 -180.454 79.9174 73.3286 -176.467 80.5128 74.4506 -172.03 81.0972 75.5958 -167.58 81.7016 76.7858 -162.745 82.2885 77.9127 -157.684 82.8416 78.91101 -152.413 83.3474 79.7237 -146.943 83.7955 80.3017 -141.279 84.17881 80.6044 -135.419 84.4929 80.5992 -129.354 79.9161 76.2131 -187.078 80.1771 76.40901 -183.484 80.5329 76.93621 -179.538 80.9563 77.7036 -175.284 81.4373 78.65641 -170.618 81.9105 79.6296 -165.992 82.4 80.6409 -161.011 82.87461 81.5981 -155.835 83.3201 82.4452 -150.48 83.72502 83.13311 -144.954 84.0806 83.6198 -139.262 84.3806 83.8706 -133.402 80.9719 80.8341 -186.922 81.16561 80.9696 -182.95 81.4383 81.38121 -178.686 81.76741 81.99301 -174.165 82.1437 82.7584 -169.272 82.51501 83.54251 -164.469 82.8991 84.3576 -159.342 83.2708 85.12751 -154.054 83.6182 85.80561 -148.615 83.9319 86.3512 -143.034 84.2045 86.72911 -137.315 84.43061 86.9103 -131.455 81.7713 85.42221 -186.828 81.90721 85.4797 -182.48 82.1063 85.7582 -177.898 82.3506 86.1967 -173.111 82.63201 86.7567 -167.99 82.9106 87.3346 -163.013 83.1988 87.9357 -157.741 83.4771 88.5008 -152.339 83.7361 88.9925 -146.817 83.968 89.37802 -141.182 84.16701 89.6294 -135.436 82.3142 89.9776 -186.796 82.4019 89.9395 -182.073 82.53691 90.0671 -177.174 82.70581 90.3148 -172.12 82.9022 90.6511 -166.774 83.0973 91.0058 -161.622 83.2992 91.37551 -156.205 83.4937 91.7181 -150.691 83.6736 92.0056 -145.088 83.8333 92.2136 -139.399 83.9683 92.32101 -133.626 82.6007 94.5 -186.827 82.6496 94.3488 -181.729 82.7302 94.30801 -176.513 82.8333 94.3473 -171.195 82.9544 94.44181 -165.622 83.07521 94.5562 -160.297 83.2003 94.67681 -154.736 83.3204 94.7793 -149.111 83.4309 94.8451 -143.425 83.5278 94.85791 -137.683 83.6083 94.8036 -131.886 82.6308 98.9897 -186.92 82.6505 98.70771 -181.448 82.68601 98.48091 -175.916 82.73281 98.2941 -170.333 82.7884 98.1288 -164.536 82.8442 97.98571 -159.037 82.902 97.8396 -153.333 82.9573 97.6845 -147.597 83.0078 97.511 -141.831 83.0515 97.3109 -136.036 83.08702 97.0774 -130.214 82.40441 103.447 -187.076 82.40441 103.016 -181.23 82.40441 102.586 -175.383 82.40441 102.155 -169.536 82.40441 101.712 -163.514 82.40441 101.294 -157.843 82.40441 100.864 -151.997 82.40441 100.434 -146.15 82.40441 100.003 -140.304 82.40441 99.5727 -134.457 82.40441 99.0637 -127.543 83.2713 96.3497 -128.275 83.8732 93.5189 -128.802 84.2593 90.61402 -129.06 84.47702 87.6808 -128.997 84.5739 84.76601 -128.569 84.5932 81.9317 -127.759 84.5728 79.2311 -126.58 + + + + + + + + + + 0.9592164 -0.2720781 -0.07666403 0.9533672 -0.2831901 -0.1043766 0.9498152 -0.2962488 -0.1004383 0.9549812 -0.2872787 -0.07403993 0.9647062 -0.2529721 -0.07312357 0.9596407 -0.2645085 -0.09552454 0.9697187 -0.2329534 -0.07333773 0.9652222 -0.2444261 -0.09274703 0.9746038 -0.2107359 -0.07574892 0.9705836 -0.2217857 -0.0936951 0.9790342 -0.1880915 -0.07819086 0.9754168 -0.1986175 -0.09546333 0.9833069 -0.1632486 -0.08035773 0.980085 -0.1730423 -0.0974164 0.9871914 -0.1374871 -0.08093583 0.9843353 -0.1467057 -0.09778344 0.9905696 -0.1118232 -0.07916742 0.9880778 -0.1206409 -0.09564602 0.9933771 -0.08734661 -0.07465052 0.9912581 -0.09607386 -0.09042787 0.9955951 -0.06518882 -0.0673862 0.9938711 -0.0740993 -0.08203417 0.9972014 -0.04651057 -0.05853497 0.9959325 -0.0554533 -0.07101809 0.9982231 -0.03051918 -0.05118072 0.9973083 -0.04126203 -0.06061118 0.9716146 -0.2293835 -0.05786472 0.9687076 -0.2424439 -0.0531643 0.9755333 -0.2116783 -0.05938953 0.9793116 -0.1925724 -0.06216639 0.9830827 -0.1710293 -0.06555509 0.9865031 -0.1488727 -0.0681799 0.9897483 -0.1245197 -0.06995075 0.9926012 -0.09924787 -0.06994962 0.9949597 -0.07400929 -0.06766128 0.9967734 -0.05002021 -0.0627771 0.998062 -0.02847415 -0.05533087 0.9987441 -0.007721364 -0.04950231 0.9821378 -0.183054 -0.04355084 0.9802511 -0.1940726 -0.03799659 0.9848085 -0.1668763 -0.04800593 0.9875121 -0.1486594 -0.0521574 0.9902431 -0.1276295 -0.05594092 0.992672 -0.1057495 -0.05847501 0.9948716 -0.08151733 -0.05987906 0.9966524 -0.05618506 -0.05938953 0.9979152 -0.0308243 -0.05670458 0.9986433 -0.006714165 -0.05163812 0.9988699 0.01422202 -0.0453518 0.9987564 0.03460824 -0.03589004 0.9905157 -0.133611 -0.03204464 0.9894202 -0.142645 -0.02645981 0.9921891 -0.1189039 -0.03772211 0.9939402 -0.1014449 -0.04232972 0.9956671 -0.08078503 -0.04605382 0.9970991 -0.05884134 -0.04828166 0.998199 -0.03424274 -0.04925835 0.998792 -0.008301138 -0.04843348 0.9988013 0.01788419 -0.04556512 0.9982566 0.04291015 -0.04052966 0.9969478 0.06885182 -0.0368064 0.9964269 -0.08151721 -0.02209597 0.9959152 -0.08865666 -0.01712095 0.9972941 -0.06811797 -0.02765005 0.9981745 -0.05127137 -0.03192251 0.9989122 -0.03067141 -0.03512716 0.9992877 -0.008331716 -0.03680604 0.9991587 0.01706004 -0.03729408 0.998363 0.04431331 -0.03616482 0.9968338 0.07220733 -0.03329592 0.9946526 0.09924852 -0.028566 0.9915671 0.1269596 -0.02600228 0.9995501 -0.02716165 -0.0127263 0.9994269 -0.03268551 -0.008819878 0.9997439 -0.01480174 -0.01712119 0.9997934 0.001586973 -0.02026438 0.9994974 0.02240091 -0.02243143 0.9986935 0.0454728 -0.02331626 0.9971162 0.0722689 -0.02316391 0.9945944 0.1015378 -0.02172976 0.9910569 0.132088 -0.01895254 0.9866363 0.1622675 -0.01477098 0.9808945 0.1941035 -0.01303178 0.999578 0.02887064 -0.003234922 0.9996926 0.0247817 -8.24023e-4 0.9991635 0.04052931 -0.005462884 0.9983609 0.05682593 -0.006805658 0.9969156 0.07812958 -0.007416188 0.9947281 0.1022988 -0.007141351 0.9913609 0.1310197 -0.00613439 0.9866216 0.162972 -0.004272639 0.9803712 0.1971546 -0.001586973 0.9729469 0.2310291 1.83114e-4 0.9646536 0.2634119 0.007599294 0.9984509 0.05557459 0.002685606 0.9986997 0.05084443 0.003723263 0.9978279 0.06583005 0.002441525 0.9966981 0.08115071 0.002777218 0.9947938 0.1018415 0.003692746 0.9920343 0.1258621 0.005157768 0.9879076 0.1548851 0.0070194 0.9821654 0.187784 0.009399831 0.9745886 0.2236726 0.01214647 0.962515 0.2711022 0.00827068 0.9988875 -0.01831138 -0.04345905 0.999283 0.007355034 -0.03714156 0.9978992 0.05401802 -0.03576785 0.9979012 -0.04120022 -0.04995912 0.9976111 -0.04480212 -0.05258452 0.9949895 0.09711229 -0.0237745 0.9541215 0.2986303 0.02172964 0.9855971 0.1689202 -0.008026361 0.9671213 0.2541635 0.008789479 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

15 0 0 1 1 1 0 2 2 15 0 3 0 2 4 14 3 5 16 4 6 2 5 7 1 1 8 16 4 9 1 1 10 15 0 11 17 6 12 3 7 13 2 5 14 17 6 15 2 5 16 16 4 17 18 8 18 4 9 19 3 7 20 18 8 21 3 7 22 17 6 23 19 10 24 5 11 25 4 9 26 19 10 27 4 9 28 18 8 29 20 12 30 6 13 31 5 11 32 20 12 33 5 11 34 19 10 35 21 14 36 7 15 37 6 13 38 21 14 39 6 13 40 20 12 41 22 16 42 8 17 43 7 15 44 22 16 45 7 15 46 21 14 47 23 18 48 9 19 49 8 17 50 23 18 51 8 17 52 22 16 53 24 20 54 10 21 55 9 19 56 24 20 57 9 19 58 23 18 59 25 22 60 11 23 61 10 21 62 25 22 63 10 21 64 24 20 65 26 24 66 12 25 67 11 23 68 26 24 69 11 23 70 25 22 71 28 26 72 15 0 73 14 3 74 28 26 75 14 3 76 27 27 77 29 28 78 16 4 79 15 0 80 29 28 81 15 0 82 28 26 83 30 29 84 17 6 85 16 4 86 30 29 87 16 4 88 29 28 89 31 30 90 18 8 91 17 6 92 31 30 93 17 6 94 30 29 95 32 31 96 19 10 97 18 8 98 32 31 99 18 8 100 31 30 101 33 32 102 20 12 103 19 10 104 33 32 105 19 10 106 32 31 107 34 33 108 21 14 109 20 12 110 34 33 111 20 12 112 33 32 113 35 34 114 22 16 115 21 14 116 35 34 117 21 14 118 34 33 119 36 35 120 23 18 121 22 16 122 36 35 123 22 16 124 35 34 125 37 36 126 24 20 127 23 18 128 37 36 129 23 18 130 36 35 131 38 37 132 25 22 133 24 20 134 38 37 135 24 20 136 37 36 137 40 38 138 28 26 139 27 27 140 40 38 141 27 27 142 39 39 143 41 40 144 29 28 145 28 26 146 41 40 147 28 26 148 40 38 149 42 41 150 30 29 151 29 28 152 42 41 153 29 28 154 41 40 155 43 42 156 31 30 157 30 29 158 43 42 159 30 29 160 42 41 161 44 43 162 32 31 163 31 30 164 44 43 165 31 30 166 43 42 167 45 44 168 33 32 169 32 31 170 45 44 171 32 31 172 44 43 173 46 45 174 34 33 175 33 32 176 46 45 177 33 32 178 45 44 179 47 46 180 35 34 181 34 33 182 47 46 183 34 33 184 46 45 185 48 47 186 36 35 187 35 34 188 48 47 189 35 34 190 47 46 191 49 48 192 37 36 193 36 35 194 49 48 195 36 35 196 48 47 197 50 49 198 38 37 199 37 36 200 50 49 201 37 36 202 49 48 203 52 50 204 40 38 205 39 39 206 52 50 207 39 39 208 51 51 209 53 52 210 41 40 211 40 38 212 53 52 213 40 38 214 52 50 215 54 53 216 42 41 217 41 40 218 54 53 219 41 40 220 53 52 221 55 54 222 43 42 223 42 41 224 55 54 225 42 41 226 54 53 227 56 55 228 44 43 229 43 42 230 56 55 231 43 42 232 55 54 233 57 56 234 45 44 235 44 43 236 57 56 237 44 43 238 56 55 239 58 57 240 46 45 241 45 44 242 58 57 243 45 44 244 57 56 245 59 58 246 47 46 247 46 45 248 59 58 249 46 45 250 58 57 251 60 59 252 48 47 253 47 46 254 60 59 255 47 46 256 59 58 257 61 60 258 49 48 259 48 47 260 61 60 261 48 47 262 60 59 263 63 61 264 52 50 265 51 51 266 63 61 267 51 51 268 62 62 269 64 63 270 53 52 271 52 50 272 64 63 273 52 50 274 63 61 275 65 64 276 54 53 277 53 52 278 65 64 279 53 52 280 64 63 281 66 65 282 55 54 283 54 53 284 66 65 285 54 53 286 65 64 287 67 66 288 56 55 289 55 54 290 67 66 291 55 54 292 66 65 293 68 67 294 57 56 295 56 55 296 68 67 297 56 55 298 67 66 299 69 68 300 58 57 301 57 56 302 69 68 303 57 56 304 68 67 305 70 69 306 59 58 307 58 57 308 70 69 309 58 57 310 69 68 311 71 70 312 60 59 313 59 58 314 71 70 315 59 58 316 70 69 317 72 71 318 61 60 319 60 59 320 72 71 321 60 59 322 71 70 323 74 72 324 63 61 325 62 62 326 74 72 327 62 62 328 73 73 329 75 74 330 64 63 331 63 61 332 75 74 333 63 61 334 74 72 335 76 75 336 65 64 337 64 63 338 76 75 339 64 63 340 75 74 341 77 76 342 66 65 343 65 64 344 77 76 345 65 64 346 76 75 347 78 77 348 67 66 349 66 65 350 78 77 351 66 65 352 77 76 353 79 78 354 68 67 355 67 66 356 79 78 357 67 66 358 78 77 359 80 79 360 69 68 361 68 67 362 80 79 363 68 67 364 79 78 365 81 80 366 70 69 367 69 68 368 81 80 369 69 68 370 80 79 371 82 81 372 71 70 373 70 69 374 82 81 375 70 69 376 81 80 377 83 82 378 72 71 379 71 70 380 83 82 381 71 70 382 82 81 383 85 83 384 74 72 385 73 73 386 85 83 387 73 73 388 84 84 389 86 85 390 75 74 391 74 72 392 86 85 393 74 72 394 85 83 395 87 86 396 76 75 397 75 74 398 87 86 399 75 74 400 86 85 401 88 87 402 77 76 403 76 75 404 88 87 405 76 75 406 87 86 407 89 88 408 78 77 409 77 76 410 89 88 411 77 76 412 88 87 413 90 89 414 79 78 415 78 77 416 90 89 417 78 77 418 89 88 419 91 90 420 80 79 421 79 78 422 91 90 423 79 78 424 90 89 425 92 91 426 81 80 427 80 79 428 92 91 429 80 79 430 91 90 431 93 92 432 82 81 433 81 80 434 93 92 435 81 80 436 92 91 437 94 93 438 83 82 439 82 81 440 94 93 441 82 81 442 93 92 443 96 94 444 85 83 445 84 84 446 96 94 447 84 84 448 95 95 449 97 96 450 86 85 451 85 83 452 97 96 453 85 83 454 96 94 455 98 97 456 87 86 457 86 85 458 98 97 459 86 85 460 97 96 461 99 98 462 88 87 463 87 86 464 99 98 465 87 86 466 98 97 467 100 99 468 89 88 469 88 87 470 100 99 471 88 87 472 99 98 473 101 100 474 90 89 475 89 88 476 101 100 477 89 88 478 100 99 479 102 101 480 91 90 481 90 89 482 102 101 483 90 89 484 101 100 485 103 102 486 92 91 487 91 90 488 103 102 489 91 90 490 102 101 491 104 103 492 93 92 493 92 91 494 104 103 495 92 91 496 103 102 497 38 37 498 111 104 499 25 22 500 110 105 501 38 37 502 50 49 503 61 60 504 50 49 505 49 48 506 109 106 507 110 105 508 50 49 509 110 105 510 111 104 511 38 37 512 112 107 513 13 108 514 12 25 515 111 104 516 112 107 517 26 24 518 12 25 519 26 24 520 112 107 521 25 22 522 111 104 523 26 24 524 108 109 525 61 60 526 72 71 527 94 93 528 93 92 529 104 103 530 94 93 531 104 103 532 105 110 533 107 111 534 72 71 535 83 82 536 109 106 537 50 49 538 108 109 539 107 111 540 108 109 541 72 71 542 105 110 543 106 112 544 94 93 545 83 82 546 106 112 547 107 111 548 94 93 549 106 112 550 83 82 551 61 60 552 108 109 553 50 49 554

+
+
+
+ + + + 91.0375 32.7315 90.88801 91.0599 29.8121 92.31581 91.0572 27.1228 93.6671 91.0338 24.4493 95.04251 90.9897 21.7213 96.47702 90.9251 18.9387 97.9705 90.8398 16.1015 99.5231 90.996 21.3905 67.71501 90.92681 18.7689 68.7489 90.8398 16.1015 69.78411 91.0432 23.3916 38.5778 90.9905 20.9993 39.1134 90.9227 18.5684 39.6028 90.8398 16.1015 40.0451 91.0222 22.8083 10.5138 90.9736 20.6003 10.5301 90.91291 18.3634 10.4612 90.8398 16.1015 10.3062 90.9878 22.3116 -17.7841 90.9478 20.2581 -18.219 90.8985 18.1864 -18.7684 90.8398 16.1015 -19.4328 90.9656 23.9423 -45.9862 90.94371 21.9962 -46.5858 90.9154 20.0367 -47.3162 90.8808 18.0698 -48.1782 90.8398 16.1015 -49.1718 90.9046 23.9059 -75.50521 90.89321 21.9554 -76.1574 90.8787 19.9996 -76.9419 90.8609 18.0458 -77.85971 90.8398 16.1015 -78.9107 90.8398 31.05 -105.803 90.8398 28.7999 -105.866 90.8398 26.4698 -106.062 90.8398 24.3521 -106.359 90.8398 22.281 -106.76 90.8398 20.2095 -107.275 90.8398 18.1465 -107.904 90.8398 16.1015 -108.65 91.02201 33.8185 90.3673 91.05931 30.7332 89.8527 91.0643 27.6185 89.5636 91.0544 25.9319 89.4226 91.0467 25.1117 89.19831 91.03791 24.3521 88.816 91.0293 23.7078 88.2383 91.0226 23.2454 87.5069 91.01831 22.9528 86.6989 91.0158 22.7788 85.8574 91.0142 22.6409 84.3378 91.01461 22.6129 82.81221 91.0158 22.6269 81.2875 91.01702 22.6469 79.7628 91.0445 23.7517 65.21501 91.06221 24.4694 45.5505 91.06311 24.6881 25.8741 91.0492 24.5901 6.19795 91.02301 24.2684 -13.4758 90.9944 24.5387 -33.6099 90.95671 24.8089 -53.744 90.9226 24.8089 -69.1487 90.88761 24.8089 -84.5533 90.88021 25.6117 -88.4833 90.8725 26.8664 -92.2931 90.86441 28.5753 -95.9267 90.8561 30.8023 -99.2679 90.84801 30.9211 -102.522 90.8561 30.8023 -99.2679 90.1101 41.4136 -104.85 90.136 41.2161 -104.869 90.8398 31.05 -105.803 90.7955 32.8985 -101.485 90.67041 35.3746 -103.264 90.4554 38.1987 -104.428 90.136 41.215 -104.848 90.84801 30.9211 -102.522 + + + + + + + + + + 0.9995689 -0.02935957 1.83116e-4 0.9997289 -0.02328568 2.44149e-4 0.9997839 -0.02078366 4.5779e-4 0.999616 -0.02771115 6.10378e-5 0.9994716 -0.032503 2.47071e-4 0.9995485 -0.03005027 0 0.9995296 -0.03067159 3.05191e-5 0.9996899 -0.02490371 0 0.9994365 -0.03356897 9.01844e-5 0.9994685 -0.03260159 0 0.9996996 -0.02450644 -3.66224e-4 0.9998121 -0.01937973 -5.49347e-4 0.9998111 -0.01944077 -9.15578e-5 0.9997562 -0.02208244 -2.82783e-4 0.99956 -0.02966451 -1.52595e-4 0.9994786 -0.03228884 -1.08792e-4 0.9994359 -0.0335856 0 0.9997703 -0.02142429 -7.32455e-4 0.9998574 -0.01684635 -0.001220703 0.9997578 -0.022004 -6.35311e-4 0.9997206 -0.0236296 -6.16026e-4 0.9996323 -0.02711462 -3.2842e-4 0.9996069 -0.02803838 -3.22801e-4 0.9994781 -0.03230351 0 0.9999021 -0.01393294 -0.001378357 0.9998789 -0.01553392 -0.001068115 0.9998526 -0.01714366 -9.82863e-4 0.9998208 -0.01892155 -5.49335e-4 0.9996666 -0.0258187 -3.66223e-4 0.9997821 -0.02087515 -1.52597e-4 0.9996023 -0.02819991 -9.15582e-5 0.9999847 -0.005158185 -0.002059936 0.9999807 -0.005981683 -0.001709043 0.9999569 -0.009125173 -0.001739561 0.9999237 -0.0122686 -0.001434385 0.9999759 -0.006740629 -0.001698315 0.9999697 -0.007690608 -0.00125122 0.9999536 -0.009613454 -6.71417e-4 0.9999403 -0.01092559 -1.83111e-4 0.9999977 4.1147e-4 -0.002094447 0.9999847 -0.005242049 -0.001800835 0.9999984 4.30196e-4 -0.001740515 0.9999989 2.44155e-4 -0.001434385 0.9999997 1.22078e-4 -9.15583e-4 0.9999998 2.54e-4 -7.01534e-4 0.9999998 -3.05194e-4 -6.40908e-4 0.9999147 0.01263469 -0.003326535 0.9999315 0.01162779 -0.00137335 0.9999793 0.006317377 0.001312255 0.9999963 -0.002533078 0.00100708 0.9999952 0.002655148 0.001617491 0.9999851 -0.005249261 0.001525938 0.9999672 -0.00802654 0.001129209 0.9999133 -0.01312297 0.00112915 0.9999818 -0.005953967 0.001011431 0.9999275 -0.01201266 8.46606e-4 0.999939 -0.0110175 9.46103e-4 0.9998998 -0.01413255 8.79961e-4 0.9998604 -0.01669383 8.54529e-4 0.9998432 -0.01769888 6.92147e-4 0.9998568 -0.01690196 7.98401e-4 0.9998306 -0.01839834 6.20119e-4 0.9998679 -0.01621788 0.00110799 0.9997968 -0.02016043 3.58401e-4 0.9997677 -0.02154666 5.11725e-4 0.9997819 -0.0208851 4.59263e-4 0.9997475 -0.02246522 5.79969e-4 0.9998237 -0.01876759 6.068e-4 0.999791 -0.02044552 8.73354e-5 0.9998201 -0.01896959 2.0751e-4 0.9999968 -9.81145e-4 -0.002346515 0.999988 -0.004370093 -0.002213776 0.9999897 -0.003940105 -0.002271771 0.9999968 -0.001372396 -0.002163529 0.999997 -8.91028e-6 -0.002487719 0.999997 6.60668e-5 -0.002499282 0.9999971 2.00954e-4 -0.002380609 0.999997 2.79537e-5 -0.002474784 0.9999969 -5.58667e-4 -0.002487957 0.9999974 3.19169e-4 -0.002282857 0.9998611 -0.01666271 -6.23397e-4 0.999849 -0.01735872 -9.10822e-4 0.9998226 -0.01883882 -3.56387e-4 0.9997588 -0.02196609 2.47993e-4 0.9998775 -0.01561552 -0.001075625 0.9998601 -0.01673036 -1.40136e-4 0.9998955 -0.01437443 -0.001617491 0.9999658 -0.00802654 -0.002044737 0.9999876 -0.00451678 -0.002105772 0.9999943 -0.002602875 -0.002137899 0.9998946 -0.01443153 -0.00161463 0.9993889 0.03460901 -0.004913568 0.9982205 0.05313384 -0.02707046 0.9993796 0.03299117 -0.01232969 0.9996258 0.02731466 -0.001464903 0.9987069 0.04721301 -0.01886075 0.9932679 0.1156971 -0.00576806 0.9915731 0.1293714 0.006775259 0.9931334 0.1168285 0.006103873 0.9881633 0.0785855 -0.131749 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 79.8473 109.365 -123.175 79.8473 114.537 -193.438 80.6813 113.773 -192.798 81.3684 112.818 -191.953 81.9085 111.675 -190.901 82.3017 110.342 -189.644 82.5478 108.819 -188.18 82.64701 107.107 -186.511 82.5992 105.205 -184.635 82.40441 103.114 -182.554 79.7238 114.579 -194.692 80.57421 113.818 -194.04 81.2774 112.869 -193.18 81.8333 111.73 -192.115 82.24201 110.402 -190.842 82.50341 108.885 -189.363 82.6177 107.178 -187.677 82.5847 105.282 -185.784 82.40441 103.197 -183.685 79.3502 114.558 -196.058 80.2482 113.81 -195.379 80.99871 112.873 -194.492 81.6017 111.746 -193.398 82.0572 110.431 -192.097 82.36531 108.927 -190.587 82.52581 107.234 -188.871 82.5389 105.351 -186.947 82.40441 103.28 -184.815 78.72161 114.516 -197.442 79.69902 113.782 -196.733 80.5288 112.86 -195.817 81.2107 111.75 -194.693 81.74501 110.45 -193.36 82.1315 108.961 -191.819 82.3702 107.284 -190.069 82.4612 105.418 -188.112 82.40441 103.363 -185.946 77.8332 114.493 -198.747 78.9226 113.772 -198.02 79.86402 112.862 -197.084 80.6574 111.764 -195.938 81.30281 110.478 -194.584 81.8002 109.003 -193.021 82.1496 107.339 -191.248 82.35102 105.487 -189.267 82.40441 103.447 -187.076 82.40441 99.0637 -127.543 82.5763 101.852 -126.586 82.4088 104.581 -125.473 82.13 105.93 -124.865 81.65921 107.223 -124.252 80.9192 108.409 -123.664 80.63961 109.825 -138.513 81.2983 108.993 -138.883 81.82302 107.976 -139.304 82.5857 103.825 -140.961 82.21321 106.775 -139.793 82.5652 102.07 -141.513 82.46791 105.391 -140.352 + + + + + + + + + + 0.7835873 0.6094738 -0.1205519 0.7127745 0.6853988 -0.1489334 0.6760618 0.7367951 -0.008575856 0.7458932 0.6660546 0.003845393 0.891453 0.4377611 -0.1169478 0.861772 0.507291 -0.002227902 0.9535583 0.2822069 -0.1052896 0.9356191 0.3529515 -0.006500482 0.984007 0.1543061 -0.08899462 0.9763348 0.2160748 -0.009064137 0.9960228 0.05472081 -0.07031607 0.9947581 0.1017494 -0.01016271 0.9985162 -0.02066123 -0.0503866 0.9999089 0.008819818 -0.01022368 0.9966168 -0.07675439 -0.02938944 0.9977627 -0.0661655 -0.009582996 0.995047 -0.09903466 -0.008575856 0.9950653 -0.09900295 -0.006592035 0.7984908 0.5399266 -0.2662551 0.7225502 0.6258337 -0.2936896 0.899393 0.3551794 -0.2548331 0.9530913 0.2006652 -0.2266067 0.9782143 0.08465874 -0.1895513 0.9889847 0.003173887 -0.1479845 0.9933237 -0.05060005 -0.1036721 0.9949943 -0.08243292 -0.05649143 0.9958863 -0.08996909 -0.01077306 0.7849581 0.4713411 -0.4020926 0.7063999 0.5620741 -0.4302001 0.8793832 0.2783361 -0.3862828 0.9299221 0.1296764 -0.3441352 0.956965 0.02783364 -0.2888657 0.973439 -0.03491389 -0.226269 0.9851934 -0.06656259 -0.1579984 0.9937812 -0.07321441 -0.08389598 0.997812 -0.06503552 -0.01190233 0.726575 0.5037224 -0.4672822 0.6836922 0.5538634 -0.4751847 0.8378415 0.2886804 -0.4633413 0.899125 0.1251285 -0.4194248 0.9345312 0.0185557 -0.3553972 0.9587343 -0.04226922 -0.2811441 0.9775851 -0.06799632 -0.1992586 0.9917839 -0.06537222 -0.1099608 0.999194 -0.03698909 -0.01559519 0.7214696 0.6906149 0.05032581 0.6771008 0.7336835 0.05694895 0.757333 0.6510347 0.05099749 0.8950487 0.4445487 0.0355553 0.8470616 0.5300887 0.03863734 0.9265702 0.3750839 0.02792525 0.9995221 0.03073245 0.003357052 0.989816 0.1417292 0.01330614 0.9999549 0.008514761 0.004211604 0.9601695 0.2784891 0.02276742 0.9709675 0.2385073 0.01834201 0.998916 -0.04644984 -0.003082394 0.9980428 -0.06250357 -0.001953184 0.9922674 0.1236634 0.01062059 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 90.8398 46.3673 175.044 90.8398 42.5052 176.391 90.8398 38.627 177.326 90.8398 34.7915 177.865 90.8398 31.05 178.038 90.8398 27.4024 177.874 90.8398 23.6625 177.361 90.8398 19.8773 176.473 90.8398 16.1015 175.192 90.8398 46.3673 194.135 90.8091 42.385 194.325 90.77951 38.394 194.108 90.75141 34.4449 193.51 90.7249 30.5836 192.563 90.6932 26.815 192.068 90.6604 23.0041 191.177 90.6269 19.1973 189.874 90.59291 15.4455 188.148 90.76361 46.309 197.467 90.7397 42.3116 197.461 90.71691 38.3065 197.05 90.6953 34.3428 196.261 90.6753 30.4655 195.125 90.6477 26.68 194.528 90.6196 22.8605 193.53 90.59101 19.0529 192.115 90.5623 15.3074 190.275 90.5439 46.2657 200.562 90.5439 42.2526 200.397 90.5449 38.2325 199.83 90.5468 34.2532 198.886 90.5495 30.3588 197.596 90.539 26.5567 196.911 90.52901 22.7289 195.822 90.5196 18.9207 194.315 90.51091 15.1816 192.382 90.1938 46.2359 203.423 90.2316 42.2075 203.133 90.27011 38.1728 202.442 90.3089 34.1782 201.377 90.3478 30.2666 199.968 90.3649 26.4492 199.208 90.38401 22.6144 198.042 90.4052 18.8072 196.459 90.4283 15.0758 194.453 89.7269 46.218 206.053 89.8124 42.1761 205.668 89.8985 38.1284 204.886 89.9844 34.1197 203.731 90.06951 30.1922 202.232 90.1223 26.3618 201.407 90.179 22.5226 200.177 90.23941 18.7187 198.534 90.303 14.9976 196.471 89.15631 46.2105 208.455 89.2959 42.158 208.003 89.4361 38.1 207.157 89.7138 30.1385 204.38 89.8078 26.2987 203.499 89.9076 22.4587 202.217 90.01271 18.6618 200.526 90.1225 14.9545 198.421 88.4954 46.2118 210.632 88.69171 42.1528 210.138 88.88871 38.0885 209.254 89.7148 18.6429 202.423 89.8732 14.9541 200.288 87.7575 46.2203 212.588 88.0092 42.1602 212.074 88.26171 38.0946 211.175 89.33451 18.6683 204.216 89.5405 15.0037 202.062 86.9559 46.2346 214.324 87.2576 42.1797 213.811 87.5606 38.1192 212.918 88.8592 18.7442 205.894 89.1085 15.1107 203.731 86.10401 46.253 215.846 86.4463 42.211 215.35 86.7904 38.1631 214.482 88.276 18.8772 207.449 88.5606 15.2823 205.285 85.2149 46.274 217.154 85.5843 42.2537 216.692 85.956 38.227 215.865 87.5704 19.0733 208.875 87.8788 15.5258 206.717 84.3021 46.296 218.253 84.68061 42.3072 217.838 85.06211 38.3118 217.068 85.4452 34.3432 215.952 86.72731 19.3389 210.166 87.04441 15.8484 208.02 83.3788 46.3175 219.145 83.7443 42.3713 218.79 84.1131 38.4181 218.089 84.4843 34.4898 217.05 84.8567 30.6186 215.684 85.1394 26.897 214.565 85.4309 23.239 213.109 85.7305 19.6801 211.317 86.0374 16.257 209.188 82.4584 46.337 219.833 82.78411 42.4455 219.549 83.1133 38.5469 218.929 83.4452 34.6712 217.979 83.7793 30.8494 216.709 84.0335 27.1831 215.57 84.2948 23.5897 214.108 84.5627 20.1031 212.323 84.8368 16.7587 210.218 81.5541 46.3528 220.322 81.8087 42.5293 220.117 82.0665 38.6987 219.588 82.32711 34.8894 218.739 82.5899 31.1311 217.576 82.7904 27.5325 216.42 82.9958 24.016 214.956 83.2059 20.614 213.184 83.42041 17.3605 211.106 80.6793 46.3634 220.612 80.82701 42.6222 220.496 80.9767 38.8743 220.067 81.12831 35.1465 219.328 81.2818 31.4671 218.284 81.399 27.9497 217.115 81.5187 24.5234 215.653 81.6408 21.219 213.898 81.7653 18.0691 211.853 79.8473 46.3673 220.708 79.8473 42.7239 220.688 79.8473 39.0745 220.367 79.8473 35.4445 219.748 79.8473 31.861 218.832 79.8473 28.4393 217.654 79.8473 25.1171 216.198 79.8473 21.9241 214.465 79.8473 18.8915 212.458 90.7092 28.7073 192.363 90.7321 27.1803 184.652 90.8398 29.2404 177.997 90.7558 30.8738 184.997 90.74411 29.0382 184.87 90.67691 24.9121 191.673 90.7074 23.4195 183.929 90.8398 25.5412 177.663 90.7199 25.3055 184.339 90.6437 21.0971 190.578 90.68201 19.6383 182.806 90.8398 21.7723 176.966 90.6948 21.5282 183.418 90.6099 17.3112 189.064 90.6562 15.8896 181.267 90.8398 17.9846 175.882 90.6692 17.7564 182.089 86.0317 21.2002 211.73 86.0317 23.4357 212.578 86.0317 25.7194 213.276 86.0317 28.0435 213.823 86.0317 30.4004 214.221 86.0317 30.4194 214.226 86.0317 30.4384 214.232 86.0317 30.4764 214.242 86.0317 30.5525 214.264 86.0317 30.7048 214.306 86.0317 31.0095 214.389 86.0317 31.6198 214.548 86.0317 32.8445 214.843 86.0317 35.3137 215.337 87.1559 35.3137 213.414 88.05661 35.3137 211.38 88.9124 35.3136 208.828 89.56201 35.3137 206.218 89.56201 33.9499 205.982 89.56201 32.6301 205.722 89.56201 31.3548 205.442 89.56201 30.734 205.296 89.56201 30.4296 205.222 89.56201 30.2784 205.184 89.56201 30.2031 205.166 89.56201 30.1655 205.156 89.56201 30.1246 205.146 89.56201 27.7501 204.97 89.56201 25.3868 204.68 89.56201 23.285 204.326 89.56201 21.2002 203.882 88.9656 21.2003 206.279 88.1967 21.2003 208.404 87.2713 21.2003 210.165 85.8286 30.4352 214.505 90.3478 30.2666 199.968 90.06951 30.1922 202.232 90.3478 30.2666 199.968 84.8567 30.6186 215.684 83.7793 30.8494 216.709 84.8567 30.6186 215.684 82.5899 31.1311 217.576 83.7793 30.8494 216.709 81.2818 31.4671 218.284 82.5899 31.1311 217.576 81.2818 31.4671 218.284 + + + + + + + + + + 0.9999056 -0.007233083 0.01168888 0.9999973 1.22077e-4 0.002349972 0.9999988 -7.62985e-4 0.001403868 0.999917 -0.007019281 0.01080363 0.9998952 -0.008118033 0.01199394 0.9999906 2.13634e-4 0.004333674 0.9998849 -0.009186089 0.01208537 0.9999703 -0.001098632 0.007629632 0.9999418 -0.008148431 0.007080256 0.9999182 -4.27263e-4 0.01278734 0.9999625 -0.007790148 0.003784894 0.9999633 -0.007036268 0.004899024 0.9999493 -0.009122729 0.004255354 0.9999222 -0.00766021 0.009857594 0.9998584 -0.002166807 0.01669377 0.9998915 -0.001281738 0.01467955 0.9999379 -0.00701946 0.008667469 0.9998884 -0.009674429 0.01138347 0.9998946 -0.009491384 0.0109868 0.9999504 -0.007945954 0.006028711 0.9999355 -0.01003104 0.005324423 0.9998791 -0.009399712 0.01239049 0.9997685 -0.004699885 0.02099698 0.9998179 -0.003295958 0.01879942 0.9999026 -0.008453786 0.01110899 0.9999576 -0.007416546 0.005464732 0.999943 -0.009555339 0.004774808 0.9999325 -0.009105265 0.007227778 0.999916 -0.01123511 0.006459951 0.9998148 -0.01181095 0.01519864 0.9996325 -0.008362293 0.02578884 0.9997074 -0.006347894 0.0233469 0.9998503 -0.01049834 0.01376384 0.9999423 -0.008454859 0.006627857 0.9999266 -0.01060062 0.005875945 0.9998573 -0.01370292 0.009888052 0.9996895 -0.0148018 0.02005112 0.9997708 -0.01336729 0.01672434 0.9998468 -0.01370316 0.01089543 0.9994958 -0.01092576 0.02981698 0.9995386 -0.01074278 0.02841347 0.9998527 -0.01321458 0.01095616 0.9989815 -0.007660269 0.04446631 0.9989442 -0.005096614 0.0456562 0.9990804 -0.01132261 0.04135364 0.9991796 -0.01409959 0.03796511 0.9993527 -0.01324534 0.03344905 0.9994217 -0.01333659 0.03128147 0.9998815 -0.01046788 0.01129186 0.9998759 -0.01098692 0.01129215 0.9995068 -0.01544272 0.02734524 0.9998683 -0.01181089 0.01113945 0.9998623 -0.01229912 0.01113939 0.999598 -0.016694 0.02291995 0.9997083 -0.01669383 0.01745676 0.9958966 -0.007538139 0.09018367 0.9954743 -0.00213629 0.09500616 0.9964362 -0.01480156 0.08304142 0.9969617 -0.02020353 0.0752291 0.9976625 -0.01754832 0.06604284 0.9980795 -0.01599168 0.05984687 0.9985006 -0.01925766 0.05124193 0.9989247 -0.0205394 0.04156714 0.9993386 -0.02014237 0.03027462 0.9903258 -0.006927907 0.1385888 0.9891207 0.001190185 0.1471015 0.991694 -0.01776218 0.1273875 0.9929959 -0.02578848 0.1153007 0.9958567 -0.02603244 0.08713096 0.9955975 -0.01785373 0.09201538 0.9946342 -0.0132451 0.1026037 0.9965849 -0.02264475 0.07940936 0.9975592 -0.02453762 0.06537264 0.9985219 -0.0237438 0.04889148 0.9817637 -0.006012201 0.1900109 0.9793664 0.004699945 0.2020382 0.98444 -0.02011173 0.1745666 0.9866835 -0.03265547 0.1593403 0.9915683 -0.03265547 0.1254033 0.9921032 -0.03366214 0.1208237 0.9914695 -0.01983731 0.1288205 0.9885376 -0.0200814 0.1496341 0.9932298 -0.02676481 0.1130411 0.9949652 -0.03012269 0.09558695 0.996808 -0.02902346 0.07437449 0.9695685 -0.005188286 0.244765 0.9655607 0.008087515 0.2600526 0.9732451 -0.02557474 0.2283418 0.9856621 -0.0230416 0.1671508 0.984139 -0.02407926 0.1757576 0.9875071 -0.03421193 0.1538163 0.9901028 -0.03830152 0.1350167 0.9933844 -0.03781265 0.108433 0.9529227 -0.004852473 0.3031749 0.9469221 0.0109564 0.3212766 0.9592209 -0.02832186 0.2812351 0.9868202 -0.05236995 0.153112 0.9824144 -0.05005151 0.1798804 0.930677 -0.005493402 0.3658008 0.9223815 0.01281803 0.3860678 0.9393466 -0.03195345 0.3414779 0.9745954 -0.07535153 0.2109171 0.9669498 -0.0768457 0.2431108 0.9013753 -0.007629692 0.4329714 0.8906996 0.0132758 0.4543987 0.91192 -0.03811872 0.4085938 0.9522707 -0.1098398 0.2848083 0.9411689 -0.1111494 0.319135 0.863076 -0.01181083 0.5049361 0.8500249 0.01174992 0.5266114 0.8735476 -0.0526759 0.48388 0.9127816 -0.1586716 0.3763683 0.8983898 -0.1573258 0.4100542 0.8131411 -0.0183112 0.5817786 0.7979146 0.008087456 0.6027163 0.8274154 -0.06296181 0.5580499 0.8461615 -0.2231608 0.4839525 0.8315092 -0.2159574 0.5118154 0.7484237 -0.02716213 0.6626646 0.7313052 0.002197384 0.6820469 0.7618812 -0.07895314 0.6428869 0.7422347 -0.3004646 0.5990066 0.7257155 -0.2921906 0.6228659 0.6650363 -0.03787386 0.7458502 0.6455395 -0.005188226 0.7637094 0.6789034 -0.09720414 0.7277649 0.6890721 -0.1532695 0.7082995 0.7669968 -0.1296741 0.6284112 0.7315522 -0.1631877 0.6619677 0.598729 -0.3810954 0.7044786 0.5822466 -0.3699851 0.7239475 0.5590236 -0.04876995 0.8277163 0.535852 -0.01275688 0.8442157 0.5745001 -0.114784 0.8104162 0.5844731 -0.178049 0.7916374 0.6504805 -0.1947413 0.7341329 0.6537582 -0.1950806 0.7311251 0.5579601 -0.2461103 0.7925341 0.6760917 -0.1970929 0.709968 0.7109389 -0.1625744 0.6842042 0.5791022 -0.2123222 0.7871213 0.5011834 -0.3309178 0.7995678 0.6247289 -0.2805328 0.7287079 0.4355407 -0.42022 0.796065 0.4298281 -0.4514355 0.7819551 0.4279465 -0.05694961 0.9020081 0.3952788 -0.01718205 0.9184005 0.4492473 -0.1284871 0.8841199 0.4619936 -0.1977007 0.8645671 0.5356383 -0.2221475 0.8147038 0.5392725 -0.2227284 0.8121438 0.4193972 -0.2931996 0.8591508 0.4479916 -0.2591081 0.8556674 0.3510986 -0.3796346 0.855925 0.2777889 -0.467529 0.8391961 0.2617948 -0.5021955 0.8241744 0.2720485 -0.05752873 0.9605624 0.2186385 -0.01257383 0.975725 0.3078149 -0.1335207 0.9420309 0.3292069 -0.2073451 0.9212117 0.4080104 -0.2416505 0.8804162 0.4127712 -0.2427796 0.8778827 0.2782131 -0.3316522 0.9014458 0.3101962 -0.2988431 0.9024806 0.2079297 -0.4149439 0.8857691 0.1371233 -0.4975565 0.8565249 0.1165826 -0.5328927 0.8381134 0.1813774 -0.05105912 0.9820872 0.1145691 -0.005432367 0.9934005 0.228406 -0.1271126 0.9652321 0.257707 -0.2013679 0.945007 0.2720775 -0.2742138 0.9223777 0.2846246 -0.2506564 0.9252893 0.217813 -0.3379963 0.9155961 0.1491184 -0.4180871 0.8960842 0.08209723 -0.4972225 0.8637303 0.03582954 -0.5456228 0.8372647 0.9787982 -0.03064084 0.2025226 0.9835196 -0.03882068 0.1765854 0.9827535 -0.03347969 0.1818647 0.9812705 -0.04174965 0.1880567 0.960856 -0.03552395 0.2747613 0.9324716 -0.04995924 0.3577719 0.9803273 -0.04553413 0.1920552 0.9800375 -0.04745757 0.1930654 0.9799789 -0.04767131 0.19331 0.9799705 -0.04834234 0.1931863 0.979856 -0.04989922 0.1933709 0.9827422 -0.01843345 0.18406 0.9795535 -0.04770195 0.1954468 0.9831886 -0.02938944 0.1802126 0.98053 -0.03222852 0.1937071 0.9842831 -0.0317707 0.1737167 0.9503162 -0.08136498 0.3004645 0.8899288 -0.0637843 0.4516175 0.8200188 -0.08865809 0.5654281 0.7828216 -0.1419456 0.6058399 0.7858963 -0.157051 0.598082 0.7711539 -0.1537852 0.617796 0.7744231 -0.1366342 0.6177379 0.7915539 -0.161204 0.5894538 0.7923311 -0.1655039 0.5872138 0.7931668 -0.1617524 0.5871309 0.7913964 -0.1716712 0.5867033 0.7926074 -0.1670911 0.5863909 0.8002076 -0.1221369 0.5871546 0.8985811 -0.1373065 0.4167722 0.7431105 -0.1412731 0.6540862 0.810332 -0.2035291 0.5494889 0.6878199 -0.2382053 0.6856836 0.7142038 -0.1947412 0.6723013 0.6516476 -0.296098 0.698342 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 1 1 1 0 2 2 10 0 3 0 2 4 9 3 5 11 4 6 2 5 7 1 1 8 11 4 9 1 1 10 10 0 11 12 6 12 3 7 13 2 5 14 12 6 15 2 5 16 11 4 17 141 8 18 4 9 19 3 7 20 12 10 21 13 10 22 141 10 23 3 7 24 12 6 25 141 8 26 14 11 27 139 11 28 142 11 29 14 12 30 142 12 31 138 12 32 139 13 33 5 14 34 140 15 35 139 13 36 140 15 37 142 16 38 142 16 39 140 15 40 4 9 41 142 16 42 4 9 43 141 8 44 138 17 45 142 16 46 141 8 47 138 17 48 141 8 49 13 18 50 15 19 51 144 19 52 146 19 53 15 20 54 146 20 55 143 20 56 144 21 57 6 22 58 145 23 59 144 21 60 145 23 61 146 24 62 146 24 63 145 23 64 5 14 65 146 24 66 5 14 67 139 13 68 143 25 69 146 25 70 139 25 71 143 26 72 139 26 73 14 26 74 16 27 75 148 27 76 150 27 77 16 28 78 150 28 79 147 28 80 148 29 81 7 30 82 149 31 83 148 29 84 149 31 85 150 32 86 150 32 87 149 31 88 6 22 89 150 32 90 6 22 91 144 21 92 147 33 93 150 33 94 144 33 95 147 34 96 144 34 97 15 34 98 17 35 99 152 36 100 154 37 101 17 35 102 154 37 103 151 38 104 152 36 105 8 39 106 153 40 107 152 36 108 153 40 109 154 37 110 154 37 111 153 40 112 7 30 113 154 37 114 7 30 115 148 29 116 151 38 117 154 37 118 148 29 119 151 38 120 148 29 121 16 41 122 19 42 123 10 0 124 9 3 125 19 42 126 9 3 127 18 43 128 20 44 129 11 4 130 10 0 131 20 44 132 10 0 133 19 42 134 21 45 135 12 6 136 11 4 137 21 45 138 11 4 139 20 44 140 22 46 141 13 18 142 12 6 143 22 46 144 12 6 145 21 45 146 138 17 147 13 18 148 22 46 149 23 47 150 14 48 151 138 17 152 22 46 153 23 47 154 138 17 155 143 49 156 14 48 157 23 47 158 24 50 159 15 51 160 143 49 161 23 47 162 24 50 163 143 49 164 147 52 165 15 51 166 24 50 167 25 53 168 16 41 169 147 52 170 24 50 171 25 53 172 147 52 173 151 38 174 16 41 175 25 53 176 26 54 177 17 35 178 151 38 179 25 53 180 26 54 181 151 38 182 28 55 183 19 42 184 18 43 185 28 55 186 18 43 187 27 56 188 29 57 189 20 44 190 19 42 191 29 57 192 19 42 193 28 55 194 30 58 195 21 45 196 20 44 197 30 58 198 20 44 199 29 57 200 31 59 201 22 46 202 21 45 203 31 59 204 21 45 205 30 58 206 32 60 207 23 47 208 22 46 209 32 60 210 22 46 211 31 59 212 33 61 213 24 50 214 23 47 215 33 61 216 23 47 217 32 60 218 34 62 219 25 53 220 24 50 221 34 62 222 24 50 223 33 61 224 35 63 225 26 54 226 25 53 227 35 63 228 25 53 229 34 62 230 37 64 231 28 55 232 27 56 233 37 64 234 27 56 235 36 65 236 38 66 237 29 57 238 28 55 239 38 66 240 28 55 241 37 64 242 39 67 243 30 58 244 29 57 245 39 67 246 29 57 247 38 66 248 190 68 249 31 59 250 30 58 251 190 68 252 30 58 253 39 67 254 41 69 255 32 60 256 31 59 257 41 69 258 31 59 259 40 70 260 42 71 261 33 61 262 32 60 263 42 71 264 32 60 265 41 69 266 43 72 267 34 62 268 33 61 269 43 72 270 33 61 271 42 71 272 44 73 273 35 63 274 34 62 275 44 73 276 34 62 277 43 72 278 46 74 279 37 64 280 36 65 281 46 74 282 36 65 283 45 75 284 47 76 285 38 66 286 37 64 287 47 76 288 37 64 289 46 74 290 48 77 291 39 67 292 38 66 293 48 77 294 38 66 295 47 76 296 191 78 297 192 79 298 39 67 299 191 78 300 39 67 301 48 77 302 50 80 303 41 69 304 40 70 305 50 80 306 40 70 307 49 81 308 51 82 309 42 71 310 41 69 311 51 82 312 41 69 313 50 80 314 52 83 315 43 72 316 42 71 317 52 83 318 42 71 319 51 82 320 53 84 321 44 73 322 43 72 323 53 84 324 43 72 325 52 83 326 55 85 327 46 74 328 45 75 329 55 85 330 45 75 331 54 86 332 56 87 333 47 76 334 46 74 335 56 87 336 46 74 337 55 85 338 58 88 339 50 80 340 49 81 341 58 88 342 49 81 343 57 89 344 59 90 345 51 82 346 50 80 347 59 90 348 50 80 349 58 88 350 60 91 351 52 83 352 51 82 353 60 91 354 51 82 355 59 90 356 61 92 357 53 84 358 52 83 359 61 92 360 52 83 361 60 91 362 63 93 363 55 85 364 54 86 365 63 93 366 54 86 367 62 94 368 64 95 369 56 87 370 55 85 371 64 95 372 55 85 373 63 93 374 66 96 375 61 92 376 60 91 377 66 96 378 60 91 379 65 97 380 68 98 381 63 93 382 62 94 383 68 98 384 62 94 385 67 99 386 69 100 387 64 95 388 63 93 389 69 100 390 63 93 391 68 98 392 71 101 393 66 96 394 65 97 395 71 101 396 65 97 397 70 102 398 73 103 399 68 98 400 67 99 401 73 103 402 67 99 403 72 104 404 74 105 405 69 100 406 68 98 407 74 105 408 68 98 409 73 103 410 76 106 411 71 101 412 70 102 413 76 106 414 70 102 415 75 107 416 78 108 417 73 103 418 72 104 419 78 108 420 72 104 421 77 109 422 79 110 423 74 105 424 73 103 425 79 110 426 73 103 427 78 108 428 81 111 429 76 106 430 75 107 431 81 111 432 75 107 433 80 112 434 83 113 435 78 108 436 77 109 437 83 113 438 77 109 439 82 114 440 84 115 441 79 110 442 78 108 443 84 115 444 78 108 445 83 113 446 86 116 447 81 111 448 80 112 449 86 116 450 80 112 451 85 117 452 88 118 453 83 113 454 82 114 455 88 118 456 82 114 457 87 119 458 89 120 459 84 115 460 83 113 461 89 120 462 83 113 463 88 118 464 92 121 465 86 116 466 85 117 467 92 121 468 85 117 469 91 122 470 94 123 471 88 118 472 87 119 473 94 123 474 87 119 475 93 124 476 95 125 477 89 120 478 88 118 479 95 125 480 88 118 481 94 123 482 96 126 483 90 127 484 89 120 485 96 126 486 89 120 487 95 125 488 90 127 489 96 126 490 193 128 491 101 129 492 92 121 493 91 122 494 101 129 495 91 122 496 100 130 497 103 131 498 94 123 499 93 124 500 103 131 501 93 124 502 102 132 503 104 133 504 95 125 505 94 123 506 104 133 507 94 123 508 103 131 509 105 134 510 96 126 511 95 125 512 105 134 513 95 125 514 104 133 515 194 135 516 195 136 517 96 126 518 194 135 519 96 126 520 105 134 521 107 137 522 98 138 523 97 139 524 107 137 525 97 139 526 106 140 527 108 141 528 99 142 529 98 138 530 108 141 531 98 138 532 107 137 533 109 143 534 100 130 535 99 142 536 109 143 537 99 142 538 108 141 539 110 144 540 101 129 541 100 130 542 110 144 543 100 130 544 109 143 545 112 145 546 103 131 547 102 132 548 112 145 549 102 132 550 111 146 551 113 147 552 104 133 553 103 131 554 113 147 555 103 131 556 112 145 557 114 148 558 105 134 559 104 133 560 114 148 561 104 133 562 113 147 563 196 149 564 197 150 565 105 134 566 196 149 567 105 134 568 114 148 569 116 151 570 107 137 571 106 140 572 116 151 573 106 140 574 115 152 575 117 153 576 108 141 577 107 137 578 117 153 579 107 137 580 116 151 581 118 154 582 109 143 583 108 141 584 118 154 585 108 141 586 117 153 587 119 155 588 110 144 589 109 143 590 119 155 591 109 143 592 118 154 593 121 156 594 112 145 595 111 146 596 121 156 597 111 146 598 120 157 599 122 158 600 113 147 601 112 145 602 122 158 603 112 145 604 121 156 605 123 159 606 114 148 607 113 147 608 123 159 609 113 147 610 122 158 611 198 160 612 199 161 613 114 148 614 198 160 615 114 148 616 123 159 617 125 162 618 116 151 619 115 152 620 125 162 621 115 152 622 124 163 623 126 164 624 117 153 625 116 151 626 126 164 627 116 151 628 125 162 629 127 165 630 118 154 631 117 153 632 127 165 633 117 153 634 126 164 635 128 166 636 119 155 637 118 154 638 128 166 639 118 154 640 127 165 641 130 167 642 121 156 643 120 157 644 130 167 645 120 157 646 129 168 647 131 169 648 122 158 649 121 156 650 131 169 651 121 156 652 130 167 653 132 170 654 123 159 655 122 158 656 132 170 657 122 158 658 131 169 659 133 171 660 200 172 661 123 159 662 133 171 663 123 159 664 132 170 665 134 173 666 125 162 667 124 163 668 134 173 669 124 163 670 133 171 671 135 174 672 126 164 673 125 162 674 135 174 675 125 162 676 134 173 677 136 175 678 127 165 679 126 164 680 136 175 681 126 164 682 135 174 683 137 176 684 128 166 685 127 165 686 137 176 687 127 165 688 136 175 689 172 177 690 47 76 691 56 87 692 48 77 693 47 76 694 172 177 695 174 178 696 48 77 697 173 179 698 172 177 699 173 179 700 48 77 701 49 81 702 48 77 703 174 178 704 174 178 705 175 180 706 57 89 707 172 177 708 56 87 709 64 95 710 69 100 711 171 181 712 64 95 713 170 182 714 171 181 715 69 100 716 74 105 717 170 182 718 69 100 719 176 183 720 57 89 721 175 180 722 177 184 723 57 89 724 176 183 725 64 95 726 171 181 727 172 177 728 178 185 729 57 89 730 177 184 731 57 89 732 49 81 733 174 178 734 179 186 735 57 89 736 178 185 737 180 187 738 57 89 739 179 186 740 57 89 741 182 188 742 58 88 743 59 90 744 185 189 745 60 91 746 183 190 747 59 90 748 58 88 749 57 89 750 180 187 751 181 191 752 182 188 753 183 190 754 58 88 755 184 192 756 185 189 757 59 90 758 183 190 759 184 192 760 59 90 761 70 102 762 65 97 763 185 189 764 185 189 765 65 97 766 60 91 767 75 107 768 70 102 769 186 193 770 185 189 771 186 193 772 70 102 773 181 191 774 182 188 775 57 89 776 169 194 777 170 182 778 74 105 779 84 115 780 169 194 781 79 110 782 74 105 783 79 110 784 169 194 785 168 195 786 169 194 787 84 115 788 168 195 789 90 127 790 167 196 791 165 197 792 166 198 793 189 199 794 90 127 795 166 198 796 167 196 797 168 195 798 84 115 799 89 120 800 164 200 801 189 199 802 163 201 803 164 200 804 165 197 805 189 199 806 90 127 807 168 195 808 89 120 809 189 199 810 162 202 811 163 201 812 162 202 813 189 199 814 161 203 815 160 204 816 189 199 817 159 205 818 189 199 819 160 204 820 161 203 821 189 199 822 166 198 823 90 127 824 187 206 825 75 107 826 186 193 827 97 139 828 158 207 829 189 199 830 80 112 831 75 107 832 187 206 833 188 208 834 91 122 835 85 117 836 80 112 837 188 208 838 85 117 839 80 112 840 187 206 841 188 208 842 158 207 843 159 205 844 189 199 845 98 138 846 156 209 847 157 210 848 158 207 849 98 138 850 157 210 851 98 138 852 158 207 853 97 139 854 99 142 855 156 209 856 98 138 857 100 130 858 91 122 859 155 211 860 91 122 861 188 208 862 155 211 863 155 211 864 99 142 865 100 130 866 155 211 867 156 209 868 99 142 869 97 139 870 189 199 871 90 127 872

+
+
+
+ + + + 63.1569 78.1318 -209.308 63.1562 72.9917 -209.306 76.1744 72.0517 -203.751 63.1556 67.8516 -209.303 77.0353 66.87271 -203.073 75.56211 75.73571 -204.233 69.2855 76.9571 -206.82 + + + + + + + + + + 0.3936983 -0.04236072 -0.9182633 0.4094431 -5.79861e-4 -0.9123355 0.3928779 -0.01117014 -0.9195229 0.3842962 -0.05212652 -0.9217371 0.3760848 -3.96746e-4 -0.9265853 0.3848407 -0.02511686 -0.9226412 0.3704178 -0.05969655 -0.926945 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

4 0 0 3 1 1 1 2 2 4 0 3 1 2 4 2 3 5 1 2 6 0 4 7 6 5 8 5 6 9 2 3 10 6 5 11 1 2 12 6 5 13 2 3 14

+
+
+
+ + + + 77.0353 66.87271 -203.073 69.1202 114.493 -209.303 77.0353 66.87271 -187.579 77.4342 90.6827 -193.163 77.8332 114.493 -198.747 69.29701 113.429 -209.163 76.4831 113.429 -200.166 75.8835 108.55 -200.064 75.4832 103.592 -199.961 75.2653 98.57701 -199.857 75.2131 93.5272 -199.752 75.30941 88.4624 -199.647 75.5368 83.4084 -199.542 76.3183 73.42301 -199.334 75.56211 75.73571 -204.233 + + + + + + + + + + 0.9849694 0.1532663 -0.07965451 0.9935589 0.1091983 -0.03027522 0.991589 0.1258293 -0.0303052 0.9964379 0.04651057 -0.07034575 0.9787791 -0.01388615 -0.2044476 0.9473044 0.02587991 -0.319288 0.9507036 -0.02877956 -0.3087627 0.946781 -0.006164729 -0.3218195 0.9354064 -0.04080384 -0.3512123 0.9104712 -0.07641935 -0.4064511 0.8245955 -0.133521 -0.5497404 0.7818107 -0.1238775 -0.6110863 0.7663335 -0.1346501 -0.6281738 0.7711907 0.03531074 -0.6356242 0.7704665 0.0443449 -0.6359363 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 90.8398 46.3673 175.044 90.8398 46.3673 180.025 90.8398 46.3673 185.006 90.8398 46.3673 189.987 90.83501 46.3512 194.989 90.5999 46.2734 199.947 89.95111 46.2247 204.895 88.7883 46.2103 209.728 86.89 46.2359 214.453 83.97531 46.3038 218.592 79.8473 46.3673 220.708 90.8398 49.1011 173.813 90.8282 49.3091 178.845 90.8115 49.503 183.865 90.7896 49.6831 188.876 90.7586 49.8303 193.891 90.5048 49.8938 198.839 89.8468 49.9904 203.792 83.9314 50.5297 217.786 79.8473 50.7327 220.328 90.8398 51.7725 172.364 90.8164 52.1917 177.415 90.7825 52.5817 182.448 90.73841 52.9429 187.462 90.68101 53.2538 192.467 90.4087 53.4583 197.383 83.8913 54.6849 216.557 79.8473 55.016 219.503 90.8398 54.3558 170.7 90.8043 54.987 175.74 90.7532 55.5733 180.756 90.6866 56.1152 185.746 90.6025 56.5886 190.717 90.31211 56.9327 195.579 83.85501 58.7335 214.902 79.8473 59.1819 218.23 90.8398 56.8256 168.83 90.7922 57.6676 173.826 90.7236 58.4486 178.793 90.6345 59.1691 183.732 90.5235 59.8028 188.642 90.2154 60.2846 193.429 83.8227 62.6424 212.819 79.8473 63.1988 216.507 90.8398 59.1579 166.765 90.78 60.2073 171.683 90.6941 61.1796 176.571 90.5824 62.0756 181.428 90.4447 62.8666 186.252 90.1192 63.4833 190.939 83.7945 66.3816 210.309 79.8473 67.0385 214.332 90.8398 61.3304 164.523 90.76802 62.5819 169.326 90.66481 63.7408 174.101 90.5307 64.8078 178.847 90.36631 65.7523 183.556 90.0241 66.5009 188.121 83.7703 69.9245 207.374 79.8473 70.6766 211.702 90.8398 63.3234 162.122 90.75621 64.77011 166.775 90.636 66.1093 171.402 90.4797 67.3422 176.005 90.289 68.4357 180.571 89.9305 69.3126 184.988 83.7502 73.2481 204.016 79.8473 74.09201 208.615 90.8398 65.1207 159.585 90.7447 66.7539 164.05 90.60781 68.2661 168.495 90.4298 69.6584 172.922 90.21321 70.8958 177.314 89.8389 71.8972 181.557 83.7343 76.33271 200.241 79.8473 77.2672 205.071 90.8398 66.7094 156.935 90.7335 68.5189 161.175 90.5806 70.19551 165.404 90.3813 71.74031 169.621 90.1392 73.1159 173.808 89.7499 74.2376 177.85 86.2849 77.8835 191.074 83.72261 79.1626 196.056 79.8473 80.1885 201.067 90.8398 68.0806 154.198 90.7229 70.055 158.177 90.5543 71.8865 162.153 90.33451 73.5758 166.128 90.06771 75.0833 170.078 88.96611 77.607 177.874 87.89141 78.9311 182.033 86.2397 80.3268 186.558 83.71501 81.7258 191.468 79.8473 82.8454 196.602 90.8398 69.2295 151.401 90.7128 71.3563 155.082 90.5293 73.3321 158.772 90.2896 75.15731 162.469 89.9988 76.7899 166.15 89.5812 78.1382 169.703 88.8832 79.5383 173.44 87.82241 80.9784 177.373 86.1995 82.49501 181.702 83.7116 84.0142 186.487 79.8473 85.2312 191.675 90.8398 70.1552 148.568 90.7032 72.42102 151.919 90.5057 74.5299 155.287 90.247 76.4815 158.673 89.93301 78.23191 162.052 89.5022 79.6856 165.315 88.8045 81.1952 168.771 87.7583 82.74781 172.44 86.1642 84.3835 176.526 83.7124 86.0234 181.125 79.8473 87.3428 186.285 90.8398 70.8605 145.724 90.6944 73.2513 148.713 90.4834 75.4812 151.728 90.20671 77.5494 154.769 89.8704 79.4098 157.813 89.4273 80.96321 160.756 88.7305 82.5773 163.896 87.6991 84.2388 167.258 86.13391 85.9915 171.048 83.7172 87.7532 175.394 79.8473 89.1803 180.431 90.8398 71.3517 142.894 90.68621 73.8528 145.491 90.4628 76.1915 148.122 90.16901 78.3659 150.787 89.8114 80.32801 153.463 89.3567 81.97502 156.055 88.6613 83.6884 158.841 87.64501 85.45491 161.853 86.1086 87.3225 165.291 83.72602 89.20671 169.307 79.8473 90.74771 174.114 90.8398 71.6378 140.099 90.67871 74.23471 142.278 90.44371 76.6695 144.496 90.13391 78.9396 146.753 89.75621 80.9947 149.03 89.2905 82.7289 151.241 88.5969 84.53601 153.636 87.596 86.4033 156.252 86.08831 88.3833 159.277 83.7389 90.3908 162.88 79.8473 92.0525 167.332 90.8398 71.7303 137.357 90.6719 74.4086 139.095 90.4263 76.927 140.875 90.1016 79.28202 142.696 89.70481 81.4214 144.543 89.2289 83.2362 146.343 88.5377 85.1313 148.31 87.5522 87.09481 150.482 86.0728 89.1846 153.03 83.7556 91.3163 156.127 79.8473 93.1057 160.085 90.8398 71.6513 134.823 90.6578 74.52581 136.204 90.3925 77.21611 137.619 90.0427 79.7195 139.066 89.6169 81.9824 140.532 89.1201 83.8945 141.959 88.41761 85.8771 143.52 87.4331 87.9124 145.248 85.9713 90.0505 147.282 83.6943 92.1827 149.768 79.8473 93.8675 152.978 90.8398 71.40641 132.234 90.6435 74.4785 133.214 90.3582 77.34111 134.22 89.983 79.99211 135.254 89.5279 82.3771 136.303 89.0103 84.38481 137.324 88.29721 86.4523 138.448 87.31491 88.5561 139.701 85.872 90.7381 141.19 83.63591 92.8658 143.036 79.8473 94.4411 145.475 90.8398 70.37751 126.954 90.61431 73.8527 126.989 90.2884 77.0652 127.047 89.86201 80.0151 127.129 89.3479 82.6464 127.232 88.7895 84.8468 127.346 88.05751 87.0853 127.498 87.0829 89.3269 127.704 85.68161 91.59851 128.005 83.5284 93.7218 128.472 79.8473 95.0935 129.28 87.89101 46.2184 212.263 85.4055 50.4215 215.895 83.95291 48.4232 218.242 85.4696 46.2679 216.805 85.43711 48.3507 216.402 81.8263 50.6556 219.567 79.8473 48.5579 220.574 81.8434 46.3481 220.186 81.83451 48.509 219.93 85.3451 54.5082 214.572 83.9109 52.6185 217.225 85.3748 52.4755 215.286 81.8118 54.8868 218.514 79.8473 52.8869 219.972 81.81871 52.783 219.095 85.28881 58.4917 212.831 83.87271 56.7247 215.783 85.3164 56.515 213.754 81.7999 59.0061 217.025 79.8473 57.1157 218.923 81.8055 56.9625 217.824 85.23651 62.3387 210.672 83.8384 60.7074 213.914 85.2621 60.4342 211.804 81.79061 62.981 215.096 79.8473 61.2108 217.425 81.7949 61.0135 216.115 85.1886 66.0188 208.096 83.8081 64.5349 211.618 85.21202 64.2014 209.436 81.7839 66.7825 212.726 79.8473 65.14241 215.476 81.78691 64.9051 213.966 85.14511 69.5048 205.106 83.7819 68.1791 208.895 85.1663 67.7876 206.653 81.7799 70.38491 209.916 79.8473 68.8842 213.074 81.7816 68.61 211.376 85.1061 72.77291 201.709 83.7597 71.61502 205.747 85.12501 71.1674 203.458 81.7784 73.7661 206.666 79.8473 72.4133 210.216 81.7788 72.1043 208.346 85.0717 75.8029 197.91 83.7417 74.8213 202.18 85.08831 74.3188 199.859 81.7796 76.9075 202.977 79.8473 75.7106 206.9 81.7787 75.3678 204.876 85.0419 78.5786 193.721 83.7279 77.7803 198.199 86.30931 76.5613 193.2 85.0562 77.2234 195.864 81.7834 79.79441 198.852 79.8473 78.7603 203.126 81.7812 78.3836 200.968 85.0169 81.0875 189.151 83.7183 80.47811 193.811 86.26171 79.1391 188.86 85.0288 79.86701 191.483 81.7899 82.4155 194.294 79.8473 81.5505 198.892 81.7863 81.1388 196.627 81.7989 84.7633 189.308 79.8473 84.0725 194.196 83.7128 82.9047 189.026 81.7941 83.6239 191.854 81.8105 86.83401 183.899 79.8473 86.32141 189.038 83.7115 85.05381 183.853 81.8044 85.8334 186.656 81.8247 88.62751 178.074 79.8473 88.2956 183.416 83.7143 86.92311 178.305 81.8173 87.7653 181.038 81.8414 90.1473 171.838 79.8473 89.9974 177.331 83.7211 88.5141 172.394 81.8328 89.42121 175.007 81.86061 91.4005 165.2 79.8473 91.4323 170.781 83.732 89.8318 166.135 81.8507 90.80661 168.569 81.8823 92.3978 158.169 79.8473 92.60971 163.767 83.74681 90.8851 159.543 81.8712 91.9303 161.733 81.8535 93.22602 151.418 79.8473 93.5111 156.581 83.7246 91.77291 152.995 81.8676 92.8359 154.842 84.80181 91.90541 142.127 83.66471 92.5466 146.449 84.88211 91.2117 148.549 85.9214 90.4164 144.279 84.8416 91.58081 145.383 81.8267 93.86801 144.281 79.8473 94.17691 149.276 81.8398 93.56951 147.898 84.65071 92.7797 128.228 83.5805 93.3748 135.935 85.7754 91.2518 134.762 84.7246 92.4249 135.351 81.7797 94.6481 128.855 79.8473 94.8434 137.575 81.8021 94.3368 136.758 80.81121 50.7014 220.073 79.8473 49.6476 220.465 80.8144 48.5393 220.38 81.8303 49.5844 219.762 80.8127 49.6225 220.24 79.8473 47.4643 220.655 80.8179 46.3621 220.578 81.8389 47.4301 220.072 80.8161 47.4523 220.493 80.8083 52.8437 219.655 79.8473 51.8127 220.164 81.82241 51.722 219.345 80.8097 51.7753 219.878 86.0317 72.4805 199.711 86.0317 74.37601 197.277 86.0317 76.13681 194.744 87.16001 76.13681 190.824 87.6859 76.13681 188.595 88.1438 76.13681 186.352 88.6052 76.1369 183.692 88.9902 76.1369 181.019 89.30661 76.13681 178.337 89.56201 76.13681 175.651 89.56201 74.4313 179.573 89.56201 72.4805 183.379 89.56201 71.3443 185.343 89.56201 70.1363 187.263 89.56201 68.8558 189.136 89.56201 67.50201 190.957 89.56201 64.6609 194.33 89.56201 63.1587 195.903 89.56201 61.6011 197.401 89.56201 58.453 200.063 89.56201 55.0941 202.436 89.56201 51.534 204.496 89.56201 47.782 206.22 88.87701 47.7821 208.913 87.9934 47.7822 211.548 86.0317 47.782 215.617 86.0317 51.1914 214.633 86.0317 54.5467 213.36 86.0317 57.8271 211.798 86.0317 61.0134 209.946 86.0317 64.0876 207.808 86.0317 67.0331 205.386 86.0317 69.8352 202.685 89.63861 57.3152 200.482 89.6639 76.3207 173.89 89.2289 83.2362 146.343 88.5377 85.1313 148.31 89.2289 83.2362 146.343 87.5522 87.09481 150.482 88.5377 85.1313 148.31 86.0728 89.1846 153.03 87.5522 87.09481 150.482 86.0728 89.1846 153.03 83.7556 91.3163 156.127 86.0728 89.1846 153.03 81.8823 92.3978 158.169 81.8823 92.3978 158.169 83.7556 91.3163 156.127 + + + + + + + + + + 0.9999923 0.003944516 0 0.999997 0.001015961 0.002262413 0.9999331 0.01098692 0.00363177 0.9999389 0.01095646 0.001525938 0.9999838 0.005554437 0.00125122 0.9999808 0.00552386 0.002807676 0.9998342 0.01754844 0.004882991 0.9998444 0.01748758 0.002319455 0.9990608 0.03271603 0.02841287 0.9990208 0.03238099 0.03015309 0.9941049 0.05893272 0.09100848 0.9937015 0.05575835 0.09720325 0.98347 0.08276712 0.1610479 0.98194 0.06515747 0.1776189 0.714704 0.1692913 0.67863 0.6998404 0.138436 0.700756 0.8059163 0.1379155 0.5757417 0.8151375 0.1607446 0.5565178 0.6853675 0.1192991 0.7183586 0.8054279 0.112249 0.5819675 0.250623 0.140449 0.9578426 0.2211119 0.1171023 0.9681924 0.3288125 0.1325749 0.9350435 0.3539299 0.1547623 0.9223786 0.1900712 0.09289926 0.9773653 0.3026601 0.1101747 0.9467092 0.5192295 0.1205218 0.8460941 0.5352249 0.1442363 0.8323042 0.5508427 0.1587003 0.8193819 0.1578128 0.06811797 0.9851168 0.2750681 0.08673506 0.9575044 0.1328201 0.04782372 0.9899858 0.2533668 0.06762957 0.9650034 0.4851725 0.08692026 0.8700876 0.502198 0.1052006 0.8583298 0.9999586 0.007385611 0.005310297 0.9999921 0.002441525 0.003143429 0.999978 0.004089474 0.005249202 0.9998853 0.01345872 0.006958246 0.9997466 0.02066147 0.008942067 0.998766 0.03814876 0.0318008 0.9932188 0.06985855 0.09293115 0.7408754 0.2271212 0.6320757 0.7284216 0.1975479 0.6560311 0.8211453 0.1881499 0.5388137 0.8254486 0.2079567 0.524775 0.404622 0.2122602 0.8895092 0.575774 0.2043256 0.7916663 0.5722048 0.2409492 0.7839167 0.4304767 0.2411035 0.869804 0.3082744 0.1930339 0.9315068 0.2798587 0.1637951 0.9459652 0.3783162 0.1768894 0.9086182 0.5649083 0.1819242 0.8048493 0.999923 0.009766042 0.00766021 0.9999551 0.006134271 0.007232964 0.9998094 0.016694 0.01013237 0.9996111 0.0247507 0.01284837 0.9983904 0.04464888 0.03497445 0.9923706 0.08185315 0.09219926 0.7589141 0.2807741 0.5875504 0.7506533 0.254348 0.6097761 0.8307402 0.2329246 0.5055857 0.8322573 0.2555674 0.4919688 0.5102769 0.3044266 0.804327 0.4769159 0.2671303 0.8373725 0.5953937 0.2724424 0.7558317 0.6172217 0.3051621 0.7251989 0.9998709 0.01269596 0.009857654 0.9999222 0.008606314 0.00903356 0.9997007 0.02069163 0.013062 0.9994186 0.02984791 0.01648044 0.9979136 0.05230969 0.03784364 0.9916152 0.09213608 0.09061014 0.7710793 0.3311383 0.5438604 0.7656939 0.3063203 0.5655801 0.8365411 0.2758663 0.4733889 0.8379389 0.2996083 0.4561725 0.5637847 0.3734352 0.7366771 0.5392757 0.3398932 0.7704898 0.6359323 0.3363541 0.6945906 0.6515008 0.366204 0.6644105 0.9997995 0.01617497 0.01181077 0.9998764 0.01156681 0.01065123 0.9995514 0.0255137 0.01568663 0.9991547 0.03604269 0.01977616 0.9973097 0.06122171 0.04031598 0.9905726 0.1052281 0.08771044 0.7777931 0.3791455 0.5012851 0.7750797 0.3554025 0.5224371 0.8392838 0.3173103 0.4414938 0.8395878 0.3402604 0.4234563 0.6008949 0.4361211 0.6698685 0.5842286 0.4054778 0.7030397 0.6641939 0.3949517 0.6347122 0.6741732 0.4226935 0.6056572 0.9997039 0.02023392 0.01351982 0.9998155 0.01498502 0.01202464 0.9993519 0.03119063 0.0179758 0.9988 0.04342871 0.02264517 0.9965476 0.07147622 0.04223871 0.9895693 0.116734 0.08441472 0.7794512 0.4255242 0.4597663 0.7792297 0.4024636 0.4804416 0.8379768 0.3608943 0.4093289 0.8380053 0.3799682 0.3916266 0.6233907 0.4942323 0.605903 0.6138579 0.465658 0.637449 0.6815129 0.4496319 0.5773832 0.6864113 0.4760107 0.549776 0.9995784 0.02496427 0.01483207 0.9997358 0.01889115 0.01309257 0.9990903 0.03778213 0.0197761 0.9983317 0.05206507 0.02496439 0.9955801 0.08319389 0.04358065 0.9882218 0.1302878 0.08026629 0.7762624 0.4705795 0.4194899 0.7784577 0.4481465 0.4395095 0.8352006 0.4020963 0.375178 0.8334759 0.4188438 0.3603997 0.6331914 0.5492623 0.5453253 0.6297647 0.5220928 0.5751658 0.6890684 0.5018315 0.5228289 0.6895258 0.5271624 0.496643 0.9994167 0.03030568 0.01574796 0.9996327 0.02334731 0.0137642 0.9987506 0.04532003 0.02105778 0.9977216 0.0619837 0.02664291 0.9943703 0.09634846 0.04409992 0.98637 0.1458802 0.07611405 0.768494 0.5147607 0.3800507 0.7729259 0.4927914 0.3996777 0.8286558 0.4414289 0.3441949 0.8242188 0.461521 0.3281188 0.632214 0.6018164 0.4879782 0.6339569 0.5757862 0.5163031 0.6879716 0.5521292 0.4710081 0.684446 0.5767756 0.4459413 0.9992132 0.03622567 0.01614439 0.9995037 0.02819973 0.0140388 0.9983219 0.05371421 0.02163827 0.9969446 0.07312428 0.02746737 0.9930167 0.1096536 0.04351961 0.9842205 0.1618139 0.07159852 0.7564846 0.5578948 0.3412985 0.7630054 0.5364324 0.3606429 0.8197986 0.4806726 0.3112622 0.8165489 0.4965521 0.2944215 0.8732115 0.408223 0.2661873 0.8639733 0.4400285 0.244796 0.6216191 0.6524742 0.4334365 0.6280439 0.6274335 0.4603132 0.6790884 0.6010197 0.4214432 0.6719835 0.6248915 0.3974279 0.9989619 0.04266613 0.01596164 0.9993451 0.03347933 0.0137335 0.9977899 0.06289976 0.02142435 0.9959729 0.08539348 0.0273149 0.9910587 0.1266863 0.04187268 0.9106879 0.3783444 0.1658404 0.8564658 0.4685643 0.2165961 0.8695263 0.437403 0.2293528 0.7406688 0.5996704 0.3029939 0.7490075 0.5790144 0.3220714 0.8102607 0.515626 0.2785815 0.8022716 0.539802 0.2549006 0.6025058 0.7012041 0.3811821 0.613008 0.6771593 0.4070341 0.6632404 0.6484082 0.3737365 0.6530514 0.671363 0.3504223 0.9986593 0.04953163 0.01504564 0.9991537 0.03906399 0.01287889 0.9971477 0.07269626 0.02029514 0.9947928 0.09854537 0.02600204 0.9889021 0.1433165 0.03915566 0.974035 0.2164387 0.06640869 0.9471386 0.303851 0.1029724 0.9491521 0.2929553 0.1152716 0.9040639 0.4013857 0.1468268 0.8355006 0.512147 0.1991089 0.7376223 0.6166436 0.2750709 0.7401314 0.6208302 0.2584096 0.5765102 0.7470522 0.3309822 0.5902681 0.7245517 0.3558211 0.6415076 0.693695 0.3274985 0.6288469 0.7152465 0.3049167 0.998306 0.05661267 0.01342833 0.9989342 0.0447402 0.01135289 0.9963983 0.08282971 0.01815903 0.9934063 0.1122198 0.02346938 0.9864565 0.1602843 0.0348218 0.9700917 0.2357934 0.05765122 0.9411607 0.3261315 0.08862864 0.895689 0.4263892 0.126229 0.8226782 0.5419006 0.1718847 0.7287679 0.6415746 0.2393315 0.7202527 0.657139 0.2222712 0.5452808 0.7891571 0.2826658 0.5613994 0.7686548 0.3065952 0.6152341 0.7359371 0.2826371 0.6009204 0.755591 0.2607244 0.9979166 0.06357145 0.01101738 0.9986925 0.05029469 0.009155571 0.9955679 0.09283947 0.01501542 0.9918624 0.1257987 0.01959306 0.9838253 0.1767687 0.02899348 0.9661278 0.2536402 0.04757851 0.9357179 0.3450803 0.07315444 0.8879278 0.4478703 0.1048642 0.8104617 0.567897 0.1436833 0.7085618 0.6757233 0.2033182 0.7001432 0.6891563 0.186717 0.5111389 0.8263128 0.2365253 0.5284105 0.8084247 0.2592917 0.5861788 0.7740539 0.2392386 0.5713474 0.7911761 0.2181807 0.9975091 0.07010179 0.007843315 0.9984413 0.05545365 0.006317496 0.994701 0.1022381 0.01083415 0.9902443 0.1385859 0.01449644 0.9811776 0.1918713 0.0218209 0.962491 0.2688761 0.03628754 0.9311466 0.3601899 0.05682706 0.8816334 0.4645605 0.08310323 0.7999774 0.5887519 0.115791 0.6889641 0.7050476 0.168037 0.681559 0.7157406 0.1522917 0.4770214 0.8574788 0.1928228 0.4939137 0.8426808 0.2143324 0.5567389 0.8068472 0.197584 0.5426572 0.8209593 0.1776202 0.9971144 0.075809 0.003997921 0.9982035 0.05984699 0.002899229 0.9938614 0.1104799 0.005798637 0.9886839 0.1497858 0.008270561 0.9787587 0.2045719 0.01348954 0.9595752 0.2804076 0.02423197 0.9280493 0.3702858 0.04016286 0.8776677 0.4753041 0.06152641 0.7925822 0.603272 0.08874964 0.6719174 0.7283785 0.1341332 0.6665367 0.7358151 0.1196042 0.4459137 0.8820307 0.1522595 0.4609066 0.8706014 0.1720998 0.5294771 0.8334175 0.1583334 0.5174871 0.8441973 0.1397789 0.9968153 0.07974642 2.13634e-4 0.9980022 0.0631743 -7.62975e-4 0.9932975 0.1155749 0.001648008 0.9877227 0.1561666 0.003997981 0.9777985 0.2093604 0.008850455 0.969989 0.2428405 0.01223814 0.9457425 0.3241186 0.0227676 0.9462342 0.3227664 0.02151572 0.9076683 0.4179284 0.03839302 0.9087158 0.4158271 0.03637909 0.8446151 0.5320083 0.05993944 0.8463414 0.5295776 0.05704128 0.6594094 0.7448035 0.1022105 0.7348358 0.672668 0.08680045 0.7319707 0.6760291 0.08487367 0.4208247 0.8997573 0.1155139 0.4324224 0.8917624 0.1333066 0.50705 0.853232 0.1220472 0.4243435 0.8976404 0.1190567 0.578503 0.8088359 0.1054459 0.5795234 0.8083541 0.1035201 0.9965509 0.08289074 -0.003937005 0.9978582 0.06525015 -0.00463891 0.9927514 0.1201531 -0.002838253 0.9867463 0.1622705 -4.27269e-4 0.9765288 0.2153447 0.004272699 0.9588544 0.283585 0.01333689 0.9551463 0.2953608 0.02139365 0.9299384 0.3667444 0.02670395 0.9233971 0.3820122 0.03747791 0.8813285 0.4703898 0.0446493 0.8697453 0.4901435 0.05746823 0.8086095 0.5847502 0.0649451 0.7758402 0.6247984 0.08774399 0.7248067 0.6842464 0.08038824 0.6153827 0.7836028 0.08526974 0.6509441 0.7526341 0.0990653 0.6265018 0.7725676 0.1031249 0.3725486 0.9234213 0.09219866 0.4013558 0.9097723 0.105962 0.4829622 0.8695151 0.1033982 0.4599875 0.8833212 0.09030669 0.4597135 0.8813998 0.1086184 0.9963375 0.08496612 -0.009613573 0.9977526 0.06628692 -0.0097965 0.992274 0.1236642 -0.009979784 0.985782 0.1677914 -0.008941948 0.9751754 0.2213547 -0.005920648 0.9576639 0.2878882 5.49347e-4 0.928949 0.3700475 0.01089537 0.8796558 0.4748793 0.02636861 0.8050943 0.5908195 0.05249285 0.8019953 0.5958351 0.04223918 0.5901854 0.8050119 0.06030642 0.6031787 0.7941365 0.07431387 0.7160649 0.6949459 0.06558507 0.7092969 0.7029184 0.05295079 0.3174336 0.9460749 0.06464034 0.3448035 0.935346 0.07898312 0.4381256 0.8955389 0.0778225 0.4160013 0.9072009 0.06268554 0.9965286 0.08215641 -0.01345872 0.997815 0.06485259 -0.01263481 0.9924289 0.1219249 -0.01480185 0.9857313 0.1677016 -0.01449644 0.9755547 0.2193739 -0.01297074 0.9601229 0.2794305 -0.009094595 0.9344944 0.3559746 -0.001525938 0.8870365 0.4616008 0.009552419 0.8051158 0.5925831 0.02517795 0.808722 0.5878868 0.01892173 0.5716908 0.8197531 0.03427332 0.572847 0.8185272 0.04312372 0.7028801 0.7103573 0.03677523 0.7065571 0.7071369 0.02710127 0.2367343 0.9708943 0.03634786 0.2721368 0.961131 0.04657179 0.3816999 0.9231969 0.04486274 0.371908 0.9275116 0.03750818 0.9743424 0.06546276 0.2153404 0.980532 0.1158486 0.1585441 0.977485 0.1985855 0.07132232 0.9254966 0.1152407 0.3607987 0.9167336 0.1149045 0.3826183 0.9517128 0.08939093 0.2936869 0.9588223 0.08618623 0.2706139 0.9785982 0.09799712 0.1809483 0.8823149 0.142678 0.4485126 0.9709348 0.2252004 0.08105874 0.9853309 0.1206714 0.1206714 0.9846552 0.1133769 0.1326647 0.9841695 0.09564584 0.1492063 0.9858679 0.1111821 0.1253126 0.8505353 0.1245787 0.5109499 0.8449209 0.1669394 0.5081733 0.8521659 0.2028326 0.482361 0.8572319 0.238693 0.4562666 0.8600874 0.2739999 0.4303184 0.8612068 0.3062551 0.4056239 0.8605844 0.3392835 0.3798437 0.9848156 0.1283016 0.1169486 0.9833059 0.1479887 0.1058719 0.9820134 0.1616291 0.0976001 0.9799149 0.17924 0.08740735 0.9809941 0.1692569 0.09488272 0.9841226 0.1380079 0.1116088 0.9825738 0.1546421 0.1031252 0.9411914 0.3098036 0.1348352 0.9611873 0.2554417 0.1042519 0.9321959 0.328443 0.1521055 0.857801 0.3722723 0.3543881 0.8531662 0.4024576 0.3318665 0.8482637 0.4277942 0.3121552 0.8888477 0.4104862 0.2035951 0.8850554 0.4078885 0.2242853 0.9142543 0.3624423 0.181038 0.8464879 0.4487583 0.2864862 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 65.01702 97.6665 124.292 58.9917 99.19741 123.842 52.8372 100.503 123.48 45.9809 101.766 123.145 39.6256 102.584 122.924 33.0139 103.144 122.762 26.5705 103.495 122.652 20.0479 103.705 122.576 13.4833 103.801 122.526 6.94484 103.805 122.498 0 103.726 122.489 64.1149 97.1733 126.882 58.1301 98.7941 126.318 52.0294 100.158 125.864 45.2422 101.466 125.441 38.966 102.319 125.15 32.4488 102.915 124.924 26.1057 103.3 124.755 19.6908 103.543 124.623 13.2393 103.672 124.521 6.81747 103.707 124.444 0 103.662 124.384 63.3687 96.9503 129.352 57.3971 98.5436 128.82 51.3283 99.8716 128.391 44.5895 101.136 127.991 38.3763 101.956 127.715 31.9392 102.526 127.501 25.6837 102.89 127.342 19.3648 103.116 127.217 13.0156 103.231 127.121 6.70024 103.255 127.048 0 103.199 126.991 73.6241 90.27571 136.115 68.5432 94.01181 135.468 62.1082 96.3413 135.021 56.1222 97.7363 134.752 50.0844 98.8773 134.533 43.4117 99.9458 134.329 37.3009 100.617 134.201 31.0023 101.057 134.117 24.9034 101.314 134.068 18.7591 101.445 134.042 12.5984 101.475 134.036 6.48085 101.424 134.046 0 101.295 134.07 72.5513 89.5172 143.555 67.4028 92.77701 143.772 60.7531 94.6798 144.052 54.7158 95.7613 144.218 48.689 96.6164 144.348 42.0721 97.3917 144.468 36.0672 97.83802 144.587 29.9209 98.0839 144.721 23.9987 98.1766 144.859 18.0542 98.1613 145.003 12.1113 98.05941 145.153 6.22412 97.8883 145.305 0 97.64402 145.47 71.7084 88.1268 152.876 66.4449 90.85501 153.987 59.5394 92.28302 155.019 53.426 93.0219 155.636 47.3902 93.56771 156.126 40.8105 94.02801 156.583 34.897 94.23281 156.957 28.8897 94.2686 157.318 23.1328 94.1841 157.649 17.3776 94.00981 157.97 11.6427 93.7643 158.281 5.97659 93.46331 158.582 0 93.0926 158.893 71.0368 86.1254 163.757 65.6229 88.3543 165.642 58.431 89.3357 167.322 52.223 89.749 168.326 46.1634 89.9992 169.125 39.6068 90.15731 169.871 33.7739 90.1306 170.464 27.896 89.96511 171.017 22.2958 89.7112 171.514 16.722 89.3853 171.984 11.1877 89.0029 172.432 5.7359 88.5782 172.857 0 88.0875 173.291 70.5031 83.2292 175.723 64.9103 85.11251 178.137 57.4074 85.7803 180.254 51.0899 85.94841 181.518 44.9945 85.9677 182.526 38.4499 85.8841 183.464 32.6888 85.6727 184.202 26.9325 85.34851 184.881 21.4821 84.9622 185.483 16.0834 84.51902 186.048 10.7437 84.0316 186.582 5.50073 83.5129 187.086 0 82.93201 187.595 70.2845 81.27381 181.921 64.5924 83.0886 184.478 56.9253 83.6902 186.709 50.5479 83.7904 188.039 44.4303 83.7382 189.099 37.8877 83.57501 190.085 32.1596 83.3033 190.858 26.4613 82.9285 191.567 21.0834 82.5013 192.193 15.77 82.0227 192.779 10.5256 81.5045 193.33 5.38507 80.9591 193.849 0 80.3534 194.373 70.09941 78.85031 188.138 64.30101 80.69551 190.746 56.4638 81.3166 193.009 50.0228 81.4006 194.357 43.8802 81.3185 195.43 37.337 81.1147 196.428 31.6396 80.8129 197.207 25.9974 80.415 197.919 20.6904 79.9706 198.547 15.4607 79.4787 199.132 10.3102 78.9503 199.682 5.27075 78.3974 200.198 0 77.7859 200.718 69.9508 75.8377 194.273 64.0386 77.8366 196.83 56.0247 78.5841 199.037 49.5162 78.7164 200.35 43.3454 78.65641 201.394 36.7986 78.4606 202.364 31.1297 78.1665 203.119 25.5414 77.77941 203.807 20.3035 77.34761 204.411 15.156 76.86991 204.973 10.0977 76.357 205.501 5.15789 75.8203 205.994 0 75.2271 206.491 69.8432 72.0958 200.211 63.8088 74.3982 202.611 55.6109 75.4021 204.671 49.0304 75.6612 205.893 42.8279 75.6863 206.863 36.274 75.5577 207.762 30.6311 75.317 208.461 25.0945 74.9822 209.095 19.9235 74.5991 209.65 14.8562 74.1691 210.166 9.88841 73.7028 210.648 5.04668 73.2116 211.099 0 72.6655 211.552 69.7828 67.4656 205.829 63.6164 70.2499 207.961 55.226 71.66481 209.779 48.5685 72.14421 210.852 42.3302 72.3296 211.702 35.7655 72.3385 212.488 30.1455 72.2059 213.096 24.6579 71.9728 213.646 19.5516 71.68151 214.126 14.5623 71.3389 214.57 9.68294 70.9564 214.985 4.93734 70.5451 215.372 0 70.0809 215.759 69.7727 64.7623 208.476 63.5362 67.8641 210.433 55.046 69.5508 212.093 48.3477 70.1803 213.07 42.0897 70.47811 213.842 35.518 70.5858 214.555 29.9082 70.5308 215.105 24.4439 70.3696 215.601 19.3689 70.1426 216.033 14.4177 69.8608 216.433 9.58181 69.5361 216.805 4.88348 69.17961 217.152 0 68.77111 217.498 63.4676 65.2442 212.746 54.875 67.25151 214.224 48.1345 68.0606 215.09 41.8555 68.4944 215.773 35.2756 68.7233 216.401 29.675 68.7629 216.884 24.2332 68.6892 217.319 19.1888 68.5401 217.697 14.2751 68.33171 218.045 9.48187 68.0764 218.369 4.8302 67.7856 218.67 0 67.4438 218.97 63.4118 62.369 214.882 54.7139 64.7493 216.153 47.9293 65.7697 216.894 41.6281 66.36502 217.475 35.0386 66.7389 218.008 29.4462 66.8917 218.416 24.026 66.92221 218.782 19.0115 66.8656 219.098 14.1343 66.74401 219.389 9.3832 66.5708 219.659 4.77757 66.3574 219.909 0 66.09391 220.157 54.5634 62.026 217.863 47.733 63.2915 218.464 41.4079 64.0755 218.932 34.8074 64.61991 219.358 29.2222 64.9057 219.682 23.8226 65.05841 219.971 18.837 65.1098 220.219 13.9957 65.0896 220.447 9.28593 65.0119 220.656 4.72563 64.8885 220.85 0 64.7159 221.041 47.5462 60.6089 219.78 41.1956 61.6108 220.123 34.5826 62.3531 220.432 29.0034 62.793 220.664 23.6233 63.0869 220.868 18.6657 63.2631 221.042 13.8595 63.3596 221.2 9.190151 63.3918 221.344 4.67445 63.3718 221.475 0 63.3036 221.604 40.9918 58.9548 221.03 34.3647 59.924 221.211 28.7901 60.5406 221.342 23.4285 60.9961 221.455 18.4978 61.3149 221.547 13.7257 61.5445 221.629 9.095992 61.7021 221.702 4.62407 61.7997 221.766 0 61.8501 221.827 67.72821 95.8939 127.349 64.5414 97.3641 125.627 68.1568 96.1132 126.066 66.9934 95.6793 129.792 63.727 97.04811 128.11 67.34381 95.7642 128.575 71.2937 92.3188 135.77 69.0763 94.2467 132.708 65.7892 95.2059 135.241 62.7134 96.7229 132.008 66.3626 95.5096 132.354 70.2241 91.32 143.646 67.94651 93.49771 139.357 73.0543 89.9886 139.586 70.72901 91.9172 139.452 64.5311 93.7689 143.91 61.4102 95.6235 139.261 65.1366 94.5955 139.306 69.36071 89.6616 153.417 66.90441 91.8888 148.667 72.1054 88.8926 147.996 69.7705 90.5625 148.316 63.4349 91.6206 154.502 60.1312 93.5561 149.329 63.9657 92.7685 148.996 68.6509 87.4083 164.69 66.01902 89.6808 159.669 71.3539 87.2131 158.148 68.98902 88.6165 158.896 62.4593 88.9078 166.482 58.9737 90.8761 161.045 62.9339 90.3356 160.357 68.0648 84.3372 176.925 65.2538 86.8468 171.827 70.7538 84.8188 169.641 68.3433 86.0002 170.726 61.5809 85.5203 179.198 57.9093 87.6471 173.757 62.0087 87.3153 172.793 67.81501 82.3464 183.196 64.7482 84.1413 181.31 70.3897 82.3032 178.813 67.9363 83.388 180.057 61.1757 83.46891 185.596 57.1639 84.7666 183.494 61.3754 84.5306 182.404 67.5953 79.93701 189.441 64.4433 81.9438 187.628 70.1876 80.1276 185.033 67.7013 81.2004 186.328 60.7941 81.09111 191.881 56.6919 82.5432 189.885 60.9818 82.3258 188.76 67.4083 77.0001 195.552 64.166 79.331 193.818 70.0203 77.42591 191.223 67.4975 78.54201 192.52 60.4381 78.30101 197.938 56.2413 80.00051 196.065 60.6127 79.7536 194.945 67.25811 73.4089 201.413 63.9194 76.1976 199.766 69.8916 74.0674 197.274 67.3283 75.29502 198.521 60.1111 74.9963 203.646 55.8144 77.0555 201.912 60.2708 76.72 200.843 67.1502 69.0186 206.899 63.7076 72.4216 205.348 69.8067 69.9024 203.068 67.19841 71.32341 204.211 59.8173 71.0591 208.876 55.4146 73.6101 207.299 59.9597 73.1148 206.329 67.1142 66.47351 209.46 63.5749 69.08501 209.216 69.776 66.1487 207.167 67.1306 67.7774 208.196 59.6845 68.81201 211.269 55.1349 70.6299 210.958 59.7497 69.9606 210.093 67.0915 63.6662 211.875 63.5004 66.5847 211.611 69.7731 63.3034 209.751 67.1011 65.10401 210.687 59.5622 66.35511 213.491 54.9593 68.4254 213.182 59.622 67.611 212.403 63.4381 63.8399 213.837 67.08551 62.1569 213.023 59.4511 63.6693 215.524 54.7931 66.0269 215.215 59.5052 65.0421 214.533 54.6372 63.4165 217.037 59.4001 62.2342 216.464 69.38581 96.17591 124.763 69.469 95.3804 126.708 69.6258 94.7819 128.482 69.8885 94.2693 130.154 70.3081 93.7275 131.754 70.5954 93.4149 132.509 70.9421 93.0628 133.214 71.3418 92.6724 133.843 71.78981 92.2392 134.4 72.2545 91.7818 134.878 72.7259 91.2974 135.31 73.1921 90.7868 135.722 69.77671 61.9297 210.867 68.04261 61.8888 212.521 65.8571 61.7074 214.104 63.2083 61.4174 215.589 60.0831 61.0466 216.951 56.4552 60.6043 218.181 52.3253 60.0817 219.271 47.7184 59.4511 220.209 45.2482 59.0796 220.617 42.6767 58.6588 220.979 68.607 62.718 211.417 + + + + + + + + + + 0.2688712 0.9403169 0.2085964 0.3378501 0.9104863 0.2384788 0.3097686 0.903792 0.2953026 0.2557786 0.9301233 0.2635303 0.2194917 0.9556375 0.1964194 0.2169906 0.9481055 0.2324027 0.2504095 0.9211592 0.2979278 0.1861056 0.9652284 0.1835725 0.1836057 0.9624655 0.1998727 0.1485357 0.974043 0.1708146 0.1504601 0.9731686 0.174082 0.1034904 0.9822894 0.156197 0.1054421 0.9835265 0.1468255 0.06906449 0.9872286 0.1435614 0.07007104 0.9900895 0.1217088 0.04416155 0.990049 0.1336139 0.0445888 0.9939251 0.1006224 0.02505606 0.991805 0.1252803 0.0250563 0.9963319 0.08182215 0.009704887 0.9929825 0.1178627 0.009308278 0.9978831 0.06436479 -0.002929806 0.9937583 0.1115162 -0.003540217 0.9988067 0.04870885 -0.009369254 0.9943651 0.1055952 -0.01138347 0.9993664 0.03372317 0.2765032 0.9489918 0.1515274 0.3559759 0.9207946 0.1594322 0.3515483 0.917584 0.1856164 0.2757081 0.9461787 0.1695021 0.2143025 0.9623166 0.1673952 0.1825675 0.9667962 0.1788136 0.1437123 0.9718052 0.1869267 0.0988211 0.9767363 0.1903176 0.0649752 0.9788091 0.1941931 0.04055947 0.9792564 0.1985247 0.02200406 0.9788912 0.2031943 0.007263481 0.9781047 0.2079872 -0.005005121 0.9771072 0.2126892 -0.009338676 0.9761704 0.2168046 0.2491294 0.9508302 0.1840011 0.3293635 0.9273574 0.1775609 0.3461492 0.9247328 0.1582727 0.2641735 0.9507316 0.1622396 0.445037 0.8807656 0.1618455 0.437989 0.8817463 0.1751834 0.1887328 0.961701 0.1987737 0.1605018 0.9629499 0.2167186 0.1243654 0.9648925 0.2313349 0.0827378 0.9670957 0.2405837 0.05160814 0.9671571 0.248885 0.0291453 0.9661591 0.2562955 0.01202452 0.9646505 0.2632585 -0.001464843 0.962894 0.2698764 -0.01275688 0.9610428 0.2761052 -0.01617497 0.9596647 0.2806817 0.3932355 0.8976817 0.1988303 0.5328922 0.8258135 0.1845483 0.549925 0.8152892 0.1813449 0.4175652 0.8887527 0.1890976 0.5536749 0.8139406 0.1759113 0.6041041 0.7776383 0.1741751 0.6225329 0.7620061 0.1783243 0.2091486 0.9529036 0.2196167 0.282517 0.9359655 0.2101253 0.3060125 0.9312219 0.1979452 0.227701 0.9505395 0.2112513 0.1552838 0.9597199 0.2341465 0.1293115 0.9593527 0.2508405 0.09741836 0.9593818 0.264757 0.06082403 0.9597264 0.2742729 0.03329598 0.9587485 0.282299 0.01330643 0.9571482 0.289293 -0.001922667 0.955279 0.2956998 -0.01416069 0.9533144 0.3016474 -0.02432376 0.9513126 0.3072668 -0.02722287 0.9499639 0.3111714 0.3408131 0.9162003 0.2107688 0.4872027 0.8517502 0.192757 0.511137 0.8387004 0.1879377 0.3674181 0.907238 0.2047519 0.5851982 0.7916274 0.1756967 0.5637186 0.8062846 0.1792387 0.1683135 0.957693 0.2334414 0.2342658 0.9461274 0.223523 0.2584648 0.9412647 0.2172947 0.1886709 0.9541889 0.232222 0.1204909 0.9609057 0.249283 0.0970804 0.9592069 0.2655138 0.06918752 0.957944 0.2784898 0.03747773 0.9569945 0.2876752 0.01348942 0.95528 0.2953948 -0.004119992 0.9532849 0.3020445 -0.01763975 0.9511753 0.308147 -0.02853554 0.9490602 0.3137999 -0.03766065 0.9469798 0.3190781 -0.04010182 0.9456594 0.3226765 0.2925863 0.9272305 0.2337456 0.4410322 0.871047 0.2162587 0.4629127 0.8632004 0.2014867 0.315053 0.9233071 0.219649 0.5415291 0.8195877 0.1871424 0.5213242 0.8292906 0.2012417 0.1310482 0.9586297 0.2526966 0.1914758 0.9505122 0.2446703 0.2112535 0.949542 0.2318233 0.1486293 0.9578806 0.2457113 0.0870099 0.9598253 0.2667673 0.06616485 0.957437 0.2809565 0.04153662 0.955495 0.2920687 0.01422202 0.953793 0.300128 -0.006500482 0.9517006 0.3069589 -0.02191263 0.9495395 0.3128814 -0.0338459 0.9473802 0.3183164 -0.04355025 0.9452573 0.3234072 -0.05169928 0.9431918 0.328202 -0.05377554 0.9418663 0.3316568 0.2677111 0.9216073 0.2810173 0.4162175 0.869607 0.2656065 0.4247961 0.8732139 0.2388429 0.2763786 0.9265215 0.2552901 0.5064008 0.8329229 0.2231544 0.4990813 0.8296963 0.2500442 0.1093806 0.9500001 0.292465 0.1696265 0.9424376 0.2881637 0.1772259 0.9479923 0.2643892 0.1164013 0.9545884 0.2742481 0.06628787 0.9518049 0.2994552 0.0434283 0.9506922 0.3070805 0.02017313 0.9488407 0.3151103 -0.003906428 0.947071 0.3210006 -0.02230966 0.9450933 0.3260384 -0.03613406 0.9431188 0.3304868 -0.04696917 0.9411842 0.3346135 -0.05578869 0.9392832 0.3385778 -0.06326556 0.9374474 0.3423299 -0.06540167 0.9361022 0.3455945 0.272234 0.9047814 0.3275048 0.4208585 0.8516051 0.3124851 0.4176254 0.8611922 0.2897192 0.2689675 0.9136595 0.3047668 0.5013195 0.8205573 0.2745262 0.5051212 0.8103424 0.2969811 0.1104803 0.9361832 0.3336994 0.1735014 0.9270808 0.3322927 0.1706351 0.9351206 0.3105369 0.1090764 0.9429894 0.3144417 0.0654633 0.93901 0.3376017 0.03994911 0.9389417 0.3417496 0.01599204 0.9380093 0.3462409 -0.007294058 0.93694 0.3494145 -0.02514791 0.9356009 0.3521627 -0.03869765 0.9342067 0.3546268 -0.0493797 0.9327824 0.3570417 -0.05813843 0.9313747 0.3593901 -0.06555569 0.9299569 0.361777 -0.06808888 0.9287372 0.3644327 0.2872162 0.8779154 0.3831076 0.4356684 0.8219864 0.3667854 0.4269933 0.8386354 0.3381826 0.278396 0.8930217 0.3535647 0.511781 0.7964362 0.322133 0.5207794 0.778758 0.3497498 0.1201836 0.9148666 0.3854544 0.1872362 0.9030067 0.3866803 0.1790559 0.9165513 0.3575929 0.113562 0.9267466 0.3581125 0.07138323 0.9200779 0.3851765 0.04281759 0.9218751 0.3851141 0.01751798 0.9223809 0.3858844 -0.005737602 0.922414 0.3861601 -0.02346891 0.9220334 0.3863983 -0.03708088 0.9214686 0.3866792 -0.047885 0.9208027 0.3870784 -0.05685698 0.9200888 0.3875616 -0.06445574 0.9193186 0.3881995 -0.06750869 0.9182954 0.3900977 0.3115105 0.8354657 0.4527232 0.4585214 0.7763794 0.4324274 0.4463986 0.8013322 0.3982399 0.2984792 0.858906 0.4161618 0.5315493 0.7570542 0.3799004 0.5434553 0.7311483 0.4124059 0.1389238 0.8800547 0.4540967 0.2103102 0.8643749 0.4567557 0.1977972 0.8858609 0.4196745 0.1273881 0.8997431 0.4174141 0.08542186 0.8888881 0.4500901 0.05334699 0.8935012 0.4458808 0.02606332 0.8963159 0.4426493 0.002349972 0.8981591 0.4396643 -0.01571732 0.8993673 0.4369114 -0.02969521 0.9001957 0.434472 -0.04095703 0.900781 0.4323382 -0.05035644 0.9011982 0.4304718 -0.05841398 0.9015105 0.4287966 -0.06219738 0.9008246 0.4297053 0.3393753 0.7733301 0.5355232 0.4828776 0.7132379 0.5080561 0.47107 0.7470282 0.4690862 0.3254865 0.8071088 0.4925787 0.5553884 0.7012091 0.4470453 0.5662296 0.6673714 0.4837352 0.1641631 0.8249354 0.5408623 0.2386009 0.8053467 0.542666 0.2242546 0.837781 0.4978283 0.1492698 0.8562796 0.4944734 0.1060542 0.8381487 0.535032 0.07107973 0.8462733 0.5279861 0.04181134 0.8523116 0.5213606 0.01763987 0.8566937 0.5155239 -9.76602e-4 0.8602644 0.5098474 -0.01547324 0.8631759 0.5046663 -0.02731412 0.8656906 0.4998337 -0.03729403 0.8679263 0.4952908 -0.04593127 0.8699179 0.4910532 -0.0506919 0.8697589 0.4908664 0.3608913 0.6944677 0.6224726 0.499234 0.6379746 0.5863054 0.492642 0.6751472 0.5490721 0.3517642 0.733895 0.5810854 0.5745846 0.6300685 0.5223662 0.5791705 0.5943998 0.5578984 0.1887319 0.748 0.636299 0.2630136 0.726324 0.6350413 0.2522466 0.766323 0.5908644 0.1750605 0.7885352 0.5895473 0.1288516 0.7695696 0.6254279 0.09058099 0.7818717 0.6168239 0.06027543 0.7908446 0.6090416 0.03616511 0.797708 0.6019586 0.01757919 0.8036401 0.5948561 0.002807736 0.8087831 0.5881004 -0.009338974 0.8135001 0.58149 -0.01968467 0.8177837 0.5751891 -0.0288096 0.8217762 0.5690816 -0.03436487 0.8230491 0.5669297 0.3661375 0.6382151 0.6772185 0.500755 0.5873678 0.6358014 0.5008544 0.6106024 0.6134407 0.364491 0.6642813 0.6525924 0.5791403 0.5692519 0.5835657 0.5780305 0.5478166 0.6047957 0.1990129 0.6878932 0.6979949 0.2713162 0.6673647 0.6935502 0.2681718 0.6949211 0.6672097 0.1943478 0.7169322 0.6695051 0.1418218 0.7054163 0.69446 0.1024526 0.7177181 0.6887555 0.07263588 0.7275797 0.6821671 0.04922735 0.7354809 0.6757549 0.03119057 0.7426533 0.6689494 0.01678544 0.749029 0.6623244 0.004791438 0.7549791 0.6557313 -0.005462884 0.7605966 0.6492019 -0.01458835 0.765891 0.6428052 -0.0202645 0.7687086 0.6392781 0.3642751 0.5819368 0.7270854 0.4730772 0.5478797 0.6899463 0.4956701 0.5680018 0.6570276 0.3661096 0.610722 0.7021272 0.5893114 0.5314759 0.608478 0.2036866 0.6247021 0.7538297 0.2730913 0.6068559 0.746423 0.2730235 0.6379703 0.7200361 0.2015773 0.6580789 0.7254645 0.1477739 0.6399567 0.7540678 0.1100224 0.6507651 0.7512655 0.08136409 0.6597025 0.7471094 0.05932974 0.6670019 0.74269 0.04232978 0.6738286 0.7376742 0.02871805 0.6799867 0.732662 0.01736557 0.6858638 0.7275229 0.00753808 0.6915847 0.7222561 -0.00112915 0.6969943 0.7170758 -0.006378471 0.6994369 0.7146659 0.3572564 0.555661 0.7507389 0.4783557 0.4909296 0.7281236 0.2017952 0.552648 0.8086155 0.2670434 0.5392445 0.7986885 0.2711921 0.5740325 0.7726199 0.2032268 0.5899956 0.7814116 0.3457241 0.5247205 0.7779096 0.1479263 0.5632921 0.8129082 0.1128892 0.5701836 0.8137241 0.08624732 0.5756231 0.8131542 0.066136 0.5801475 0.811822 0.05078446 0.5843272 0.8099277 0.0385459 0.5880467 0.8079081 0.02829068 0.5917857 0.8055988 0.01959329 0.5950936 0.8034176 0.0117194 0.5984538 0.8010717 0.007629752 0.5983259 0.8012166 0.1974888 0.5136358 0.834971 0.2661617 0.5053746 0.8208255 0.1394428 0.477139 0.8676947 0.1892178 0.4707555 0.8617343 0.1088297 0.476397 0.8724689 0.08478206 0.4752132 0.8757766 0.06714099 0.4738324 0.8780518 0.05392736 0.4719788 0.879959 0.04345947 0.470028 0.881581 0.03485298 0.467647 0.883228 0.02758908 0.4646809 0.8850484 0.02136337 0.4610226 0.8871313 0.01925778 0.4542823 0.8906497 0.09305316 0.3740743 0.9227186 0.1234189 0.3934513 0.9110236 0.07471036 0.3604287 0.9297901 0.05969613 0.3498449 0.9349038 0.04867792 0.3383957 0.9397441 0.04019379 0.3262812 0.944418 0.03347963 0.312945 0.9491811 0.0278337 0.2983888 0.9540385 0.0233165 0.2817211 0.9592131 0.02426254 0.2622187 0.9647035 0.06622695 0.3016838 0.9511051 0.07846367 0.3167539 0.9452568 0.05227959 0.2856611 0.9569037 0.04211592 0.2687488 0.9622891 0.03454732 0.2504681 0.9675083 0.02868819 0.2304825 0.9726535 0.02389639 0.2085979 0.9777095 0.02017301 0.1842123 0.9826796 0.02291977 0.1578443 0.9871981 0.6046129 0.7747871 0.1847928 0.5831859 0.7954145 0.1649547 0.5238868 0.8331345 0.1772841 0.5024412 0.8448387 0.183849 0.4904437 0.8531035 0.177988 0.4887329 0.8567323 0.1647726 0.6837517 0.7094183 0.1709074 0.6488099 0.7379568 0.1856489 0.6233575 0.758192 0.1912342 0.3506065 0.8891206 0.2941762 0.2987201 0.89732 0.3249359 0.3912221 0.8929227 0.2227881 0.4284635 0.8873245 0.1705125 0.5804573 0.5068128 0.6373463 0.6172174 0.4818959 0.6219478 0.5374436 0.4971277 0.6811891 0.4149734 0.5394625 0.7326508 0.3265266 0.5130304 0.793839 0.267929 0.4975868 0.8249979 0.2115883 0.4722513 0.8556923 0.1588823 0.4364839 0.8855723 0.1180467 0.3603966 0.9252997 0.09891277 0.3432802 0.9340102 0.08246374 0.3154803 0.9453423 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 63.1556 54.408 -218.125 63.1556 67.8516 -209.303 74.83541 52.9969 -213.421 70.0954 67.3621 -206.188 86.5152 51.5857 -208.718 77.0353 66.87271 -203.073 + + + + + + + + + + 0.3733449 0.5125319 -0.7732558 0.3798727 0.5109832 -0.7710985 0.3759078 0.5109563 -0.7730571 0.3824994 0.506927 -0.7724761 0.3782922 0.5141051 -0.7697995 0.3728537 0.515989 -0.771191 0.3742907 0.5140699 -0.7717763 0.3813478 0.5130324 -0.7690069 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

3 0 0 2 0 1 0 0 2 3 1 3 0 2 4 1 3 5 5 4 6 4 5 7 2 6 8 5 7 9 2 7 10 3 7 11

+
+
+
+ + + + 86.5152 27.7605 -212.365 74.83541 27.7605 -212.365 63.1556 27.7605 -212.365 86.5152 51.5857 -208.718 74.83541 52.9969 -213.421 63.1556 54.408 -218.125 + + + + + + + + + + 0.327898 0.01971536 -0.9445075 0.3843222 0.1396842 -0.9125705 0.1149349 0.01162773 -0.993305 0.05148571 -0.1048637 -0.993153 0.2679613 -0.08987993 -0.9592281 0 -0.2112524 -0.9774315 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

4 0 0 3 1 1 0 2 2 4 0 3 0 2 4 1 3 5 5 4 6 4 0 7 1 3 8 5 4 9 1 3 10 2 5 11

+
+
+
+ + + + 90.8398 16.1015 -108.65 92.5784 16.1015 -112.72 90.8398 20.6595 -107.153 92.5784 20.2073 -111.187 90.8398 25.362 -106.203 92.5784 24.4659 -110.151 90.8398 30.1437 -105.814 92.5784 28.8172 -109.627 90.8398 34.9379 -105.989 92.5784 33.2001 -109.622 90.8398 39.6782 -106.729 92.5784 37.5526 -110.136 90.8398 44.2985 -108.021 92.5784 41.8137 -111.163 90.8398 48.7343 -109.849 92.5784 45.9228 -112.687 90.8398 52.9244 -112.185 92.5784 49.8226 -114.687 90.8398 56.81 -114.999 92.5784 53.4578 -117.136 90.8398 60.3377 -118.25 92.5784 56.7776 -119.997 90.8398 63.4578 -121.895 92.5784 59.7344 -123.233 90.8398 66.12741 -125.881 92.5784 62.2876 -126.795 90.8398 68.3087 -130.154 92.5784 64.4002 -130.635 90.8398 69.9724 -134.654 92.5784 66.04351 -134.698 90.8398 71.0942 -139.318 92.5784 67.1931 -138.928 90.8398 71.6596 -144.082 92.5784 67.8342 -143.263 90.8398 71.6596 -148.88 92.5784 67.9563 -147.644 90.8398 71.0955 -153.644 92.5784 67.5592 -152.009 90.8398 69.9738 -158.309 92.5784 66.64701 -156.296 90.8398 68.3113 -162.809 92.5784 65.2339 -160.445 90.8398 66.13 -167.082 92.5784 63.3386 -164.397 90.8398 63.4614 -171.069 92.5784 60.9889 -168.097 90.8398 60.3415 -174.713 92.5784 58.2171 -171.491 90.8398 56.8147 -177.965 92.5784 55.0625 -174.534 90.8398 52.9291 -180.78 92.5784 51.5699 -177.182 90.8398 48.7395 -183.117 92.5784 47.7879 -179.397 90.8398 44.3038 -184.945 92.5784 43.7701 -181.148 90.8398 39.6838 -186.238 92.5784 39.5734 -182.412 90.8398 34.9436 -186.977 92.5784 35.2563 -183.168 90.8398 30.1494 -187.154 92.5784 30.88 -183.408 90.8398 25.3677 -186.765 92.5784 26.5062 -183.128 90.8398 20.665 -185.816 92.5784 22.1963 -182.331 + + + + + + + + + + 0.9084276 -0.123144 0.3994933 0.9065331 -0.1074875 0.4082207 0.9073655 -0.1391063 0.3966577 0.9098785 -0.1451203 0.3886661 0.908439 -0.074925 0.4112482 0.9065416 -0.05865782 0.4180212 0.908427 -0.02566641 0.417255 0.9065419 -0.009033679 0.4220193 0.9084334 0.02383542 0.4173495 0.9065692 0.04065138 0.4200951 0.908419 0.07318377 0.4116054 0.9065676 0.08990901 0.4123731 0.9084127 0.121437 0.4000495 0.9065819 0.137826 0.3988899 0.9083894 0.1680055 0.3828877 0.906562 0.1838454 0.379929 0.9083821 0.2121714 0.3603131 0.906585 0.227249 0.3556145 0.9083822 0.2533729 0.332632 0.9065936 0.2675284 0.3263688 0.9083777 0.2910019 0.3002798 0.906607 0.3040945 0.2925583 0.9083737 0.3245412 0.263686 0.9066262 0.3363798 0.2547111 0.9083613 0.353511 0.223405 0.9066333 0.3640328 0.2132986 0.908343 0.3775225 0.1799717 0.9066277 0.3866146 0.1689836 0.9083265 0.3962236 0.1339768 0.9066566 0.4037656 0.1222589 0.9083196 0.4093267 0.08606481 0.9066629 0.4153351 0.07388687 0.9083146 0.4166491 0.03698933 0.906668 0.4211361 0.02444595 0.9082965 0.4181362 -0.01263469 0.9066898 0.4210405 -0.02526974 0.9082854 0.4137198 -0.06207627 0.9066974 0.4151233 -0.07465016 0.9082795 0.4034628 -0.1106623 0.9067201 0.4034004 -0.1229916 0.9082611 0.3875369 -0.1577249 0.9067274 0.3860992 -0.1696261 0.9082482 0.3661375 -0.2025552 0.9067441 0.3634179 -0.2138757 0.9082378 0.339582 -0.2445161 0.9067653 0.3356536 -0.2551736 0.9082269 0.3082154 -0.2830674 0.9067859 0.3032385 -0.2928926 0.9082209 0.2725365 -0.3175828 0.9067971 0.2666799 -0.3264982 0.9081981 0.233016 -0.3476777 0.9068104 0.2263593 -0.3556071 0.9081889 0.1901343 -0.372883 0.9068469 0.1828709 -0.3797196 0.9081839 0.1446599 -0.3927793 0.9068624 0.1369419 -0.3985568 0.9081461 0.09708011 -0.4072421 0.9068505 0.08899426 -0.4119495 0.9081187 0.04809767 -0.4159413 0.906872 0.03988832 -0.4195141 0.9080986 -0.001434385 -0.4187539 0.9068875 -0.009705185 -0.4212609 0.9080756 -0.05112004 -0.4156748 0.9068993 -0.05923712 -0.4171627 0.9071756 -0.08017325 -0.4130434 0.9059029 -0.08374482 -0.4151228 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 71.9516 114.101 -192.388 74.2154 116.008 -185.994 75.7072 117.597 -180.812 76.6263 119.02 -176.179 77.14241 120.467 -171.351 77.39511 122.168 -165.51 77.4943 124.388 -157.759 77.52 127.431 -147.124 75.512 115.601 -185.231 76.6901 116.766 -179.53 77.4387 117.806 -174.24 77.8851 118.865 -168.805 78.13391 120.114 -162.61 78.2676 121.752 -154.982 78.3461 124.008 -145.191 76.8828 115.051 -183.92 77.70771 115.72 -177.692 78.2464 116.306 -171.739 78.5834 116.905 -165.688 78.78881 117.63 -159.131 78.91751 118.614 -151.618 79.0094 120.011 -142.664 78.32791 114.358 -182.061 78.7601 114.46 -175.299 79.0492 114.52 -168.674 79.23751 114.586 -162 79.36 114.716 -155.073 79.4441 114.975 -147.668 79.50981 115.44 -139.543 79.8473 114.06 -186.959 79.8473 113.523 -179.654 79.8473 112.985 -172.35 79.8473 112.447 -165.045 79.8473 111.909 -157.741 79.8473 111.372 -150.436 79.8473 110.834 -143.132 79.8473 110.296 -135.827 73.7548 114.197 -191.841 75.6719 114.223 -190.754 76.67301 114.209 -190.007 77.7027 114.177 -189.126 78.7607 114.128 -188.11 69.1202 114.493 -209.303 69.8794 113.987 -203.778 70.55091 113.707 -199.303 71.3353 113.689 -194.84 71.6645 113.841 -193.363 71.9516 114.101 -192.388 71.0371 114.435 -207.456 72.0048 114.107 -202.644 72.65171 113.926 -198.637 73.2663 113.9 -194.485 73.5263 114.009 -192.975 73.12831 114.416 -205.082 74.2918 114.242 -200.98 74.9014 114.137 -197.437 75.3287 114.072 -193.593 75.51081 114.121 -192.048 75.3936 114.435 -202.179 76.7402 114.392 -198.784 77.2999 114.341 -195.704 77.5223 114.205 -192.164 77.6177 114.178 -190.582 77.8332 114.493 -198.747 79.3502 114.558 -196.058 79.8473 114.537 -193.438 79.8473 114.299 -190.198 79.8473 114.18 -188.578 79.8473 114.06 -186.959 76.1671 114.399 -200.478 75.4958 114.315 -199.949 73.7805 114.31 -202.985 74.2392 114.421 -203.696 74.9528 114.351 -201.798 77.1166 114.383 -197.17 76.082 114.24 -196.637 74.6646 114.191 -199.115 75.8712 114.286 -198.209 78.72161 114.516 -197.442 78.025 114.473 -197.488 76.5916 114.459 -200.529 77.4233 114.454 -199.026 79.7238 114.579 -194.692 78.555 114.44 -194.638 78.40081 114.48 -195.997 78.7607 114.128 -188.11 77.7027 114.177 -189.126 76.67301 114.209 -190.007 75.6719 114.223 -190.754 73.7548 114.197 -191.841 + + + + + + + + + + 0.8350696 0.4907201 -0.2487019 0.5137683 0.8064826 -0.2926227 0.4950513 0.7852885 -0.3718149 0.8366888 0.4357252 -0.3318067 0.9397378 0.2983527 -0.1669688 0.9419501 0.2466271 -0.2278271 0.9675453 0.2291675 -0.1064809 0.9669393 0.2102771 -0.1442642 0.9763449 0.2040524 -0.07150685 0.9723386 0.2142136 -0.09311378 0.9807999 0.1872361 -0.05453801 0.9748879 0.2120131 -0.06814813 0.9849249 0.1661786 -0.04803764 0.9775501 0.2019434 -0.06012213 0.8530472 0.4998464 -0.1498807 0.5243267 0.8373968 -0.1544291 0.9485414 0.3000662 -0.1011411 0.9758276 0.208478 -0.06555569 0.9853516 0.1646525 -0.04440581 0.9899122 0.1376404 -0.03360134 0.9932765 0.1118527 -0.02984774 0.8318873 0.5523332 -0.05377447 0.4777781 0.878068 -0.02691793 0.9435187 0.329084 -0.03842312 0.9776832 0.2084462 -0.02618545 0.9894971 0.1433492 -0.01861673 0.9944526 0.1041604 -0.01464897 0.9972878 0.07211548 -0.01470994 0.7540057 0.6558256 0.03698915 0.3942167 0.9171941 0.05786442 0.9136157 0.4059327 0.02291971 0.9678739 0.2510478 0.01397758 0.9868789 0.1612296 0.00866723 0.9943147 0.1063593 0.005096673 0.9972445 0.07403951 -0.004669427 0.0852403 0.9658129 -0.2448256 0.05417156 0.9783238 -0.1998702 0.07523024 0.9882481 -0.1330645 0.1361751 0.9837143 -0.1173145 0.06186187 0.9976029 -0.03100723 0.08862793 0.9960269 -0.008697986 -0.01522874 0.9971956 0.07327514 -0.0953412 0.9928731 0.0715059 -0.05157655 0.9956418 0.07770055 -0.07181209 0.9934673 0.08868932 -0.1095036 0.9894998 0.09433543 -0.1125841 0.9926263 0.04492372 -0.1227164 0.9905818 0.06073254 -0.09058016 0.9958024 -0.01315361 -0.102025 0.9947056 -0.01232963 -0.03631716 0.9937783 -0.1052892 -0.04846417 0.9898232 -0.1337953 -0.1087691 0.9910687 0.07715159 -0.1030005 0.99323 0.05371284 -0.07870835 0.9941241 0.07431358 -0.1147223 0.9920626 0.05148613 -0.1138368 0.99273 0.0390951 -0.07644969 0.9970505 0.00677514 -0.01248216 0.9985466 -0.0524314 -0.09335893 0.9951167 0.03204536 -0.1058095 0.992784 0.05642968 -0.1053218 0.9923629 0.06421244 -0.1004377 0.9939697 0.04400819 -0.09686768 0.9926344 0.07275754 -0.1006513 0.9926887 0.06662279 -0.1157885 0.9922904 0.0441913 -0.1071226 0.9935845 0.03625684 -0.1109074 0.9929171 0.04260504 -0.1102964 0.993126 0.03918665 -0.08105927 0.9959673 0.03845429 -0.006531 0.9999784 7.93488e-4 -0.06628775 0.9977961 0.002990841 -0.02792519 0.9994797 -0.01614475 -0.1055963 0.9931854 0.04931896 -0.08267515 0.996405 0.0184943 -0.1044656 0.9926519 0.06106793 -0.09030508 0.9949735 0.04327559 -0.1354444 0.9886099 0.06561636 -0.1115776 0.9929984 0.03878968 -0.1030338 0.994203 0.0307331 -0.1143561 0.9923071 0.04742711 -0.1029095 0.9922282 0.06994915 -0.03787434 0.9977647 0.05505663 0.02923744 0.9636458 -0.2655786 0.05090612 0.981744 -0.1832682 0.06082451 0.9937011 -0.0941208 0.02517837 0.9991089 -0.03387635 0.04422247 0.99902 -0.001861631 -0.01675468 0.9988125 0.04574733 -0.01586973 0.9971405 0.07388597 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 79.8473 46.3673 220.708 79.8473 44.5706 220.736 79.8473 42.7695 220.69 79.8473 40.9668 220.571 79.8473 39.1656 220.379 79.8473 37.3689 220.114 79.8473 35.58 219.777 79.8473 33.8021 219.367 79.8473 32.0386 218.884 79.8473 30.2931 218.33 79.8473 28.5692 217.704 79.8473 26.8704 217.007 79.8473 25.2007 216.239 79.8473 23.5639 215.399 79.8473 21.9641 214.489 79.8473 20.4052 213.509 79.8473 18.8915 212.458 76.6559 46.3673 220.545 76.74501 44.5489 220.694 76.8285 42.7356 220.756 76.9065 40.9292 220.732 76.97901 39.1316 220.621 77.04602 37.3445 220.423 77.1075 35.5699 220.138 77.1634 33.8099 219.767 77.2138 32.0664 219.31 77.2586 30.3416 218.767 77.2979 28.6377 218.138 77.33171 26.9569 217.424 77.36 25.3014 216.623 77.3827 23.6737 215.737 77.3999 22.0762 214.766 77.4116 20.5113 213.71 77.4178 18.9816 212.569 74.2848 46.3673 220.217 74.3947 44.5322 220.45 74.4958 42.7081 220.587 74.58802 40.8959 220.629 74.67131 39.0969 220.577 74.7458 37.312 220.429 74.8114 35.5426 220.187 74.86811 33.7897 219.849 74.916 32.0547 219.418 74.955 30.3389 218.891 74.9852 28.6435 218.27 75.0065 26.9699 217.555 75.0189 25.3195 216.745 75.0225 23.6937 215.841 75.0172 22.0941 214.843 75.0031 20.522 213.752 74.98011 18.9791 212.566 72.1152 46.3673 219.825 72.2239 44.5168 220.131 72.32101 42.6819 220.335 72.4065 40.8631 220.437 72.4805 39.0609 220.437 72.5429 37.2759 220.336 72.59381 35.5086 220.133 72.63301 33.7597 219.828 72.6608 32.0296 219.422 72.67691 30.319 218.915 72.68151 28.6286 218.306 72.6745 26.9589 217.595 72.65602 25.3106 216.784 72.6259 23.6845 215.871 72.5843 22.0811 214.857 72.53102 20.5013 213.741 72.4663 18.9457 212.525 69.97 46.3673 219.375 70.0636 44.5013 219.75 70.14321 42.6552 220.018 70.2088 40.8289 220.178 70.2604 39.0224 220.231 70.29811 37.2358 220.175 70.3217 35.469 220.012 70.3313 33.722 219.741 70.3269 31.9949 219.363 70.3086 30.2876 218.877 70.2762 28.6001 218.283 70.2298 26.9324 217.581 70.1695 25.2846 216.772 70.0951 23.6566 215.855 70.0067 22.0484 214.83 69.90441 20.46 213.698 69.788 18.8915 212.458 76.70111 45.4575 220.63 78.4205 44.5607 220.772 79.8473 45.4697 220.731 78.3675 46.3673 220.686 78.3944 45.4641 220.739 76.7874 43.6415 220.736 78.4708 42.7544 220.777 79.8473 43.6704 220.722 78.44601 43.6573 220.785 76.8682 41.8315 220.755 78.51831 40.9508 220.703 79.8473 41.8682 220.64 78.49491 41.8521 220.75 76.9435 40.0292 220.687 78.56311 39.1523 220.549 79.8473 40.0658 220.484 78.5411 40.0507 220.636 77.0132 38.2366 220.532 78.60511 37.3613 220.315 79.8473 38.2665 220.256 78.5844 38.2557 220.442 77.0774 36.4555 220.291 78.6443 35.5805 220.001 79.8473 36.4733 219.954 78.625 36.4694 220.168 77.1361 34.688 219.964 78.6808 33.8124 219.608 79.8473 34.6894 219.581 78.66291 34.6947 219.815 77.1893 32.9359 219.55 78.7145 32.0599 219.136 79.8473 32.9183 219.134 78.69802 32.934 219.382 77.2369 31.2015 219.05 78.7454 30.3256 218.585 79.8473 31.1634 218.616 78.7303 31.1903 218.87 77.27901 29.4869 218.464 78.7736 28.6126 217.955 79.8473 29.4282 218.026 78.75981 29.4663 218.28 77.3155 27.7942 217.792 78.79901 26.9238 217.246 79.8473 27.7164 217.365 78.7866 27.765 217.61 77.34661 26.1258 217.034 78.8216 25.2621 216.459 79.8473 26.0317 216.632 78.8106 26.0893 216.863 77.3721 24.484 216.191 78.8415 23.6308 215.594 79.8473 24.378 215.828 78.8319 24.4425 216.036 77.39202 22.8711 215.262 78.8586 22.033 214.651 79.8473 22.7591 214.953 78.85041 22.8275 215.132 77.4065 21.2895 214.249 78.8729 20.4721 213.63 79.8473 21.1793 214.008 78.8661 21.2477 214.15 77.4154 19.7419 213.15 78.8845 18.9513 212.531 79.8473 19.6424 212.992 78.8791 19.7064 213.09 + + + + + + + + + + -0.07822036 0.05172979 0.9955931 -0.01107853 0.0247817 0.9996315 -0.02975583 0.04629701 0.9984846 -0.09555363 0.07904309 0.9922811 0.03143483 6.10385e-4 0.9995056 0.0116887 0.02118009 0.9997074 -0.001770079 0.03714138 0.9993085 -0.04287952 0.06247287 0.9971252 -0.1102036 0.08700931 0.9900933 -0.04547327 0.005951166 0.9989479 0.02514779 -0.01895242 0.9995041 0.007354915 0.002594053 0.9999696 -0.06225794 0.03341782 0.9975005 0.06906378 -0.04022359 0.9968011 0.05078428 -0.02029538 0.9985035 -0.01519834 -0.04052889 0.9990628 0.05862689 -0.06201446 0.9963519 0.04217702 -0.04019325 0.9983015 -0.03064149 -0.01269602 0.9994499 0.1045897 -0.08105933 0.9912066 0.08710265 -0.06058114 0.9943557 0.01202452 -0.08758997 0.9960842 0.08862841 -0.1053531 0.9904776 0.07419186 -0.08362227 0.9937318 -0.001922667 -0.05987757 0.9982039 0.1358108 -0.1206427 0.9833621 0.1208847 -0.1008949 0.9875257 0.03521853 -0.1344042 0.9903005 0.1139885 -0.148536 0.9823155 0.101719 -0.1267749 0.9867023 0.02331656 -0.1076409 0.9939165 0.1622694 -0.1606214 0.9735859 0.1495428 -0.1405702 0.978712 0.05432426 -0.1811318 0.9819574 0.133918 -0.1907446 0.9724621 0.124732 -0.1699309 0.9775303 0.04458796 -0.1555238 0.9868254 0.1822619 -0.1987729 0.9629486 0.1731373 -0.17976 0.9683542 0.0682401 -0.2282809 0.971201 0.148168 -0.2334982 0.9610021 0.1418225 -0.2123523 0.9668469 0.06113058 -0.2030158 0.9772654 0.1966368 -0.2382959 0.9510778 0.1903772 -0.2188208 0.9570131 0.07748842 -0.2746125 0.9584276 0.1566851 -0.275618 0.9484117 0.1532963 -0.2546191 0.9548138 0.07278853 -0.2501058 0.9654787 0.2046037 -0.2767522 0.9389066 0.2018548 -0.2577968 0.9448785 0.08142465 -0.3205105 0.9437389 0.1584236 -0.3172745 0.9350075 0.1584239 -0.2965528 0.9417847 0.0794115 -0.297015 0.951565 0.2051207 -0.3156313 0.9264461 0.2056071 -0.2960352 0.9327855 0.08054 -0.365955 0.927141 0.1539993 -0.3596979 0.9202726 0.1570525 -0.338612 0.9277265 0.08078479 -0.3431904 0.9357853 0.1979144 -0.3549336 0.9137024 0.2026458 -0.3353117 0.9200548 0.07544422 -0.4106705 0.9086573 0.1429206 -0.4011421 0.9047977 0.1492399 -0.3805161 0.9126527 0.07776224 -0.3883537 0.9182236 0.1832395 -0.3946182 0.9003887 0.1910186 -0.3745906 0.9073002 0.06595301 -0.454133 0.8884894 0.1260147 -0.4432945 0.8874742 0.1351997 -0.4221712 0.8963775 0.07025521 -0.4332814 0.8985163 0.1609612 -0.434937 0.8859578 0.173258 -0.4147265 0.8932994 0.05343973 -0.4967671 0.8662371 0.1038579 -0.4843143 0.8687078 0.1154524 -0.4637323 0.8784209 0.05938929 -0.4766101 0.8771066 0.1330627 -0.4753636 0.8696688 0.1477132 -0.4551643 0.8780698 0.03830122 -0.5374686 0.8424136 0.0774284 -0.5249689 0.8475923 0.09103846 -0.5046639 0.8585024 0.04532134 -0.5185555 0.853842 0.09891271 -0.5154692 0.8511803 0.1165543 -0.4953024 0.8608662 0.02206557 -0.5774591 0.8161215 0.04760891 -0.564807 0.8238486 0.06283885 -0.5450104 0.8360712 0.02963429 -0.5590542 0.8286014 0.0600019 -0.555186 0.8295592 0.0796864 -0.5351899 0.8409648 0.00714153 -0.6049247 0.7962507 0.02191275 -0.5909121 0.8064384 0.03216755 -0.5842958 0.8109031 0.01300132 -0.5979698 0.8014132 0.02578878 -0.5793779 0.814651 0.03973573 -0.5745815 0.8174823 -0.1438363 0.1213437 0.9821339 -0.1222887 0.09192252 0.9882286 -0.09238016 0.04315346 0.9947883 -0.06457877 -0.006836295 0.9978892 -0.03949213 -0.05813944 0.9975271 -0.01754856 -0.1103575 0.993737 4.27271e-4 -0.1627902 0.9866607 0.01440483 -0.2151271 0.9764799 0.0243234 -0.2667949 0.9634464 0.03033608 -0.3180409 0.9475916 0.03238064 -0.3676625 0.9293955 0.03100782 -0.4159204 0.9088723 0.02694839 -0.4625483 0.8861846 0.02053928 -0.5070439 0.8616755 0.01251304 -0.5492007 0.8355969 0.00363177 -0.589209 0.8079726 -0.002197325 -0.6091635 0.7930417 -0.1594009 0.1259826 0.9791424 -0.1811623 0.158456 0.970604 -0.130468 0.07559514 0.9885664 -0.10297 0.02291947 0.9944204 -0.0778532 -0.03152579 0.9964663 -0.05554521 -0.08737689 0.9946256 -0.03628665 -0.1441091 0.9888963 -0.02041721 -0.2008152 0.9794164 -0.008240044 -0.2566622 0.9664661 5.18816e-4 -0.3118388 0.9501349 0.006042718 -0.3654937 0.9307942 0.008423149 -0.4167041 0.9090032 0.008453726 -0.4656569 0.884925 0.006561636 -0.512086 0.8589091 0.003296017 -0.5556617 0.831402 -7.93506e-4 -0.5962283 0.8028146 -0.004272639 -0.614442 0.7889505 -0.1812846 0.1521997 0.9715819 -0.2018207 0.1832043 0.9621355 -0.1527189 0.1010496 0.98309 -0.1252199 0.04696887 0.9910166 -0.09918749 -0.009979784 0.9950188 -0.07608479 -0.06845498 0.9947487 -0.05569738 -0.1281193 0.9901936 -0.03830146 -0.1879368 0.9814341 -0.02420145 -0.2472943 0.9686382 -0.01361155 -0.305558 0.9520761 -0.006225943 -0.3620828 0.9321252 -0.001586973 -0.4159122 0.9094035 4.27261e-4 -0.4668442 0.8843396 5.49338e-4 -0.514913 0.8572423 -8.24022e-4 -0.5593888 0.8289051 -0.002777218 -0.6006811 0.7994839 -0.004791438 -0.6182242 0.7859873 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

18 0 0 86 1 1 89 2 2 18 0 3 89 2 4 85 3 5 86 1 6 1 4 7 87 5 8 86 1 9 87 5 10 89 2 11 89 2 12 87 5 13 0 6 14 89 2 15 0 6 16 88 7 17 85 3 18 89 2 19 88 7 20 85 3 21 88 7 22 17 8 23 19 9 24 91 10 25 93 11 26 19 9 27 93 11 28 90 12 29 91 10 30 2 13 31 92 14 32 91 10 33 92 14 34 93 11 35 93 11 36 92 14 37 1 4 38 93 11 39 1 4 40 86 1 41 90 12 42 93 11 43 86 1 44 90 12 45 86 1 46 18 0 47 20 15 48 95 16 49 97 17 50 20 15 51 97 17 52 94 18 53 95 16 54 3 19 55 96 20 56 95 16 57 96 20 58 97 17 59 97 17 60 96 20 61 2 13 62 97 17 63 2 13 64 91 10 65 94 18 66 97 17 67 91 10 68 94 18 69 91 10 70 19 9 71 21 21 72 99 22 73 101 23 74 21 21 75 101 23 76 98 24 77 99 22 78 4 25 79 100 26 80 99 22 81 100 26 82 101 23 83 101 23 84 100 26 85 3 19 86 101 23 87 3 19 88 95 16 89 98 24 90 101 23 91 95 16 92 98 24 93 95 16 94 20 15 95 22 27 96 103 28 97 105 29 98 22 27 99 105 29 100 102 30 101 103 28 102 5 31 103 104 32 104 103 28 105 104 32 106 105 29 107 105 29 108 104 32 109 4 25 110 105 29 111 4 25 112 99 22 113 102 30 114 105 29 115 99 22 116 102 30 117 99 22 118 21 21 119 23 33 120 107 34 121 109 35 122 23 33 123 109 35 124 106 36 125 107 34 126 6 37 127 108 38 128 107 34 129 108 38 130 109 35 131 109 35 132 108 38 133 5 31 134 109 35 135 5 31 136 103 28 137 106 36 138 109 35 139 103 28 140 106 36 141 103 28 142 22 27 143 24 39 144 111 40 145 113 41 146 24 39 147 113 41 148 110 42 149 111 40 150 7 43 151 112 44 152 111 40 153 112 44 154 113 41 155 113 41 156 112 44 157 6 37 158 113 41 159 6 37 160 107 34 161 110 42 162 113 41 163 107 34 164 110 42 165 107 34 166 23 33 167 25 45 168 115 46 169 117 47 170 25 45 171 117 47 172 114 48 173 115 46 174 8 49 175 116 50 176 115 46 177 116 50 178 117 47 179 117 47 180 116 50 181 7 43 182 117 47 183 7 43 184 111 40 185 114 48 186 117 47 187 111 40 188 114 48 189 111 40 190 24 39 191 26 51 192 119 52 193 121 53 194 26 51 195 121 53 196 118 54 197 119 52 198 9 55 199 120 56 200 119 52 201 120 56 202 121 53 203 121 53 204 120 56 205 8 49 206 121 53 207 8 49 208 115 46 209 118 54 210 121 53 211 115 46 212 118 54 213 115 46 214 25 45 215 27 57 216 123 58 217 125 59 218 27 57 219 125 59 220 122 60 221 123 58 222 10 61 223 124 62 224 123 58 225 124 62 226 125 59 227 125 59 228 124 62 229 9 55 230 125 59 231 9 55 232 119 52 233 122 60 234 125 59 235 119 52 236 122 60 237 119 52 238 26 51 239 28 63 240 127 64 241 129 65 242 28 63 243 129 65 244 126 66 245 127 64 246 11 67 247 128 68 248 127 64 249 128 68 250 129 65 251 129 65 252 128 68 253 10 61 254 129 65 255 10 61 256 123 58 257 126 66 258 129 65 259 123 58 260 126 66 261 123 58 262 27 57 263 29 69 264 131 70 265 133 71 266 29 69 267 133 71 268 130 72 269 131 70 270 12 73 271 132 74 272 131 70 273 132 74 274 133 71 275 133 71 276 132 74 277 11 67 278 133 71 279 11 67 280 127 64 281 130 72 282 133 71 283 127 64 284 130 72 285 127 64 286 28 63 287 30 75 288 135 76 289 137 77 290 30 75 291 137 77 292 134 78 293 135 76 294 13 79 295 136 80 296 135 76 297 136 80 298 137 77 299 137 77 300 136 80 301 12 73 302 137 77 303 12 73 304 131 70 305 134 78 306 137 77 307 131 70 308 134 78 309 131 70 310 29 69 311 31 81 312 139 82 313 141 83 314 31 81 315 141 83 316 138 84 317 139 82 318 14 85 319 140 86 320 139 82 321 140 86 322 141 83 323 141 83 324 140 86 325 13 79 326 141 83 327 13 79 328 135 76 329 138 84 330 141 83 331 135 76 332 138 84 333 135 76 334 30 75 335 32 87 336 143 88 337 145 89 338 32 87 339 145 89 340 142 90 341 143 88 342 15 91 343 144 92 344 143 88 345 144 92 346 145 89 347 145 89 348 144 92 349 14 85 350 145 89 351 14 85 352 139 82 353 142 90 354 145 89 355 139 82 356 142 90 357 139 82 358 31 81 359 33 93 360 147 94 361 149 95 362 33 93 363 149 95 364 146 96 365 147 94 366 16 97 367 148 98 368 147 94 369 148 98 370 149 95 371 149 95 372 148 98 373 15 91 374 149 95 375 15 91 376 143 88 377 146 96 378 149 95 379 143 88 380 146 96 381 143 88 382 32 87 383 85 3 384 17 8 385 34 99 386 35 100 387 18 0 388 85 3 389 34 99 390 35 100 391 85 3 392 90 12 393 18 0 394 35 100 395 36 101 396 19 9 397 90 12 398 35 100 399 36 101 400 90 12 401 94 18 402 19 9 403 36 101 404 37 102 405 20 15 406 94 18 407 36 101 408 37 102 409 94 18 410 98 24 411 20 15 412 37 102 413 38 103 414 21 21 415 98 24 416 37 102 417 38 103 418 98 24 419 102 30 420 21 21 421 38 103 422 39 104 423 22 27 424 102 30 425 38 103 426 39 104 427 102 30 428 106 36 429 22 27 430 39 104 431 40 105 432 23 33 433 106 36 434 39 104 435 40 105 436 106 36 437 110 42 438 23 33 439 40 105 440 41 106 441 24 39 442 110 42 443 40 105 444 41 106 445 110 42 446 114 48 447 24 39 448 41 106 449 42 107 450 25 45 451 114 48 452 41 106 453 42 107 454 114 48 455 118 54 456 25 45 457 42 107 458 43 108 459 26 51 460 118 54 461 42 107 462 43 108 463 118 54 464 122 60 465 26 51 466 43 108 467 44 109 468 27 57 469 122 60 470 43 108 471 44 109 472 122 60 473 126 66 474 27 57 475 44 109 476 45 110 477 28 63 478 126 66 479 44 109 480 45 110 481 126 66 482 130 72 483 28 63 484 45 110 485 46 111 486 29 69 487 130 72 488 45 110 489 46 111 490 130 72 491 134 78 492 29 69 493 46 111 494 47 112 495 30 75 496 134 78 497 46 111 498 47 112 499 134 78 500 138 84 501 30 75 502 47 112 503 48 113 504 31 81 505 138 84 506 47 112 507 48 113 508 138 84 509 142 90 510 31 81 511 48 113 512 49 114 513 32 87 514 142 90 515 48 113 516 49 114 517 142 90 518 146 96 519 32 87 520 49 114 521 50 115 522 33 93 523 146 96 524 49 114 525 50 115 526 146 96 527 52 116 528 35 100 529 34 99 530 52 116 531 34 99 532 51 117 533 53 118 534 36 101 535 35 100 536 53 118 537 35 100 538 52 116 539 54 119 540 37 102 541 36 101 542 54 119 543 36 101 544 53 118 545 55 120 546 38 103 547 37 102 548 55 120 549 37 102 550 54 119 551 56 121 552 39 104 553 38 103 554 56 121 555 38 103 556 55 120 557 57 122 558 40 105 559 39 104 560 57 122 561 39 104 562 56 121 563 58 123 564 41 106 565 40 105 566 58 123 567 40 105 568 57 122 569 59 124 570 42 107 571 41 106 572 59 124 573 41 106 574 58 123 575 60 125 576 43 108 577 42 107 578 60 125 579 42 107 580 59 124 581 61 126 582 44 109 583 43 108 584 61 126 585 43 108 586 60 125 587 62 127 588 45 110 589 44 109 590 62 127 591 44 109 592 61 126 593 63 128 594 46 111 595 45 110 596 63 128 597 45 110 598 62 127 599 64 129 600 47 112 601 46 111 602 64 129 603 46 111 604 63 128 605 65 130 606 48 113 607 47 112 608 65 130 609 47 112 610 64 129 611 66 131 612 49 114 613 48 113 614 66 131 615 48 113 616 65 130 617 67 132 618 50 115 619 49 114 620 67 132 621 49 114 622 66 131 623 69 133 624 52 116 625 51 117 626 69 133 627 51 117 628 68 134 629 70 135 630 53 118 631 52 116 632 70 135 633 52 116 634 69 133 635 71 136 636 54 119 637 53 118 638 71 136 639 53 118 640 70 135 641 72 137 642 55 120 643 54 119 644 72 137 645 54 119 646 71 136 647 73 138 648 56 121 649 55 120 650 73 138 651 55 120 652 72 137 653 74 139 654 57 122 655 56 121 656 74 139 657 56 121 658 73 138 659 75 140 660 58 123 661 57 122 662 75 140 663 57 122 664 74 139 665 76 141 666 59 124 667 58 123 668 76 141 669 58 123 670 75 140 671 77 142 672 60 125 673 59 124 674 77 142 675 59 124 676 76 141 677 78 143 678 61 126 679 60 125 680 78 143 681 60 125 682 77 142 683 79 144 684 62 127 685 61 126 686 79 144 687 61 126 688 78 143 689 80 145 690 63 128 691 62 127 692 80 145 693 62 127 694 79 144 695 81 146 696 64 129 697 63 128 698 81 146 699 63 128 700 80 145 701 82 147 702 65 130 703 64 129 704 82 147 705 64 129 706 81 146 707 83 148 708 66 131 709 65 130 710 83 148 711 65 130 712 82 147 713 84 149 714 67 132 715 66 131 716 84 149 717 66 131 718 83 148 719

+
+
+
+ + + + 79.8473 46.3673 220.708 79.8473 52.3691 220.068 79.8473 58.1636 218.587 79.8473 63.6916 216.259 79.8473 68.88 213.077 79.8473 73.4979 209.201 79.8473 77.4663 204.823 79.8473 80.88901 199.976 79.8473 83.7913 194.77 79.8473 86.2185 189.299 79.8473 88.1711 183.81 79.8473 89.7914 178.148 79.8473 91.1198 172.357 79.8473 92.1947 166.47 79.8473 93.0516 160.515 79.8473 93.72251 154.515 79.8473 94.2284 148.59 79.8473 94.61911 142.408 79.8473 94.88951 136.371 79.8473 95.0935 129.28 78.6105 46.3673 220.697 78.5693 52.9761 219.494 78.5437 59.1021 217.442 78.5309 64.75341 214.566 78.52901 69.9133 210.895 78.5358 74.4071 206.633 78.54901 78.2065 201.988 78.5671 81.4461 196.994 78.58901 84.1729 191.759 78.6139 86.4451 186.371 78.64041 88.2722 181.06 78.66901 89.79251 175.666 78.6998 91.0458 170.224 78.7325 92.06871 164.76 78.7671 92.8937 159.295 78.80371 93.5494 153.843 78.8416 94.0532 148.508 78.88301 94.4516 142.988 78.9255 94.73561 137.638 78.97801 94.95901 131.402 77.2743 46.3673 220.607 77.20011 53.5383 218.846 77.15641 59.9634 216.228 77.1378 65.7149 212.81 77.1403 70.8302 208.652 77.1597 75.1885 204 77.1913 78.8106 199.084 77.2322 81.8603 193.931 77.2803 84.4051 188.652 77.3339 86.51541 183.327 77.3901 88.2102 178.173 77.4505 89.623 173.021 77.5148 90.7932 167.899 77.58271 91.7555 162.827 77.6542 92.5396 157.818 77.7294 93.1708 152.878 77.8068 93.6631 148.095 77.8912 94.05931 143.196 77.9775 94.3474 138.493 78.0838 94.5794 133.062 75.90351 46.3673 220.455 75.8044 54.0431 218.161 75.7493 60.7297 215.001 75.7308 66.5586 211.063 75.74301 71.6174 206.438 75.77951 75.8356 201.41 75.833 79.28 196.225 75.89981 82.1407 190.912 75.9766 84.5047 185.577 76.0611 86.4534 180.297 76.14881 88.0149 175.275 76.2424 89.3179 170.335 76.3412 90.4013 165.499 76.4451 91.29811 160.778 76.5541 92.0352 156.179 76.6681 92.635 151.703 76.78511 93.1084 147.422 76.9123 93.4944 143.089 77.0418 93.77861 138.975 77.20111 94.0097 134.278 74.4831 46.3673 220.249 74.3652 54.5083 217.434 74.3044 61.4295 213.745 74.2909 67.3184 209.299 74.3172 72.31 204.213 74.3745 76.3824 198.813 74.4534 79.6459 193.361 74.54901 82.3155 187.881 74.6571 84.49681 182.481 74.7746 86.2818 177.232 74.8958 87.7071 172.323 75.0241 88.8966 167.574 75.15901 89.8889 162.999 75.3001 90.71501 158.602 75.4475 91.3995 154.383 75.6012 91.9617 150.338 75.7584 92.4099 146.525 75.92881 92.7788 142.719 76.1019 93.0525 139.157 76.3142 93.2751 135.147 73.0769 46.3673 220.008 72.9461 54.9237 216.7 72.8842 62.0486 212.513 72.8795 67.9808 207.587 72.9229 72.8992 202.067 73.00341 76.8266 196.312 73.1093 79.9135 190.602 73.235 82.3978 184.957 73.3752 84.4018 179.487 73.5264 86.0275 174.256 73.6813 87.31961 169.442 73.8444 88.39701 164.859 74.01501 89.29811 160.514 74.193 90.0521 156.405 74.3781 90.6814 152.528 74.57061 91.2025 148.871 74.7671 91.6214 145.48 74.9794 91.9683 142.152 75.19461 92.2264 139.088 75.458 92.4345 135.703 71.5726 46.3673 219.717 71.4328 55.328 215.904 71.3738 62.6454 211.205 71.3819 68.6099 205.787 71.44651 73.444 199.818 71.5541 77.2156 193.698 71.6906 80.11602 187.717 71.8498 82.4053 181.898 72.0256 84.22301 176.346 72.2135 85.68061 171.123 72.40501 86.8316 166.395 72.6056 87.7894 161.969 72.8147 88.59191 157.846 73.0319 89.26702 154.019 73.2573 89.8344 150.475 73.4909 90.30801 147.199 73.7287 90.6915 144.223 73.9851 91.0106 141.365 74.2445 91.2475 138.794 74.5613 91.4347 136.025 69.97 46.3673 219.375 69.8253 55.721 215.045 69.7732 63.2199 209.821 69.79821 69.20571 203.898 69.888 73.9443 197.469 70.0265 77.5495 190.97 70.19741 80.2532 184.708 70.3937 82.33802 178.702 70.6082 83.9602 173.059 70.8361 85.24121 167.834 71.0669 86.24311 163.183 71.3078 87.0737 158.905 71.55801 87.7705 154.996 71.817 88.3596 151.442 72.08501 88.8585 148.224 72.3619 89.2784 145.321 72.64331 89.6205 142.754 72.94601 89.9057 140.36 73.2516 90.1157 138.275 73.6241 90.27571 136.115 78.5878 49.7271 220.205 79.22821 52.675 219.794 79.8473 49.385 220.494 79.24961 46.3673 220.713 79.2379 49.5572 220.361 78.5548 56.0972 218.572 79.2145 58.6375 218.03 79.8473 55.2946 219.433 79.2205 55.6994 219.017 78.5358 61.9882 216.105 79.2073 64.2295 215.431 79.8473 60.9658 217.529 79.2102 61.4829 216.834 78.5287 67.3956 212.828 79.2055 69.4061 212.007 79.8473 66.3324 214.775 79.20571 66.8722 213.822 78.53141 72.21881 208.852 79.208 73.96411 207.941 79.8473 71.2383 211.239 79.2063 71.7391 210.068 77.2331 50.0451 219.84 77.9029 53.2594 219.182 77.96131 46.3673 220.662 77.929 49.8872 220.033 77.1748 56.8375 217.641 77.8674 59.537 216.849 77.8826 56.4705 218.12 77.14421 62.921 214.615 77.8509 65.2406 213.705 77.857 62.46 215.376 77.1366 68.3498 210.82 77.8505 70.38031 209.793 77.8489 67.88021 211.842 75.8479 50.3316 219.424 76.5178 53.7925 218.514 76.60511 46.3673 220.539 76.5564 50.1893 219.642 75.7719 57.4993 216.684 76.4677 60.3502 215.627 76.48851 57.1712 217.174 75.7359 63.7457 213.124 76.4485 66.1422 211.951 76.4546 63.3379 213.883 75.7334 69.179 208.831 76.4552 71.2311 207.561 76.4489 68.7708 209.841 74.4164 50.5967 218.961 75.0988 54.2774 217.807 75.2079 46.3673 220.36 75.1465 50.465 219.201 74.3284 58.107 215.692 75.0402 61.0829 214.384 75.0638 57.8056 216.198 74.2923 64.4942 211.609 75.0237 66.9434 210.194 75.0272 64.1241 212.379 74.2995 69.91841 206.829 75.0423 71.9703 205.34 75.02901 69.5545 207.844 73.0021 50.8341 218.477 73.6674 54.7174 217.075 73.7923 46.3673 220.135 73.7213 50.7161 218.726 72.90731 58.6471 214.708 73.6056 61.7418 213.138 73.6294 58.3791 215.209 72.8753 65.1522 210.133 73.596 67.6538 208.454 73.59481 64.8267 210.881 72.8957 70.5563 204.893 73.6304 72.6102 203.153 73.6081 70.24221 205.873 71.4917 51.0659 217.936 72.20121 55.1272 216.31 72.33702 46.3673 219.869 72.25891 50.9507 218.214 71.3941 59.1706 213.656 72.1402 62.3498 211.868 72.1622 58.911 214.191 71.3702 65.78231 208.575 72.14151 68.2996 206.698 72.1337 65.47071 209.364 71.4078 71.1553 202.861 72.195 73.1772 200.955 72.1622 70.86071 203.889 69.885 51.2922 217.339 70.6408 55.5259 215.482 70.7835 46.3673 219.552 70.7004 51.1797 217.644 69.7887 59.6774 212.533 70.5848 62.9354 210.523 70.6029 59.4261 213.103 69.7769 66.3846 206.935 70.6009 68.91201 204.853 70.5846 66.08702 207.765 69.8357 71.7154 200.735 70.6775 73.6997 198.657 70.6323 71.4402 201.81 69.9514 75.8518 194.248 70.8001 77.3894 192.348 71.4952 75.4276 196.795 70.7333 75.6459 195.535 + + + + + + + + + + -0.3200823 0.2341105 0.9180086 -0.1970908 0.1743237 0.9647624 -0.1839708 0.1409385 0.9727749 -0.3191384 0.2021891 0.925889 -0.1928505 0.1104183 0.9749956 -0.3385232 0.1657823 0.9262388 -0.01931869 0.1250069 0.9919679 -0.01626652 0.1050458 0.9943343 -0.04861694 0.157906 0.9862566 -0.4823564 0.3377563 0.8082407 -0.4125261 0.2884051 0.8640861 -0.4194208 0.2572436 0.8705814 -0.4930169 0.3072429 0.8139632 -0.4460937 0.2169583 0.8682911 -0.5244136 0.2639312 0.8095251 -0.5737673 0.4246488 0.7003318 -0.5343977 0.3831427 0.7534062 -0.5477577 0.3528624 0.758584 -0.5881001 0.3950372 0.7057506 -0.5814244 0.3073605 0.7533095 -0.6228029 0.347887 0.7007791 -0.6237457 0.4970006 0.6032675 -0.6030846 0.4629416 0.6495954 -0.6168909 0.4348419 0.6560169 -0.6373948 0.4717363 0.609256 -0.6517384 0.3868314 0.6523793 -0.6723176 0.4235824 0.6070972 -0.635874 0.5770018 0.5125752 -0.6460865 0.5360961 0.5432986 -0.6491413 0.507197 0.5668923 -0.6541571 0.5446833 0.5247845 -0.6833253 0.4599552 0.5670166 -0.6837571 0.499664 0.5318009 -0.6461271 0.6197888 0.4454007 -0.6853099 0.5630192 0.4619089 -0.6357413 0.6691597 0.3847836 -0.6879029 0.602327 0.4049593 -0.6143844 0.715861 0.3317754 -0.6547532 0.6666556 0.3561865 -0.5845018 0.7593762 0.2858419 -0.6087638 0.7295583 0.3116912 -0.5469738 0.8001651 0.2460802 -0.5524865 0.7883073 0.2707956 -0.5045217 0.8373394 0.2105251 -0.4892209 0.8406175 0.2324333 -0.4582185 0.8707801 0.1782639 -0.4210402 0.8856005 0.1960541 -0.409996 0.8998304 0.1490256 -0.3514292 0.9221087 0.1619046 -0.362347 0.9239497 0.1225625 -0.2844728 0.9497687 0.1304406 -0.3180106 0.942923 0.09882134 -0.2243167 0.9691705 0.1019344 -0.2797964 0.9569174 0.0776093 -0.1748735 0.9816113 0.07654148 -0.2487044 0.9668312 0.05817037 -0.1364493 0.9891432 0.05456751 -0.2311217 0.9720968 0.0401327 -0.1135908 0.9928671 0.03622573 -0.126655 0.9915105 0.02942055 -0.08414036 0.9960427 0.02862662 -0.3227696 0.2896259 0.9010753 -0.218976 0.2308786 0.9480214 -0.209269 0.2039892 0.9563446 -0.3220984 0.2627998 0.9094992 -0.07437598 0.1869318 0.9795534 -0.09586113 0.2126891 0.9724064 -0.4639552 0.3933945 0.7937168 -0.4025463 0.3437666 0.8483991 -0.4073384 0.3169409 0.8565186 -0.4733272 0.3660511 0.801229 -0.5483348 0.4793008 0.6852735 -0.5116564 0.4384405 0.7389032 -0.523131 0.4111252 0.746532 -0.5609517 0.4523322 0.6933461 -0.5838955 0.5648209 0.5831325 -0.5763498 0.5162581 0.6334812 -0.5896042 0.4898973 0.6421586 -0.6249795 0.5137662 0.5877457 -0.6121868 0.6168563 0.4946875 -0.6347637 0.6476427 0.4214667 -0.6362386 0.6831164 0.3585423 -0.6295177 0.7143303 0.3056794 -0.6166348 0.7425864 0.2613946 -0.5976847 0.7697204 0.2242843 -0.5751387 0.7951838 0.1920893 -0.5494095 0.8193838 0.1635837 -0.5218433 0.8418039 0.1380066 -0.4940769 0.8618038 0.1148136 -0.4681934 0.8786448 0.09369361 -0.4467734 0.891563 0.07422316 -0.4318778 0.9001957 0.05594176 -0.4284269 0.9027849 0.03781312 -0.3788971 0.9249485 0.03012251 -0.3256089 0.3355581 0.8839569 -0.2371331 0.2760145 0.9314419 -0.2292582 0.2543142 0.9395557 -0.3244229 0.3134053 0.8924835 -0.1139876 0.2355438 0.9651559 -0.1290665 0.2566376 0.9578512 -0.4495125 0.4412114 0.7767053 -0.3952829 0.3906745 0.8313393 -0.3991031 0.3678206 0.8398957 -0.4568971 0.4177719 0.78531 -0.5253269 0.5280736 0.6672106 -0.4916917 0.4872054 0.7217134 -0.5017363 0.463221 0.730539 -0.5371409 0.5039053 0.6764312 -0.5591821 0.610028 0.5614101 -0.5519802 0.564005 0.6141794 -0.564588 0.5402331 0.6240102 -0.585295 0.575773 0.5708899 -0.5909767 0.6550368 0.470822 -0.6199403 0.6769505 0.396752 -0.6302537 0.7011196 0.3334842 -0.6342512 0.7201018 0.2813875 -0.6333924 0.736089 0.23872 -0.6274825 0.7514835 0.2038097 -0.6184459 0.766282 0.1741744 -0.6065418 0.7810819 0.1483851 -0.5928457 0.7954967 0.125375 -0.5786698 0.8088437 0.1044663 -0.565672 0.820232 0.08505678 -0.5559784 0.8285198 0.06665515 -0.5524508 0.8321248 0.04864686 -0.5585929 0.8289015 0.02993929 -0.5455294 0.8377501 0.02392697 -0.3281435 0.3747465 0.8671143 -0.2499221 0.3140736 0.9159132 -0.2438179 0.2958226 0.9236027 -0.3270745 0.3557626 0.8754744 -0.1435936 0.2754677 0.9505254 -0.1553707 0.2927355 0.943486 -0.4364895 0.4837032 0.7586227 -0.3885434 0.431698 0.814046 -0.3918655 0.411764 0.8227344 -0.442982 0.4628804 0.7677948 -0.5036951 0.5722115 0.6471981 -0.4742059 0.5305747 0.7025805 -0.4830619 0.5092476 0.7122629 -0.5144636 0.5505374 0.6574465 -0.5338994 0.6523436 0.5379584 -0.5278027 0.6080993 0.5929922 -0.540102 0.5863083 0.6037654 -0.5604563 0.6200605 0.5490116 -0.5683006 0.6914156 0.4460707 -0.601204 0.7072898 0.3718803 -0.6185721 0.7224914 0.3088282 -0.6310452 0.7316365 0.2578566 -0.6394724 0.7375922 0.2168706 -0.6432191 0.7432605 0.1839382 -0.6440436 0.7488155 0.1564711 -0.6420069 0.7551119 0.13279 -0.6380031 0.7618803 0.1117612 -0.6329413 0.7686609 0.09244316 -0.6285541 0.7742248 0.07413244 -0.6265583 0.7773534 0.05609416 -0.630213 0.7755129 0.03756862 -0.6422777 0.7662774 0.0172739 -0.649671 0.7601215 0.01196366 -0.3299714 0.4081916 0.8511748 -0.2601181 0.3460001 0.9014559 -0.2554447 0.330491 0.9085834 -0.3295765 0.3918051 0.8589925 -0.1654154 0.3083075 0.9367947 -0.1747505 0.3231022 0.93009 -0.4256503 0.5202291 0.7403941 -0.3837251 0.4665863 0.7969018 -0.3866729 0.4494194 0.8052989 -0.4310811 0.502343 0.749547 -0.4846822 0.6106062 0.6262933 -0.4584344 0.5684575 0.6831501 -0.4663097 0.5498115 0.6930097 -0.4944469 0.59156 0.636851 -0.510583 0.6894854 0.5137265 -0.5062482 0.6464828 0.5707653 -0.5171476 0.6275049 0.5820618 -0.5348877 0.6611476 0.5260981 -0.5220003 0.7415554 0.4214395 -0.5812996 0.736032 0.3469119 -0.6038888 0.7445531 0.284533 -0.6232099 0.7459596 0.2348482 -0.6390985 0.7438703 0.1954742 -0.6503 0.7416741 0.1644061 -0.6586098 0.739578 0.138772 -0.6638236 0.7387178 0.1167665 -0.6666931 0.7389627 0.0972343 -0.6681571 0.7398161 0.07898372 -0.6695719 0.740225 0.06116145 -0.6726171 0.7387527 0.0427882 -0.6806956 0.7322117 0.02279764 -0.6963598 0.7176927 -4.5779e-4 -0.7150007 0.6991003 -0.005737543 -0.3311019 0.4389564 0.8352777 -0.2693908 0.3748949 0.887064 -0.264938 0.3607381 0.894246 -0.330314 0.4239178 0.8433187 -0.1831424 0.3373225 0.9234026 -0.1913877 0.3508825 0.9166528 -0.4148197 0.5546291 0.721326 -0.3787776 0.4991465 0.7793461 -0.3807592 0.4833042 0.7883145 -0.4203447 0.5376615 0.7309108 -0.4656087 0.6470178 0.6038019 -0.4432071 0.6040154 0.6623691 -0.4508059 0.5864658 0.672928 -0.4749743 0.629128 0.6153028 -0.5003986 0.7119907 0.4926161 -0.4839419 0.6832014 0.5468419 -0.4952409 0.6650517 0.5589658 -0.5105602 0.6964238 0.5043037 -0.5286836 0.7197336 0.4499747 -0.5143463 0.7625314 0.3924206 -0.5453107 0.7758196 0.317396 -0.5844731 0.7689923 0.2589249 -0.6096255 0.7642064 0.210584 -0.632055 0.7553836 0.1729224 -0.6497666 0.7464533 0.1435651 -0.6643717 0.7377703 0.1196046 -0.6756364 0.7305406 0.09912669 -0.6839309 0.7250706 0.08069223 -0.6902906 0.7207796 0.0630533 -0.6959201 0.7167034 0.04507625 -0.7023459 0.7113796 0.02548378 -0.7131968 0.7009587 0.002685666 -0.7309355 0.6819522 -0.02597182 -0.756031 0.6537599 -0.03186243 -0.3205745 0.4753378 0.8193205 -0.2668871 0.4048932 0.8745473 -0.272418 0.3886672 0.8801854 -0.3312526 0.4536336 0.8273382 -0.1984344 0.3638474 0.9100763 -0.1974002 0.3716055 0.9071618 -0.3888762 0.6001304 0.6990128 -0.3601884 0.5407404 0.7601739 -0.3764175 0.5146061 0.7703833 -0.4100794 0.5707908 0.7113598 -0.4246454 0.6981287 0.5764483 -0.4088668 0.6530821 0.6374258 -0.4356353 0.6210718 0.6515303 -0.4559822 0.6644564 0.5920962 -0.4522944 0.7631019 0.4616333 -0.4383207 0.735031 0.5173051 -0.4726526 0.700754 0.5343627 -0.487978 0.7294185 0.479402 -0.4592814 0.8140046 0.3556082 -0.4642603 0.7845304 0.4110651 -0.5009455 0.751632 0.4290723 -0.5166925 0.7669511 0.3805457 -0.4927605 0.8221526 0.2850479 -0.5287435 0.8175153 0.2282524 -0.5643925 0.8049757 0.1829628 -0.5971783 0.7882924 0.148234 -0.6237162 0.7721605 0.1214349 -0.6457257 0.7570599 0.09949266 -0.6630635 0.7442145 0.08057105 -0.6763319 0.7338908 0.06308281 -0.6865022 0.7256891 0.04571795 -0.6949214 0.7185738 0.02713149 -0.7032234 0.7109448 0.005859673 -0.7155256 0.6983127 -0.01956284 -0.7336804 0.6775251 -0.05169939 -0.7642366 0.6424947 -0.05606412 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 92.5784 16.1015 171.121 92.5784 20.9621 172.869 92.5784 26.0571 173.929 92.5784 31.2746 174.274 92.5784 33.8943 174.17 92.5784 36.5027 173.877 92.5784 39.0859 173.394 92.5784 41.6307 172.725 92.5784 46.5536 170.852 92.5784 51.1674 168.309 92.5784 53.326 166.801 92.5784 55.3684 165.143 92.5784 57.2827 163.343 92.5784 59.0611 161.41 92.5784 62.1835 157.195 92.5784 64.6818 152.588 92.5784 65.6802 150.166 92.5784 66.5023 147.68 92.5784 67.1426 145.143 92.5784 67.6 142.566 92.5784 67.9655 137.347 92.5784 67.5981 132.129 92.5784 67.1393 129.553 92.5784 66.4971 127.017 92.5784 65.6726 124.532 92.5784 64.6717 122.112 92.5784 62.17 117.509 92.5784 59.0497 113.299 92.5784 57.2757 111.369 92.5784 55.3688 109.572 92.5784 53.3369 107.917 92.5784 51.1912 106.412 92.5784 46.6054 103.874 92.5784 41.7062 102.004 92.5784 39.1686 101.335 92.5784 36.5881 100.85 92.5784 33.9772 100.555 92.5784 31.3503 100.448 92.5784 26.1093 100.786 92.5784 20.9861 101.842 92.5784 18.5064 102.632 92.5784 16.1015 103.594 90.8398 16.1015 175.192 90.8398 21.4082 176.872 90.8398 26.9326 177.818 90.8398 32.5622 178.005 90.8398 35.3813 177.806 90.8398 38.1846 177.407 90.8398 40.9579 176.807 90.8398 43.6873 176.011 90.8398 48.9595 173.859 90.8398 53.8905 171.004 90.8398 56.1934 169.329 90.8398 58.3694 167.499 90.8398 60.406 165.521 90.8398 62.2953 163.407 90.8398 65.6062 158.814 90.8398 68.24961 153.815 90.8398 69.30471 151.193 90.8398 70.17321 148.505 90.8398 70.8498 145.762 90.8398 71.3332 142.98 90.8398 71.71981 137.347 90.8398 71.33171 131.714 90.8398 70.8468 128.932 90.8398 70.1678 126.191 90.8398 69.2958 123.504 90.8398 68.2369 120.883 90.8398 65.5878 115.888 90.8398 62.2792 111.301 90.8398 60.3961 109.19 90.8398 58.3701 107.216 90.8398 56.2096 105.391 90.8398 53.9257 103.721 90.8398 49.0365 100.874 90.8398 43.7996 98.72721 90.8398 41.0811 97.9318 90.8398 38.312 97.3304 90.8398 35.5051 96.928 90.8398 32.6755 96.7236 90.8398 27.0111 96.8994 90.8398 21.4445 97.8388 90.8398 18.7372 98.58901 90.8398 16.1015 99.5231 + + + + + + + + + + 0.910517 -0.09543424 0.4023073 0.912624 -0.1233902 0.3897337 0.9079738 -0.1330938 0.3973282 0.9044173 -0.1193926 0.4096033 0.910175 -0.0400412 0.4122843 0.9047786 -0.06070309 0.4215342 0.9088486 0.008545219 0.4170388 0.9043461 -0.00827068 0.42672 0.9091646 0.04449683 0.4140529 0.9057095 0.03122079 0.4227479 0.9090669 0.07385575 0.4100521 0.9058206 0.0618326 0.4191251 0.908914 0.1028487 0.4041008 0.9058985 0.09213715 0.4133507 0.9094148 0.1379168 0.3923565 0.9064412 0.1282403 0.4023914 0.9087544 0.1848272 0.3741714 0.9056863 0.1763091 0.3855484 0.9079353 0.2289828 0.3510276 0.9054476 0.2227911 0.3612878 0.908213 0.2581291 0.3294214 0.9063928 0.2537985 0.3376961 0.9082535 0.2808078 0.3101978 0.9066155 0.2773011 0.3180449 0.9082717 0.3020451 0.2895019 0.906814 0.2993618 0.2967677 0.9086775 0.3257615 0.2611219 0.907283 0.3239642 0.2681136 0.9083484 0.3555508 0.2201973 0.9069907 0.3546599 0.2271215 0.9078373 0.3804146 0.1763976 0.9068657 0.380203 0.1817699 0.9078555 0.3942168 0.1427994 0.907222 0.3943422 0.1464325 0.9077524 0.4034896 0.1148118 0.907263 0.4037638 0.1176805 0.907651 0.4107624 0.08627867 0.9073021 0.4110922 0.08835273 0.9076196 0.4167439 0.05050975 0.9074166 0.4170704 0.05145472 0.9074926 0.4200682 9.1558e-5 0.9074485 0.4171016 -0.0506308 0.9076505 0.4165609 -0.05145585 0.9073599 0.4113348 -0.08661288 0.907665 0.4102972 -0.08832192 0.9073225 0.4042819 -0.1154219 0.9077102 0.4027655 -0.1176525 0.9072703 0.3952522 -0.1436532 0.9077402 0.3931822 -0.1463407 0.9069891 0.3820652 -0.1771923 0.9076392 0.3788341 -0.1807648 0.90711 0.3577412 -0.2217495 0.9080298 0.3529514 -0.2256264 0.9073917 0.3276217 -0.2632572 0.9083517 0.3220722 -0.2667709 0.9071264 0.3041558 -0.2908799 0.9079883 0.2980848 -0.294453 0.9070814 0.2829709 -0.3116585 0.9079889 0.2760804 -0.315176 0.9070092 0.2603924 -0.3309535 0.9079794 0.2527303 -0.3342167 0.9064761 0.2320666 -0.3527694 0.9076444 0.2225468 -0.3558857 0.906806 0.1871414 -0.3777316 0.9083135 0.1756381 -0.3796287 0.9073539 0.1385858 -0.3968662 0.90877 0.1267767 -0.3975735 0.9069402 0.103979 -0.4082253 0.9081069 0.09201622 -0.4085031 0.9068709 0.0747714 -0.4147222 0.9080327 0.0621367 -0.4142653 0.9067798 0.04516804 -0.4191781 0.9079838 0.03201484 -0.4177806 0.906048 0.01010173 -0.4230543 0.9075007 -0.004425168 -0.4200273 0.9066064 -0.0410484 -0.4199761 0.9084889 -0.05642956 -0.4140815 0.9075201 -0.09198498 -0.4098123 0.9091325 -0.1068167 -0.4025771 0.9070551 -0.1265622 -0.4015384 0.9082249 -0.1413655 -0.3938825 0.9071919 -0.1455474 -0.3947391 0.9085025 -0.1551913 -0.3879935 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

43 0 0 42 1 1 0 2 2 43 0 3 0 2 4 1 3 5 44 4 6 43 0 7 1 3 8 44 4 9 1 3 10 2 5 11 45 6 12 44 4 13 2 5 14 45 6 15 2 5 16 3 7 17 46 8 18 45 6 19 3 7 20 46 8 21 3 7 22 4 9 23 47 10 24 46 8 25 4 9 26 47 10 27 4 9 28 5 11 29 48 12 30 47 10 31 5 11 32 48 12 33 5 11 34 6 13 35 49 14 36 48 12 37 6 13 38 49 14 39 6 13 40 7 15 41 50 16 42 49 14 43 7 15 44 50 16 45 7 15 46 8 17 47 51 18 48 50 16 49 8 17 50 51 18 51 8 17 52 9 19 53 52 20 54 51 18 55 9 19 56 52 20 57 9 19 58 10 21 59 53 22 60 52 20 61 10 21 62 53 22 63 10 21 64 11 23 65 54 24 66 53 22 67 11 23 68 54 24 69 11 23 70 12 25 71 55 26 72 54 24 73 12 25 74 55 26 75 12 25 76 13 27 77 56 28 78 55 26 79 13 27 80 56 28 81 13 27 82 14 29 83 57 30 84 56 28 85 14 29 86 57 30 87 14 29 88 15 31 89 58 32 90 57 30 91 15 31 92 58 32 93 15 31 94 16 33 95 59 34 96 58 32 97 16 33 98 59 34 99 16 33 100 17 35 101 60 36 102 59 34 103 17 35 104 60 36 105 17 35 106 18 37 107 61 38 108 60 36 109 18 37 110 61 38 111 18 37 112 19 39 113 62 40 114 61 38 115 19 39 116 62 40 117 19 39 118 20 40 119 63 41 120 62 40 121 20 40 122 63 41 123 20 40 124 21 42 125 64 43 126 63 41 127 21 42 128 64 43 129 21 42 130 22 44 131 65 45 132 64 43 133 22 44 134 65 45 135 22 44 136 23 46 137 66 47 138 65 45 139 23 46 140 66 47 141 23 46 142 24 48 143 67 49 144 66 47 145 24 48 146 67 49 147 24 48 148 25 50 149 68 51 150 67 49 151 25 50 152 68 51 153 25 50 154 26 52 155 69 53 156 68 51 157 26 52 158 69 53 159 26 52 160 27 54 161 70 55 162 69 53 163 27 54 164 70 55 165 27 54 166 28 56 167 71 57 168 70 55 169 28 56 170 71 57 171 28 56 172 29 58 173 72 59 174 71 57 175 29 58 176 72 59 177 29 58 178 30 60 179 73 61 180 72 59 181 30 60 182 73 61 183 30 60 184 31 62 185 74 63 186 73 61 187 31 62 188 74 63 189 31 62 190 32 64 191 75 65 192 74 63 193 32 64 194 75 65 195 32 64 196 33 66 197 76 67 198 75 65 199 33 66 200 76 67 201 33 66 202 34 68 203 77 69 204 76 67 205 34 68 206 77 69 207 34 68 208 35 70 209 78 71 210 77 69 211 35 70 212 78 71 213 35 70 214 36 72 215 79 73 216 78 71 217 36 72 218 79 73 219 36 72 220 37 74 221 80 75 222 79 73 223 37 74 224 80 75 225 37 74 226 38 76 227 81 77 228 80 75 229 38 76 230 81 77 231 38 76 232 39 78 233 82 79 234 81 77 235 39 78 236 82 79 237 39 78 238 40 80 239 83 81 240 82 79 241 40 80 242 83 81 243 40 80 244 41 82 245

+
+
+
+ + + + 73.6241 142.507 14.1685 73.6241 140.273 23.9329 73.6241 137.767 33.5546 73.6241 134.989 43.0335 73.6241 131.94 52.3695 73.6241 128.618 61.5628 73.6241 125.025 70.6133 73.6241 121.159 79.52111 73.6241 117.022 88.28601 73.6241 108.941 104.316 73.6241 101.79 117.63 73.6241 95.56771 128.23 72.5439 142.72 14.2953 72.5067 140.81 22.8954 72.4694 138.638 31.4478 72.4322 136.205 39.9526 72.39501 133.511 48.4097 72.35781 130.555 56.8191 72.32061 127.337 65.1808 72.2834 123.858 73.49491 72.2461 120.118 81.7613 72.1717 112.609 97.3472 72.0973 105.567 111.135 72.0228 98.9915 123.123 71.94841 92.8833 133.314 71.4285 142.777 14.3294 71.38021 141.154 21.7539 71.3319 139.28 29.2259 71.2836 137.155 36.7454 71.2353 134.779 44.3123 71.18711 132.152 51.9266 71.1388 129.273 59.5884 71.0905 126.143 67.2976 71.0422 122.763 75.0543 70.9457 115.752 90.17401 70.8491 108.746 104.412 70.75251 101.744 117.767 70.65602 94.7458 130.241 70.31 142.699 14.283 70.27481 141.326 20.52 70.2396 139.711 26.8996 70.2044 137.856 33.4218 70.1692 135.759 40.0865 70.13401 133.423 46.8938 70.0988 130.845 53.8436 70.0636 128.027 60.936 70.0284 124.968 68.17102 69.958 118.38 82.8007 69.88761 111.333 97.4646 69.8172 103.827 112.163 69.74681 95.86341 126.896 69.2208 142.507 14.1685 69.2208 141.343 19.2052 69.2208 139.948 24.4797 69.2208 138.323 29.9918 69.2208 136.468 35.7416 69.2208 134.382 41.7291 69.2208 132.066 47.9543 69.2208 129.52 54.4171 69.2208 126.743 61.1177 69.2208 120.498 75.2318 69.2208 113.332 90.2966 69.2208 105.245 106.312 69.2208 95.2765 125.046 69.38581 96.17591 124.763 69.5141 95.1543 127.343 69.8003 94.4134 129.685 70.2247 93.8241 131.494 70.7644 93.2409 132.876 71.3966 92.6195 133.918 72.0925 91.943 134.72 72.8313 91.1851 135.404 73.6241 90.27571 136.115 73.05661 91.1748 135.265 + + + + + + + + + + 0.1518951 0.9611482 0.2304826 0.2372565 0.9427394 0.2344183 0.2164434 0.9527846 0.2129642 0.1384642 0.966991 0.2139068 0.1373355 0.955886 0.2596557 0.2248657 0.9374899 0.2656089 0.1000111 0.9521045 0.2889549 0.1913244 0.9356552 0.2965543 0.04797637 0.9469542 0.3177674 0.1437151 0.9338889 0.3274105 -0.01098686 0.9383741 0.3454469 0.09006261 0.9295589 0.3575038 -0.06964445 0.9258872 0.3713254 0.036623 0.9216793 0.3862202 -0.121343 0.910378 0.3955856 -0.008758842 0.9104069 0.4136216 -0.1570521 0.8953132 0.4168322 -0.02215659 0.9005781 0.4341294 -0.08539241 0.8921955 0.4435036 0.07294076 0.8876191 0.454766 -0.03354066 0.8831979 0.4677997 0.1307131 0.8681144 0.4788439 0.02963435 0.8673618 0.4967951 0.2044476 0.8375059 0.5067396 -0.02200418 0.9728861 0.2302356 -0.01055973 0.9767491 0.2141254 -0.06625634 0.9637542 0.2584335 -0.1319046 0.9497314 0.2839214 -0.2076539 0.9291937 0.3057433 -0.283646 0.9025157 0.3240535 -0.352253 0.8723009 0.3391298 -0.4085052 0.8420059 0.3523491 -0.4538829 0.8134307 0.3637594 -0.4348073 0.8123911 0.3885402 -0.4287282 0.8055745 0.4089521 -0.4069132 0.8031141 0.435235 -0.2537681 0.8439202 0.4726527 0.2088432 0.8344881 0.5099158 -0.189064 0.9550252 0.2284333 -0.1393827 0.9661572 0.217055 -0.2736938 0.9285082 0.2509267 -0.3707476 0.8896965 0.2664328 -0.4660281 0.8408649 0.2752526 -0.549957 0.7872442 0.2789155 -0.6184184 0.7344539 0.2795289 -0.6706984 0.687179 0.2791932 -0.715194 0.6412453 0.2780327 -0.742865 0.6071772 0.2819353 -0.7760714 0.5658251 0.2784872 -0.7939547 0.5400357 0.2792804 -0.7504355 0.5822445 0.3127908 -0.2504696 0.9435567 0.2167156 -0.1917838 0.9562333 0.2209908 -0.3401388 0.9105467 0.2349689 -0.4452159 0.8606755 0.2470234 -0.5483357 0.7974931 0.2516601 -0.6379389 0.7284888 0.249676 -0.7091553 0.6614836 0.2440049 -0.7619159 0.6027269 0.2370744 -0.800589 0.5530754 0.2305752 -0.8389085 0.4974305 0.2208971 -0.8829938 0.4243143 0.200697 -0.9149144 0.360985 0.1806145 0.3857047 0.7653361 0.5152598 0.4160095 0.7494642 0.5150144 0.3574687 0.7763112 0.5191888 0.3290624 0.8001934 0.5014066 -0.003234982 0.8683006 0.4960278 0.150735 0.8441038 0.514556 -0.9325941 0.3191353 0.1685859 -0.3828963 0.8004932 0.461087 -0.6402109 0.6764988 0.3639774 -0.8690642 0.43441 0.2366762 -0.9702357 0.2137869 0.113745 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 73.6241 90.27571 136.115 74.9517 90.6127 132.467 75.6576 90.90702 130.003 76.1183 91.17121 128.067 76.4686 91.4311 126.327 76.72911 91.6747 124.803 76.9426 91.9233 123.332 77.1279 92.1961 121.796 77.2587 92.44181 120.469 77.3557 92.67401 119.258 77.4307 92.9081 118.073 77.4845 93.1361 116.951 77.5224 93.37271 115.814 73.6241 90.27571 136.115 75.03 90.5718 132.461 75.7891 90.8472 129.808 76.292 91.1008 127.632 76.6803 91.35411 125.613 76.9741 91.59391 123.803 77.2199 91.8407 122.016 77.43901 92.1132 120.115 77.59901 92.36 118.445 77.7227 92.5943 116.899 77.82402 92.8313 115.367 77.9027 93.0627 113.898 77.9658 93.30371 112.394 73.6241 90.27571 136.115 75.1024 90.5335 132.494 75.9111 90.7918 129.672 76.4533 91.0362 127.269 76.8772 91.2843 124.982 77.2024 91.5216 122.89 77.4786 91.7677 120.794 77.7296 92.0413 118.532 77.9173 92.2903 116.521 78.0663 92.52761 114.641 78.1924 92.7686 112.762 78.2947 93.0045 110.948 78.3819 93.2508 109.077 73.6241 90.27571 136.115 75.1711 90.4966 132.573 76.0273 90.7391 129.598 76.6073 90.9757 126.974 77.0656 91.2199 124.418 77.42121 91.456 122.04 77.72702 91.7028 119.627 78.00901 91.9789 116.993 78.2237 92.2316 114.629 78.3976 92.4733 112.403 78.54801 92.7195 110.163 78.6735 92.96131 107.989 78.78421 93.2143 105.735 73.6241 90.27571 136.115 75.235 90.46131 132.712 76.136 90.68991 129.605 76.75201 90.92041 126.764 77.2432 91.1623 123.938 77.6279 91.39891 121.27 77.9621 91.6481 118.531 78.2742 91.92871 115.511 78.5151 92.1868 112.78 78.71302 92.4345 110.191 78.8872 92.6876 107.575 79.0352 92.9369 105.021 79.16901 93.19831 102.365 73.6241 90.27571 136.115 75.2922 90.4285 132.926 76.2341 90.6456 129.713 76.8832 90.8722 126.667 77.4049 91.1142 123.573 77.81681 91.3534 120.61 78.17781 91.6072 117.537 78.51821 91.8946 114.119 78.7838 92.1602 111.006 79.0046 92.4161 108.039 79.2014 92.6783 105.026 79.3711 92.93711 102.075 79.527 93.2091 98.9944 75.3402 90.3994 133.235 76.3173 90.6081 129.955 76.9956 90.8338 126.719 77.5445 91.0787 123.361 77.98091 91.32331 120.101 78.3661 91.58451 116.684 78.7325 91.8819 112.854 79.02101 92.1579 109.342 79.2629 92.4246 105.979 79.4808 92.6986 102.55 79.6707 92.9696 99.1785 79.8473 93.2549 95.64791 74.3604 90.4032 134.363 74.9918 90.5918 132.459 74.32201 90.4254 134.322 73.6241 90.27571 136.115 74.3417 90.4141 134.34 74.3958 90.3823 134.425 75.0672 90.5522 132.472 73.6241 90.27571 136.115 74.3786 90.3925 134.392 74.4293 90.36201 134.514 75.1379 90.51451 132.528 73.6241 90.27571 136.115 74.4131 90.37191 134.466 74.4603 90.3423 134.636 75.2044 90.4783 132.636 73.6241 90.27571 136.115 74.44551 90.3518 134.571 74.4879 90.3237 134.8 75.2653 90.4442 132.811 73.6241 90.27571 136.115 74.4749 90.33261 134.714 75.7753 90.5254 131.434 76.1877 90.6665 129.646 75.6981 90.5648 131.249 75.7389 90.5442 131.331 74.51081 90.30661 135.018 75.3182 90.4131 133.071 73.6241 90.27571 136.115 74.5003 90.3147 134.904 75.8404 90.4911 131.735 76.2789 90.6254 129.818 75.8105 90.50711 131.572 74.0634 90.29261 135.527 74.4816 90.32801 134.756 74.0571 90.2973 135.477 73.6241 90.27571 136.115 74.0604 90.2949 135.502 74.9326 90.3453 134.213 75.3297 90.40602 133.15 74.91661 90.3565 134.065 74.5058 90.3106 134.96 74.92501 90.3507 134.137 74.06951 90.28781 135.588 74.4944 90.3191 134.851 73.6241 90.27571 136.115 74.0666 90.2901 135.557 74.0746 90.2834 135.652 73.6241 90.27571 136.115 74.0722 90.2856 135.619 + + + + + + + + + + 0.4232062 0.8790372 0.2195228 0.4654783 0.8532242 0.2352417 0.322678 0.9251853 0.1997777 0.2885895 0.9391975 0.1860755 0.4862374 0.8385245 0.2458655 0.3399538 0.9175609 0.2061879 0.3371786 0.9181158 0.2082645 0.3032685 0.9326338 0.1955054 0.6448469 0.7246859 0.2429048 0.702452 0.6587795 0.2693898 0.7879415 0.5689672 0.2354241 0.845744 0.4656902 0.2604801 0.8625076 0.4593468 0.2123231 0.9098159 0.3445343 0.2313681 0.8947607 0.4045315 0.1890967 0.9336882 0.2943011 0.2039934 0.9093093 0.380387 0.1687082 0.9445282 0.2740288 0.1810379 0.9156862 0.372421 0.151068 0.9477461 0.275284 0.1612334 0.9138042 0.3820996 0.1377024 0.9438869 0.2961243 0.1462463 0.9092064 0.3964177 0.1272663 0.9382575 0.3185918 0.1348041 0.9031339 0.4126545 0.1185989 0.9311766 0.3423663 0.125282 0.8955208 0.4308681 0.1113335 0.9233121 0.3656747 0.1173748 0.8982829 0.4263891 0.1062081 0.9156639 0.386341 0.1109063 0.3411468 0.9207119 0.1894955 0.3844473 0.9001261 0.2048738 0.2578285 0.9505293 0.1732591 0.2292576 0.95994 0.161109 0.2673786 0.9464612 0.1808872 0.2404605 0.9556468 0.1700528 0.5543137 0.8039273 0.2154935 0.7133646 0.6666392 0.2161091 0.8091287 0.5528273 0.1992302 0.8554881 0.4858682 0.1790876 0.87846 0.4500643 0.1604691 0.8906449 0.4312989 0.14399 0.8916155 0.4333407 0.1312931 0.8887552 0.4420123 0.1214061 0.8843463 0.4529005 0.1131946 0.8778295 0.4670079 0.1063906 0.8832374 0.4577941 0.1015692 0.2604787 0.9522201 0.1594612 0.3037921 0.9365854 0.1746941 0.197182 0.9692775 0.1470396 0.1704174 0.9761162 0.1347409 0.2093286 0.9652801 0.1562564 0.1763984 0.9741283 0.1412713 0.450592 0.8740215 0.1818055 0.6196873 0.7605932 0.1936122 0.7398713 0.646941 0.1845481 0.8049731 0.5688464 0.1686183 0.8410079 0.5191562 0.1522585 0.8620948 0.4878429 0.1371209 0.8678401 0.4807973 0.1252502 0.8680738 0.4827142 0.11591 0.8657006 0.4887305 0.1081897 0.8610175 0.4982926 0.1017522 0.8694452 0.4843782 0.0971747 0.1790271 0.975402 0.128609 0.2195844 0.9648591 0.1443245 0.1437435 0.982034 0.1222583 0.116765 0.9871923 0.108708 0.1557082 0.9790512 0.1312014 0.1256466 0.9853664 0.1151786 0.2443945 0.9591448 0.1425228 0.353048 0.9223867 0.1567169 0.5003902 0.8498637 0.1653521 0.6447205 0.7459531 0.1670017 0.7363281 0.6581389 0.1570805 0.7923623 0.5928297 0.1439271 0.8279176 0.5454344 0.1305904 0.8414608 0.5269353 0.1195111 0.8466534 0.5204986 0.1107223 0.847757 0.5201965 0.1034594 0.8452569 0.5254167 0.0973559 0.8584935 0.504323 0.09299069 0.08078479 0.9926126 0.0905205 0.06830233 0.9941076 0.08417242 0.1020258 0.989922 0.09821087 0.1400817 0.9836238 0.1134082 0.09637928 0.9904361 0.09872925 0.08581805 0.9920046 0.09253215 0.09763109 0.9901971 0.09988951 0.07284921 0.9937951 0.0840497 0.06573843 0.9946525 0.07965517 0.07632815 0.9934562 0.08496505 0.07236057 0.9939435 0.08270651 0.2101525 0.9701016 0.1214038 0.2780576 0.9505413 0.1384031 0.1960261 0.9725313 0.1255263 0.1451805 0.9833642 0.1091677 0.3538452 0.9256314 0.1341645 0.5066249 0.8500006 0.1443271 0.6313216 0.7622493 0.1428607 0.7213826 0.6792661 0.1349254 0.7825055 0.6101346 0.1241815 0.8102887 0.5748015 0.1141729 0.8238067 0.5568851 0.1059324 0.8305569 0.5480687 0.09897464 0.8317236 0.5473102 0.09320724 0.85182 0.5162619 0.08874964 0.03988838 0.9965696 0.07251328 0.047854 0.9959009 0.07675564 0.04019379 0.9966671 0.07098776 0.03552442 0.9970964 0.0673561 0.07025492 0.9938544 0.085545 0.06064212 0.9948727 0.08093756 0.04922759 0.9961495 0.07254433 0.04022395 0.9969323 0.06714171 0.04007095 0.9970741 0.06509619 0.06039714 0.9950423 0.07901376 0.05581969 0.995813 0.07239168 0.04931908 0.9964846 0.0677222 0.06366246 0.9950694 0.07605314 0.05426323 0.9961796 0.06842416 0.04544293 0.9968457 0.06506669 0.04571735 0.9969626 0.06305211 0.051485 0.9964655 0.06637811 0.04761391 0.9968891 0.06281113 0.1070315 0.9897441 0.09461009 0.1435625 0.9842153 0.1034907 0.09354108 0.9912917 0.09268659 0.06949228 0.9939811 0.08469086 0.2692049 0.955447 0.1210369 0.4185052 0.8994215 0.1260734 0.5412177 0.8314195 0.1257978 0.6379442 0.76054 0.1208562 0.7099622 0.6950385 0.1134694 0.749682 0.6532402 0.1060859 0.7721325 0.6276248 0.09949219 0.7849825 0.6123968 0.09366321 0.7910035 0.6053536 0.08865904 0.8233779 0.5605158 0.0887193 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

14 0 0 91 1 1 94 2 2 14 0 3 94 2 4 90 3 5 91 1 6 1 4 7 92 5 8 91 1 9 92 5 10 94 2 11 94 2 12 92 5 13 0 6 14 90 3 15 94 2 16 93 7 17 91 1 18 14 0 19 15 8 20 2 9 21 1 4 22 91 1 23 15 8 24 2 9 25 91 1 26 16 10 27 3 11 28 2 9 29 16 10 30 2 9 31 15 8 32 17 12 33 4 13 34 3 11 35 17 12 36 3 11 37 16 10 38 18 14 39 5 15 40 4 13 41 18 14 42 4 13 43 17 12 44 19 16 45 6 17 46 5 15 47 19 16 48 5 15 49 18 14 50 20 18 51 7 19 52 6 17 53 20 18 54 6 17 55 19 16 56 21 20 57 8 21 58 7 19 59 21 20 60 7 19 61 20 18 62 22 22 63 9 23 64 8 21 65 22 22 66 8 21 67 21 20 68 23 24 69 10 25 70 9 23 71 23 24 72 9 23 73 22 22 74 24 26 75 11 27 76 10 25 77 24 26 78 10 25 79 23 24 80 25 28 81 12 29 82 11 27 83 25 28 84 11 27 85 24 26 86 27 30 87 96 31 88 98 32 89 27 30 90 98 32 91 95 33 92 96 31 93 14 0 94 90 3 95 96 31 96 90 3 97 98 32 98 98 32 99 90 3 100 13 34 101 95 33 102 98 32 103 97 35 104 96 31 105 27 30 106 28 36 107 15 8 108 14 0 109 96 31 110 28 36 111 15 8 112 96 31 113 29 37 114 16 10 115 15 8 116 29 37 117 15 8 118 28 36 119 30 38 120 17 12 121 16 10 122 30 38 123 16 10 124 29 37 125 31 39 126 18 14 127 17 12 128 31 39 129 17 12 130 30 38 131 32 40 132 19 16 133 18 14 134 32 40 135 18 14 136 31 39 137 33 41 138 20 18 139 19 16 140 33 41 141 19 16 142 32 40 143 34 42 144 21 20 145 20 18 146 34 42 147 20 18 148 33 41 149 35 43 150 22 22 151 21 20 152 35 43 153 21 20 154 34 42 155 36 44 156 23 24 157 22 22 158 36 44 159 22 22 160 35 43 161 37 45 162 24 26 163 23 24 164 37 45 165 23 24 166 36 44 167 38 46 168 25 28 169 24 26 170 38 46 171 24 26 172 37 45 173 40 47 174 100 48 175 102 49 176 40 47 177 102 49 178 99 50 179 100 48 180 27 30 181 95 33 182 100 48 183 95 33 184 102 49 185 102 49 186 95 33 187 26 51 188 99 50 189 102 49 190 101 52 191 100 48 192 40 47 193 41 53 194 28 36 195 27 30 196 100 48 197 41 53 198 28 36 199 100 48 200 42 54 201 29 37 202 28 36 203 42 54 204 28 36 205 41 53 206 43 55 207 30 38 208 29 37 209 43 55 210 29 37 211 42 54 212 44 56 213 31 39 214 30 38 215 44 56 216 30 38 217 43 55 218 45 57 219 32 40 220 31 39 221 45 57 222 31 39 223 44 56 224 46 58 225 33 41 226 32 40 227 46 58 228 32 40 229 45 57 230 47 59 231 34 42 232 33 41 233 47 59 234 33 41 235 46 58 236 48 60 237 35 43 238 34 42 239 48 60 240 34 42 241 47 59 242 49 61 243 36 44 244 35 43 245 49 61 246 35 43 247 48 60 248 50 62 249 37 45 250 36 44 251 50 62 252 36 44 253 49 61 254 51 63 255 38 46 256 37 45 257 51 63 258 37 45 259 50 62 260 53 64 261 104 65 262 106 66 263 53 64 264 106 66 265 103 67 266 104 65 267 40 47 268 99 50 269 104 65 270 99 50 271 106 66 272 106 66 273 99 50 274 39 68 275 103 67 276 106 66 277 105 69 278 104 65 279 53 64 280 113 70 281 113 70 282 54 71 283 41 53 284 41 53 285 40 47 286 104 65 287 104 65 288 113 70 289 41 53 290 55 72 291 42 54 292 41 53 293 55 72 294 41 53 295 54 71 296 56 73 297 43 55 298 42 54 299 56 73 300 42 54 301 55 72 302 57 74 303 44 56 304 43 55 305 57 74 306 43 55 307 56 73 308 58 75 309 45 57 310 44 56 311 58 75 312 44 56 313 57 74 314 59 76 315 46 58 316 45 57 317 59 76 318 45 57 319 58 75 320 60 77 321 47 59 322 46 58 323 60 77 324 46 58 325 59 76 326 61 78 327 48 60 328 47 59 329 61 78 330 47 59 331 60 77 332 62 79 333 49 61 334 48 60 335 62 79 336 48 60 337 61 78 338 63 80 339 50 62 340 49 61 341 63 80 342 49 61 343 62 79 344 64 81 345 51 63 346 50 62 347 64 81 348 50 62 349 63 80 350 123 82 351 107 83 352 66 84 353 108 85 354 110 86 355 123 82 356 66 84 357 108 85 358 123 82 359 108 85 360 53 64 361 103 67 362 108 85 363 103 67 364 110 86 365 124 87 366 110 86 367 103 67 368 103 67 369 52 88 370 124 87 371 107 83 372 123 82 373 126 89 374 107 83 375 126 89 376 122 90 377 123 82 378 110 86 379 124 87 380 123 82 381 124 87 382 126 89 383 126 89 384 124 87 385 109 91 386 122 90 387 126 89 388 125 92 389 67 93 390 112 94 391 114 95 392 67 93 393 114 95 394 111 96 395 112 94 396 54 71 397 113 70 398 112 94 399 113 70 400 114 95 401 114 95 402 113 70 403 53 64 404 114 95 405 53 64 406 108 85 407 111 96 408 114 95 409 108 85 410 111 96 411 108 85 412 66 84 413 112 94 414 67 93 415 68 97 416 55 72 417 54 71 418 112 94 419 68 97 420 55 72 421 112 94 422 69 98 423 56 73 424 55 72 425 69 98 426 55 72 427 68 97 428 70 99 429 57 74 430 56 73 431 70 99 432 56 73 433 69 98 434 71 100 435 58 75 436 57 74 437 71 100 438 57 74 439 70 99 440 72 101 441 59 76 442 58 75 443 72 101 444 58 75 445 71 100 446 73 102 447 60 77 448 59 76 449 73 102 450 59 76 451 72 101 452 74 103 453 61 78 454 60 77 455 74 103 456 60 77 457 73 102 458 75 104 459 62 79 460 61 78 461 75 104 462 61 78 463 74 103 464 76 105 465 63 80 466 62 79 467 76 105 468 62 79 469 75 104 470 77 106 471 64 81 472 63 80 473 77 106 474 63 80 475 76 105 476 78 107 477 128 108 478 131 109 479 78 107 480 131 109 481 127 110 482 128 108 483 116 111 484 129 112 485 128 108 486 129 112 487 131 109 488 131 109 489 129 112 490 118 113 491 131 109 492 118 113 493 130 114 494 127 110 495 131 109 496 130 114 497 127 110 498 130 114 499 115 115 500 133 116 501 118 113 502 129 112 503 129 112 504 116 111 505 66 84 506 66 84 507 107 83 508 133 116 509 133 116 510 129 112 511 66 84 512 118 113 513 133 116 514 135 117 515 118 113 516 135 117 517 132 118 518 133 116 519 107 83 520 122 90 521 133 116 522 122 90 523 135 117 524 135 117 525 122 90 526 65 119 527 132 118 528 135 117 529 134 120 530 115 115 531 130 114 532 138 121 533 115 115 534 138 121 535 136 122 536 130 114 537 118 113 538 132 118 539 130 114 540 132 118 541 138 121 542 138 121 543 132 118 544 117 123 545 136 124 546 138 124 547 137 124 548 79 125 549 120 126 550 121 127 551 79 125 552 121 127 553 119 128 554 120 126 555 67 93 556 111 96 557 120 126 558 111 96 559 121 127 560 121 127 561 111 96 562 66 84 563 121 127 564 66 84 565 116 111 566 128 108 567 78 107 568 119 128 569 121 127 570 116 111 571 128 108 572 119 128 573 121 127 574 128 108 575 120 126 576 79 125 577 80 129 578 68 97 579 67 93 580 120 126 581 80 129 582 68 97 583 120 126 584 81 130 585 69 98 586 68 97 587 81 130 588 68 97 589 80 129 590 82 131 591 70 99 592 69 98 593 82 131 594 69 98 595 81 130 596 83 132 597 71 100 598 70 99 599 83 132 600 70 99 601 82 131 602 84 133 603 72 101 604 71 100 605 84 133 606 71 100 607 83 132 608 85 134 609 73 102 610 72 101 611 85 134 612 72 101 613 84 133 614 86 135 615 74 103 616 73 102 617 86 135 618 73 102 619 85 134 620 87 136 621 75 104 622 74 103 623 87 136 624 74 103 625 86 135 626 88 137 627 76 105 628 75 104 629 88 137 630 75 104 631 87 136 632 89 138 633 77 106 634 76 105 635 89 138 636 76 105 637 88 137 638

+
+
+
+ + + + 73.6241 142.507 14.1685 74.7705 142.064 13.9044 75.8135 141.439 13.5324 76.7364 140.678 13.0796 77.5224 139.827 12.573 73.6241 140.273 23.9329 74.7983 140.061 22.5081 75.8499 139.694 20.9585 76.7632 139.213 19.3096 77.5224 138.662 17.5869 73.6241 137.767 33.5546 74.82611 137.797 31.0526 75.8862 137.697 28.4091 76.7899 137.507 25.6479 77.5224 137.265 22.7925 73.6241 134.989 43.0335 74.8539 135.271 39.538 75.9226 135.449 35.8842 76.8166 135.558 32.0942 77.5224 135.637 28.19 73.6241 131.94 52.3695 74.8816 132.484 47.9642 75.9589 132.948 43.3839 76.8434 133.368 38.6488 77.5224 133.776 33.7793 73.6241 128.618 61.5628 74.9094 129.434 56.3314 75.9953 130.196 50.908 76.8701 130.936 45.3115 77.5224 131.684 39.5605 73.6241 125.025 70.6133 74.93721 126.123 64.6393 76.0316 127.192 58.4567 76.8968 128.262 52.0824 77.5224 129.36 45.5334 73.6241 121.159 79.52111 74.96501 122.549 72.8882 76.068 123.937 66.0299 76.9236 125.346 58.9615 77.5224 126.805 51.6982 73.6241 117.022 88.28601 74.9928 118.714 81.07791 76.1043 120.429 73.6276 76.9503 122.189 65.9488 77.5224 124.017 58.0548 73.6241 108.941 104.316 75.0483 111.015 96.47602 76.177 113.163 88.36071 77.0038 115.401 79.9798 77.5224 117.747 71.3435 73.6241 101.79 117.63 75.1039 103.781 110.03 76.24971 105.897 102.12 77.0572 108.15 93.9076 77.5224 110.549 85.3996 73.6241 95.56771 128.23 75.1595 97.0129 121.739 76.32241 98.6336 114.905 77.11071 100.436 107.732 77.5224 102.425 100.223 73.6241 90.27571 136.115 75.21501 90.7101 131.604 76.39511 91.371 126.717 77.1642 92.2586 121.453 77.5224 93.37271 115.814 + + + + + + + + + + 0.4968317 0.842682 0.2074735 0.4830929 0.8530196 0.1974305 0.3950137 0.8950756 0.2068916 0.4293779 0.8752057 0.2228223 0.6295239 0.7543179 0.1862905 0.6230838 0.7620385 0.1762495 0.735875 0.657258 0.1627885 0.7299904 0.6658389 0.1541833 0.7758973 0.6137167 0.1460663 0.768355 0.6234186 0.1448448 0.5390033 0.8115721 0.2254468 0.4862242 0.8393258 0.2431426 0.6622675 0.721719 0.2013049 0.7643831 0.6208515 0.1739593 0.798782 0.5809656 0.1562893 0.5904779 0.7708746 0.2389317 0.5497064 0.7947732 0.2572132 0.7028898 0.6792984 0.2109493 0.7983198 0.5749806 0.1791168 0.8283185 0.5365561 0.1612323 0.6434606 0.7241832 0.2480271 0.6115137 0.7450048 0.2664939 0.7441437 0.6320781 0.2161657 0.8312203 0.526059 0.1798189 0.8584411 0.4869321 0.1611713 0.6923559 0.6754484 0.2537967 0.6660462 0.6944594 0.2722293 0.7814732 0.5845026 0.2183034 0.8597651 0.4787595 0.1777456 0.8849964 0.4379813 0.1579675 0.7343465 0.6281407 0.2572441 0.7117717 0.6459721 0.2758642 0.8129171 0.5398287 0.2185195 0.883009 0.4357821 0.1743251 0.9066206 0.3932341 0.1529905 0.7688109 0.5844135 0.2595969 0.7481166 0.6021738 0.2787621 0.8380791 0.5000214 0.2181795 0.901146 0.3985222 0.1706339 0.9232963 0.3546632 0.1474381 0.7954959 0.546852 0.261035 0.772348 0.5696094 0.2811118 0.8588765 0.4640167 0.2168402 0.9172132 0.3621975 0.1659309 0.936213 0.3214913 0.1419457 0.8088857 0.523621 0.2674413 0.7853215 0.5477901 0.2884375 0.8725618 0.4367234 0.2188805 0.9316056 0.3260086 0.1607153 0.9498538 0.2826092 0.1338273 0.8261181 0.4944989 0.2701845 0.8049643 0.5156459 0.2934995 0.8884773 0.4046246 0.2165343 0.9459224 0.2870362 0.1511327 0.9648995 0.2341138 0.1189949 0.840757 0.465334 0.2767527 0.8182268 0.4864497 0.3063849 0.9007672 0.3764209 0.2166236 0.9563593 0.2547158 0.143167 0.9754784 0.1934598 0.1049548 0.8178277 0.4806191 0.3164859 0.8042721 0.4934341 0.3311637 0.8763671 0.4090832 0.2542273 0.9371846 0.299882 0.1782018 0.981439 0.1663606 0.09540325 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 82.40441 103.447 -187.076 82.35102 105.487 -189.267 82.1496 107.339 -191.248 81.8002 109.003 -193.021 81.30281 110.478 -194.584 80.6574 111.764 -195.938 79.86402 112.862 -197.084 78.9226 113.772 -198.02 77.8332 114.493 -198.747 82.40441 103.447 -187.076 82.4909 102.238 -188.094 82.3752 100.92 -189.038 82.0572 99.49031 -189.908 81.5371 97.95011 -190.706 80.8147 96.2993 -191.43 79.8901 94.53781 -192.081 78.7633 92.66561 -192.659 77.4342 90.6827 -193.163 82.6308 98.9897 -186.92 82.6007 94.5 -186.827 82.3142 89.9776 -186.796 81.7713 85.42221 -186.828 80.9719 80.8341 -186.922 79.9161 76.2131 -187.078 78.6039 71.55931 -187.297 77.0353 66.87271 -187.579 + + + + + + + + + + 0.9985116 0.02465909 -0.0486468 0.9964281 0.007843434 -0.08408093 0.9983929 0.05151575 0.02362155 0.9816368 -0.03015255 -0.188362 0.9744973 -0.04446595 -0.2199493 0.9417152 -0.08106023 -0.3264995 0.9260387 -0.09509724 -0.3652517 0.8815133 -0.1242127 -0.4555279 0.8482152 -0.1401739 -0.5107664 0.8064942 -0.1575999 -0.5698502 0.7435132 -0.1757611 -0.6452103 0.7231523 -0.1807041 -0.6666308 0.618777 -0.1992904 -0.7598673 0.6366569 -0.1941313 -0.7463117 0.4851315 -0.2100934 -0.8488276 0.5870083 -0.1960865 -0.7854753 0.4416092 -0.2118625 -0.8718347 0.9917764 -0.00350964 -0.1279357 0.9626522 -0.05707001 -0.2646583 0.9170296 -0.1012309 -0.3857579 0.8617172 -0.1352012 -0.489044 0.8025018 -0.1595543 -0.5749203 0.7435052 -0.1754845 -0.6452948 0.686846 -0.1844 -0.7030215 0.6677628 -0.1866561 -0.7205917 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 1 1 1 0 2 2 11 3 3 2 4 4 1 1 5 11 3 6 1 1 7 10 0 8 12 5 9 3 6 10 2 4 11 12 5 12 2 4 13 11 3 14 13 7 15 4 8 16 3 6 17 13 7 18 3 6 19 12 5 20 14 9 21 5 10 22 4 8 23 14 9 24 4 8 25 13 7 26 15 11 27 6 12 28 5 10 29 15 11 30 5 10 31 14 9 32 16 13 33 7 14 34 6 12 35 16 13 36 6 12 37 15 11 38 17 15 39 8 16 40 7 14 41 17 15 42 7 14 43 16 13 44 18 17 45 10 0 46 9 2 47 19 18 48 11 3 49 10 0 50 19 18 51 10 0 52 18 17 53 20 19 54 12 5 55 11 3 56 20 19 57 11 3 58 19 18 59 21 20 60 13 7 61 12 5 62 21 20 63 12 5 64 20 19 65 22 21 66 14 9 67 13 7 68 22 21 69 13 7 70 21 20 71 23 22 72 15 11 73 14 9 74 23 22 75 14 9 76 22 21 77 24 23 78 16 13 79 15 11 80 24 23 81 15 11 82 23 22 83 25 24 84 17 15 85 16 13 86 25 24 87 16 13 88 24 23 89

+
+
+
+ + + + 90.8398 31.05 -187.164 90.8398 28.5413 -187.087 90.8398 25.9605 -186.845 90.8398 23.3285 -186.425 90.8398 20.665 -185.816 88.02861 35.529 -202.383 86.5152 27.7605 -212.365 89.4342 33.2895 -194.774 88.02861 35.529 -202.383 86.5152 27.7605 -212.365 87.95861 51.4746 -199.732 86.5152 51.5857 -208.718 87.9936 43.5018 -201.057 90.8398 48.9077 -183.035 90.8398 46.4909 -184.12 90.8398 43.9813 -185.054 90.8398 41.3811 -185.831 90.8398 38.7706 -186.425 90.8398 36.1678 -186.841 90.8398 33.5892 -187.085 90.8398 31.05 -187.164 90.8398 51.2527 -181.793 88.02861 35.529 -202.383 90.12181 47.3753 -187.26 89.4111 43.4458 -192.533 88.7121 39.4889 -197.583 89.4342 33.2895 -194.774 90.12181 47.3753 -187.26 88.02861 35.529 -202.383 90.8398 51.2527 -181.793 90.1195 51.3082 -186.278 89.3992 51.3637 -190.762 88.6789 51.4191 -195.247 87.95861 51.4746 -199.732 88.7121 39.4889 -197.583 89.4111 43.4458 -192.533 87.9936 43.5018 -201.057 + + + + + + + + + + 0.9830543 -0.005622386 -0.1832283 0.9859917 0.009674608 -0.166514 0.9845713 -0.01715159 -0.174141 0.9848372 -0.03433346 -0.17005 0.9856408 0.01690751 -0.1680069 0.9823273 -0.01345902 -0.186687 0.9845352 -0.03903347 -0.1707829 0.9830471 -0.00564599 -0.1832665 0.9860934 0.02795523 -0.163825 0.9839629 0.03344881 -0.1752095 0.985361 0.02822989 -0.1681281 0.9869402 0.03061491 -0.1581514 0.9865348 0.02761989 -0.1612027 0.9768205 0.08395767 -0.1969083 0.9737049 0.1034285 -0.2029811 0.9763132 0.08255475 -0.1999931 0.9803543 0.06213617 -0.187202 0.9782837 0.07046812 -0.1949242 0.9798389 0.05060023 -0.193276 0.9828894 0.04422175 -0.1788098 0.9812353 0.04049819 -0.1885136 0.9820201 0.02310311 -0.1873581 0.9830591 0.01443564 -0.1827194 0.9836452 0.00564593 -0.1800292 0.9836455 0.005584895 -0.1800293 0.9836895 0.03668385 -0.1760948 0.9728218 0.1083728 -0.2046295 0.9866342 0.04002451 -0.1579591 0.9868524 0.03369706 -0.1580729 0.9852346 0.03878086 -0.1667599 0.9854729 0.03206294 -0.1667789 0.9867433 0.03683745 -0.1580535 0.9856318 0.04145705 -0.1637412 0.9869457 0.03061026 -0.1581176 0.9867491 0.03289973 -0.1588833 0.9859396 0.03338754 -0.1637332 0.985895 0.03479868 -0.163708 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

7 0 0 0 0 1 1 0 2 6 1 3 2 2 4 3 3 5 2 2 6 5 4 7 1 5 8 2 2 9 6 1 10 5 4 11 6 1 12 3 3 13 4 6 14 5 4 15 7 7 16 1 5 17 12 8 18 8 9 19 9 10 20 11 11 21 10 11 22 12 11 23 9 10 24 11 12 25 12 8 26 23 13 27 13 14 28 14 15 29 24 16 30 15 17 31 16 18 32 25 19 33 17 20 34 18 21 35 17 20 36 24 16 37 16 18 38 15 17 39 23 13 40 14 15 41 23 13 42 15 17 43 24 16 44 18 21 45 19 22 46 25 19 47 24 16 48 17 20 49 25 19 50 26 23 51 19 22 52 20 24 53 19 22 54 26 23 55 22 25 56 22 25 57 25 19 58 19 22 59 21 26 60 13 14 61 23 13 62 27 27 63 30 27 64 29 27 65 34 28 66 32 28 67 31 28 68 34 29 69 31 29 70 35 29 71 36 30 72 34 30 73 28 30 74 35 31 75 31 31 76 30 31 77 35 32 78 30 32 79 27 32 80 33 33 81 32 34 82 36 35 83 32 36 84 34 36 85 36 36 86

+
+
+
+ + + + 90.8398 51.2527 -181.793 86.5152 51.5857 -208.718 77.0353 66.87271 -187.579 77.0353 66.87271 -203.073 + + + + + + + + + + 0.7951172 0.6019306 -0.07394802 0.7493157 0.662213 0 0.7930635 0.6050672 -0.07031548 0.8218193 0.555845 -0.1250979 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

3 0 0 2 1 1 0 2 2 3 0 3 0 2 4 1 3 5

+
+
+
+ + + + 69.1202 137.65 -126.254 69.1217 142.041 -107.477 69.12641 145.351 -89.0506 69.1343 147.58 -70.97351 69.1453 148.728 -53.2459 69.1594 148.794 -35.8679 69.1767 147.78 -18.8396 69.1972 145.684 -2.16074 69.2208 142.507 14.1685 71.3334 141.256 -108.33 71.2604 144.717 -89.87751 71.21231 147.097 -71.7351 71.1893 148.395 -53.9025 71.1912 148.612 -36.3799 71.2181 147.748 -19.1672 71.2699 145.803 -2.26434 71.3468 142.776 14.3286 73.69902 135.571 -127.909 73.52 140.223 -109.214 73.38951 143.794 -90.7866 73.30741 146.283 -72.62601 73.27381 147.691 -54.7327 73.2887 148.017 -37.1065 73.35202 147.262 -19.7476 73.4638 145.425 -2.65596 73.6241 142.507 14.1685 75.4628 138.905 -110.121 75.2792 142.523 -91.7802 75.16841 145.059 -73.663 75.13031 146.513 -55.7688 75.165 146.886 -38.0976 75.2725 146.177 -20.6496 75.4527 144.386 -3.42463 75.70571 141.514 13.5773 77.5224 132.557 -129.407 77.1729 137.253 -111.051 76.9233 140.866 -92.86911 76.7735 143.398 -74.8608 76.7236 144.847 -57.0263 76.7735 145.215 -39.3657 76.9233 144.501 -21.8789 77.1729 142.705 -4.56603 77.5224 139.827 12.573 69.1202 117.84 -194.88 69.1202 123.119 -177.897 69.1202 128.374 -160.821 69.1202 133.116 -143.99 69.1202 137.65 -126.254 70.5557 116.588 -194.674 71.7713 121.615 -178.657 72.0988 126.315 -163.538 72.1465 130.943 -147.423 71.5443 115.363 -193.936 74.1169 120.002 -179.078 74.8338 124.001 -166.175 74.96421 128.414 -150.923 71.9516 114.101 -192.388 76.1136 118.147 -179.027 77.2837 121.201 -168.848 77.5075 125.257 -154.718 77.5224 132.557 -129.407 73.15261 117.751 -186.156 73.01641 120.808 -178.919 71.318 119.053 -186.671 71.1238 115.958 -194.372 72.3083 118.393 -186.473 74.5514 116.33 -184.936 75.22 119.064 -179.13 71.8498 114.708 -193.254 73.9553 117.023 -185.631 76.88301 119.612 -174.223 76.1661 122.602 -167.575 74.5898 121.95 -172.901 75.8425 120.776 -173.632 73.69902 135.571 -127.909 + + + + + + + + + + 0.2841608 0.9470909 -0.149237 0.3066602 0.930754 -0.1991398 0.2593791 0.9463567 -0.1926955 0.2283096 0.9630144 -0.1431017 0.2587733 0.9610841 -0.09671574 0.1917507 0.9773393 -0.08966469 0.2273358 0.9729752 -0.04046815 0.1477134 0.9884899 -0.03268617 0.1872035 0.9821318 0.019288 0.09299165 0.9952889 0.02743667 0.1360836 0.987285 0.08215671 0.02664303 0.9955909 0.08993947 0.07211577 0.9864573 0.147314 -0.05264544 0.9867436 0.1535111 -6.10377e-4 0.9828292 0.184517 -0.1372737 0.9722689 0.1893388 0.421925 0.8950304 -0.1445685 0.4214703 0.8859726 -0.1934307 0.4197911 0.9026347 -0.0950061 0.4139335 0.9092925 -0.04297119 0.4015704 0.9157563 0.01147514 0.3801189 0.9223874 0.06863808 0.347064 0.9289731 0.1286688 0.289655 0.9427294 0.1654125 0.585544 0.8001865 -0.1297682 0.5680541 0.8036625 -0.1773166 0.6030005 0.7931967 -0.08502674 0.6169221 0.7860004 -0.04013317 0.6245385 0.7809783 0.004974544 0.6242134 0.7795877 0.05099791 0.6141724 0.7829447 0.09894388 0.5749469 0.807593 0.1312621 0.6611961 0.7395386 -0.1261048 0.6249403 0.759194 -0.1818635 0.6852983 0.7233856 -0.08414012 0.7054564 0.7074402 -0.0431239 0.7194007 0.6945886 -0.003051877 0.7257254 0.686996 0.03686761 0.7234484 0.6859713 0.07788395 0.7095108 0.6965707 0.1066952 0.3295497 0.9170809 -0.2244099 0.4806189 0.8517954 -0.2084472 0.5587141 0.8059803 -0.1955361 0.5358914 0.7968634 -0.2789785 0.4144557 0.8650466 -0.2827028 0.4446339 0.8491351 -0.2850797 0.6282032 0.727573 -0.2756782 0.705428 0.6488143 -0.2853269 0.4210686 0.8681697 -0.2626453 0.3749845 0.8896842 -0.260478 0.4129326 0.8771691 -0.2450738 0.377586 0.8958664 -0.2342059 0.5735228 0.7616756 -0.3015328 0.6973353 0.6407526 -0.321185 0.6102957 0.7318238 -0.3032709 0.5065289 0.8122102 -0.289384 0.8087572 0.5082963 -0.2958831 0.8957278 0.3237743 -0.3047 0.5116227 0.8137316 -0.2758319 0.5168822 0.8175016 -0.2540157 0.5391553 0.8093127 -0.2330764 0.7045689 0.6318413 -0.3230469 0.8617582 0.3703451 -0.3467236 0.8044924 0.4859 -0.3416041 0.6545248 0.6873944 -0.3147798 0.9540096 0.04602342 -0.2962224 0.9400007 -0.2174514 -0.262895 0.6384979 0.7291712 -0.2462311 0.6448779 0.7096404 -0.2838012 0.6068481 0.7452843 -0.2762007 0.607415 0.757079 -0.2405794 0.6147143 0.7573907 -0.2201948 0.3341534 0.9112081 -0.2409176 0.4117652 0.880052 -0.2365544 0.5539171 0.8028593 -0.2204376 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 63.1556 20.665 -185.816 76.99771 20.665 -185.816 90.8398 20.665 -185.816 88.6775 24.2128 -199.091 86.5152 27.7605 -212.365 74.83541 27.7605 -212.365 63.1556 27.7605 -212.365 63.1556 24.2128 -199.091 + + + + + + + + + + 0 0.9660905 0.2582039 0 0.9660905 0.2582042 0 0.9660903 0.2582042 0 0.9660936 0.2581921 0 0.9660937 0.258192 0 0.9660935 0.2581925 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

7 0 0 3 0 1 4 0 2 7 1 3 4 1 4 5 1 5 7 2 6 5 2 7 6 2 8 1 3 9 7 3 10 0 3 11 3 4 12 1 4 13 2 4 14 1 5 15 3 5 16 7 5 17

+
+
+
+ + + + 0 54.408 -218.125 0 27.7605 -212.365 63.1556 54.408 -218.125 63.1556 27.7605 -212.365 + + + + + + + + + + 0 -0.2112757 -0.9774265 0 -0.2112758 -0.9774265 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

3 0 0 1 0 1 0 0 2 3 1 3 0 1 4 2 1 5

+
+
+
+ + + + 0 20.665 -185.816 0 27.7605 -212.365 63.1556 20.665 -185.816 63.1556 27.7605 -212.365 + + + + + + + + + + 0 0.966092 0.2581982 0 0.966092 0.258198 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

3 0 0 1 0 1 0 0 2 3 1 3 0 1 4 2 1 5

+
+
+
+ + + + 0 67.8516 -209.303 0 54.408 -218.125 63.1556 67.8516 -209.303 63.1556 54.408 -218.125 + + + + + + + + + + 0 0.548641 -0.8360581 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

3 0 0 1 0 1 0 0 2 3 0 3 0 0 4 2 0 5

+
+
+
+ + + + 63.1614 115.114 -209.33 51.1709 116.036 -209.369 38.305 116.51 -209.39 22.077 116.684 -209.398 0 116.709 -209.399 63.1585 91.483 -209.316 49.2688 91.94401 -209.336 34.9414 92.1807 -209.346 18.933 92.2679 -209.35 0 92.28041 -209.351 63.1556 67.8516 -209.303 47.3667 67.8516 -209.303 31.5778 67.8516 -209.303 15.7889 67.8516 -209.303 0 67.8516 -209.303 + + + + + + + + + + 0.003130078 -0.001616895 -0.9999938 0.001419186 -5.92935e-4 -0.9999988 0.001557707 -0.002024054 -0.9999969 6.72466e-4 -0.00142312 -0.9999988 4.69506e-4 -0.002026081 -0.9999979 2.40528e-4 -0.001842021 -0.9999983 4.37164e-5 -0.001965045 -0.9999981 5.06965e-5 -0.001972019 -0.9999981 0.001390755 -0.001479744 -0.9999979 0 -5.50136e-4 -0.9999999 6.67904e-4 -0.001859545 -0.9999981 0 -0.001369893 -0.9999991 2.42248e-4 -0.001956343 -0.9999982 0 -0.001767396 -0.9999985 4.99662e-5 -0.001965045 -0.9999982 0 -0.001925408 -0.9999982 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

6 0 0 1 0 1 0 0 2 6 1 3 0 1 4 5 1 5 7 2 6 2 2 7 1 2 8 7 3 9 1 3 10 6 3 11 8 4 12 3 4 13 2 4 14 8 5 15 2 5 16 7 5 17 9 6 18 4 6 19 3 6 20 9 7 21 3 7 22 8 7 23 11 8 24 6 8 25 5 8 26 11 9 27 5 9 28 10 9 29 12 10 30 7 10 31 6 10 32 12 11 33 6 11 34 11 11 35 13 12 36 8 12 37 7 12 38 13 13 39 7 13 40 12 13 41 14 14 42 9 14 43 8 14 44 14 15 45 8 15 46 13 15 47

+
+
+
+ + + + 69.8396 16.1015 200.464 69.7868 17.9966 208.237 69.788 18.8915 212.458 52.3797 16.1015 200.464 52.9324 18.5423 208.862 53.5255 20.2329 214.596 34.9198 16.1015 200.464 35.6831 19.0879 209.351 36.4734 21.5743 216.461 17.4599 16.1015 200.464 18.039 19.6336 209.703 18.6315 22.9156 218.054 0 16.1015 200.464 0 20.1792 209.92 0 24.257 219.375 4.73192 23.9217 219.07 9.414482 23.5863 218.749 14.0477 23.251 218.41 23.166 22.5803 217.682 27.6512 22.2449 217.292 32.087 21.9096 216.885 45.0982 20.9036 215.563 61.7555 19.5622 213.561 69.788 18.8915 212.458 61.7555 19.5622 213.561 53.5255 20.2329 214.596 53.7762 21.8842 216.052 54.0089 23.6221 217.352 54.2236 25.4465 218.496 54.4203 27.3574 219.484 54.5991 29.3549 220.316 45.0982 20.9036 215.563 45.3648 22.3525 216.934 45.6164 23.9142 218.164 45.8531 25.5887 219.252 46.0748 27.3761 220.199 46.2815 29.2762 221.003 46.4732 31.2892 221.666 46.65 33.415 222.187 36.4734 21.5743 216.461 36.7329 22.8207 217.741 36.9804 24.2063 218.892 37.2159 25.7309 219.917 37.4394 27.3947 220.813 37.651 29.1976 221.582 37.8506 31.1395 222.224 38.0382 33.2206 222.738 18.6315 22.9156 218.054 18.8075 23.7572 219.125 18.9774 24.7904 220.097 19.1414 26.0153 220.97 19.2993 27.4319 221.743 19.4513 29.0402 222.417 19.5973 30.8402 222.992 19.7373 32.8319 223.468 0 24.257 219.375 0 24.6936 220.206 0 25.3745 220.966 0 26.2997 221.654 0 27.4692 222.273 0 28.8829 222.82 0 30.5409 223.297 0 32.4432 223.702 0 34.5897 224.037 32.087 21.9096 216.885 27.6512 22.2449 217.292 23.166 22.5803 217.682 14.0477 23.251 218.41 9.414482 23.5863 218.749 4.73192 23.9217 219.07 59.0819 20.665 214.688 64.5029 20.665 214.305 69.91851 20.665 213.851 7.905 34.5897 224.002 15.8092 34.5897 223.879 23.23 34.5897 223.679 30.6479 34.5897 223.388 37.7114 34.5897 223.019 41.1555 34.5897 222.805 42.8559 34.5897 222.69 44.5419 34.5897 222.571 47.8707 34.5897 222.317 49.5137 34.5897 222.182 51.1425 34.5897 222.043 51.938 34.5897 221.972 52.73 34.5889 221.901 53.518 34.555 221.822 54.2814 34.383 221.72 54.9 33.9463 221.58 55.3299 33.268 221.399 55.6283 32.4701 221.184 55.8515 31.6541 220.948 56.7331 28.6552 219.835 57.5602 25.8414 218.415 58.3406 23.1866 216.696 54.8172 32.2685 221.212 + + + + + + + + + + -0.02426242 -0.959726 0.2798883 -0.007996082 -0.9581879 0.286028 -0.01574766 -0.9682097 0.2496439 -0.03192287 -0.9726112 0.2302356 -0.02291983 -0.9460017 0.3233503 -0.008179008 -0.9454393 0.3256958 -0.02316397 -0.9328165 0.3596066 -0.008331656 -0.9312897 0.3641842 -0.01965415 -0.9222499 0.3860943 0 -0.9182572 0.3959847 -0.05310273 -0.9768775 0.2071008 -0.0305801 -0.9671813 0.2522405 -0.02948141 -0.9499362 0.3110502 -0.04263478 -0.9571006 0.2866021 -0.03909528 -0.941858 0.3337292 -0.0403158 -0.9418829 0.3335136 -0.03012263 -0.9359695 0.3507902 -0.03787428 -0.9292474 0.3675117 -0.03894221 -0.9290591 0.3678759 -0.03173989 -0.9236012 0.3820387 -0.04001116 -0.9291076 0.3676388 -0.03894257 -0.9176535 0.3954687 -0.03949165 -0.9175259 0.3957105 0.05237072 -0.5862716 0.80842 0.03775286 -0.6584931 0.7516393 0.04788392 -0.6343328 0.7715757 0.06406015 -0.5695222 0.819476 0.06250315 -0.511653 0.8569158 0.07373398 -0.5011839 0.8621937 0.06897324 -0.4344399 0.8980561 0.08130258 -0.427266 0.9004631 0.07269626 -0.3567978 0.9313488 0.08688843 -0.3445323 0.9347449 0.07443588 -0.2810498 0.9568023 0.03952264 -0.6023012 0.79729 0.02633792 -0.6820088 0.7308697 0.04852461 -0.5205568 0.8524472 0.0534076 -0.4380342 0.8973704 0.05536204 -0.3578088 0.9321524 0.05557495 -0.2812626 0.9580203 0.05655246 -0.2180307 0.9743021 0.07513725 -0.2165919 0.9733665 0.02221816 -0.6351716 0.7720515 0.004486322 -0.7375001 0.6753322 0.03067201 -0.5323505 0.8459682 0.03384548 -0.4353225 0.8996382 0.0336318 -0.3477321 0.9369906 0.03167879 -0.2703684 0.9622356 0.0290234 -0.2069787 0.9779149 0.01040697 -0.6701064 0.7421923 -0.01403892 -0.8150224 0.5792595 0.02166825 -0.5320016 0.8464661 0.02475112 -0.4148187 0.9095674 0.02346915 -0.3197183 0.9472219 0.02020382 -0.2436062 0.9696637 0.0122686 -0.1855552 0.9825574 0.05148637 -0.6486002 0.759386 0.06268662 -0.6241808 0.7787611 0.05340898 -0.6407554 0.7658851 0.03613471 -0.6641289 0.7467444 0.04632771 -0.6512129 0.7574798 0.06558448 -0.6193447 0.7823752 0.06848514 -0.5795906 0.812025 0.02917593 -0.6877405 0.7253701 0.08624613 -0.4879041 0.8686261 0.09723412 -0.3830465 0.9185973 0.08328789 -0.2919809 0.9527909 0.08395832 -0.2585893 0.9623319 0.09311318 -0.2405196 0.9661679 0.08612537 -0.2194031 0.9718255 0.08554571 -0.2033199 0.9753682 0.08493405 -0.2042323 0.9752309 0.09055161 -0.1793026 0.9796178 0.08734631 -0.1995964 0.9759775 0.08862751 -0.1879673 0.9781685 0.08725404 -0.1937656 0.97716 0.08295089 -0.1980689 0.9766719 0.07895308 -0.1903482 0.9785367 0.0107122 -0.7132345 0.7008437 0.01879954 -0.7161535 0.6976896 0.0124517 -0.7388945 0.6737061 -0.004364252 -0.7813881 0.6240301 -0.01065117 -0.7812323 0.6241496 -0.008392751 -0.7855944 0.618685 -0.008789479 -0.8205972 0.5714395 -0.03100728 -0.8820605 0.4701148 -0.03271633 -0.8847767 0.4648656 0.06717234 -0.2008762 0.977311 0.06995058 -0.1942563 0.9784536 0.06540185 -0.1968464 0.9782506 0.05533081 -0.1880272 0.980604 0.0437951 -0.222577 0.973931 0.03665375 -0.1905936 0.9809846 0.01446598 -0.190652 0.9815512 0.01678532 -0.1919021 0.9812705 0.004364252 -0.1541836 0.9880326 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -69.8396 16.1015 200.464 -69.7868 17.9966 208.237 -69.788 18.8915 212.458 -52.3797 16.1015 200.464 -52.9324 18.5423 208.862 -53.5255 20.2329 214.596 -34.9198 16.1015 200.464 -35.6831 19.0879 209.351 -36.4734 21.5743 216.461 -17.4599 16.1015 200.464 -18.039 19.6336 209.703 -18.6315 22.9156 218.054 0 16.1015 200.464 0 20.1792 209.92 0 24.257 219.375 -4.73192 23.9217 219.07 -9.414482 23.5863 218.749 -14.0477 23.251 218.41 -23.166 22.5803 217.682 -27.6512 22.2449 217.292 -32.087 21.9096 216.885 -45.0982 20.9036 215.563 -61.7555 19.5622 213.561 -69.788 18.8915 212.458 -61.7555 19.5622 213.561 -53.5255 20.2329 214.596 -53.7762 21.8842 216.052 -54.0089 23.6221 217.352 -54.2236 25.4465 218.496 -54.4203 27.3574 219.484 -54.5991 29.3549 220.316 -45.0982 20.9036 215.563 -45.3648 22.3525 216.934 -45.6164 23.9142 218.164 -45.8531 25.5887 219.252 -46.0748 27.3761 220.199 -46.2815 29.2762 221.003 -46.4732 31.2892 221.666 -46.65 33.415 222.187 -36.4734 21.5743 216.461 -36.7329 22.8207 217.741 -36.9804 24.2063 218.892 -37.2159 25.7309 219.917 -37.4394 27.3947 220.813 -37.651 29.1976 221.582 -37.8506 31.1395 222.224 -38.0382 33.2206 222.738 -18.6315 22.9156 218.054 -18.8075 23.7572 219.125 -18.9774 24.7904 220.097 -19.1414 26.0153 220.97 -19.2993 27.4319 221.743 -19.4513 29.0402 222.417 -19.5973 30.8402 222.992 -19.7373 32.8319 223.468 0 24.257 219.375 0 24.6936 220.206 0 25.3745 220.966 0 26.2997 221.654 0 27.4692 222.273 0 28.8829 222.82 0 30.5409 223.297 0 32.4432 223.702 0 34.5897 224.037 -32.087 21.9096 216.885 -27.6512 22.2449 217.292 -23.166 22.5803 217.682 -14.0477 23.251 218.41 -9.414482 23.5863 218.749 -4.73192 23.9217 219.07 -59.0819 20.665 214.688 -64.5029 20.665 214.305 -69.91851 20.665 213.851 -7.905 34.5897 224.002 -15.8092 34.5897 223.879 -23.23 34.5897 223.679 -30.6479 34.5897 223.388 -37.7114 34.5897 223.019 -41.1555 34.5897 222.805 -42.8559 34.5897 222.69 -44.5419 34.5897 222.571 -47.8707 34.5897 222.317 -49.5137 34.5897 222.182 -51.1425 34.5897 222.043 -51.938 34.5897 221.972 -52.73 34.5889 221.901 -53.518 34.555 221.822 -54.2814 34.383 221.72 -54.9 33.9463 221.58 -55.3299 33.268 221.399 -55.6283 32.4701 221.184 -55.8515 31.6541 220.948 -56.7331 28.6552 219.835 -57.5602 25.8414 218.415 -58.3406 23.1866 216.696 -54.8172 32.2685 221.212 + + + + + + + + + + 0.02426242 -0.959726 0.2798883 0.03192287 -0.9726112 0.2302356 0.01574766 -0.9682097 0.2496439 0.007996082 -0.9581879 0.286028 0.02291983 -0.9460017 0.3233503 0.008179008 -0.9454393 0.3256958 0.02316397 -0.9328165 0.3596066 0.008331656 -0.9312897 0.3641842 0.01965415 -0.9222499 0.3860943 0 -0.9182572 0.3959847 0.0305801 -0.9671813 0.2522405 0.05310273 -0.9768775 0.2071008 0.02948141 -0.9499362 0.3110502 0.04263478 -0.9571006 0.2866021 0.03909528 -0.941858 0.3337292 0.0403158 -0.9418829 0.3335136 0.03012263 -0.9359695 0.3507902 0.03787428 -0.9292474 0.3675117 0.03894221 -0.9290591 0.3678759 0.03173989 -0.9236012 0.3820387 0.04001116 -0.9291076 0.3676388 0.03894257 -0.9176535 0.3954687 0.03949165 -0.9175259 0.3957105 -0.05237072 -0.5862716 0.80842 -0.06406015 -0.5695222 0.819476 -0.04788392 -0.6343328 0.7715757 -0.03775286 -0.6584931 0.7516393 -0.06250315 -0.511653 0.8569158 -0.07373398 -0.5011839 0.8621937 -0.06897324 -0.4344399 0.8980561 -0.08130258 -0.427266 0.9004631 -0.07269626 -0.3567978 0.9313488 -0.08688843 -0.3445323 0.9347449 -0.07443588 -0.2810498 0.9568023 -0.03952264 -0.6023012 0.79729 -0.02633792 -0.6820088 0.7308697 -0.04852461 -0.5205568 0.8524472 -0.0534076 -0.4380342 0.8973704 -0.05536204 -0.3578088 0.9321524 -0.05557495 -0.2812626 0.9580203 -0.05655246 -0.2180307 0.9743021 -0.07513725 -0.2165919 0.9733665 -0.02221816 -0.6351716 0.7720515 -0.004486322 -0.7375001 0.6753322 -0.03067201 -0.5323505 0.8459682 -0.03384548 -0.4353225 0.8996382 -0.0336318 -0.3477321 0.9369906 -0.03167879 -0.2703684 0.9622356 -0.0290234 -0.2069787 0.9779149 -0.01040697 -0.6701064 0.7421923 0.01403892 -0.8150224 0.5792595 -0.02166825 -0.5320016 0.8464661 -0.02475112 -0.4148187 0.9095674 -0.02346915 -0.3197183 0.9472219 -0.02020382 -0.2436062 0.9696637 -0.0122686 -0.1855552 0.9825574 -0.05148637 -0.6486002 0.759386 -0.05340898 -0.6407554 0.7658851 -0.06268662 -0.6241808 0.7787611 -0.03613471 -0.6641289 0.7467444 -0.04632771 -0.6512129 0.7574798 -0.06558448 -0.6193447 0.7823752 -0.06848514 -0.5795906 0.812025 -0.02917593 -0.6877405 0.7253701 -0.08624613 -0.4879041 0.8686261 -0.09723412 -0.3830465 0.9185973 -0.08328789 -0.2919809 0.9527909 -0.08395832 -0.2585893 0.9623319 -0.08612537 -0.2194031 0.9718255 -0.09311318 -0.2405196 0.9661679 -0.08493405 -0.2042323 0.9752309 -0.08554571 -0.2033199 0.9753682 -0.09055161 -0.1793026 0.9796178 -0.08862751 -0.1879673 0.9781685 -0.08734631 -0.1995964 0.9759775 -0.08725404 -0.1937656 0.97716 -0.08295089 -0.1980689 0.9766719 -0.07895308 -0.1903482 0.9785367 -0.01879954 -0.7161535 0.6976896 -0.0107122 -0.7132345 0.7008437 -0.0124517 -0.7388945 0.6737061 0.004364252 -0.7813881 0.6240301 0.008392751 -0.7855944 0.618685 0.01065117 -0.7812323 0.6241496 0.008789479 -0.8205972 0.5714395 0.03100728 -0.8820605 0.4701148 0.03271633 -0.8847767 0.4648656 -0.06717234 -0.2008762 0.977311 -0.06995058 -0.1942563 0.9784536 -0.05533081 -0.1880272 0.980604 -0.06540185 -0.1968464 0.9782506 -0.0437951 -0.222577 0.973931 -0.03665375 -0.1905936 0.9809846 -0.01446598 -0.190652 0.9815512 -0.01678532 -0.1919021 0.9812705 -0.004364252 -0.1541836 0.9880326 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -63.1614 115.114 -209.33 -51.1709 116.036 -209.369 -38.305 116.51 -209.39 -22.077 116.684 -209.398 0 116.709 -209.399 -63.1585 91.483 -209.316 -49.2688 91.94401 -209.336 -34.9414 92.1807 -209.346 -18.933 92.2679 -209.35 0 92.28041 -209.351 -63.1556 67.8516 -209.303 -47.3667 67.8516 -209.303 -31.5778 67.8516 -209.303 -15.7889 67.8516 -209.303 0 67.8516 -209.303 + + + + + + + + + + -0.001419186 -5.92935e-4 -0.9999988 -0.003130078 -0.001616895 -0.9999938 -6.72466e-4 -0.00142312 -0.9999988 -0.001557707 -0.002024054 -0.9999969 -2.40528e-4 -0.001842021 -0.9999983 -4.69506e-4 -0.002026081 -0.9999979 -5.06965e-5 -0.001972019 -0.9999981 -4.37164e-5 -0.001965045 -0.9999981 0 -5.50136e-4 -0.9999999 -0.001390755 -0.001479744 -0.9999979 0 -0.001369893 -0.9999991 -6.67904e-4 -0.001859545 -0.9999981 0 -0.001767396 -0.9999985 -2.42248e-4 -0.001956343 -0.9999982 0 -0.001925408 -0.9999982 -4.99662e-5 -0.001965045 -0.9999982 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

6 0 0 5 0 1 0 0 2 6 1 3 0 1 4 1 1 5 7 2 6 6 2 7 1 2 8 7 3 9 1 3 10 2 3 11 8 4 12 7 4 13 2 4 14 8 5 15 2 5 16 3 5 17 9 6 18 8 6 19 3 6 20 9 7 21 3 7 22 4 7 23 11 8 24 10 8 25 5 8 26 11 9 27 5 9 28 6 9 29 12 10 30 11 10 31 6 10 32 12 11 33 6 11 34 7 11 35 13 12 36 12 12 37 7 12 38 13 13 39 7 13 40 8 13 41 14 14 42 13 14 43 8 14 44 14 15 45 8 15 46 9 15 47

+
+
+
+ + + + 0 67.8516 -209.303 0 54.408 -218.125 -63.1556 67.8516 -209.303 -63.1556 54.408 -218.125 + + + + + + + + + + 0 0.548641 -0.8360581 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

3 0 0 2 0 1 0 0 2 3 0 3 0 0 4 1 0 5

+
+
+
+ + + + 0 20.665 -185.816 0 27.7605 -212.365 -63.1556 20.665 -185.816 -63.1556 27.7605 -212.365 + + + + + + + + + + 0 0.966092 0.258198 0 0.966092 0.2581982 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

3 0 0 2 0 1 0 0 2 3 1 3 0 1 4 1 1 5

+
+
+
+ + + + 0 54.408 -218.125 0 27.7605 -212.365 -63.1556 54.408 -218.125 -63.1556 27.7605 -212.365 + + + + + + + + + + 0 -0.2112758 -0.9774265 0 -0.2112757 -0.9774265 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

3 0 0 2 0 1 0 0 2 3 1 3 0 1 4 1 1 5

+
+
+
+ + + + -63.1556 20.665 -185.816 -76.99771 20.665 -185.816 -90.8398 20.665 -185.816 -88.6775 24.2128 -199.091 -86.5152 27.7605 -212.365 -74.83541 27.7605 -212.365 -63.1556 27.7605 -212.365 -63.1556 24.2128 -199.091 + + + + + + + + + + 0 0.9660905 0.2582042 0 0.9660905 0.2582039 0 0.9660903 0.2582042 0 0.9660936 0.2581921 0 0.9660937 0.258192 0 0.9660935 0.2581925 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

7 0 0 5 0 1 4 0 2 7 1 3 4 1 4 3 1 5 7 2 6 6 2 7 5 2 8 1 3 9 0 3 10 7 3 11 3 4 12 2 4 13 1 4 14 1 5 15 7 5 16 3 5 17

+
+
+
+ + + + -69.1202 137.65 -126.254 -69.1217 142.041 -107.477 -69.12641 145.351 -89.0506 -69.1343 147.58 -70.97351 -69.1453 148.728 -53.2459 -69.1594 148.794 -35.8679 -69.1767 147.78 -18.8396 -69.1972 145.684 -2.16074 -69.2208 142.507 14.1685 -71.3334 141.256 -108.33 -71.2604 144.717 -89.87751 -71.21231 147.097 -71.7351 -71.1893 148.395 -53.9025 -71.1912 148.612 -36.3799 -71.2181 147.748 -19.1672 -71.2699 145.803 -2.26434 -71.3468 142.776 14.3286 -73.69902 135.571 -127.909 -73.52 140.223 -109.214 -73.38951 143.794 -90.7866 -73.30741 146.283 -72.62601 -73.27381 147.691 -54.7327 -73.2887 148.017 -37.1065 -73.35202 147.262 -19.7476 -73.4638 145.425 -2.65596 -73.6241 142.507 14.1685 -75.4628 138.905 -110.121 -75.2792 142.523 -91.7802 -75.16841 145.059 -73.663 -75.13031 146.513 -55.7688 -75.165 146.886 -38.0976 -75.2725 146.177 -20.6496 -75.4527 144.386 -3.42463 -75.70571 141.514 13.5773 -77.5224 132.557 -129.407 -77.1729 137.253 -111.051 -76.9233 140.866 -92.86911 -76.7735 143.398 -74.8608 -76.7236 144.847 -57.0263 -76.7735 145.215 -39.3657 -76.9233 144.501 -21.8789 -77.1729 142.705 -4.56603 -77.5224 139.827 12.573 -69.1202 117.84 -194.88 -69.1202 123.119 -177.897 -69.1202 128.374 -160.821 -69.1202 133.116 -143.99 -69.1202 137.65 -126.254 -70.5557 116.588 -194.674 -71.7713 121.615 -178.657 -72.0988 126.315 -163.538 -72.1465 130.943 -147.423 -71.5443 115.363 -193.936 -74.1169 120.002 -179.078 -74.8338 124.001 -166.175 -74.96421 128.414 -150.923 -71.9516 114.101 -192.388 -76.1136 118.147 -179.027 -77.2837 121.201 -168.848 -77.5075 125.257 -154.718 -77.5224 132.557 -129.407 -73.15261 117.751 -186.156 -73.01641 120.808 -178.919 -71.318 119.053 -186.671 -71.1238 115.958 -194.372 -72.3083 118.393 -186.473 -74.5514 116.33 -184.936 -75.22 119.064 -179.13 -71.8498 114.708 -193.254 -73.9553 117.023 -185.631 -76.88301 119.612 -174.223 -76.1661 122.602 -167.575 -74.5898 121.95 -172.901 -75.8425 120.776 -173.632 -73.69902 135.571 -127.909 + + + + + + + + + + -0.2841608 0.9470909 -0.149237 -0.2283096 0.9630144 -0.1431017 -0.2593791 0.9463567 -0.1926955 -0.3066602 0.930754 -0.1991398 -0.2587733 0.9610841 -0.09671574 -0.1917507 0.9773393 -0.08966469 -0.2273358 0.9729752 -0.04046815 -0.1477134 0.9884899 -0.03268617 -0.1872035 0.9821318 0.019288 -0.09299165 0.9952889 0.02743667 -0.1360836 0.987285 0.08215671 -0.02664303 0.9955909 0.08993947 -0.07211577 0.9864573 0.147314 0.05264544 0.9867436 0.1535111 6.10377e-4 0.9828292 0.184517 0.1372737 0.9722689 0.1893388 -0.421925 0.8950304 -0.1445685 -0.4214703 0.8859726 -0.1934307 -0.4197911 0.9026347 -0.0950061 -0.4139335 0.9092925 -0.04297119 -0.4015704 0.9157563 0.01147514 -0.3801189 0.9223874 0.06863808 -0.347064 0.9289731 0.1286688 -0.289655 0.9427294 0.1654125 -0.585544 0.8001865 -0.1297682 -0.5680541 0.8036625 -0.1773166 -0.6030005 0.7931967 -0.08502674 -0.6169221 0.7860004 -0.04013317 -0.6245385 0.7809783 0.004974544 -0.6242134 0.7795877 0.05099791 -0.6141724 0.7829447 0.09894388 -0.5749469 0.807593 0.1312621 -0.6611961 0.7395386 -0.1261048 -0.6249403 0.759194 -0.1818635 -0.6852983 0.7233856 -0.08414012 -0.7054564 0.7074402 -0.0431239 -0.7194007 0.6945886 -0.003051877 -0.7257254 0.686996 0.03686761 -0.7234484 0.6859713 0.07788395 -0.7095108 0.6965707 0.1066952 -0.3295497 0.9170809 -0.2244099 -0.4806189 0.8517954 -0.2084472 -0.5587141 0.8059803 -0.1955361 -0.5358914 0.7968634 -0.2789785 -0.4446339 0.8491351 -0.2850797 -0.4144557 0.8650466 -0.2827028 -0.6282032 0.727573 -0.2756782 -0.705428 0.6488143 -0.2853269 -0.4210686 0.8681697 -0.2626453 -0.3749845 0.8896842 -0.260478 -0.4129326 0.8771691 -0.2450738 -0.377586 0.8958664 -0.2342059 -0.5735228 0.7616756 -0.3015328 -0.5065289 0.8122102 -0.289384 -0.6102957 0.7318238 -0.3032709 -0.6973353 0.6407526 -0.321185 -0.8087572 0.5082963 -0.2958831 -0.8957278 0.3237743 -0.3047 -0.5116227 0.8137316 -0.2758319 -0.5168822 0.8175016 -0.2540157 -0.5391553 0.8093127 -0.2330764 -0.7045689 0.6318413 -0.3230469 -0.6545248 0.6873944 -0.3147798 -0.8044924 0.4859 -0.3416041 -0.8617582 0.3703451 -0.3467236 -0.9540096 0.04602342 -0.2962224 -0.9400007 -0.2174514 -0.262895 -0.6384979 0.7291712 -0.2462311 -0.607415 0.757079 -0.2405794 -0.6068481 0.7452843 -0.2762007 -0.6448779 0.7096404 -0.2838012 -0.6147143 0.7573907 -0.2201948 -0.3341534 0.9112081 -0.2409176 -0.4117652 0.880052 -0.2365544 -0.5539171 0.8028593 -0.2204376 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -90.8398 51.2527 -181.793 -86.5152 51.5857 -208.718 -77.0353 66.87271 -187.579 -77.0353 66.87271 -203.073 + + + + + + + + + + -0.7951172 0.6019306 -0.07394802 -0.8218193 0.555845 -0.1250979 -0.7930635 0.6050672 -0.07031548 -0.7493157 0.662213 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

3 0 0 1 1 1 0 2 2 3 0 3 0 2 4 2 3 5

+
+
+
+ + + + -90.8398 31.05 -187.164 -90.8398 28.5413 -187.087 -90.8398 25.9605 -186.845 -90.8398 23.3285 -186.425 -90.8398 20.665 -185.816 -88.02861 35.529 -202.383 -86.5152 27.7605 -212.365 -89.4342 33.2895 -194.774 -88.02861 35.529 -202.383 -86.5152 27.7605 -212.365 -87.95861 51.4746 -199.732 -86.5152 51.5857 -208.718 -87.9936 43.5018 -201.057 -90.8398 48.9077 -183.035 -90.8398 46.4909 -184.12 -90.8398 43.9813 -185.054 -90.8398 41.3811 -185.831 -90.8398 38.7706 -186.425 -90.8398 36.1678 -186.841 -90.8398 33.5892 -187.085 -90.8398 31.05 -187.164 -90.8398 51.2527 -181.793 -88.02861 35.529 -202.383 -90.12181 47.3753 -187.26 -89.4111 43.4458 -192.533 -88.7121 39.4889 -197.583 -89.4342 33.2895 -194.774 -90.12181 47.3753 -187.26 -88.02861 35.529 -202.383 -90.8398 51.2527 -181.793 -90.1195 51.3082 -186.278 -89.3992 51.3637 -190.762 -88.6789 51.4191 -195.247 -87.95861 51.4746 -199.732 -88.7121 39.4889 -197.583 -89.4111 43.4458 -192.533 -87.9936 43.5018 -201.057 + + + + + + + + + + -0.9830543 -0.005622386 -0.1832283 -0.9859917 0.009674608 -0.166514 -0.9848372 -0.03433346 -0.17005 -0.9845713 -0.01715159 -0.174141 -0.9823273 -0.01345902 -0.186687 -0.9856408 0.01690751 -0.1680069 -0.9845352 -0.03903347 -0.1707829 -0.9830471 -0.00564599 -0.1832665 -0.9860934 0.02795523 -0.163825 -0.985361 0.02822989 -0.1681281 -0.9839629 0.03344881 -0.1752095 -0.9869402 0.03061491 -0.1581514 -0.9865348 0.02761989 -0.1612027 -0.9768205 0.08395767 -0.1969083 -0.9763132 0.08255475 -0.1999931 -0.9737049 0.1034285 -0.2029811 -0.9803543 0.06213617 -0.187202 -0.9798389 0.05060023 -0.193276 -0.9782837 0.07046812 -0.1949242 -0.9828894 0.04422175 -0.1788098 -0.9820201 0.02310311 -0.1873581 -0.9812353 0.04049819 -0.1885136 -0.9830591 0.01443564 -0.1827194 -0.9836452 0.00564593 -0.1800292 -0.9836455 0.005584895 -0.1800293 -0.9836895 0.03668385 -0.1760948 -0.9728218 0.1083728 -0.2046295 -0.9866342 0.04002451 -0.1579591 -0.9852346 0.03878086 -0.1667599 -0.9868524 0.03369706 -0.1580729 -0.9854729 0.03206294 -0.1667789 -0.9856318 0.04145705 -0.1637412 -0.9867433 0.03683745 -0.1580535 -0.9869457 0.03061026 -0.1581176 -0.9859396 0.03338754 -0.1637332 -0.9867491 0.03289973 -0.1588833 -0.985895 0.03479868 -0.163708 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

7 0 0 1 0 1 0 0 2 6 1 3 3 2 4 2 3 5 2 3 6 1 4 7 5 5 8 2 3 9 5 5 10 6 1 11 6 1 12 4 6 13 3 2 14 5 5 15 1 4 16 7 7 17 12 8 18 9 9 19 8 10 20 11 11 21 12 11 22 10 11 23 9 9 24 12 8 25 11 12 26 23 13 27 14 14 28 13 15 29 24 16 30 16 17 31 15 18 32 25 19 33 18 20 34 17 21 35 17 21 36 16 17 37 24 16 38 15 18 39 14 14 40 23 13 41 23 13 42 24 16 43 15 18 44 18 20 45 25 19 46 19 22 47 24 16 48 25 19 49 17 21 50 26 23 51 20 24 52 19 22 53 19 22 54 22 25 55 26 23 56 22 25 57 19 22 58 25 19 59 21 26 60 23 13 61 13 15 62 27 27 63 29 27 64 30 27 65 34 28 66 35 28 67 31 28 68 34 29 69 31 29 70 32 29 71 36 30 72 28 30 73 34 30 74 35 31 75 27 31 76 30 31 77 35 32 78 30 32 79 31 32 80 33 33 81 36 34 82 32 35 83 32 36 84 36 36 85 34 36 86

+
+
+
+ + + + -71.9516 114.101 -192.388 -71.9405 114.296 -192.694 -71.90731 114.496 -192.98 -71.7746 114.911 -193.491 -71.5534 115.348 -193.923 -71.2437 115.805 -194.275 -70.8456 116.283 -194.546 -70.3589 116.781 -194.737 -69.7838 117.3 -194.849 -69.1202 117.84 -194.88 -71.9516 114.101 -192.388 -71.9137 114.202 -192.718 -71.8572 114.312 -193.056 -71.6887 114.558 -193.758 -71.44601 114.84 -194.493 -71.1291 115.157 -195.26 -70.7381 115.51 -196.061 -70.27301 115.898 -196.895 -69.7336 116.322 -197.762 -69.1202 116.781 -198.662 -71.9516 114.101 -192.388 -71.88681 114.116 -192.734 -71.8071 114.144 -193.117 -71.6027 114.238 -193.992 -71.3386 114.382 -195.013 -71.01451 114.576 -196.181 -70.6307 114.821 -197.495 -70.18701 115.115 -198.956 -69.6835 115.46 -200.562 -69.1202 115.856 -202.315 -71.9516 114.101 -192.388 -71.86 114.04 -192.743 -71.7569 113.996 -193.163 -71.5168 113.957 -194.198 -71.2311 113.982 -195.492 -70.9 114.073 -197.045 -70.5233 114.228 -198.859 -70.1011 114.449 -200.931 -69.6334 114.734 -203.264 -69.1202 115.085 -205.855 -71.9516 114.101 -192.388 -71.8465 114.007 -192.745 -71.73191 113.93 -193.181 -71.4738 113.832 -194.291 -71.1774 113.807 -195.717 -70.8427 113.854 -197.46 -70.4696 113.973 -199.518 -70.0581 114.165 -201.892 -69.6083 114.429 -204.583 -69.1202 114.765 -207.589 -71.8331 113.976 -192.746 -71.7068 113.871 -193.198 -71.4308 113.72 -194.38 -71.12371 113.649 -195.935 -70.7854 113.659 -197.864 -70.4158 113.747 -200.164 -70.0151 113.916 -202.838 -69.5832 114.165 -205.884 -69.1202 114.493 -209.303 + + + + + + + + + + -0.950378 -0.2350919 -0.2037483 -0.9571906 -0.2271206 -0.1794503 -0.9551345 -0.2102785 -0.2085694 -0.9542415 -0.1709681 -0.2453432 -0.9576011 -0.1325754 -0.2557814 -0.959737 -0.03177046 -0.279098 -0.9550754 0.02774214 -0.295062 -0.9462693 0.1279047 -0.29701 -0.9215772 0.2160428 -0.322523 -0.9147675 0.2809035 -0.2903341 -0.8617766 0.3931816 -0.3205454 -0.8708527 0.4121863 -0.2678021 -0.7896527 0.5369235 -0.2969208 -0.8221248 0.5171775 -0.2379882 -0.7197752 0.6423774 -0.2632014 -0.774631 0.5977739 -0.2064299 -0.6594302 0.7164707 -0.2276433 -0.7356669 0.6529291 -0.1802162 -0.6228736 0.7533447 -0.2109511 -0.939445 -0.2792515 -0.1986501 -0.9467678 -0.2608785 -0.1886088 -0.9486117 -0.2224272 -0.2250824 -0.9648228 -0.09375387 -0.2456157 -0.9669533 0.04993009 -0.2500168 -0.9526695 0.1899235 -0.2373815 -0.9248549 0.3139208 -0.2147028 -0.8889483 0.4177703 -0.1877204 -0.8505371 0.5010017 -0.1599506 -0.8061404 0.5764206 -0.1337056 -0.9243192 -0.334149 -0.1843328 -0.9329761 -0.3069024 -0.1880601 -0.9391244 -0.2771412 -0.203072 -0.964169 -0.153482 -0.2163826 -0.976853 -0.01736527 -0.2132059 -0.9733437 0.1168268 -0.1973666 -0.9555085 0.2376487 -0.1747193 -0.9278863 0.3416553 -0.1493273 -0.8951735 0.4281304 -0.1239711 -0.8488316 0.5190407 -0.1004083 -0.9114404 -0.3746293 -0.1700863 -0.9151456 -0.3638181 -0.1736231 -0.9287825 -0.3206013 -0.1859518 -0.9602438 -0.1947405 -0.2000203 -0.9791183 -0.05496513 -0.1957198 -0.9801438 0.0843541 -0.1794509 -0.9649307 0.2106141 -0.1566864 -0.938297 0.3199378 -0.1312956 -0.9053931 0.4110679 -0.1062386 -0.8564854 0.5093928 -0.08337789 -0.9074191 -0.3867968 -0.1642528 -0.9073157 -0.3866217 -0.1652328 -0.9228047 -0.3432784 -0.1749047 -0.9572277 -0.2227885 -0.1846092 -0.9798785 -0.09122174 -0.1775299 -0.9861338 0.04004108 -0.1610494 -0.9769006 0.1618757 -0.1395049 -0.9555835 0.270918 -0.1160336 -0.9268246 0.3638448 -0.09280759 -0.8796295 0.4680757 -0.08459967 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

11 0 0 0 1 1 1 2 2 12 3 3 11 0 4 1 2 5 12 3 6 1 2 7 2 4 8 13 5 9 12 3 10 2 4 11 13 5 12 2 4 13 3 6 14 14 7 15 13 5 16 3 6 17 14 7 18 3 6 19 4 8 20 15 9 21 14 7 22 4 8 23 15 9 24 4 8 25 5 10 26 16 11 27 15 9 28 5 10 29 16 11 30 5 10 31 6 12 32 17 13 33 16 11 34 6 12 35 17 13 36 6 12 37 7 14 38 18 15 39 17 13 40 7 14 41 18 15 42 7 14 43 8 16 44 19 17 45 18 15 46 8 16 47 19 17 48 8 16 49 9 18 50 21 19 51 10 20 52 11 0 53 22 21 54 21 19 55 11 0 56 22 21 57 11 0 58 12 3 59 23 22 60 22 21 61 12 3 62 23 22 63 12 3 64 13 5 65 24 23 66 23 22 67 13 5 68 24 23 69 13 5 70 14 7 71 25 24 72 24 23 73 14 7 74 25 24 75 14 7 76 15 9 77 26 25 78 25 24 79 15 9 80 26 25 81 15 9 82 16 11 83 27 26 84 26 25 85 16 11 86 27 26 87 16 11 88 17 13 89 28 27 90 27 26 91 17 13 92 28 27 93 17 13 94 18 15 95 29 28 96 28 27 97 18 15 98 29 28 99 18 15 100 19 17 101 31 29 102 20 30 103 21 19 104 32 31 105 31 29 106 21 19 107 32 31 108 21 19 109 22 21 110 33 32 111 32 31 112 22 21 113 33 32 114 22 21 115 23 22 116 34 33 117 33 32 118 23 22 119 34 33 120 23 22 121 24 23 122 35 34 123 34 33 124 24 23 125 35 34 126 24 23 127 25 24 128 36 35 129 35 34 130 25 24 131 36 35 132 25 24 133 26 25 134 37 36 135 36 35 136 26 25 137 37 36 138 26 25 139 27 26 140 38 37 141 37 36 142 27 26 143 38 37 144 27 26 145 28 27 146 39 38 147 38 37 148 28 27 149 39 38 150 28 27 151 29 28 152 41 39 153 30 40 154 31 29 155 42 41 156 41 39 157 31 29 158 42 41 159 31 29 160 32 31 161 43 42 162 42 41 163 32 31 164 43 42 165 32 31 166 33 32 167 44 43 168 43 42 169 33 32 170 44 43 171 33 32 172 34 33 173 45 44 174 44 43 175 34 33 176 45 44 177 34 33 178 35 34 179 46 45 180 45 44 181 35 34 182 46 45 183 35 34 184 36 35 185 47 46 186 46 45 187 36 35 188 47 46 189 36 35 190 37 36 191 48 47 192 47 46 193 37 36 194 48 47 195 37 36 196 38 37 197 49 48 198 48 47 199 38 37 200 49 48 201 38 37 202 39 38 203 50 49 204 40 50 205 41 39 206 51 51 207 50 49 208 41 39 209 51 51 210 41 39 211 42 41 212 52 52 213 51 51 214 42 41 215 52 52 216 42 41 217 43 42 218 53 53 219 52 52 220 43 42 221 53 53 222 43 42 223 44 43 224 54 54 225 53 53 226 44 43 227 54 54 228 44 43 229 45 44 230 55 55 231 54 54 232 45 44 233 55 55 234 45 44 235 46 45 236 56 56 237 55 55 238 46 45 239 56 56 240 46 45 241 47 46 242 57 57 243 56 56 244 47 46 245 57 57 246 47 46 247 48 47 248 58 58 249 57 57 250 48 47 251 58 58 252 48 47 253 49 48 254

+
+
+
+ + + + -82.40441 103.447 -187.076 -82.35102 105.487 -189.267 -82.1496 107.339 -191.248 -81.8002 109.003 -193.021 -81.30281 110.478 -194.584 -80.6574 111.764 -195.938 -79.86402 112.862 -197.084 -78.9226 113.772 -198.02 -77.8332 114.493 -198.747 -82.40441 103.447 -187.076 -82.4909 102.238 -188.094 -82.3752 100.92 -189.038 -82.0572 99.49031 -189.908 -81.5371 97.95011 -190.706 -80.8147 96.2993 -191.43 -79.8901 94.53781 -192.081 -78.7633 92.66561 -192.659 -77.4342 90.6827 -193.163 -82.6308 98.9897 -186.92 -82.6007 94.5 -186.827 -82.3142 89.9776 -186.796 -81.7713 85.42221 -186.828 -80.9719 80.8341 -186.922 -79.9161 76.2131 -187.078 -78.6039 71.55931 -187.297 -77.0353 66.87271 -187.579 + + + + + + + + + + -0.9985116 0.02465909 -0.0486468 -0.9983929 0.05151575 0.02362155 -0.9964281 0.007843434 -0.08408093 -0.9816368 -0.03015255 -0.188362 -0.9744973 -0.04446595 -0.2199493 -0.9417152 -0.08106023 -0.3264995 -0.9260387 -0.09509724 -0.3652517 -0.8815133 -0.1242127 -0.4555279 -0.8482152 -0.1401739 -0.5107664 -0.8064942 -0.1575999 -0.5698502 -0.7435132 -0.1757611 -0.6452103 -0.7231523 -0.1807041 -0.6666308 -0.618777 -0.1992904 -0.7598673 -0.6366569 -0.1941313 -0.7463117 -0.4851315 -0.2100934 -0.8488276 -0.5870083 -0.1960865 -0.7854753 -0.4416092 -0.2118625 -0.8718347 -0.9917764 -0.00350964 -0.1279357 -0.9626522 -0.05707001 -0.2646583 -0.9170296 -0.1012309 -0.3857579 -0.8617172 -0.1352012 -0.489044 -0.8025018 -0.1595543 -0.5749203 -0.7435052 -0.1754845 -0.6452948 -0.686846 -0.1844 -0.7030215 -0.6677628 -0.1866561 -0.7205917 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 0 1 1 1 2 2 11 3 3 10 0 4 1 2 5 11 3 6 1 2 7 2 4 8 12 5 9 11 3 10 2 4 11 12 5 12 2 4 13 3 6 14 13 7 15 12 5 16 3 6 17 13 7 18 3 6 19 4 8 20 14 9 21 13 7 22 4 8 23 14 9 24 4 8 25 5 10 26 15 11 27 14 9 28 5 10 29 15 11 30 5 10 31 6 12 32 16 13 33 15 11 34 6 12 35 16 13 36 6 12 37 7 14 38 17 15 39 16 13 40 7 14 41 17 15 42 7 14 43 8 16 44 18 17 45 9 1 46 10 0 47 19 18 48 18 17 49 10 0 50 19 18 51 10 0 52 11 3 53 20 19 54 19 18 55 11 3 56 20 19 57 11 3 58 12 5 59 21 20 60 20 19 61 12 5 62 21 20 63 12 5 64 13 7 65 22 21 66 21 20 67 13 7 68 22 21 69 13 7 70 14 9 71 23 22 72 22 21 73 14 9 74 23 22 75 14 9 76 15 11 77 24 23 78 23 22 79 15 11 80 24 23 81 15 11 82 16 13 83 25 24 84 24 23 85 16 13 86 25 24 87 16 13 88 17 15 89

+
+
+
+ + + + -73.6241 142.507 14.1685 -74.7705 142.064 13.9044 -75.8135 141.439 13.5324 -76.7364 140.678 13.0796 -77.5224 139.827 12.573 -73.6241 140.273 23.9329 -74.7983 140.061 22.5081 -75.8499 139.694 20.9585 -76.7632 139.213 19.3096 -77.5224 138.662 17.5869 -73.6241 137.767 33.5546 -74.82611 137.797 31.0526 -75.8862 137.697 28.4091 -76.7899 137.507 25.6479 -77.5224 137.265 22.7925 -73.6241 134.989 43.0335 -74.8539 135.271 39.538 -75.9226 135.449 35.8842 -76.8166 135.558 32.0942 -77.5224 135.637 28.19 -73.6241 131.94 52.3695 -74.8816 132.484 47.9642 -75.9589 132.948 43.3839 -76.8434 133.368 38.6488 -77.5224 133.776 33.7793 -73.6241 128.618 61.5628 -74.9094 129.434 56.3314 -75.9953 130.196 50.908 -76.8701 130.936 45.3115 -77.5224 131.684 39.5605 -73.6241 125.025 70.6133 -74.93721 126.123 64.6393 -76.0316 127.192 58.4567 -76.8968 128.262 52.0824 -77.5224 129.36 45.5334 -73.6241 121.159 79.52111 -74.96501 122.549 72.8882 -76.068 123.937 66.0299 -76.9236 125.346 58.9615 -77.5224 126.805 51.6982 -73.6241 117.022 88.28601 -74.9928 118.714 81.07791 -76.1043 120.429 73.6276 -76.9503 122.189 65.9488 -77.5224 124.017 58.0548 -73.6241 108.941 104.316 -75.0483 111.015 96.47602 -76.177 113.163 88.36071 -77.0038 115.401 79.9798 -77.5224 117.747 71.3435 -73.6241 101.79 117.63 -75.1039 103.781 110.03 -76.24971 105.897 102.12 -77.0572 108.15 93.9076 -77.5224 110.549 85.3996 -73.6241 95.56771 128.23 -75.1595 97.0129 121.739 -76.32241 98.6336 114.905 -77.11071 100.436 107.732 -77.5224 102.425 100.223 -73.6241 90.27571 136.115 -75.21501 90.7101 131.604 -76.39511 91.371 126.717 -77.1642 92.2586 121.453 -77.5224 93.37271 115.814 + + + + + + + + + + -0.4968317 0.842682 0.2074735 -0.4293779 0.8752057 0.2228223 -0.3950137 0.8950756 0.2068916 -0.4830929 0.8530196 0.1974305 -0.6295239 0.7543179 0.1862905 -0.6230838 0.7620385 0.1762495 -0.735875 0.657258 0.1627885 -0.7299904 0.6658389 0.1541833 -0.7758973 0.6137167 0.1460663 -0.768355 0.6234186 0.1448448 -0.5390033 0.8115721 0.2254468 -0.4862242 0.8393258 0.2431426 -0.6622675 0.721719 0.2013049 -0.7643831 0.6208515 0.1739593 -0.798782 0.5809656 0.1562893 -0.5904779 0.7708746 0.2389317 -0.5497064 0.7947732 0.2572132 -0.7028898 0.6792984 0.2109493 -0.7983198 0.5749806 0.1791168 -0.8283185 0.5365561 0.1612323 -0.6434606 0.7241832 0.2480271 -0.6115137 0.7450048 0.2664939 -0.7441437 0.6320781 0.2161657 -0.8312203 0.526059 0.1798189 -0.8584411 0.4869321 0.1611713 -0.6923559 0.6754484 0.2537967 -0.6660462 0.6944594 0.2722293 -0.7814732 0.5845026 0.2183034 -0.8597651 0.4787595 0.1777456 -0.8849964 0.4379813 0.1579675 -0.7343465 0.6281407 0.2572441 -0.7117717 0.6459721 0.2758642 -0.8129171 0.5398287 0.2185195 -0.883009 0.4357821 0.1743251 -0.9066206 0.3932341 0.1529905 -0.7688109 0.5844135 0.2595969 -0.7481166 0.6021738 0.2787621 -0.8380791 0.5000214 0.2181795 -0.901146 0.3985222 0.1706339 -0.9232963 0.3546632 0.1474381 -0.7954959 0.546852 0.261035 -0.772348 0.5696094 0.2811118 -0.8588765 0.4640167 0.2168402 -0.9172132 0.3621975 0.1659309 -0.936213 0.3214913 0.1419457 -0.8088857 0.523621 0.2674413 -0.7853215 0.5477901 0.2884375 -0.8725618 0.4367234 0.2188805 -0.9316056 0.3260086 0.1607153 -0.9498538 0.2826092 0.1338273 -0.8261181 0.4944989 0.2701845 -0.8049643 0.5156459 0.2934995 -0.8884773 0.4046246 0.2165343 -0.9459224 0.2870362 0.1511327 -0.9648995 0.2341138 0.1189949 -0.840757 0.465334 0.2767527 -0.8182268 0.4864497 0.3063849 -0.9007672 0.3764209 0.2166236 -0.9563593 0.2547158 0.143167 -0.9754784 0.1934598 0.1049548 -0.8178277 0.4806191 0.3164859 -0.8042721 0.4934341 0.3311637 -0.8763671 0.4090832 0.2542273 -0.9371846 0.299882 0.1782018 -0.981439 0.1663606 0.09540325 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -73.6241 90.27571 136.115 -74.9517 90.6127 132.467 -75.6576 90.90702 130.003 -76.1183 91.17121 128.067 -76.4686 91.4311 126.327 -76.72911 91.6747 124.803 -76.9426 91.9233 123.332 -77.1279 92.1961 121.796 -77.2587 92.44181 120.469 -77.3557 92.67401 119.258 -77.4307 92.9081 118.073 -77.4845 93.1361 116.951 -77.5224 93.37271 115.814 -73.6241 90.27571 136.115 -75.03 90.5718 132.461 -75.7891 90.8472 129.808 -76.292 91.1008 127.632 -76.6803 91.35411 125.613 -76.9741 91.59391 123.803 -77.2199 91.8407 122.016 -77.43901 92.1132 120.115 -77.59901 92.36 118.445 -77.7227 92.5943 116.899 -77.82402 92.8313 115.367 -77.9027 93.0627 113.898 -77.9658 93.30371 112.394 -73.6241 90.27571 136.115 -75.1024 90.5335 132.494 -75.9111 90.7918 129.672 -76.4533 91.0362 127.269 -76.8772 91.2843 124.982 -77.2024 91.5216 122.89 -77.4786 91.7677 120.794 -77.7296 92.0413 118.532 -77.9173 92.2903 116.521 -78.0663 92.52761 114.641 -78.1924 92.7686 112.762 -78.2947 93.0045 110.948 -78.3819 93.2508 109.077 -73.6241 90.27571 136.115 -75.1711 90.4966 132.573 -76.0273 90.7391 129.598 -76.6073 90.9757 126.974 -77.0656 91.2199 124.418 -77.42121 91.456 122.04 -77.72702 91.7028 119.627 -78.00901 91.9789 116.993 -78.2237 92.2316 114.629 -78.3976 92.4733 112.403 -78.54801 92.7195 110.163 -78.6735 92.96131 107.989 -78.78421 93.2143 105.735 -73.6241 90.27571 136.115 -75.235 90.46131 132.712 -76.136 90.68991 129.605 -76.75201 90.92041 126.764 -77.2432 91.1623 123.938 -77.6279 91.39891 121.27 -77.9621 91.6481 118.531 -78.2742 91.92871 115.511 -78.5151 92.1868 112.78 -78.71302 92.4345 110.191 -78.8872 92.6876 107.575 -79.0352 92.9369 105.021 -79.16901 93.19831 102.365 -73.6241 90.27571 136.115 -75.2922 90.4285 132.926 -76.2341 90.6456 129.713 -76.8832 90.8722 126.667 -77.4049 91.1142 123.573 -77.81681 91.3534 120.61 -78.17781 91.6072 117.537 -78.51821 91.8946 114.119 -78.7838 92.1602 111.006 -79.0046 92.4161 108.039 -79.2014 92.6783 105.026 -79.3711 92.93711 102.075 -79.527 93.2091 98.9944 -75.3402 90.3994 133.235 -76.3173 90.6081 129.955 -76.9956 90.8338 126.719 -77.5445 91.0787 123.361 -77.98091 91.32331 120.101 -78.3661 91.58451 116.684 -78.7325 91.8819 112.854 -79.02101 92.1579 109.342 -79.2629 92.4246 105.979 -79.4808 92.6986 102.55 -79.6707 92.9696 99.1785 -79.8473 93.2549 95.64791 -74.3604 90.4032 134.363 -74.9918 90.5918 132.459 -74.32201 90.4254 134.322 -73.6241 90.27571 136.115 -74.3417 90.4141 134.34 -74.3958 90.3823 134.425 -75.0672 90.5522 132.472 -73.6241 90.27571 136.115 -74.3786 90.3925 134.392 -74.4293 90.36201 134.514 -75.1379 90.51451 132.528 -73.6241 90.27571 136.115 -74.4131 90.37191 134.466 -74.4603 90.3423 134.636 -75.2044 90.4783 132.636 -73.6241 90.27571 136.115 -74.44551 90.3518 134.571 -74.4879 90.3237 134.8 -75.2653 90.4442 132.811 -73.6241 90.27571 136.115 -74.4749 90.33261 134.714 -75.7753 90.5254 131.434 -76.1877 90.6665 129.646 -75.6981 90.5648 131.249 -75.7389 90.5442 131.331 -74.51081 90.30661 135.018 -75.3182 90.4131 133.071 -73.6241 90.27571 136.115 -74.5003 90.3147 134.904 -75.8404 90.4911 131.735 -76.2789 90.6254 129.818 -75.8105 90.50711 131.572 -74.0634 90.29261 135.527 -74.4816 90.32801 134.756 -74.0571 90.2973 135.477 -73.6241 90.27571 136.115 -74.0604 90.2949 135.502 -74.9326 90.3453 134.213 -75.3297 90.40602 133.15 -74.91661 90.3565 134.065 -74.5058 90.3106 134.96 -74.92501 90.3507 134.137 -74.06951 90.28781 135.588 -74.4944 90.3191 134.851 -73.6241 90.27571 136.115 -74.0666 90.2901 135.557 -74.0746 90.2834 135.652 -73.6241 90.27571 136.115 -74.0722 90.2856 135.619 + + + + + + + + + + -0.4232062 0.8790372 0.2195228 -0.2885895 0.9391975 0.1860755 -0.322678 0.9251853 0.1997777 -0.4654783 0.8532242 0.2352417 -0.3399538 0.9175609 0.2061879 -0.4862374 0.8385245 0.2458655 -0.3371786 0.9181158 0.2082645 -0.3032685 0.9326338 0.1955054 -0.6448469 0.7246859 0.2429048 -0.702452 0.6587795 0.2693898 -0.7879415 0.5689672 0.2354241 -0.845744 0.4656902 0.2604801 -0.8625076 0.4593468 0.2123231 -0.9098159 0.3445343 0.2313681 -0.8947607 0.4045315 0.1890967 -0.9336882 0.2943011 0.2039934 -0.9093093 0.380387 0.1687082 -0.9445282 0.2740288 0.1810379 -0.9156862 0.372421 0.151068 -0.9477461 0.275284 0.1612334 -0.9138042 0.3820996 0.1377024 -0.9438869 0.2961243 0.1462463 -0.9092064 0.3964177 0.1272663 -0.9382575 0.3185918 0.1348041 -0.9031339 0.4126545 0.1185989 -0.9311766 0.3423663 0.125282 -0.8955208 0.4308681 0.1113335 -0.9233121 0.3656747 0.1173748 -0.8982829 0.4263891 0.1062081 -0.9156639 0.386341 0.1109063 -0.3411468 0.9207119 0.1894955 -0.2292576 0.95994 0.161109 -0.2578285 0.9505293 0.1732591 -0.3844473 0.9001261 0.2048738 -0.2673786 0.9464612 0.1808872 -0.2404605 0.9556468 0.1700528 -0.5543137 0.8039273 0.2154935 -0.7133646 0.6666392 0.2161091 -0.8091287 0.5528273 0.1992302 -0.8554881 0.4858682 0.1790876 -0.87846 0.4500643 0.1604691 -0.8906449 0.4312989 0.14399 -0.8916155 0.4333407 0.1312931 -0.8887552 0.4420123 0.1214061 -0.8843463 0.4529005 0.1131946 -0.8778295 0.4670079 0.1063906 -0.8832374 0.4577941 0.1015692 -0.2604787 0.9522201 0.1594612 -0.1704174 0.9761162 0.1347409 -0.197182 0.9692775 0.1470396 -0.3037921 0.9365854 0.1746941 -0.2093286 0.9652801 0.1562564 -0.1763984 0.9741283 0.1412713 -0.450592 0.8740215 0.1818055 -0.6196873 0.7605932 0.1936122 -0.7398713 0.646941 0.1845481 -0.8049731 0.5688464 0.1686183 -0.8410079 0.5191562 0.1522585 -0.8620948 0.4878429 0.1371209 -0.8678401 0.4807973 0.1252502 -0.8680738 0.4827142 0.11591 -0.8657006 0.4887305 0.1081897 -0.8610175 0.4982926 0.1017522 -0.8694452 0.4843782 0.0971747 -0.1790271 0.975402 0.128609 -0.116765 0.9871923 0.108708 -0.1437435 0.982034 0.1222583 -0.2195844 0.9648591 0.1443245 -0.1557082 0.9790512 0.1312014 -0.1256466 0.9853664 0.1151786 -0.2443945 0.9591448 0.1425228 -0.353048 0.9223867 0.1567169 -0.5003902 0.8498637 0.1653521 -0.6447205 0.7459531 0.1670017 -0.7363281 0.6581389 0.1570805 -0.7923623 0.5928297 0.1439271 -0.8279176 0.5454344 0.1305904 -0.8414608 0.5269353 0.1195111 -0.8466534 0.5204986 0.1107223 -0.847757 0.5201965 0.1034594 -0.8452569 0.5254167 0.0973559 -0.8584935 0.504323 0.09299069 -0.08078479 0.9926126 0.0905205 -0.1020258 0.989922 0.09821087 -0.06830233 0.9941076 0.08417242 -0.1400817 0.9836238 0.1134082 -0.09637928 0.9904361 0.09872925 -0.08581805 0.9920046 0.09253215 -0.09763109 0.9901971 0.09988951 -0.06573843 0.9946525 0.07965517 -0.07284921 0.9937951 0.0840497 -0.07632815 0.9934562 0.08496505 -0.07236057 0.9939435 0.08270651 -0.2101525 0.9701016 0.1214038 -0.1451805 0.9833642 0.1091677 -0.1960261 0.9725313 0.1255263 -0.2780576 0.9505413 0.1384031 -0.3538452 0.9256314 0.1341645 -0.5066249 0.8500006 0.1443271 -0.6313216 0.7622493 0.1428607 -0.7213826 0.6792661 0.1349254 -0.7825055 0.6101346 0.1241815 -0.8102887 0.5748015 0.1141729 -0.8238067 0.5568851 0.1059324 -0.8305569 0.5480687 0.09897464 -0.8317236 0.5473102 0.09320724 -0.85182 0.5162619 0.08874964 -0.03988838 0.9965696 0.07251328 -0.03552442 0.9970964 0.0673561 -0.04019379 0.9966671 0.07098776 -0.047854 0.9959009 0.07675564 -0.06064212 0.9948727 0.08093756 -0.07025492 0.9938544 0.085545 -0.04022395 0.9969323 0.06714171 -0.04922759 0.9961495 0.07254433 -0.04007095 0.9970741 0.06509619 -0.06039714 0.9950423 0.07901376 -0.04931908 0.9964846 0.0677222 -0.05581969 0.995813 0.07239168 -0.06366246 0.9950694 0.07605314 -0.05426323 0.9961796 0.06842416 -0.04571735 0.9969626 0.06305211 -0.04544293 0.9968457 0.06506669 -0.051485 0.9964655 0.06637811 -0.04761391 0.9968891 0.06281113 -0.1070315 0.9897441 0.09461009 -0.06949228 0.9939811 0.08469086 -0.09354108 0.9912917 0.09268659 -0.1435625 0.9842153 0.1034907 -0.2692049 0.955447 0.1210369 -0.4185052 0.8994215 0.1260734 -0.5412177 0.8314195 0.1257978 -0.6379442 0.76054 0.1208562 -0.7099622 0.6950385 0.1134694 -0.749682 0.6532402 0.1060859 -0.7721325 0.6276248 0.09949219 -0.7849825 0.6123968 0.09366321 -0.7910035 0.6053536 0.08865904 -0.8233779 0.5605158 0.0887193 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

14 0 0 90 1 1 94 2 2 14 0 3 94 2 4 91 3 5 91 3 6 94 2 7 92 4 8 91 3 9 92 4 10 1 5 11 94 2 12 0 6 13 92 4 14 90 1 15 93 7 16 94 2 17 91 3 18 15 8 19 14 0 20 2 9 21 91 3 22 1 5 23 15 8 24 91 3 25 2 9 26 16 10 27 15 8 28 2 9 29 16 10 30 2 9 31 3 11 32 17 12 33 16 10 34 3 11 35 17 12 36 3 11 37 4 13 38 18 14 39 17 12 40 4 13 41 18 14 42 4 13 43 5 15 44 19 16 45 18 14 46 5 15 47 19 16 48 5 15 49 6 17 50 20 18 51 19 16 52 6 17 53 20 18 54 6 17 55 7 19 56 21 20 57 20 18 58 7 19 59 21 20 60 7 19 61 8 21 62 22 22 63 21 20 64 8 21 65 22 22 66 8 21 67 9 23 68 23 24 69 22 22 70 9 23 71 23 24 72 9 23 73 10 25 74 24 26 75 23 24 76 10 25 77 24 26 78 10 25 79 11 27 80 25 28 81 24 26 82 11 27 83 25 28 84 11 27 85 12 29 86 27 30 87 95 31 88 98 32 89 27 30 90 98 32 91 96 33 92 96 33 93 98 32 94 90 1 95 96 33 96 90 1 97 14 0 98 98 32 99 13 34 100 90 1 101 95 31 102 97 35 103 98 32 104 96 33 105 28 36 106 27 30 107 15 8 108 96 33 109 14 0 110 28 36 111 96 33 112 15 8 113 29 37 114 28 36 115 15 8 116 29 37 117 15 8 118 16 10 119 30 38 120 29 37 121 16 10 122 30 38 123 16 10 124 17 12 125 31 39 126 30 38 127 17 12 128 31 39 129 17 12 130 18 14 131 32 40 132 31 39 133 18 14 134 32 40 135 18 14 136 19 16 137 33 41 138 32 40 139 19 16 140 33 41 141 19 16 142 20 18 143 34 42 144 33 41 145 20 18 146 34 42 147 20 18 148 21 20 149 35 43 150 34 42 151 21 20 152 35 43 153 21 20 154 22 22 155 36 44 156 35 43 157 22 22 158 36 44 159 22 22 160 23 24 161 37 45 162 36 44 163 23 24 164 37 45 165 23 24 166 24 26 167 38 46 168 37 45 169 24 26 170 38 46 171 24 26 172 25 28 173 40 47 174 99 48 175 102 49 176 40 47 177 102 49 178 100 50 179 100 50 180 102 49 181 95 31 182 100 50 183 95 31 184 27 30 185 102 49 186 26 51 187 95 31 188 99 48 189 101 52 190 102 49 191 100 50 192 41 53 193 40 47 194 28 36 195 100 50 196 27 30 197 41 53 198 100 50 199 28 36 200 42 54 201 41 53 202 28 36 203 42 54 204 28 36 205 29 37 206 43 55 207 42 54 208 29 37 209 43 55 210 29 37 211 30 38 212 44 56 213 43 55 214 30 38 215 44 56 216 30 38 217 31 39 218 45 57 219 44 56 220 31 39 221 45 57 222 31 39 223 32 40 224 46 58 225 45 57 226 32 40 227 46 58 228 32 40 229 33 41 230 47 59 231 46 58 232 33 41 233 47 59 234 33 41 235 34 42 236 48 60 237 47 59 238 34 42 239 48 60 240 34 42 241 35 43 242 49 61 243 48 60 244 35 43 245 49 61 246 35 43 247 36 44 248 50 62 249 49 61 250 36 44 251 50 62 252 36 44 253 37 45 254 51 63 255 50 62 256 37 45 257 51 63 258 37 45 259 38 46 260 53 64 261 103 65 262 106 66 263 53 64 264 106 66 265 104 67 266 104 67 267 106 66 268 99 48 269 104 67 270 99 48 271 40 47 272 106 66 273 39 68 274 99 48 275 103 65 276 105 69 277 106 66 278 104 67 279 113 70 280 53 64 281 113 70 282 41 53 283 54 71 284 41 53 285 104 67 286 40 47 287 104 67 288 41 53 289 113 70 290 55 72 291 54 71 292 41 53 293 55 72 294 41 53 295 42 54 296 56 73 297 55 72 298 42 54 299 56 73 300 42 54 301 43 55 302 57 74 303 56 73 304 43 55 305 57 74 306 43 55 307 44 56 308 58 75 309 57 74 310 44 56 311 58 75 312 44 56 313 45 57 314 59 76 315 58 75 316 45 57 317 59 76 318 45 57 319 46 58 320 60 77 321 59 76 322 46 58 323 60 77 324 46 58 325 47 59 326 61 78 327 60 77 328 47 59 329 61 78 330 47 59 331 48 60 332 62 79 333 61 78 334 48 60 335 62 79 336 48 60 337 49 61 338 63 80 339 62 79 340 49 61 341 63 80 342 49 61 343 50 62 344 64 81 345 63 80 346 50 62 347 64 81 348 50 62 349 51 63 350 123 82 351 66 83 352 107 84 353 108 85 354 123 82 355 110 86 356 66 83 357 123 82 358 108 85 359 108 85 360 110 86 361 103 65 362 108 85 363 103 65 364 53 64 365 124 87 366 103 65 367 110 86 368 103 65 369 124 87 370 52 88 371 107 84 372 122 89 373 126 90 374 107 84 375 126 90 376 123 82 377 123 82 378 126 90 379 124 87 380 123 82 381 124 87 382 110 86 383 126 90 384 109 91 385 124 87 386 122 89 387 125 92 388 126 90 389 67 93 390 111 94 391 114 95 392 67 93 393 114 95 394 112 96 395 112 96 396 114 95 397 113 70 398 112 96 399 113 70 400 54 71 401 114 95 402 108 85 403 53 64 404 114 95 405 53 64 406 113 70 407 111 94 408 66 83 409 108 85 410 111 94 411 108 85 412 114 95 413 112 96 414 68 97 415 67 93 416 55 72 417 112 96 418 54 71 419 68 97 420 112 96 421 55 72 422 69 98 423 68 97 424 55 72 425 69 98 426 55 72 427 56 73 428 70 99 429 69 98 430 56 73 431 70 99 432 56 73 433 57 74 434 71 100 435 70 99 436 57 74 437 71 100 438 57 74 439 58 75 440 72 101 441 71 100 442 58 75 443 72 101 444 58 75 445 59 76 446 73 102 447 72 101 448 59 76 449 73 102 450 59 76 451 60 77 452 74 103 453 73 102 454 60 77 455 74 103 456 60 77 457 61 78 458 75 104 459 74 103 460 61 78 461 75 104 462 61 78 463 62 79 464 76 105 465 75 104 466 62 79 467 76 105 468 62 79 469 63 80 470 77 106 471 76 105 472 63 80 473 77 106 474 63 80 475 64 81 476 78 107 477 127 108 478 131 109 479 78 107 480 131 109 481 128 110 482 128 110 483 131 109 484 129 111 485 128 110 486 129 111 487 116 112 488 131 109 489 130 113 490 118 114 491 131 109 492 118 114 493 129 111 494 127 108 495 115 115 496 130 113 497 127 108 498 130 113 499 131 109 500 133 116 501 129 111 502 118 114 503 129 111 504 66 83 505 116 112 506 66 83 507 133 116 508 107 84 509 133 116 510 66 83 511 129 111 512 118 114 513 132 117 514 135 118 515 118 114 516 135 118 517 133 116 518 133 116 519 135 118 520 122 89 521 133 116 522 122 89 523 107 84 524 135 118 525 65 119 526 122 89 527 132 117 528 134 120 529 135 118 530 115 115 531 136 121 532 138 122 533 115 115 534 138 122 535 130 113 536 130 113 537 138 122 538 132 117 539 130 113 540 132 117 541 118 114 542 138 122 543 117 123 544 132 117 545 136 124 546 137 124 547 138 124 548 79 125 549 119 126 550 121 127 551 79 125 552 121 127 553 120 128 554 120 128 555 121 127 556 111 94 557 120 128 558 111 94 559 67 93 560 121 127 561 116 112 562 66 83 563 121 127 564 66 83 565 111 94 566 128 110 567 119 126 568 78 107 569 121 127 570 128 110 571 116 112 572 119 126 573 128 110 574 121 127 575 120 128 576 80 129 577 79 125 578 68 97 579 120 128 580 67 93 581 80 129 582 120 128 583 68 97 584 81 130 585 80 129 586 68 97 587 81 130 588 68 97 589 69 98 590 82 131 591 81 130 592 69 98 593 82 131 594 69 98 595 70 99 596 83 132 597 82 131 598 70 99 599 83 132 600 70 99 601 71 100 602 84 133 603 83 132 604 71 100 605 84 133 606 71 100 607 72 101 608 85 134 609 84 133 610 72 101 611 85 134 612 72 101 613 73 102 614 86 135 615 85 134 616 73 102 617 86 135 618 73 102 619 74 103 620 87 136 621 86 135 622 74 103 623 87 136 624 74 103 625 75 104 626 88 137 627 87 136 628 75 104 629 88 137 630 75 104 631 76 105 632 89 138 633 88 137 634 76 105 635 89 138 636 76 105 637 77 106 638

+
+
+
+ + + + -73.6241 142.507 14.1685 -73.6241 140.273 23.9329 -73.6241 137.767 33.5546 -73.6241 134.989 43.0335 -73.6241 131.94 52.3695 -73.6241 128.618 61.5628 -73.6241 125.025 70.6133 -73.6241 121.159 79.52111 -73.6241 117.022 88.28601 -73.6241 108.941 104.316 -73.6241 101.79 117.63 -73.6241 95.56771 128.23 -72.5439 142.72 14.2953 -72.5067 140.81 22.8954 -72.4694 138.638 31.4478 -72.4322 136.205 39.9526 -72.39501 133.511 48.4097 -72.35781 130.555 56.8191 -72.32061 127.337 65.1808 -72.2834 123.858 73.49491 -72.2461 120.118 81.7613 -72.1717 112.609 97.3472 -72.0973 105.567 111.135 -72.0228 98.9915 123.123 -71.94841 92.8833 133.314 -71.4285 142.777 14.3294 -71.38021 141.154 21.7539 -71.3319 139.28 29.2259 -71.2836 137.155 36.7454 -71.2353 134.779 44.3123 -71.18711 132.152 51.9266 -71.1388 129.273 59.5884 -71.0905 126.143 67.2976 -71.0422 122.763 75.0543 -70.9457 115.752 90.17401 -70.8491 108.746 104.412 -70.75251 101.744 117.767 -70.65602 94.7458 130.241 -70.31 142.699 14.283 -70.27481 141.326 20.52 -70.2396 139.711 26.8996 -70.2044 137.856 33.4218 -70.1692 135.759 40.0865 -70.13401 133.423 46.8938 -70.0988 130.845 53.8436 -70.0636 128.027 60.936 -70.0284 124.968 68.17102 -69.958 118.38 82.8007 -69.88761 111.333 97.4646 -69.8172 103.827 112.163 -69.74681 95.86341 126.896 -69.2208 142.507 14.1685 -69.2208 141.343 19.2052 -69.2208 139.948 24.4797 -69.2208 138.323 29.9918 -69.2208 136.468 35.7416 -69.2208 134.382 41.7291 -69.2208 132.066 47.9543 -69.2208 129.52 54.4171 -69.2208 126.743 61.1177 -69.2208 120.498 75.2318 -69.2208 113.332 90.2966 -69.2208 105.245 106.312 -69.2208 95.2765 125.046 -69.38581 96.17591 124.763 -69.5141 95.1543 127.343 -69.8003 94.4134 129.685 -70.2247 93.8241 131.494 -70.7644 93.2409 132.876 -71.3966 92.6195 133.918 -72.0925 91.943 134.72 -72.8313 91.1851 135.404 -73.6241 90.27571 136.115 -73.05661 91.1748 135.265 + + + + + + + + + + -0.1518951 0.9611482 0.2304826 -0.1384642 0.966991 0.2139068 -0.2164434 0.9527846 0.2129642 -0.2372565 0.9427394 0.2344183 -0.1373355 0.955886 0.2596557 -0.2248657 0.9374899 0.2656089 -0.1000111 0.9521045 0.2889549 -0.1913244 0.9356552 0.2965543 -0.04797637 0.9469542 0.3177674 -0.1437151 0.9338889 0.3274105 0.01098686 0.9383741 0.3454469 -0.09006261 0.9295589 0.3575038 0.06964445 0.9258872 0.3713254 -0.036623 0.9216793 0.3862202 0.121343 0.910378 0.3955856 0.008758842 0.9104069 0.4136216 0.1570521 0.8953132 0.4168322 0.02215659 0.9005781 0.4341294 0.08539241 0.8921955 0.4435036 -0.07294076 0.8876191 0.454766 0.03354066 0.8831979 0.4677997 -0.1307131 0.8681144 0.4788439 -0.02963435 0.8673618 0.4967951 -0.2044476 0.8375059 0.5067396 0.02200418 0.9728861 0.2302356 0.01055973 0.9767491 0.2141254 0.06625634 0.9637542 0.2584335 0.1319046 0.9497314 0.2839214 0.2076539 0.9291937 0.3057433 0.283646 0.9025157 0.3240535 0.352253 0.8723009 0.3391298 0.4085052 0.8420059 0.3523491 0.4538829 0.8134307 0.3637594 0.4348073 0.8123911 0.3885402 0.4287282 0.8055745 0.4089521 0.4069132 0.8031141 0.435235 0.2537681 0.8439202 0.4726527 -0.2088432 0.8344881 0.5099158 0.189064 0.9550252 0.2284333 0.1393827 0.9661572 0.217055 0.2736938 0.9285082 0.2509267 0.3707476 0.8896965 0.2664328 0.4660281 0.8408649 0.2752526 0.549957 0.7872442 0.2789155 0.6184184 0.7344539 0.2795289 0.6706984 0.687179 0.2791932 0.715194 0.6412453 0.2780327 0.742865 0.6071772 0.2819353 0.7760714 0.5658251 0.2784872 0.7939547 0.5400357 0.2792804 0.7504355 0.5822445 0.3127908 0.2504696 0.9435567 0.2167156 0.1917838 0.9562333 0.2209908 0.3401388 0.9105467 0.2349689 0.4452159 0.8606755 0.2470234 0.5483357 0.7974931 0.2516601 0.6379389 0.7284888 0.249676 0.7091553 0.6614836 0.2440049 0.7619159 0.6027269 0.2370744 0.800589 0.5530754 0.2305752 0.8389085 0.4974305 0.2208971 0.8829938 0.4243143 0.200697 0.9149144 0.360985 0.1806145 -0.3857047 0.7653361 0.5152598 -0.4160095 0.7494642 0.5150144 -0.3574687 0.7763112 0.5191888 -0.3290624 0.8001934 0.5014066 0.003234982 0.8683006 0.4960278 -0.150735 0.8441038 0.514556 0.9325941 0.3191353 0.1685859 0.3828963 0.8004932 0.461087 0.6402109 0.6764988 0.3639774 0.8690642 0.43441 0.2366762 0.9702357 0.2137869 0.113745 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -92.5784 16.1015 171.121 -92.5784 20.9621 172.869 -92.5784 26.0571 173.929 -92.5784 31.2746 174.274 -92.5784 33.8943 174.17 -92.5784 36.5027 173.877 -92.5784 39.0859 173.394 -92.5784 41.6307 172.725 -92.5784 46.5536 170.852 -92.5784 51.1674 168.309 -92.5784 53.326 166.801 -92.5784 55.3684 165.143 -92.5784 57.2827 163.343 -92.5784 59.0611 161.41 -92.5784 62.1835 157.195 -92.5784 64.6818 152.588 -92.5784 65.6802 150.166 -92.5784 66.5023 147.68 -92.5784 67.1426 145.143 -92.5784 67.6 142.566 -92.5784 67.9655 137.347 -92.5784 67.5981 132.129 -92.5784 67.1393 129.553 -92.5784 66.4971 127.017 -92.5784 65.6726 124.532 -92.5784 64.6717 122.112 -92.5784 62.17 117.509 -92.5784 59.0497 113.299 -92.5784 57.2757 111.369 -92.5784 55.3688 109.572 -92.5784 53.3369 107.917 -92.5784 51.1912 106.412 -92.5784 46.6054 103.874 -92.5784 41.7062 102.004 -92.5784 39.1686 101.335 -92.5784 36.5881 100.85 -92.5784 33.9772 100.555 -92.5784 31.3503 100.448 -92.5784 26.1093 100.786 -92.5784 20.9861 101.842 -92.5784 18.5064 102.632 -92.5784 16.1015 103.594 -90.8398 16.1015 175.192 -90.8398 21.4082 176.872 -90.8398 26.9326 177.818 -90.8398 32.5622 178.005 -90.8398 35.3813 177.806 -90.8398 38.1846 177.407 -90.8398 40.9579 176.807 -90.8398 43.6873 176.011 -90.8398 48.9595 173.859 -90.8398 53.8905 171.004 -90.8398 56.1934 169.329 -90.8398 58.3694 167.499 -90.8398 60.406 165.521 -90.8398 62.2953 163.407 -90.8398 65.6062 158.814 -90.8398 68.24961 153.815 -90.8398 69.30471 151.193 -90.8398 70.17321 148.505 -90.8398 70.8498 145.762 -90.8398 71.3332 142.98 -90.8398 71.71981 137.347 -90.8398 71.33171 131.714 -90.8398 70.8468 128.932 -90.8398 70.1678 126.191 -90.8398 69.2958 123.504 -90.8398 68.2369 120.883 -90.8398 65.5878 115.888 -90.8398 62.2792 111.301 -90.8398 60.3961 109.19 -90.8398 58.3701 107.216 -90.8398 56.2096 105.391 -90.8398 53.9257 103.721 -90.8398 49.0365 100.874 -90.8398 43.7996 98.72721 -90.8398 41.0811 97.9318 -90.8398 38.312 97.3304 -90.8398 35.5051 96.928 -90.8398 32.6755 96.7236 -90.8398 27.0111 96.8994 -90.8398 21.4445 97.8388 -90.8398 18.7372 98.58901 -90.8398 16.1015 99.5231 + + + + + + + + + + -0.910517 -0.09543424 0.4023073 -0.9044173 -0.1193926 0.4096033 -0.9079738 -0.1330938 0.3973282 -0.912624 -0.1233902 0.3897337 -0.910175 -0.0400412 0.4122843 -0.9047786 -0.06070309 0.4215342 -0.9088486 0.008545219 0.4170388 -0.9043461 -0.00827068 0.42672 -0.9091646 0.04449683 0.4140529 -0.9057095 0.03122079 0.4227479 -0.9090669 0.07385575 0.4100521 -0.9058206 0.0618326 0.4191251 -0.908914 0.1028487 0.4041008 -0.9058985 0.09213715 0.4133507 -0.9094148 0.1379168 0.3923565 -0.9064412 0.1282403 0.4023914 -0.9087544 0.1848272 0.3741714 -0.9056863 0.1763091 0.3855484 -0.9079353 0.2289828 0.3510276 -0.9054476 0.2227911 0.3612878 -0.908213 0.2581291 0.3294214 -0.9063928 0.2537985 0.3376961 -0.9082535 0.2808078 0.3101978 -0.9066155 0.2773011 0.3180449 -0.9082717 0.3020451 0.2895019 -0.906814 0.2993618 0.2967677 -0.9086775 0.3257615 0.2611219 -0.907283 0.3239642 0.2681136 -0.9083484 0.3555508 0.2201973 -0.9069907 0.3546599 0.2271215 -0.9078373 0.3804146 0.1763976 -0.9068657 0.380203 0.1817699 -0.9078555 0.3942168 0.1427994 -0.907222 0.3943422 0.1464325 -0.9077524 0.4034896 0.1148118 -0.907263 0.4037638 0.1176805 -0.907651 0.4107624 0.08627867 -0.9073021 0.4110922 0.08835273 -0.9076196 0.4167439 0.05050975 -0.9074166 0.4170704 0.05145472 -0.9074926 0.4200682 9.1558e-5 -0.9074485 0.4171016 -0.0506308 -0.9076505 0.4165609 -0.05145585 -0.9073599 0.4113348 -0.08661288 -0.907665 0.4102972 -0.08832192 -0.9073225 0.4042819 -0.1154219 -0.9077102 0.4027655 -0.1176525 -0.9072703 0.3952522 -0.1436532 -0.9077402 0.3931822 -0.1463407 -0.9069891 0.3820652 -0.1771923 -0.9076392 0.3788341 -0.1807648 -0.90711 0.3577412 -0.2217495 -0.9080298 0.3529514 -0.2256264 -0.9073917 0.3276217 -0.2632572 -0.9083517 0.3220722 -0.2667709 -0.9071264 0.3041558 -0.2908799 -0.9079883 0.2980848 -0.294453 -0.9070814 0.2829709 -0.3116585 -0.9079889 0.2760804 -0.315176 -0.9070092 0.2603924 -0.3309535 -0.9079794 0.2527303 -0.3342167 -0.9064761 0.2320666 -0.3527694 -0.9076444 0.2225468 -0.3558857 -0.906806 0.1871414 -0.3777316 -0.9083135 0.1756381 -0.3796287 -0.9073539 0.1385858 -0.3968662 -0.90877 0.1267767 -0.3975735 -0.9069402 0.103979 -0.4082253 -0.9081069 0.09201622 -0.4085031 -0.9068709 0.0747714 -0.4147222 -0.9080327 0.0621367 -0.4142653 -0.9067798 0.04516804 -0.4191781 -0.9079838 0.03201484 -0.4177806 -0.906048 0.01010173 -0.4230543 -0.9075007 -0.004425168 -0.4200273 -0.9066064 -0.0410484 -0.4199761 -0.9084889 -0.05642956 -0.4140815 -0.9075201 -0.09198498 -0.4098123 -0.9091325 -0.1068167 -0.4025771 -0.9070551 -0.1265622 -0.4015384 -0.9082249 -0.1413655 -0.3938825 -0.9071919 -0.1455474 -0.3947391 -0.9085025 -0.1551913 -0.3879935 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

43 0 0 1 1 1 0 2 2 43 0 3 0 2 4 42 3 5 44 4 6 2 5 7 1 1 8 44 4 9 1 1 10 43 0 11 45 6 12 3 7 13 2 5 14 45 6 15 2 5 16 44 4 17 46 8 18 4 9 19 3 7 20 46 8 21 3 7 22 45 6 23 47 10 24 5 11 25 4 9 26 47 10 27 4 9 28 46 8 29 48 12 30 6 13 31 5 11 32 48 12 33 5 11 34 47 10 35 49 14 36 7 15 37 6 13 38 49 14 39 6 13 40 48 12 41 50 16 42 8 17 43 7 15 44 50 16 45 7 15 46 49 14 47 51 18 48 9 19 49 8 17 50 51 18 51 8 17 52 50 16 53 52 20 54 10 21 55 9 19 56 52 20 57 9 19 58 51 18 59 53 22 60 11 23 61 10 21 62 53 22 63 10 21 64 52 20 65 54 24 66 12 25 67 11 23 68 54 24 69 11 23 70 53 22 71 55 26 72 13 27 73 12 25 74 55 26 75 12 25 76 54 24 77 56 28 78 14 29 79 13 27 80 56 28 81 13 27 82 55 26 83 57 30 84 15 31 85 14 29 86 57 30 87 14 29 88 56 28 89 58 32 90 16 33 91 15 31 92 58 32 93 15 31 94 57 30 95 59 34 96 17 35 97 16 33 98 59 34 99 16 33 100 58 32 101 60 36 102 18 37 103 17 35 104 60 36 105 17 35 106 59 34 107 61 38 108 19 39 109 18 37 110 61 38 111 18 37 112 60 36 113 62 40 114 20 40 115 19 39 116 62 40 117 19 39 118 61 38 119 63 41 120 21 42 121 20 40 122 63 41 123 20 40 124 62 40 125 64 43 126 22 44 127 21 42 128 64 43 129 21 42 130 63 41 131 65 45 132 23 46 133 22 44 134 65 45 135 22 44 136 64 43 137 66 47 138 24 48 139 23 46 140 66 47 141 23 46 142 65 45 143 67 49 144 25 50 145 24 48 146 67 49 147 24 48 148 66 47 149 68 51 150 26 52 151 25 50 152 68 51 153 25 50 154 67 49 155 69 53 156 27 54 157 26 52 158 69 53 159 26 52 160 68 51 161 70 55 162 28 56 163 27 54 164 70 55 165 27 54 166 69 53 167 71 57 168 29 58 169 28 56 170 71 57 171 28 56 172 70 55 173 72 59 174 30 60 175 29 58 176 72 59 177 29 58 178 71 57 179 73 61 180 31 62 181 30 60 182 73 61 183 30 60 184 72 59 185 74 63 186 32 64 187 31 62 188 74 63 189 31 62 190 73 61 191 75 65 192 33 66 193 32 64 194 75 65 195 32 64 196 74 63 197 76 67 198 34 68 199 33 66 200 76 67 201 33 66 202 75 65 203 77 69 204 35 70 205 34 68 206 77 69 207 34 68 208 76 67 209 78 71 210 36 72 211 35 70 212 78 71 213 35 70 214 77 69 215 79 73 216 37 74 217 36 72 218 79 73 219 36 72 220 78 71 221 80 75 222 38 76 223 37 74 224 80 75 225 37 74 226 79 73 227 81 77 228 39 78 229 38 76 230 81 77 231 38 76 232 80 75 233 82 79 234 40 80 235 39 78 236 82 79 237 39 78 238 81 77 239 83 81 240 41 82 241 40 80 242 83 81 243 40 80 244 82 79 245

+
+
+
+ + + + -79.8473 46.3673 220.708 -79.8473 52.3691 220.068 -79.8473 58.1636 218.587 -79.8473 63.6916 216.259 -79.8473 68.88 213.077 -79.8473 73.4979 209.201 -79.8473 77.4663 204.823 -79.8473 80.88901 199.976 -79.8473 83.7913 194.77 -79.8473 86.2185 189.299 -79.8473 88.1711 183.81 -79.8473 89.7914 178.148 -79.8473 91.1198 172.357 -79.8473 92.1947 166.47 -79.8473 93.0516 160.515 -79.8473 93.72251 154.515 -79.8473 94.2284 148.59 -79.8473 94.61911 142.408 -79.8473 94.88951 136.371 -79.8473 95.0935 129.28 -78.6105 46.3673 220.697 -78.5693 52.9761 219.494 -78.5437 59.1021 217.442 -78.5309 64.75341 214.566 -78.52901 69.9133 210.895 -78.5358 74.4071 206.633 -78.54901 78.2065 201.988 -78.5671 81.4461 196.994 -78.58901 84.1729 191.759 -78.6139 86.4451 186.371 -78.64041 88.2722 181.06 -78.66901 89.79251 175.666 -78.6998 91.0458 170.224 -78.7325 92.06871 164.76 -78.7671 92.8937 159.295 -78.80371 93.5494 153.843 -78.8416 94.0532 148.508 -78.88301 94.4516 142.988 -78.9255 94.73561 137.638 -78.97801 94.95901 131.402 -77.2743 46.3673 220.607 -77.20011 53.5383 218.846 -77.15641 59.9634 216.228 -77.1378 65.7149 212.81 -77.1403 70.8302 208.652 -77.1597 75.1885 204 -77.1913 78.8106 199.084 -77.2322 81.8603 193.931 -77.2803 84.4051 188.652 -77.3339 86.51541 183.327 -77.3901 88.2102 178.173 -77.4505 89.623 173.021 -77.5148 90.7932 167.899 -77.58271 91.7555 162.827 -77.6542 92.5396 157.818 -77.7294 93.1708 152.878 -77.8068 93.6631 148.095 -77.8912 94.05931 143.196 -77.9775 94.3474 138.493 -78.0838 94.5794 133.062 -75.90351 46.3673 220.455 -75.8044 54.0431 218.161 -75.7493 60.7297 215.001 -75.7308 66.5586 211.063 -75.74301 71.6174 206.438 -75.77951 75.8356 201.41 -75.833 79.28 196.225 -75.89981 82.1407 190.912 -75.9766 84.5047 185.577 -76.0611 86.4534 180.297 -76.14881 88.0149 175.275 -76.2424 89.3179 170.335 -76.3412 90.4013 165.499 -76.4451 91.29811 160.778 -76.5541 92.0352 156.179 -76.6681 92.635 151.703 -76.78511 93.1084 147.422 -76.9123 93.4944 143.089 -77.0418 93.77861 138.975 -77.20111 94.0097 134.278 -74.4831 46.3673 220.249 -74.3652 54.5083 217.434 -74.3044 61.4295 213.745 -74.2909 67.3184 209.299 -74.3172 72.31 204.213 -74.3745 76.3824 198.813 -74.4534 79.6459 193.361 -74.54901 82.3155 187.881 -74.6571 84.49681 182.481 -74.7746 86.2818 177.232 -74.8958 87.7071 172.323 -75.0241 88.8966 167.574 -75.15901 89.8889 162.999 -75.3001 90.71501 158.602 -75.4475 91.3995 154.383 -75.6012 91.9617 150.338 -75.7584 92.4099 146.525 -75.92881 92.7788 142.719 -76.1019 93.0525 139.157 -76.3142 93.2751 135.147 -73.0769 46.3673 220.008 -72.9461 54.9237 216.7 -72.8842 62.0486 212.513 -72.8795 67.9808 207.587 -72.9229 72.8992 202.067 -73.00341 76.8266 196.312 -73.1093 79.9135 190.602 -73.235 82.3978 184.957 -73.3752 84.4018 179.487 -73.5264 86.0275 174.256 -73.6813 87.31961 169.442 -73.8444 88.39701 164.859 -74.01501 89.29811 160.514 -74.193 90.0521 156.405 -74.3781 90.6814 152.528 -74.57061 91.2025 148.871 -74.7671 91.6214 145.48 -74.9794 91.9683 142.152 -75.19461 92.2264 139.088 -75.458 92.4345 135.703 -71.5726 46.3673 219.717 -71.4328 55.328 215.904 -71.3738 62.6454 211.205 -71.3819 68.6099 205.787 -71.44651 73.444 199.818 -71.5541 77.2156 193.698 -71.6906 80.11602 187.717 -71.8498 82.4053 181.898 -72.0256 84.22301 176.346 -72.2135 85.68061 171.123 -72.40501 86.8316 166.395 -72.6056 87.7894 161.969 -72.8147 88.59191 157.846 -73.0319 89.26702 154.019 -73.2573 89.8344 150.475 -73.4909 90.30801 147.199 -73.7287 90.6915 144.223 -73.9851 91.0106 141.365 -74.2445 91.2475 138.794 -74.5613 91.4347 136.025 -69.97 46.3673 219.375 -69.8253 55.721 215.045 -69.7732 63.2199 209.821 -69.79821 69.20571 203.898 -69.888 73.9443 197.469 -70.0265 77.5495 190.97 -70.19741 80.2532 184.708 -70.3937 82.33802 178.702 -70.6082 83.9602 173.059 -70.8361 85.24121 167.834 -71.0669 86.24311 163.183 -71.3078 87.0737 158.905 -71.55801 87.7705 154.996 -71.817 88.3596 151.442 -72.08501 88.8585 148.224 -72.3619 89.2784 145.321 -72.64331 89.6205 142.754 -72.94601 89.9057 140.36 -73.2516 90.1157 138.275 -73.6241 90.27571 136.115 -78.5878 49.7271 220.205 -79.22821 52.675 219.794 -79.8473 49.385 220.494 -79.24961 46.3673 220.713 -79.2379 49.5572 220.361 -78.5548 56.0972 218.572 -79.2145 58.6375 218.03 -79.8473 55.2946 219.433 -79.2205 55.6994 219.017 -78.5358 61.9882 216.105 -79.2073 64.2295 215.431 -79.8473 60.9658 217.529 -79.2102 61.4829 216.834 -78.5287 67.3956 212.828 -79.2055 69.4061 212.007 -79.8473 66.3324 214.775 -79.20571 66.8722 213.822 -78.53141 72.21881 208.852 -79.208 73.96411 207.941 -79.8473 71.2383 211.239 -79.2063 71.7391 210.068 -77.2331 50.0451 219.84 -77.9029 53.2594 219.182 -77.96131 46.3673 220.662 -77.929 49.8872 220.033 -77.1748 56.8375 217.641 -77.8674 59.537 216.849 -77.8826 56.4705 218.12 -77.14421 62.921 214.615 -77.8509 65.2406 213.705 -77.857 62.46 215.376 -77.1366 68.3498 210.82 -77.8505 70.38031 209.793 -77.8489 67.88021 211.842 -75.8479 50.3316 219.424 -76.5178 53.7925 218.514 -76.60511 46.3673 220.539 -76.5564 50.1893 219.642 -75.7719 57.4993 216.684 -76.4677 60.3502 215.627 -76.48851 57.1712 217.174 -75.7359 63.7457 213.124 -76.4485 66.1422 211.951 -76.4546 63.3379 213.883 -75.7334 69.179 208.831 -76.4552 71.2311 207.561 -76.4489 68.7708 209.841 -74.4164 50.5967 218.961 -75.0988 54.2774 217.807 -75.2079 46.3673 220.36 -75.1465 50.465 219.201 -74.3284 58.107 215.692 -75.0402 61.0829 214.384 -75.0638 57.8056 216.198 -74.2923 64.4942 211.609 -75.0237 66.9434 210.194 -75.0272 64.1241 212.379 -74.2995 69.91841 206.829 -75.0423 71.9703 205.34 -75.02901 69.5545 207.844 -73.0021 50.8341 218.477 -73.6674 54.7174 217.075 -73.7923 46.3673 220.135 -73.7213 50.7161 218.726 -72.90731 58.6471 214.708 -73.6056 61.7418 213.138 -73.6294 58.3791 215.209 -72.8753 65.1522 210.133 -73.596 67.6538 208.454 -73.59481 64.8267 210.881 -72.8957 70.5563 204.893 -73.6304 72.6102 203.153 -73.6081 70.24221 205.873 -71.4917 51.0659 217.936 -72.20121 55.1272 216.31 -72.33702 46.3673 219.869 -72.25891 50.9507 218.214 -71.3941 59.1706 213.656 -72.1402 62.3498 211.868 -72.1622 58.911 214.191 -71.3702 65.78231 208.575 -72.14151 68.2996 206.698 -72.1337 65.47071 209.364 -71.4078 71.1553 202.861 -72.195 73.1772 200.955 -72.1622 70.86071 203.889 -69.885 51.2922 217.339 -70.6408 55.5259 215.482 -70.7835 46.3673 219.552 -70.7004 51.1797 217.644 -69.7887 59.6774 212.533 -70.5848 62.9354 210.523 -70.6029 59.4261 213.103 -69.7769 66.3846 206.935 -70.6009 68.91201 204.853 -70.5846 66.08702 207.765 -69.8357 71.7154 200.735 -70.6775 73.6997 198.657 -70.6323 71.4402 201.81 -69.9514 75.8518 194.248 -70.8001 77.3894 192.348 -71.4952 75.4276 196.795 -70.7333 75.6459 195.535 + + + + + + + + + + 0.3200823 0.2341105 0.9180086 0.3191384 0.2021891 0.925889 0.1839708 0.1409385 0.9727749 0.1970908 0.1743237 0.9647624 0.3385232 0.1657823 0.9262388 0.1928505 0.1104183 0.9749956 0.01626652 0.1050458 0.9943343 0.01931869 0.1250069 0.9919679 0.04861694 0.157906 0.9862566 0.4823564 0.3377563 0.8082407 0.4930169 0.3072429 0.8139632 0.4194208 0.2572436 0.8705814 0.4125261 0.2884051 0.8640861 0.5244136 0.2639312 0.8095251 0.4460937 0.2169583 0.8682911 0.5737673 0.4246488 0.7003318 0.5881001 0.3950372 0.7057506 0.5477577 0.3528624 0.758584 0.5343977 0.3831427 0.7534062 0.6228029 0.347887 0.7007791 0.5814244 0.3073605 0.7533095 0.6237457 0.4970006 0.6032675 0.6373948 0.4717363 0.609256 0.6168909 0.4348419 0.6560169 0.6030846 0.4629416 0.6495954 0.6723176 0.4235824 0.6070972 0.6517384 0.3868314 0.6523793 0.635874 0.5770018 0.5125752 0.6541571 0.5446833 0.5247845 0.6491413 0.507197 0.5668923 0.6460865 0.5360961 0.5432986 0.6837571 0.499664 0.5318009 0.6833253 0.4599552 0.5670166 0.6461271 0.6197888 0.4454007 0.6853099 0.5630192 0.4619089 0.6357413 0.6691597 0.3847836 0.6879029 0.602327 0.4049593 0.6143844 0.715861 0.3317754 0.6547532 0.6666556 0.3561865 0.5845018 0.7593762 0.2858419 0.6087638 0.7295583 0.3116912 0.5469738 0.8001651 0.2460802 0.5524865 0.7883073 0.2707956 0.5045217 0.8373394 0.2105251 0.4892209 0.8406175 0.2324333 0.4582185 0.8707801 0.1782639 0.4210402 0.8856005 0.1960541 0.409996 0.8998304 0.1490256 0.3514292 0.9221087 0.1619046 0.362347 0.9239497 0.1225625 0.2844728 0.9497687 0.1304406 0.3180106 0.942923 0.09882134 0.2243167 0.9691705 0.1019344 0.2797964 0.9569174 0.0776093 0.1748735 0.9816113 0.07654148 0.2487044 0.9668312 0.05817037 0.1364493 0.9891432 0.05456751 0.2311217 0.9720968 0.0401327 0.1135908 0.9928671 0.03622573 0.126655 0.9915105 0.02942055 0.08414036 0.9960427 0.02862662 0.3227696 0.2896259 0.9010753 0.3220984 0.2627998 0.9094992 0.209269 0.2039892 0.9563446 0.218976 0.2308786 0.9480214 0.07437598 0.1869318 0.9795534 0.09586113 0.2126891 0.9724064 0.4639552 0.3933945 0.7937168 0.4733272 0.3660511 0.801229 0.4073384 0.3169409 0.8565186 0.4025463 0.3437666 0.8483991 0.5483348 0.4793008 0.6852735 0.5609517 0.4523322 0.6933461 0.523131 0.4111252 0.746532 0.5116564 0.4384405 0.7389032 0.5838955 0.5648209 0.5831325 0.6249795 0.5137662 0.5877457 0.5896042 0.4898973 0.6421586 0.5763498 0.5162581 0.6334812 0.6121868 0.6168563 0.4946875 0.6347637 0.6476427 0.4214667 0.6362386 0.6831164 0.3585423 0.6295177 0.7143303 0.3056794 0.6166348 0.7425864 0.2613946 0.5976847 0.7697204 0.2242843 0.5751387 0.7951838 0.1920893 0.5494095 0.8193838 0.1635837 0.5218433 0.8418039 0.1380066 0.4940769 0.8618038 0.1148136 0.4681934 0.8786448 0.09369361 0.4467734 0.891563 0.07422316 0.4318778 0.9001957 0.05594176 0.4284269 0.9027849 0.03781312 0.3788971 0.9249485 0.03012251 0.3256089 0.3355581 0.8839569 0.3244229 0.3134053 0.8924835 0.2292582 0.2543142 0.9395557 0.2371331 0.2760145 0.9314419 0.1139876 0.2355438 0.9651559 0.1290665 0.2566376 0.9578512 0.4495125 0.4412114 0.7767053 0.4568971 0.4177719 0.78531 0.3991031 0.3678206 0.8398957 0.3952829 0.3906745 0.8313393 0.5253269 0.5280736 0.6672106 0.5371409 0.5039053 0.6764312 0.5017363 0.463221 0.730539 0.4916917 0.4872054 0.7217134 0.5591821 0.610028 0.5614101 0.585295 0.575773 0.5708899 0.564588 0.5402331 0.6240102 0.5519802 0.564005 0.6141794 0.5909767 0.6550368 0.470822 0.6199403 0.6769505 0.396752 0.6302537 0.7011196 0.3334842 0.6342512 0.7201018 0.2813875 0.6333924 0.736089 0.23872 0.6274825 0.7514835 0.2038097 0.6184459 0.766282 0.1741744 0.6065418 0.7810819 0.1483851 0.5928457 0.7954967 0.125375 0.5786698 0.8088437 0.1044663 0.565672 0.820232 0.08505678 0.5559784 0.8285198 0.06665515 0.5524508 0.8321248 0.04864686 0.5585929 0.8289015 0.02993929 0.5455294 0.8377501 0.02392697 0.3281435 0.3747465 0.8671143 0.3270745 0.3557626 0.8754744 0.2438179 0.2958226 0.9236027 0.2499221 0.3140736 0.9159132 0.1435936 0.2754677 0.9505254 0.1553707 0.2927355 0.943486 0.4364895 0.4837032 0.7586227 0.442982 0.4628804 0.7677948 0.3918655 0.411764 0.8227344 0.3885434 0.431698 0.814046 0.5036951 0.5722115 0.6471981 0.5144636 0.5505374 0.6574465 0.4830619 0.5092476 0.7122629 0.4742059 0.5305747 0.7025805 0.5338994 0.6523436 0.5379584 0.5604563 0.6200605 0.5490116 0.540102 0.5863083 0.6037654 0.5278027 0.6080993 0.5929922 0.5683006 0.6914156 0.4460707 0.601204 0.7072898 0.3718803 0.6185721 0.7224914 0.3088282 0.6310452 0.7316365 0.2578566 0.6394724 0.7375922 0.2168706 0.6432191 0.7432605 0.1839382 0.6440436 0.7488155 0.1564711 0.6420069 0.7551119 0.13279 0.6380031 0.7618803 0.1117612 0.6329413 0.7686609 0.09244316 0.6285541 0.7742248 0.07413244 0.6265583 0.7773534 0.05609416 0.630213 0.7755129 0.03756862 0.6422777 0.7662774 0.0172739 0.649671 0.7601215 0.01196366 0.3299714 0.4081916 0.8511748 0.3295765 0.3918051 0.8589925 0.2554447 0.330491 0.9085834 0.2601181 0.3460001 0.9014559 0.1654154 0.3083075 0.9367947 0.1747505 0.3231022 0.93009 0.4256503 0.5202291 0.7403941 0.4310811 0.502343 0.749547 0.3866729 0.4494194 0.8052989 0.3837251 0.4665863 0.7969018 0.4846822 0.6106062 0.6262933 0.4944469 0.59156 0.636851 0.4663097 0.5498115 0.6930097 0.4584344 0.5684575 0.6831501 0.510583 0.6894854 0.5137265 0.5348877 0.6611476 0.5260981 0.5171476 0.6275049 0.5820618 0.5062482 0.6464828 0.5707653 0.5220003 0.7415554 0.4214395 0.5812996 0.736032 0.3469119 0.6038888 0.7445531 0.284533 0.6232099 0.7459596 0.2348482 0.6390985 0.7438703 0.1954742 0.6503 0.7416741 0.1644061 0.6586098 0.739578 0.138772 0.6638236 0.7387178 0.1167665 0.6666931 0.7389627 0.0972343 0.6681571 0.7398161 0.07898372 0.6695719 0.740225 0.06116145 0.6726171 0.7387527 0.0427882 0.6806956 0.7322117 0.02279764 0.6963598 0.7176927 -4.5779e-4 0.7150007 0.6991003 -0.005737543 0.3311019 0.4389564 0.8352777 0.330314 0.4239178 0.8433187 0.264938 0.3607381 0.894246 0.2693908 0.3748949 0.887064 0.1831424 0.3373225 0.9234026 0.1913877 0.3508825 0.9166528 0.4148197 0.5546291 0.721326 0.4203447 0.5376615 0.7309108 0.3807592 0.4833042 0.7883145 0.3787776 0.4991465 0.7793461 0.4656087 0.6470178 0.6038019 0.4749743 0.629128 0.6153028 0.4508059 0.5864658 0.672928 0.4432071 0.6040154 0.6623691 0.5003986 0.7119907 0.4926161 0.5105602 0.6964238 0.5043037 0.4952409 0.6650517 0.5589658 0.4839419 0.6832014 0.5468419 0.5286836 0.7197336 0.4499747 0.5143463 0.7625314 0.3924206 0.5453107 0.7758196 0.317396 0.5844731 0.7689923 0.2589249 0.6096255 0.7642064 0.210584 0.632055 0.7553836 0.1729224 0.6497666 0.7464533 0.1435651 0.6643717 0.7377703 0.1196046 0.6756364 0.7305406 0.09912669 0.6839309 0.7250706 0.08069223 0.6902906 0.7207796 0.0630533 0.6959201 0.7167034 0.04507625 0.7023459 0.7113796 0.02548378 0.7131968 0.7009587 0.002685666 0.7309355 0.6819522 -0.02597182 0.756031 0.6537599 -0.03186243 0.3205745 0.4753378 0.8193205 0.3312526 0.4536336 0.8273382 0.272418 0.3886672 0.8801854 0.2668871 0.4048932 0.8745473 0.1984344 0.3638474 0.9100763 0.1974002 0.3716055 0.9071618 0.3888762 0.6001304 0.6990128 0.4100794 0.5707908 0.7113598 0.3764175 0.5146061 0.7703833 0.3601884 0.5407404 0.7601739 0.4246454 0.6981287 0.5764483 0.4559822 0.6644564 0.5920962 0.4356353 0.6210718 0.6515303 0.4088668 0.6530821 0.6374258 0.4522944 0.7631019 0.4616333 0.487978 0.7294185 0.479402 0.4726526 0.700754 0.5343627 0.4383207 0.735031 0.5173051 0.4592814 0.8140046 0.3556082 0.5166925 0.7669511 0.3805457 0.5009455 0.751632 0.4290723 0.4642603 0.7845304 0.4110651 0.4927605 0.8221526 0.2850479 0.5287435 0.8175153 0.2282524 0.5643925 0.8049757 0.1829628 0.5971783 0.7882924 0.148234 0.6237162 0.7721605 0.1214349 0.6457257 0.7570599 0.09949266 0.6630635 0.7442145 0.08057105 0.6763319 0.7338908 0.06308281 0.6865022 0.7256891 0.04571795 0.6949214 0.7185738 0.02713149 0.7032234 0.7109448 0.005859673 0.7155256 0.6983127 -0.01956284 0.7336804 0.6775251 -0.05169939 0.7642366 0.6424947 -0.05606412 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -79.8473 46.3673 220.708 -79.8473 44.5706 220.736 -79.8473 42.7695 220.69 -79.8473 40.9668 220.571 -79.8473 39.1656 220.379 -79.8473 37.3689 220.114 -79.8473 35.58 219.777 -79.8473 33.8021 219.367 -79.8473 32.0386 218.884 -79.8473 30.2931 218.33 -79.8473 28.5692 217.704 -79.8473 26.8704 217.007 -79.8473 25.2007 216.239 -79.8473 23.5639 215.399 -79.8473 21.9641 214.489 -79.8473 20.4052 213.509 -79.8473 18.8915 212.458 -76.6559 46.3673 220.545 -76.74501 44.5489 220.694 -76.8285 42.7356 220.756 -76.9065 40.9292 220.732 -76.97901 39.1316 220.621 -77.04602 37.3445 220.423 -77.1075 35.5699 220.138 -77.1634 33.8099 219.767 -77.2138 32.0664 219.31 -77.2586 30.3416 218.767 -77.2979 28.6377 218.138 -77.33171 26.9569 217.424 -77.36 25.3014 216.623 -77.3827 23.6737 215.737 -77.3999 22.0762 214.766 -77.4116 20.5113 213.71 -77.4178 18.9816 212.569 -74.2848 46.3673 220.217 -74.3947 44.5322 220.45 -74.4958 42.7081 220.587 -74.58802 40.8959 220.629 -74.67131 39.0969 220.577 -74.7458 37.312 220.429 -74.8114 35.5426 220.187 -74.86811 33.7897 219.849 -74.916 32.0547 219.418 -74.955 30.3389 218.891 -74.9852 28.6435 218.27 -75.0065 26.9699 217.555 -75.0189 25.3195 216.745 -75.0225 23.6937 215.841 -75.0172 22.0941 214.843 -75.0031 20.522 213.752 -74.98011 18.9791 212.566 -72.1152 46.3673 219.825 -72.2239 44.5168 220.131 -72.32101 42.6819 220.335 -72.4065 40.8631 220.437 -72.4805 39.0609 220.437 -72.5429 37.2759 220.336 -72.59381 35.5086 220.133 -72.63301 33.7597 219.828 -72.6608 32.0296 219.422 -72.67691 30.319 218.915 -72.68151 28.6286 218.306 -72.6745 26.9589 217.595 -72.65602 25.3106 216.784 -72.6259 23.6845 215.871 -72.5843 22.0811 214.857 -72.53102 20.5013 213.741 -72.4663 18.9457 212.525 -69.97 46.3673 219.375 -70.0636 44.5013 219.75 -70.14321 42.6552 220.018 -70.2088 40.8289 220.178 -70.2604 39.0224 220.231 -70.29811 37.2358 220.175 -70.3217 35.469 220.012 -70.3313 33.722 219.741 -70.3269 31.9949 219.363 -70.3086 30.2876 218.877 -70.2762 28.6001 218.283 -70.2298 26.9324 217.581 -70.1695 25.2846 216.772 -70.0951 23.6566 215.855 -70.0067 22.0484 214.83 -69.90441 20.46 213.698 -69.788 18.8915 212.458 -76.70111 45.4575 220.63 -78.4205 44.5607 220.772 -79.8473 45.4697 220.731 -78.3675 46.3673 220.686 -78.3944 45.4641 220.739 -76.7874 43.6415 220.736 -78.4708 42.7544 220.777 -79.8473 43.6704 220.722 -78.44601 43.6573 220.785 -76.8682 41.8315 220.755 -78.51831 40.9508 220.703 -79.8473 41.8682 220.64 -78.49491 41.8521 220.75 -76.9435 40.0292 220.687 -78.56311 39.1523 220.549 -79.8473 40.0658 220.484 -78.5411 40.0507 220.636 -77.0132 38.2366 220.532 -78.60511 37.3613 220.315 -79.8473 38.2665 220.256 -78.5844 38.2557 220.442 -77.0774 36.4555 220.291 -78.6443 35.5805 220.001 -79.8473 36.4733 219.954 -78.625 36.4694 220.168 -77.1361 34.688 219.964 -78.6808 33.8124 219.608 -79.8473 34.6894 219.581 -78.66291 34.6947 219.815 -77.1893 32.9359 219.55 -78.7145 32.0599 219.136 -79.8473 32.9183 219.134 -78.69802 32.934 219.382 -77.2369 31.2015 219.05 -78.7454 30.3256 218.585 -79.8473 31.1634 218.616 -78.7303 31.1903 218.87 -77.27901 29.4869 218.464 -78.7736 28.6126 217.955 -79.8473 29.4282 218.026 -78.75981 29.4663 218.28 -77.3155 27.7942 217.792 -78.79901 26.9238 217.246 -79.8473 27.7164 217.365 -78.7866 27.765 217.61 -77.34661 26.1258 217.034 -78.8216 25.2621 216.459 -79.8473 26.0317 216.632 -78.8106 26.0893 216.863 -77.3721 24.484 216.191 -78.8415 23.6308 215.594 -79.8473 24.378 215.828 -78.8319 24.4425 216.036 -77.39202 22.8711 215.262 -78.8586 22.033 214.651 -79.8473 22.7591 214.953 -78.85041 22.8275 215.132 -77.4065 21.2895 214.249 -78.8729 20.4721 213.63 -79.8473 21.1793 214.008 -78.8661 21.2477 214.15 -77.4154 19.7419 213.15 -78.8845 18.9513 212.531 -79.8473 19.6424 212.992 -78.8791 19.7064 213.09 + + + + + + + + + + 0.07822036 0.05172979 0.9955931 0.09555363 0.07904309 0.9922811 0.02975583 0.04629701 0.9984846 0.01107853 0.0247817 0.9996315 -0.0116887 0.02118009 0.9997074 -0.03143483 6.10385e-4 0.9995056 0.04287952 0.06247287 0.9971252 0.001770079 0.03714138 0.9993085 0.1102036 0.08700931 0.9900933 0.04547327 0.005951166 0.9989479 0.06225794 0.03341782 0.9975005 -0.007355153 0.002594113 0.9999696 -0.02514779 -0.01895242 0.9995041 -0.05078428 -0.02029538 0.9985035 -0.06906378 -0.04022359 0.9968011 0.01519834 -0.04052889 0.9990628 0.03064149 -0.01269602 0.9994499 -0.04217702 -0.04019325 0.9983015 -0.05862689 -0.06201446 0.9963519 -0.08710265 -0.06058114 0.9943557 -0.1045897 -0.08105933 0.9912066 -0.01202452 -0.08758997 0.9960842 0.001922667 -0.05987757 0.9982039 -0.07419186 -0.08362227 0.9937318 -0.08862841 -0.1053531 0.9904776 -0.1208847 -0.1008949 0.9875257 -0.1358108 -0.1206427 0.9833621 -0.03521853 -0.1344042 0.9903005 -0.02331656 -0.1076409 0.9939165 -0.101719 -0.1267749 0.9867023 -0.1139885 -0.148536 0.9823155 -0.1495428 -0.1405702 0.978712 -0.1622694 -0.1606214 0.9735859 -0.05432426 -0.1811318 0.9819574 -0.04458796 -0.1555238 0.9868254 -0.124732 -0.1699309 0.9775303 -0.133918 -0.1907446 0.9724621 -0.1731373 -0.17976 0.9683542 -0.1822619 -0.1987729 0.9629486 -0.0682401 -0.2282809 0.971201 -0.06113058 -0.2030158 0.9772654 -0.1418225 -0.2123523 0.9668469 -0.148168 -0.2334982 0.9610021 -0.1903772 -0.2188208 0.9570131 -0.1966368 -0.2382959 0.9510778 -0.07748842 -0.2746125 0.9584276 -0.07278853 -0.2501058 0.9654787 -0.1532963 -0.2546191 0.9548138 -0.1566851 -0.275618 0.9484117 -0.2018548 -0.2577968 0.9448785 -0.2046037 -0.2767522 0.9389066 -0.08142465 -0.3205105 0.9437389 -0.0794115 -0.297015 0.951565 -0.1584239 -0.2965528 0.9417847 -0.1584236 -0.3172745 0.9350075 -0.2056071 -0.2960352 0.9327855 -0.2051207 -0.3156313 0.9264461 -0.08054 -0.365955 0.927141 -0.08078479 -0.3431904 0.9357853 -0.1570525 -0.338612 0.9277265 -0.1539993 -0.3596979 0.9202726 -0.2026458 -0.3353117 0.9200548 -0.1979144 -0.3549336 0.9137024 -0.07544422 -0.4106705 0.9086573 -0.07776224 -0.3883537 0.9182236 -0.1492399 -0.3805161 0.9126527 -0.1429206 -0.4011421 0.9047977 -0.1910186 -0.3745906 0.9073002 -0.1832395 -0.3946182 0.9003887 -0.06595301 -0.454133 0.8884894 -0.07025521 -0.4332814 0.8985163 -0.1351997 -0.4221712 0.8963775 -0.1260147 -0.4432945 0.8874742 -0.173258 -0.4147265 0.8932994 -0.1609612 -0.434937 0.8859578 -0.05343973 -0.4967671 0.8662371 -0.05938929 -0.4766101 0.8771066 -0.1154524 -0.4637323 0.8784209 -0.1038579 -0.4843143 0.8687078 -0.1477132 -0.4551643 0.8780698 -0.1330627 -0.4753636 0.8696688 -0.03830122 -0.5374686 0.8424136 -0.04532134 -0.5185555 0.853842 -0.09103846 -0.5046639 0.8585024 -0.0774284 -0.5249689 0.8475923 -0.1165543 -0.4953024 0.8608662 -0.09891271 -0.5154692 0.8511803 -0.02206557 -0.5774591 0.8161215 -0.02963429 -0.5590542 0.8286014 -0.06283885 -0.5450104 0.8360712 -0.04760891 -0.564807 0.8238486 -0.0796864 -0.5351899 0.8409648 -0.0600019 -0.555186 0.8295592 -0.00714153 -0.6049247 0.7962507 -0.01300132 -0.5979698 0.8014132 -0.03216755 -0.5842958 0.8109031 -0.02191275 -0.5909121 0.8064384 -0.03973573 -0.5745815 0.8174823 -0.02578878 -0.5793779 0.814651 0.1438363 0.1213437 0.9821339 0.1222887 0.09192252 0.9882286 0.09238016 0.04315346 0.9947883 0.06457877 -0.006836295 0.9978892 0.03949213 -0.05813944 0.9975271 0.01754856 -0.1103575 0.993737 -4.27271e-4 -0.1627902 0.9866607 -0.01440483 -0.2151271 0.9764799 -0.0243234 -0.2667949 0.9634464 -0.03033608 -0.3180409 0.9475916 -0.03238064 -0.3676625 0.9293955 -0.03100782 -0.4159204 0.9088723 -0.02694839 -0.4625483 0.8861846 -0.02053928 -0.5070439 0.8616755 -0.01251304 -0.5492007 0.8355969 -0.00363177 -0.589209 0.8079726 0.002197325 -0.6091635 0.7930417 0.1594009 0.1259826 0.9791424 0.1811623 0.158456 0.970604 0.130468 0.07559514 0.9885664 0.10297 0.02291947 0.9944204 0.0778532 -0.03152579 0.9964663 0.05554521 -0.08737689 0.9946256 0.03628665 -0.1441091 0.9888963 0.02041721 -0.2008152 0.9794164 0.008240044 -0.2566622 0.9664661 -5.18816e-4 -0.3118388 0.9501349 -0.006042718 -0.3654937 0.9307942 -0.008423149 -0.4167041 0.9090032 -0.008453726 -0.4656569 0.884925 -0.006561636 -0.512086 0.8589091 -0.003296017 -0.5556617 0.831402 7.93506e-4 -0.5962283 0.8028146 0.004272639 -0.614442 0.7889505 0.1812846 0.1521997 0.9715819 0.2018207 0.1832043 0.9621355 0.1527189 0.1010496 0.98309 0.1252199 0.04696887 0.9910166 0.09918749 -0.009979784 0.9950188 0.07608479 -0.06845498 0.9947487 0.05569738 -0.1281193 0.9901936 0.03830146 -0.1879368 0.9814341 0.02420145 -0.2472943 0.9686382 0.01361155 -0.305558 0.9520761 0.006225943 -0.3620828 0.9321252 0.001586973 -0.4159122 0.9094035 -4.27261e-4 -0.4668442 0.8843396 -5.49338e-4 -0.514913 0.8572423 8.24022e-4 -0.5593888 0.8289051 0.002777218 -0.6006811 0.7994839 0.004791438 -0.6182242 0.7859873 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

18 0 0 85 1 1 89 2 2 18 0 3 89 2 4 86 3 5 86 3 6 89 2 7 87 4 8 86 3 9 87 4 10 1 5 11 89 2 12 88 6 13 0 7 14 89 2 15 0 7 16 87 4 17 85 1 18 17 8 19 88 6 20 85 1 21 88 6 22 89 2 23 19 9 24 90 10 25 93 11 26 19 9 27 93 11 28 91 12 29 91 12 30 93 11 31 92 13 32 91 12 33 92 13 34 2 14 35 93 11 36 86 3 37 1 5 38 93 11 39 1 5 40 92 13 41 90 10 42 18 0 43 86 3 44 90 10 45 86 3 46 93 11 47 20 15 48 94 16 49 97 17 50 20 15 51 97 17 52 95 18 53 95 18 54 97 17 55 96 19 56 95 18 57 96 19 58 3 20 59 97 17 60 91 12 61 2 14 62 97 17 63 2 14 64 96 19 65 94 16 66 19 9 67 91 12 68 94 16 69 91 12 70 97 17 71 21 21 72 98 22 73 101 23 74 21 21 75 101 23 76 99 24 77 99 24 78 101 23 79 100 25 80 99 24 81 100 25 82 4 26 83 101 23 84 95 18 85 3 20 86 101 23 87 3 20 88 100 25 89 98 22 90 20 15 91 95 18 92 98 22 93 95 18 94 101 23 95 22 27 96 102 28 97 105 29 98 22 27 99 105 29 100 103 30 101 103 30 102 105 29 103 104 31 104 103 30 105 104 31 106 5 32 107 105 29 108 99 24 109 4 26 110 105 29 111 4 26 112 104 31 113 102 28 114 21 21 115 99 24 116 102 28 117 99 24 118 105 29 119 23 33 120 106 34 121 109 35 122 23 33 123 109 35 124 107 36 125 107 36 126 109 35 127 108 37 128 107 36 129 108 37 130 6 38 131 109 35 132 103 30 133 5 32 134 109 35 135 5 32 136 108 37 137 106 34 138 22 27 139 103 30 140 106 34 141 103 30 142 109 35 143 24 39 144 110 40 145 113 41 146 24 39 147 113 41 148 111 42 149 111 42 150 113 41 151 112 43 152 111 42 153 112 43 154 7 44 155 113 41 156 107 36 157 6 38 158 113 41 159 6 38 160 112 43 161 110 40 162 23 33 163 107 36 164 110 40 165 107 36 166 113 41 167 25 45 168 114 46 169 117 47 170 25 45 171 117 47 172 115 48 173 115 48 174 117 47 175 116 49 176 115 48 177 116 49 178 8 50 179 117 47 180 111 42 181 7 44 182 117 47 183 7 44 184 116 49 185 114 46 186 24 39 187 111 42 188 114 46 189 111 42 190 117 47 191 26 51 192 118 52 193 121 53 194 26 51 195 121 53 196 119 54 197 119 54 198 121 53 199 120 55 200 119 54 201 120 55 202 9 56 203 121 53 204 115 48 205 8 50 206 121 53 207 8 50 208 120 55 209 118 52 210 25 45 211 115 48 212 118 52 213 115 48 214 121 53 215 27 57 216 122 58 217 125 59 218 27 57 219 125 59 220 123 60 221 123 60 222 125 59 223 124 61 224 123 60 225 124 61 226 10 62 227 125 59 228 119 54 229 9 56 230 125 59 231 9 56 232 124 61 233 122 58 234 26 51 235 119 54 236 122 58 237 119 54 238 125 59 239 28 63 240 126 64 241 129 65 242 28 63 243 129 65 244 127 66 245 127 66 246 129 65 247 128 67 248 127 66 249 128 67 250 11 68 251 129 65 252 123 60 253 10 62 254 129 65 255 10 62 256 128 67 257 126 64 258 27 57 259 123 60 260 126 64 261 123 60 262 129 65 263 29 69 264 130 70 265 133 71 266 29 69 267 133 71 268 131 72 269 131 72 270 133 71 271 132 73 272 131 72 273 132 73 274 12 74 275 133 71 276 127 66 277 11 68 278 133 71 279 11 68 280 132 73 281 130 70 282 28 63 283 127 66 284 130 70 285 127 66 286 133 71 287 30 75 288 134 76 289 137 77 290 30 75 291 137 77 292 135 78 293 135 78 294 137 77 295 136 79 296 135 78 297 136 79 298 13 80 299 137 77 300 131 72 301 12 74 302 137 77 303 12 74 304 136 79 305 134 76 306 29 69 307 131 72 308 134 76 309 131 72 310 137 77 311 31 81 312 138 82 313 141 83 314 31 81 315 141 83 316 139 84 317 139 84 318 141 83 319 140 85 320 139 84 321 140 85 322 14 86 323 141 83 324 135 78 325 13 80 326 141 83 327 13 80 328 140 85 329 138 82 330 30 75 331 135 78 332 138 82 333 135 78 334 141 83 335 32 87 336 142 88 337 145 89 338 32 87 339 145 89 340 143 90 341 143 90 342 145 89 343 144 91 344 143 90 345 144 91 346 15 92 347 145 89 348 139 84 349 14 86 350 145 89 351 14 86 352 144 91 353 142 88 354 31 81 355 139 84 356 142 88 357 139 84 358 145 89 359 33 93 360 146 94 361 149 95 362 33 93 363 149 95 364 147 96 365 147 96 366 149 95 367 148 97 368 147 96 369 148 97 370 16 98 371 149 95 372 143 90 373 15 92 374 149 95 375 15 92 376 148 97 377 146 94 378 32 87 379 143 90 380 146 94 381 143 90 382 149 95 383 85 1 384 34 99 385 17 8 386 35 100 387 85 1 388 18 0 389 34 99 390 85 1 391 35 100 392 90 10 393 35 100 394 18 0 395 36 101 396 90 10 397 19 9 398 35 100 399 90 10 400 36 101 401 94 16 402 36 101 403 19 9 404 37 102 405 94 16 406 20 15 407 36 101 408 94 16 409 37 102 410 98 22 411 37 102 412 20 15 413 38 103 414 98 22 415 21 21 416 37 102 417 98 22 418 38 103 419 102 28 420 38 103 421 21 21 422 39 104 423 102 28 424 22 27 425 38 103 426 102 28 427 39 104 428 106 34 429 39 104 430 22 27 431 40 105 432 106 34 433 23 33 434 39 104 435 106 34 436 40 105 437 110 40 438 40 105 439 23 33 440 41 106 441 110 40 442 24 39 443 40 105 444 110 40 445 41 106 446 114 46 447 41 106 448 24 39 449 42 107 450 114 46 451 25 45 452 41 106 453 114 46 454 42 107 455 118 52 456 42 107 457 25 45 458 43 108 459 118 52 460 26 51 461 42 107 462 118 52 463 43 108 464 122 58 465 43 108 466 26 51 467 44 109 468 122 58 469 27 57 470 43 108 471 122 58 472 44 109 473 126 64 474 44 109 475 27 57 476 45 110 477 126 64 478 28 63 479 44 109 480 126 64 481 45 110 482 130 70 483 45 110 484 28 63 485 46 111 486 130 70 487 29 69 488 45 110 489 130 70 490 46 111 491 134 76 492 46 111 493 29 69 494 47 112 495 134 76 496 30 75 497 46 111 498 134 76 499 47 112 500 138 82 501 47 112 502 30 75 503 48 113 504 138 82 505 31 81 506 47 112 507 138 82 508 48 113 509 142 88 510 48 113 511 31 81 512 49 114 513 142 88 514 32 87 515 48 113 516 142 88 517 49 114 518 146 94 519 49 114 520 32 87 521 50 115 522 146 94 523 33 93 524 49 114 525 146 94 526 50 115 527 52 116 528 51 117 529 34 99 530 52 116 531 34 99 532 35 100 533 53 118 534 52 116 535 35 100 536 53 118 537 35 100 538 36 101 539 54 119 540 53 118 541 36 101 542 54 119 543 36 101 544 37 102 545 55 120 546 54 119 547 37 102 548 55 120 549 37 102 550 38 103 551 56 121 552 55 120 553 38 103 554 56 121 555 38 103 556 39 104 557 57 122 558 56 121 559 39 104 560 57 122 561 39 104 562 40 105 563 58 123 564 57 122 565 40 105 566 58 123 567 40 105 568 41 106 569 59 124 570 58 123 571 41 106 572 59 124 573 41 106 574 42 107 575 60 125 576 59 124 577 42 107 578 60 125 579 42 107 580 43 108 581 61 126 582 60 125 583 43 108 584 61 126 585 43 108 586 44 109 587 62 127 588 61 126 589 44 109 590 62 127 591 44 109 592 45 110 593 63 128 594 62 127 595 45 110 596 63 128 597 45 110 598 46 111 599 64 129 600 63 128 601 46 111 602 64 129 603 46 111 604 47 112 605 65 130 606 64 129 607 47 112 608 65 130 609 47 112 610 48 113 611 66 131 612 65 130 613 48 113 614 66 131 615 48 113 616 49 114 617 67 132 618 66 131 619 49 114 620 67 132 621 49 114 622 50 115 623 69 133 624 68 134 625 51 117 626 69 133 627 51 117 628 52 116 629 70 135 630 69 133 631 52 116 632 70 135 633 52 116 634 53 118 635 71 136 636 70 135 637 53 118 638 71 136 639 53 118 640 54 119 641 72 137 642 71 136 643 54 119 644 72 137 645 54 119 646 55 120 647 73 138 648 72 137 649 55 120 650 73 138 651 55 120 652 56 121 653 74 139 654 73 138 655 56 121 656 74 139 657 56 121 658 57 122 659 75 140 660 74 139 661 57 122 662 75 140 663 57 122 664 58 123 665 76 141 666 75 140 667 58 123 668 76 141 669 58 123 670 59 124 671 77 142 672 76 141 673 59 124 674 77 142 675 59 124 676 60 125 677 78 143 678 77 142 679 60 125 680 78 143 681 60 125 682 61 126 683 79 144 684 78 143 685 61 126 686 79 144 687 61 126 688 62 127 689 80 145 690 79 144 691 62 127 692 80 145 693 62 127 694 63 128 695 81 146 696 80 145 697 63 128 698 81 146 699 63 128 700 64 129 701 82 147 702 81 146 703 64 129 704 82 147 705 64 129 706 65 130 707 83 148 708 82 147 709 65 130 710 83 148 711 65 130 712 66 131 713 84 149 714 83 148 715 66 131 716 84 149 717 66 131 718 67 132 719

+
+
+
+ + + + -71.9516 114.101 -192.388 -74.2154 116.008 -185.994 -75.7072 117.597 -180.812 -76.6263 119.02 -176.179 -77.14241 120.467 -171.351 -77.39511 122.168 -165.51 -77.4943 124.388 -157.759 -77.52 127.431 -147.124 -75.512 115.601 -185.231 -76.6901 116.766 -179.53 -77.4387 117.806 -174.24 -77.8851 118.865 -168.805 -78.13391 120.114 -162.61 -78.2676 121.752 -154.982 -78.3461 124.008 -145.191 -76.8828 115.051 -183.92 -77.70771 115.72 -177.692 -78.2464 116.306 -171.739 -78.5834 116.905 -165.688 -78.78881 117.63 -159.131 -78.91751 118.614 -151.618 -79.0094 120.011 -142.664 -78.32791 114.358 -182.061 -78.7601 114.46 -175.299 -79.0492 114.52 -168.674 -79.23751 114.586 -162 -79.36 114.716 -155.073 -79.4441 114.975 -147.668 -79.50981 115.44 -139.543 -79.8473 114.06 -186.959 -79.8473 113.523 -179.654 -79.8473 112.985 -172.35 -79.8473 112.447 -165.045 -79.8473 111.909 -157.741 -79.8473 111.372 -150.436 -79.8473 110.834 -143.132 -79.8473 110.296 -135.827 -73.7548 114.197 -191.841 -75.6719 114.223 -190.754 -76.67301 114.209 -190.007 -77.7027 114.177 -189.126 -78.7607 114.128 -188.11 -69.1202 114.493 -209.303 -69.8794 113.987 -203.778 -70.55091 113.707 -199.303 -71.3353 113.689 -194.84 -71.6645 113.841 -193.363 -71.9516 114.101 -192.388 -71.0371 114.435 -207.456 -72.0048 114.107 -202.644 -72.65171 113.926 -198.637 -73.2663 113.9 -194.485 -73.5263 114.009 -192.975 -73.12831 114.416 -205.082 -74.2918 114.242 -200.98 -74.9014 114.137 -197.437 -75.3287 114.072 -193.593 -75.51081 114.121 -192.048 -75.3936 114.435 -202.179 -76.7402 114.392 -198.784 -77.2999 114.341 -195.704 -77.5223 114.205 -192.164 -77.6177 114.178 -190.582 -77.8332 114.493 -198.747 -79.3502 114.558 -196.058 -79.8473 114.537 -193.438 -79.8473 114.299 -190.198 -79.8473 114.18 -188.578 -79.8473 114.06 -186.959 -76.1671 114.399 -200.478 -75.4958 114.315 -199.949 -73.7805 114.31 -202.985 -74.2392 114.421 -203.696 -74.9528 114.351 -201.798 -77.1166 114.383 -197.17 -76.082 114.24 -196.637 -74.6646 114.191 -199.115 -75.8712 114.286 -198.209 -78.72161 114.516 -197.442 -78.025 114.473 -197.488 -76.5916 114.459 -200.529 -77.4233 114.454 -199.026 -79.7238 114.579 -194.692 -78.555 114.44 -194.638 -78.40081 114.48 -195.997 -78.7607 114.128 -188.11 -77.7027 114.177 -189.126 -76.67301 114.209 -190.007 -75.6719 114.223 -190.754 -73.7548 114.197 -191.841 + + + + + + + + + + -0.8350696 0.4907201 -0.2487019 -0.8366888 0.4357252 -0.3318067 -0.4950513 0.7852885 -0.3718149 -0.5137683 0.8064826 -0.2926227 -0.9397378 0.2983527 -0.1669688 -0.9419501 0.2466271 -0.2278271 -0.9675453 0.2291675 -0.1064809 -0.9669393 0.2102771 -0.1442642 -0.9763449 0.2040524 -0.07150685 -0.9723386 0.2142136 -0.09311378 -0.9807999 0.1872361 -0.05453801 -0.9748879 0.2120131 -0.06814813 -0.9849249 0.1661786 -0.04803764 -0.9775501 0.2019434 -0.06012213 -0.8530472 0.4998464 -0.1498807 -0.5243267 0.8373968 -0.1544291 -0.9485414 0.3000662 -0.1011411 -0.9758276 0.208478 -0.06555569 -0.9853516 0.1646525 -0.04440581 -0.9899122 0.1376404 -0.03360134 -0.9932765 0.1118527 -0.02984774 -0.8318873 0.5523332 -0.05377447 -0.4777781 0.878068 -0.02691793 -0.9435187 0.329084 -0.03842312 -0.9776832 0.2084462 -0.02618545 -0.9894971 0.1433492 -0.01861673 -0.9944526 0.1041604 -0.01464897 -0.9972878 0.07211548 -0.01470994 -0.7540057 0.6558256 0.03698915 -0.3942167 0.9171941 0.05786442 -0.9136157 0.4059327 0.02291971 -0.9678739 0.2510478 0.01397758 -0.9868789 0.1612296 0.00866723 -0.9943147 0.1063593 0.005096673 -0.9972445 0.07403951 -0.004669427 -0.0852403 0.9658129 -0.2448256 -0.05417156 0.9783238 -0.1998702 -0.07523024 0.9882481 -0.1330645 -0.1361751 0.9837143 -0.1173145 -0.06186187 0.9976029 -0.03100723 -0.08862793 0.9960269 -0.008697986 0.01522874 0.9971956 0.07327514 0.0953412 0.9928731 0.0715059 0.1095036 0.9894998 0.09433543 0.07181209 0.9934673 0.08868932 0.05157655 0.9956418 0.07770055 0.1125841 0.9926263 0.04492372 0.1227164 0.9905818 0.06073254 0.09058016 0.9958024 -0.01315361 0.102025 0.9947056 -0.01232963 0.03631716 0.9937783 -0.1052892 0.04846417 0.9898232 -0.1337953 0.1087691 0.9910687 0.07715159 0.1030005 0.99323 0.05371284 0.07870835 0.9941241 0.07431358 0.1147223 0.9920626 0.05148613 0.1138368 0.99273 0.0390951 0.07644969 0.9970505 0.00677514 0.01248216 0.9985466 -0.0524314 0.09335893 0.9951167 0.03204536 0.1004377 0.9939697 0.04400819 0.1053218 0.9923629 0.06421244 0.1058095 0.992784 0.05642968 0.09686768 0.9926344 0.07275754 0.1006513 0.9926887 0.06662279 0.1157885 0.9922904 0.0441913 0.1102964 0.993126 0.03918665 0.1109074 0.9929171 0.04260504 0.1071226 0.9935845 0.03625684 0.08105927 0.9959673 0.03845429 0.006531 0.9999784 7.93488e-4 0.06628775 0.9977961 0.002990841 0.08267515 0.996405 0.0184943 0.1055963 0.9931854 0.04931896 0.02792519 0.9994797 -0.01614475 0.1044656 0.9926519 0.06106793 0.09030508 0.9949735 0.04327559 0.1354444 0.9886099 0.06561636 0.1143561 0.9923071 0.04742711 0.1030338 0.994203 0.0307331 0.1115776 0.9929984 0.03878968 0.1029095 0.9922282 0.06994915 0.03787434 0.9977647 0.05505663 -0.05090612 0.981744 -0.1832682 -0.02923744 0.9636458 -0.2655786 -0.06082451 0.9937011 -0.0941208 -0.02517837 0.9991089 -0.03387635 -0.04422247 0.99902 -0.001861631 0.01675468 0.9988125 0.04574733 0.01586973 0.9971405 0.07388597 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -90.8398 16.1015 -108.65 -92.5784 16.1015 -112.72 -90.8398 20.6595 -107.153 -92.5784 20.2073 -111.187 -90.8398 25.362 -106.203 -92.5784 24.4659 -110.151 -90.8398 30.1437 -105.814 -92.5784 28.8172 -109.627 -90.8398 34.9379 -105.989 -92.5784 33.2001 -109.622 -90.8398 39.6782 -106.729 -92.5784 37.5526 -110.136 -90.8398 44.2985 -108.021 -92.5784 41.8137 -111.163 -90.8398 48.7343 -109.849 -92.5784 45.9228 -112.687 -90.8398 52.9244 -112.185 -92.5784 49.8226 -114.687 -90.8398 56.81 -114.999 -92.5784 53.4578 -117.136 -90.8398 60.3377 -118.25 -92.5784 56.7776 -119.997 -90.8398 63.4578 -121.895 -92.5784 59.7344 -123.233 -90.8398 66.12741 -125.881 -92.5784 62.2876 -126.795 -90.8398 68.3087 -130.154 -92.5784 64.4002 -130.635 -90.8398 69.9724 -134.654 -92.5784 66.04351 -134.698 -90.8398 71.0942 -139.318 -92.5784 67.1931 -138.928 -90.8398 71.6596 -144.082 -92.5784 67.8342 -143.263 -90.8398 71.6596 -148.88 -92.5784 67.9563 -147.644 -90.8398 71.0955 -153.644 -92.5784 67.5592 -152.009 -90.8398 69.9738 -158.309 -92.5784 66.64701 -156.296 -90.8398 68.3113 -162.809 -92.5784 65.2339 -160.445 -90.8398 66.13 -167.082 -92.5784 63.3386 -164.397 -90.8398 63.4614 -171.069 -92.5784 60.9889 -168.097 -90.8398 60.3415 -174.713 -92.5784 58.2171 -171.491 -90.8398 56.8147 -177.965 -92.5784 55.0625 -174.534 -90.8398 52.9291 -180.78 -92.5784 51.5699 -177.182 -90.8398 48.7395 -183.117 -92.5784 47.7879 -179.397 -90.8398 44.3038 -184.945 -92.5784 43.7701 -181.148 -90.8398 39.6838 -186.238 -92.5784 39.5734 -182.412 -90.8398 34.9436 -186.977 -92.5784 35.2563 -183.168 -90.8398 30.1494 -187.154 -92.5784 30.88 -183.408 -90.8398 25.3677 -186.765 -92.5784 26.5062 -183.128 -90.8398 20.665 -185.816 -92.5784 22.1963 -182.331 + + + + + + + + + + -0.9084276 -0.123144 0.3994933 -0.9098785 -0.1451203 0.3886661 -0.9073655 -0.1391063 0.3966577 -0.9065331 -0.1074875 0.4082207 -0.908439 -0.074925 0.4112482 -0.9065416 -0.05865782 0.4180212 -0.908427 -0.02566641 0.417255 -0.9065419 -0.009033679 0.4220193 -0.9084334 0.02383542 0.4173495 -0.9065692 0.04065138 0.4200951 -0.908419 0.07318377 0.4116054 -0.9065676 0.08990901 0.4123731 -0.9084127 0.121437 0.4000495 -0.9065819 0.137826 0.3988899 -0.9083894 0.1680055 0.3828877 -0.906562 0.1838454 0.379929 -0.9083821 0.2121714 0.3603131 -0.906585 0.227249 0.3556145 -0.9083822 0.2533729 0.332632 -0.9065936 0.2675284 0.3263688 -0.9083777 0.2910019 0.3002798 -0.906607 0.3040945 0.2925583 -0.9083737 0.3245412 0.263686 -0.9066262 0.3363798 0.2547111 -0.9083613 0.353511 0.223405 -0.9066333 0.3640328 0.2132986 -0.908343 0.3775225 0.1799717 -0.9066277 0.3866146 0.1689836 -0.9083265 0.3962236 0.1339768 -0.9066566 0.4037656 0.1222589 -0.9083196 0.4093267 0.08606481 -0.9066629 0.4153351 0.07388687 -0.9083146 0.4166491 0.03698933 -0.906668 0.4211361 0.02444595 -0.9082965 0.4181362 -0.01263469 -0.9066898 0.4210405 -0.02526974 -0.9082854 0.4137198 -0.06207627 -0.9066974 0.4151233 -0.07465016 -0.9082795 0.4034628 -0.1106623 -0.9067201 0.4034004 -0.1229916 -0.9082611 0.3875369 -0.1577249 -0.9067274 0.3860992 -0.1696261 -0.9082482 0.3661375 -0.2025552 -0.9067441 0.3634179 -0.2138757 -0.9082378 0.339582 -0.2445161 -0.9067653 0.3356536 -0.2551736 -0.9082269 0.3082154 -0.2830674 -0.9067859 0.3032385 -0.2928926 -0.9082209 0.2725365 -0.3175828 -0.9067971 0.2666799 -0.3264982 -0.9081981 0.233016 -0.3476777 -0.9068104 0.2263593 -0.3556071 -0.9081889 0.1901343 -0.372883 -0.9068469 0.1828709 -0.3797196 -0.9081839 0.1446599 -0.3927793 -0.9068624 0.1369419 -0.3985568 -0.9081461 0.09708011 -0.4072421 -0.9068505 0.08899426 -0.4119495 -0.9081187 0.04809767 -0.4159413 -0.906872 0.03988832 -0.4195141 -0.9080986 -0.001434385 -0.4187539 -0.9068875 -0.009705185 -0.4212609 -0.9080756 -0.05112004 -0.4156748 -0.9068993 -0.05923712 -0.4171627 -0.9071756 -0.08017325 -0.4130434 -0.9059029 -0.08374482 -0.4151228 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -86.5152 27.7605 -212.365 -74.83541 27.7605 -212.365 -63.1556 27.7605 -212.365 -86.5152 51.5857 -208.718 -74.83541 52.9969 -213.421 -63.1556 54.408 -218.125 + + + + + + + + + + -0.327898 0.01971536 -0.9445075 -0.05148571 -0.1048637 -0.993153 -0.1149349 0.01162773 -0.993305 -0.3843222 0.1396842 -0.9125705 -0.2679613 -0.08987993 -0.9592281 0 -0.2112524 -0.9774315 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

4 0 0 1 1 1 0 2 2 4 0 3 0 2 4 3 3 5 5 4 6 2 5 7 1 1 8 5 4 9 1 1 10 4 0 11

+
+
+
+ + + + -63.1556 54.408 -218.125 -63.1556 67.8516 -209.303 -74.83541 52.9969 -213.421 -70.0954 67.3621 -206.188 -86.5152 51.5857 -208.718 -77.0353 66.87271 -203.073 + + + + + + + + + + -0.3798727 0.5109832 -0.7710985 -0.3824994 0.506927 -0.7724761 -0.3759078 0.5109563 -0.7730571 -0.3733449 0.5125319 -0.7732558 -0.3813478 0.5130324 -0.7690069 -0.3782922 0.5141051 -0.7697995 -0.3742907 0.5140699 -0.7717763 -0.3728537 0.515989 -0.771191 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

3 0 0 1 1 1 0 2 2 3 3 3 0 3 4 2 3 5 5 4 6 3 4 7 2 4 8 5 5 9 2 6 10 4 7 11

+
+
+
+ + + + -65.01702 97.6665 124.292 -58.9917 99.19741 123.842 -52.8372 100.503 123.48 -45.9809 101.766 123.145 -39.6256 102.584 122.924 -33.0139 103.144 122.762 -26.5705 103.495 122.652 -20.0479 103.705 122.576 -13.4833 103.801 122.526 -6.94484 103.805 122.498 0 103.726 122.489 -64.1149 97.1733 126.882 -58.1301 98.7941 126.318 -52.0294 100.158 125.864 -45.2422 101.466 125.441 -38.966 102.319 125.15 -32.4488 102.915 124.924 -26.1057 103.3 124.755 -19.6908 103.543 124.623 -13.2393 103.672 124.521 -6.81747 103.707 124.444 0 103.662 124.384 -63.3687 96.9503 129.352 -57.3971 98.5436 128.82 -51.3283 99.8716 128.391 -44.5895 101.136 127.991 -38.3763 101.956 127.715 -31.9392 102.526 127.501 -25.6837 102.89 127.342 -19.3648 103.116 127.217 -13.0156 103.231 127.121 -6.70024 103.255 127.048 0 103.199 126.991 -73.6241 90.27571 136.115 -68.5432 94.01181 135.468 -62.1082 96.3413 135.021 -56.1222 97.7363 134.752 -50.0844 98.8773 134.533 -43.4117 99.9458 134.329 -37.3009 100.617 134.201 -31.0023 101.057 134.117 -24.9034 101.314 134.068 -18.7591 101.445 134.042 -12.5984 101.475 134.036 -6.48085 101.424 134.046 0 101.295 134.07 -72.5513 89.5172 143.555 -67.4028 92.77701 143.772 -60.7531 94.6798 144.052 -54.7158 95.7613 144.218 -48.689 96.6164 144.348 -42.0721 97.3917 144.468 -36.0672 97.83802 144.587 -29.9209 98.0839 144.721 -23.9987 98.1766 144.859 -18.0542 98.1613 145.003 -12.1113 98.05941 145.153 -6.22412 97.8883 145.305 0 97.64402 145.47 -71.7084 88.1268 152.876 -66.4449 90.85501 153.987 -59.5394 92.28302 155.019 -53.426 93.0219 155.636 -47.3902 93.56771 156.126 -40.8105 94.02801 156.583 -34.897 94.23281 156.957 -28.8897 94.2686 157.318 -23.1328 94.1841 157.649 -17.3776 94.00981 157.97 -11.6427 93.7643 158.281 -5.97659 93.46331 158.582 0 93.0926 158.893 -71.0368 86.1254 163.757 -65.6229 88.3543 165.642 -58.431 89.3357 167.322 -52.223 89.749 168.326 -46.1634 89.9992 169.125 -39.6068 90.15731 169.871 -33.7739 90.1306 170.464 -27.896 89.96511 171.017 -22.2958 89.7112 171.514 -16.722 89.3853 171.984 -11.1877 89.0029 172.432 -5.7359 88.5782 172.857 0 88.0875 173.291 -70.5031 83.2292 175.723 -64.9103 85.11251 178.137 -57.4074 85.7803 180.254 -51.0899 85.94841 181.518 -44.9945 85.9677 182.526 -38.4499 85.8841 183.464 -32.6888 85.6727 184.202 -26.9325 85.34851 184.881 -21.4821 84.9622 185.483 -16.0834 84.51902 186.048 -10.7437 84.0316 186.582 -5.50073 83.5129 187.086 0 82.93201 187.595 -70.2845 81.27381 181.921 -64.5924 83.0886 184.478 -56.9253 83.6902 186.709 -50.5479 83.7904 188.039 -44.4303 83.7382 189.099 -37.8877 83.57501 190.085 -32.1596 83.3033 190.858 -26.4613 82.9285 191.567 -21.0834 82.5013 192.193 -15.77 82.0227 192.779 -10.5256 81.5045 193.33 -5.38507 80.9591 193.849 0 80.3534 194.373 -70.09941 78.85031 188.138 -64.30101 80.69551 190.746 -56.4638 81.3166 193.009 -50.0228 81.4006 194.357 -43.8802 81.3185 195.43 -37.337 81.1147 196.428 -31.6396 80.8129 197.207 -25.9974 80.415 197.919 -20.6904 79.9706 198.547 -15.4607 79.4787 199.132 -10.3102 78.9503 199.682 -5.27075 78.3974 200.198 0 77.7859 200.718 -69.9508 75.8377 194.273 -64.0386 77.8366 196.83 -56.0247 78.5841 199.037 -49.5162 78.7164 200.35 -43.3454 78.65641 201.394 -36.7986 78.4606 202.364 -31.1297 78.1665 203.119 -25.5414 77.77941 203.807 -20.3035 77.34761 204.411 -15.156 76.86991 204.973 -10.0977 76.357 205.501 -5.15789 75.8203 205.994 0 75.2271 206.491 -69.8432 72.0958 200.211 -63.8088 74.3982 202.611 -55.6109 75.4021 204.671 -49.0304 75.6612 205.893 -42.8279 75.6863 206.863 -36.274 75.5577 207.762 -30.6311 75.317 208.461 -25.0945 74.9822 209.095 -19.9235 74.5991 209.65 -14.8562 74.1691 210.166 -9.88841 73.7028 210.648 -5.04668 73.2116 211.099 0 72.6655 211.552 -69.7828 67.4656 205.829 -63.6164 70.2499 207.961 -55.226 71.66481 209.779 -48.5685 72.14421 210.852 -42.3302 72.3296 211.702 -35.7655 72.3385 212.488 -30.1455 72.2059 213.096 -24.6579 71.9728 213.646 -19.5516 71.68151 214.126 -14.5623 71.3389 214.57 -9.68294 70.9564 214.985 -4.93734 70.5451 215.372 0 70.0809 215.759 -69.7727 64.7623 208.476 -63.5362 67.8641 210.433 -55.046 69.5508 212.093 -48.3477 70.1803 213.07 -42.0897 70.47811 213.842 -35.518 70.5858 214.555 -29.9082 70.5308 215.105 -24.4439 70.3696 215.601 -19.3689 70.1426 216.033 -14.4177 69.8608 216.433 -9.58181 69.5361 216.805 -4.88348 69.17961 217.152 0 68.77111 217.498 -63.4676 65.2442 212.746 -54.875 67.25151 214.224 -48.1345 68.0606 215.09 -41.8555 68.4944 215.773 -35.2756 68.7233 216.401 -29.675 68.7629 216.884 -24.2332 68.6892 217.319 -19.1888 68.5401 217.697 -14.2751 68.33171 218.045 -9.48187 68.0764 218.369 -4.8302 67.7856 218.67 0 67.4438 218.97 -63.4118 62.369 214.882 -54.7139 64.7493 216.153 -47.9293 65.7697 216.894 -41.6281 66.36502 217.475 -35.0386 66.7389 218.008 -29.4462 66.8917 218.416 -24.026 66.92221 218.782 -19.0115 66.8656 219.098 -14.1343 66.74401 219.389 -9.3832 66.5708 219.659 -4.77757 66.3574 219.909 0 66.09391 220.157 -54.5634 62.026 217.863 -47.733 63.2915 218.464 -41.4079 64.0755 218.932 -34.8074 64.61991 219.358 -29.2222 64.9057 219.682 -23.8226 65.05841 219.971 -18.837 65.1098 220.219 -13.9957 65.0896 220.447 -9.28593 65.0119 220.656 -4.72563 64.8885 220.85 0 64.7159 221.041 -47.5462 60.6089 219.78 -41.1956 61.6108 220.123 -34.5826 62.3531 220.432 -29.0034 62.793 220.664 -23.6233 63.0869 220.868 -18.6657 63.2631 221.042 -13.8595 63.3596 221.2 -9.190151 63.3918 221.344 -4.67445 63.3718 221.475 0 63.3036 221.604 -40.9918 58.9548 221.03 -34.3647 59.924 221.211 -28.7901 60.5406 221.342 -23.4285 60.9961 221.455 -18.4978 61.3149 221.547 -13.7257 61.5445 221.629 -9.095992 61.7021 221.702 -4.62407 61.7997 221.766 0 61.8501 221.827 -67.72821 95.8939 127.349 -64.5414 97.3641 125.627 -68.1568 96.1132 126.066 -66.9934 95.6793 129.792 -63.727 97.04811 128.11 -67.34381 95.7642 128.575 -71.2937 92.3188 135.77 -69.0763 94.2467 132.708 -65.7892 95.2059 135.241 -62.7134 96.7229 132.008 -66.3626 95.5096 132.354 -70.2241 91.32 143.646 -67.94651 93.49771 139.357 -73.0543 89.9886 139.586 -70.72901 91.9172 139.452 -64.5311 93.7689 143.91 -61.4102 95.6235 139.261 -65.1366 94.5955 139.306 -69.36071 89.6616 153.417 -66.90441 91.8888 148.667 -72.1054 88.8926 147.996 -69.7705 90.5625 148.316 -63.4349 91.6206 154.502 -60.1312 93.5561 149.329 -63.9657 92.7685 148.996 -68.6509 87.4083 164.69 -66.01902 89.6808 159.669 -71.3539 87.2131 158.148 -68.98902 88.6165 158.896 -62.4593 88.9078 166.482 -58.9737 90.8761 161.045 -62.9339 90.3356 160.357 -68.0648 84.3372 176.925 -65.2538 86.8468 171.827 -70.7538 84.8188 169.641 -68.3433 86.0002 170.726 -61.5809 85.5203 179.198 -57.9093 87.6471 173.757 -62.0087 87.3153 172.793 -67.81501 82.3464 183.196 -64.7482 84.1413 181.31 -70.3897 82.3032 178.813 -67.9363 83.388 180.057 -61.1757 83.46891 185.596 -57.1639 84.7666 183.494 -61.3754 84.5306 182.404 -67.5953 79.93701 189.441 -64.4433 81.9438 187.628 -70.1876 80.1276 185.033 -67.7013 81.2004 186.328 -60.7941 81.09111 191.881 -56.6919 82.5432 189.885 -60.9818 82.3258 188.76 -67.4083 77.0001 195.552 -64.166 79.331 193.818 -70.0203 77.42591 191.223 -67.4975 78.54201 192.52 -60.4381 78.30101 197.938 -56.2413 80.00051 196.065 -60.6127 79.7536 194.945 -67.25811 73.4089 201.413 -63.9194 76.1976 199.766 -69.8916 74.0674 197.274 -67.3283 75.29502 198.521 -60.1111 74.9963 203.646 -55.8144 77.0555 201.912 -60.2708 76.72 200.843 -67.1502 69.0186 206.899 -63.7076 72.4216 205.348 -69.8067 69.9024 203.068 -67.19841 71.32341 204.211 -59.8173 71.0591 208.876 -55.4146 73.6101 207.299 -59.9597 73.1148 206.329 -67.1142 66.47351 209.46 -63.5749 69.08501 209.216 -69.776 66.1487 207.167 -67.1306 67.7774 208.196 -59.6845 68.81201 211.269 -55.1349 70.6299 210.958 -59.7497 69.9606 210.093 -67.0915 63.6662 211.875 -63.5004 66.5847 211.611 -69.7731 63.3034 209.751 -67.1011 65.10401 210.687 -59.5622 66.35511 213.491 -54.9593 68.4254 213.182 -59.622 67.611 212.403 -63.4381 63.8399 213.837 -67.08551 62.1569 213.023 -59.4511 63.6693 215.524 -54.7931 66.0269 215.215 -59.5052 65.0421 214.533 -54.6372 63.4165 217.037 -59.4001 62.2342 216.464 -69.38581 96.17591 124.763 -69.469 95.3804 126.708 -69.6258 94.7819 128.482 -69.8885 94.2693 130.154 -70.3081 93.7275 131.754 -70.5954 93.4149 132.509 -70.9421 93.0628 133.214 -71.3418 92.6724 133.843 -71.78981 92.2392 134.4 -72.2545 91.7818 134.878 -72.7259 91.2974 135.31 -73.1921 90.7868 135.722 -69.77671 61.9297 210.867 -68.04261 61.8888 212.521 -65.8571 61.7074 214.104 -63.2083 61.4174 215.589 -60.0831 61.0466 216.951 -56.4552 60.6043 218.181 -52.3253 60.0817 219.271 -47.7184 59.4511 220.209 -45.2482 59.0796 220.617 -42.6767 58.6588 220.979 -68.607 62.718 211.417 + + + + + + + + + + -0.2688712 0.9403169 0.2085964 -0.2557786 0.9301233 0.2635303 -0.3097686 0.903792 0.2953026 -0.3378501 0.9104863 0.2384788 -0.2194917 0.9556375 0.1964194 -0.2169906 0.9481055 0.2324027 -0.2504095 0.9211592 0.2979278 -0.1861056 0.9652284 0.1835725 -0.1836057 0.9624655 0.1998727 -0.1485357 0.974043 0.1708146 -0.1504601 0.9731686 0.174082 -0.1034904 0.9822894 0.156197 -0.1054421 0.9835265 0.1468255 -0.06906449 0.9872286 0.1435614 -0.07007104 0.9900895 0.1217088 -0.04416155 0.990049 0.1336139 -0.0445888 0.9939251 0.1006224 -0.02505606 0.991805 0.1252803 -0.0250563 0.9963319 0.08182215 -0.009704887 0.9929825 0.1178627 -0.009308278 0.9978831 0.06436479 0.002929806 0.9937583 0.1115162 0.003540217 0.9988067 0.04870885 0.009369254 0.9943651 0.1055952 0.01138347 0.9993664 0.03372317 -0.2765032 0.9489918 0.1515274 -0.2757081 0.9461787 0.1695021 -0.3515483 0.917584 0.1856164 -0.3559759 0.9207946 0.1594322 -0.2143025 0.9623166 0.1673952 -0.1825675 0.9667962 0.1788136 -0.1437123 0.9718052 0.1869267 -0.0988211 0.9767363 0.1903176 -0.0649752 0.9788091 0.1941931 -0.04055947 0.9792564 0.1985247 -0.02200406 0.9788912 0.2031943 -0.007263481 0.9781047 0.2079872 0.005005121 0.9771072 0.2126892 0.009338676 0.9761704 0.2168046 -0.2491294 0.9508302 0.1840011 -0.2641735 0.9507316 0.1622396 -0.3461492 0.9247328 0.1582727 -0.3293635 0.9273574 0.1775609 -0.445037 0.8807656 0.1618455 -0.437989 0.8817463 0.1751834 -0.1887328 0.961701 0.1987737 -0.1605018 0.9629499 0.2167186 -0.1243654 0.9648925 0.2313349 -0.0827378 0.9670957 0.2405837 -0.05160814 0.9671571 0.248885 -0.0291453 0.9661591 0.2562955 -0.01202452 0.9646505 0.2632585 0.001464843 0.962894 0.2698764 0.01275688 0.9610428 0.2761052 0.01617497 0.9596647 0.2806817 -0.3932355 0.8976817 0.1988303 -0.4175652 0.8887527 0.1890976 -0.549925 0.8152892 0.1813449 -0.5328922 0.8258135 0.1845483 -0.5536749 0.8139406 0.1759113 -0.6225329 0.7620061 0.1783243 -0.6041041 0.7776383 0.1741751 -0.2091486 0.9529036 0.2196167 -0.227701 0.9505395 0.2112513 -0.3060125 0.9312219 0.1979452 -0.282517 0.9359655 0.2101253 -0.1552838 0.9597199 0.2341465 -0.1293115 0.9593527 0.2508405 -0.09741836 0.9593818 0.264757 -0.06082403 0.9597264 0.2742729 -0.03329598 0.9587485 0.282299 -0.01330643 0.9571482 0.289293 0.001922667 0.955279 0.2956998 0.01416069 0.9533144 0.3016474 0.02432376 0.9513126 0.3072668 0.02722287 0.9499639 0.3111714 -0.3408131 0.9162003 0.2107688 -0.3674181 0.907238 0.2047519 -0.511137 0.8387004 0.1879377 -0.4872027 0.8517502 0.192757 -0.5851982 0.7916274 0.1756967 -0.5637186 0.8062846 0.1792387 -0.1683135 0.957693 0.2334414 -0.1886709 0.9541889 0.232222 -0.2584648 0.9412647 0.2172947 -0.2342658 0.9461274 0.223523 -0.1204909 0.9609057 0.249283 -0.0970804 0.9592069 0.2655138 -0.06918752 0.957944 0.2784898 -0.03747773 0.9569945 0.2876752 -0.01348942 0.95528 0.2953948 0.004119992 0.9532849 0.3020445 0.01763975 0.9511753 0.308147 0.02853554 0.9490602 0.3137999 0.03766065 0.9469798 0.3190781 0.04010182 0.9456594 0.3226765 -0.2925863 0.9272305 0.2337456 -0.315053 0.9233071 0.219649 -0.4629127 0.8632004 0.2014867 -0.4410322 0.871047 0.2162587 -0.5415291 0.8195877 0.1871424 -0.5213242 0.8292906 0.2012417 -0.1310482 0.9586297 0.2526966 -0.1486293 0.9578806 0.2457113 -0.2112535 0.949542 0.2318233 -0.1914758 0.9505122 0.2446703 -0.0870099 0.9598253 0.2667673 -0.06616485 0.957437 0.2809565 -0.04153662 0.955495 0.2920687 -0.01422202 0.953793 0.300128 0.006500482 0.9517006 0.3069589 0.02191263 0.9495395 0.3128814 0.0338459 0.9473802 0.3183164 0.04355025 0.9452573 0.3234072 0.05169928 0.9431918 0.328202 0.05377554 0.9418663 0.3316568 -0.2677111 0.9216073 0.2810173 -0.2763786 0.9265215 0.2552901 -0.4247961 0.8732139 0.2388429 -0.4162175 0.869607 0.2656065 -0.5064008 0.8329229 0.2231544 -0.4990813 0.8296963 0.2500442 -0.1093806 0.9500001 0.292465 -0.1164013 0.9545884 0.2742481 -0.1772259 0.9479923 0.2643892 -0.1696265 0.9424376 0.2881637 -0.06628787 0.9518049 0.2994552 -0.0434283 0.9506922 0.3070805 -0.02017313 0.9488407 0.3151103 0.003906428 0.947071 0.3210006 0.02230966 0.9450933 0.3260384 0.03613406 0.9431188 0.3304868 0.04696917 0.9411842 0.3346135 0.05578869 0.9392832 0.3385778 0.06326556 0.9374474 0.3423299 0.06540167 0.9361022 0.3455945 -0.272234 0.9047814 0.3275048 -0.2689675 0.9136595 0.3047668 -0.4176254 0.8611922 0.2897192 -0.4208585 0.8516051 0.3124851 -0.5013195 0.8205573 0.2745262 -0.5051212 0.8103424 0.2969811 -0.1104803 0.9361832 0.3336994 -0.1090764 0.9429894 0.3144417 -0.1706351 0.9351206 0.3105369 -0.1735014 0.9270808 0.3322927 -0.0654633 0.93901 0.3376017 -0.03994911 0.9389417 0.3417496 -0.01599204 0.9380093 0.3462409 0.007294058 0.93694 0.3494145 0.02514791 0.9356009 0.3521627 0.03869765 0.9342067 0.3546268 0.0493797 0.9327824 0.3570417 0.05813843 0.9313747 0.3593901 0.06555569 0.9299569 0.361777 0.06808888 0.9287372 0.3644327 -0.2872162 0.8779154 0.3831076 -0.278396 0.8930217 0.3535647 -0.4269933 0.8386354 0.3381826 -0.4356684 0.8219864 0.3667854 -0.511781 0.7964362 0.322133 -0.5207794 0.778758 0.3497498 -0.1201836 0.9148666 0.3854544 -0.113562 0.9267466 0.3581125 -0.1790559 0.9165513 0.3575929 -0.1872362 0.9030067 0.3866803 -0.07138323 0.9200779 0.3851765 -0.04281759 0.9218751 0.3851141 -0.01751798 0.9223809 0.3858844 0.005737602 0.922414 0.3861601 0.02346891 0.9220334 0.3863983 0.03708088 0.9214686 0.3866792 0.047885 0.9208027 0.3870784 0.05685698 0.9200888 0.3875616 0.06445574 0.9193186 0.3881995 0.06750869 0.9182954 0.3900977 -0.3115105 0.8354657 0.4527232 -0.2984792 0.858906 0.4161618 -0.4463986 0.8013322 0.3982399 -0.4585214 0.7763794 0.4324274 -0.5315493 0.7570542 0.3799004 -0.5434553 0.7311483 0.4124059 -0.1389238 0.8800547 0.4540967 -0.1273881 0.8997431 0.4174141 -0.1977972 0.8858609 0.4196745 -0.2103102 0.8643749 0.4567557 -0.08542186 0.8888881 0.4500901 -0.05334699 0.8935012 0.4458808 -0.02606332 0.8963159 0.4426493 -0.002349972 0.8981591 0.4396643 0.01571732 0.8993673 0.4369114 0.02969521 0.9001957 0.434472 0.04095703 0.900781 0.4323382 0.05035644 0.9011982 0.4304718 0.05841398 0.9015105 0.4287966 0.06219738 0.9008246 0.4297053 -0.3393753 0.7733301 0.5355232 -0.3254865 0.8071088 0.4925787 -0.47107 0.7470282 0.4690862 -0.4828776 0.7132379 0.5080561 -0.5553884 0.7012091 0.4470453 -0.5662296 0.6673714 0.4837352 -0.1641631 0.8249354 0.5408623 -0.1492698 0.8562796 0.4944734 -0.2242546 0.837781 0.4978283 -0.2386009 0.8053467 0.542666 -0.1060542 0.8381487 0.535032 -0.07107973 0.8462733 0.5279861 -0.04181134 0.8523116 0.5213606 -0.01763987 0.8566937 0.5155239 9.76602e-4 0.8602644 0.5098474 0.01547324 0.8631759 0.5046663 0.02731412 0.8656906 0.4998337 0.03729403 0.8679263 0.4952908 0.04593127 0.8699179 0.4910532 0.0506919 0.8697589 0.4908664 -0.3608913 0.6944677 0.6224726 -0.3517642 0.733895 0.5810854 -0.492642 0.6751472 0.5490721 -0.499234 0.6379746 0.5863054 -0.5745846 0.6300685 0.5223662 -0.5791705 0.5943998 0.5578984 -0.1887319 0.748 0.636299 -0.1750605 0.7885352 0.5895473 -0.2522466 0.766323 0.5908644 -0.2630136 0.726324 0.6350413 -0.1288516 0.7695696 0.6254279 -0.09058099 0.7818717 0.6168239 -0.06027543 0.7908446 0.6090416 -0.03616511 0.797708 0.6019586 -0.01757919 0.8036401 0.5948561 -0.002807736 0.8087831 0.5881004 0.009338974 0.8135001 0.58149 0.01968467 0.8177837 0.5751891 0.0288096 0.8217762 0.5690816 0.03436487 0.8230491 0.5669297 -0.3661375 0.6382151 0.6772185 -0.364491 0.6642813 0.6525924 -0.5008544 0.6106024 0.6134407 -0.500755 0.5873678 0.6358014 -0.5791403 0.5692519 0.5835657 -0.5780305 0.5478166 0.6047957 -0.1990129 0.6878932 0.6979949 -0.1943478 0.7169322 0.6695051 -0.2681718 0.6949211 0.6672097 -0.2713162 0.6673647 0.6935502 -0.1418218 0.7054163 0.69446 -0.1024526 0.7177181 0.6887555 -0.07263588 0.7275797 0.6821671 -0.04922735 0.7354809 0.6757549 -0.03119057 0.7426533 0.6689494 -0.01678544 0.749029 0.6623244 -0.004791438 0.7549791 0.6557313 0.005462884 0.7605966 0.6492019 0.01458835 0.765891 0.6428052 0.0202645 0.7687086 0.6392781 -0.3642751 0.5819368 0.7270854 -0.3661096 0.610722 0.7021272 -0.4956701 0.5680018 0.6570276 -0.4730772 0.5478797 0.6899463 -0.5893114 0.5314759 0.608478 -0.2036866 0.6247021 0.7538297 -0.2015773 0.6580789 0.7254645 -0.2730235 0.6379703 0.7200361 -0.2730913 0.6068559 0.746423 -0.1477739 0.6399567 0.7540678 -0.1100224 0.6507651 0.7512655 -0.08136409 0.6597025 0.7471094 -0.05932974 0.6670019 0.74269 -0.04232978 0.6738286 0.7376742 -0.02871805 0.6799867 0.732662 -0.01736557 0.6858638 0.7275229 -0.00753808 0.6915847 0.7222561 0.00112915 0.6969943 0.7170758 0.006378471 0.6994369 0.7146659 -0.3572564 0.555661 0.7507389 -0.4783557 0.4909296 0.7281236 -0.2017952 0.552648 0.8086155 -0.2032268 0.5899956 0.7814116 -0.2711921 0.5740325 0.7726199 -0.2670434 0.5392445 0.7986885 -0.3457241 0.5247205 0.7779096 -0.1479263 0.5632921 0.8129082 -0.1128892 0.5701836 0.8137241 -0.08624732 0.5756231 0.8131542 -0.066136 0.5801475 0.811822 -0.05078446 0.5843272 0.8099277 -0.0385459 0.5880467 0.8079081 -0.02829068 0.5917857 0.8055988 -0.01959329 0.5950936 0.8034176 -0.0117194 0.5984538 0.8010717 -0.007629752 0.5983259 0.8012166 -0.1974888 0.5136358 0.834971 -0.2661617 0.5053746 0.8208255 -0.1892178 0.4707555 0.8617343 -0.1394428 0.477139 0.8676947 -0.1088297 0.476397 0.8724689 -0.08478206 0.4752132 0.8757766 -0.06714099 0.4738324 0.8780518 -0.05392736 0.4719788 0.879959 -0.04345947 0.470028 0.881581 -0.03485298 0.467647 0.883228 -0.02758908 0.4646809 0.8850484 -0.02136337 0.4610226 0.8871313 -0.01925778 0.4542823 0.8906497 -0.09305316 0.3740743 0.9227186 -0.1234189 0.3934513 0.9110236 -0.07471036 0.3604287 0.9297901 -0.05969613 0.3498449 0.9349038 -0.04867792 0.3383957 0.9397441 -0.04019379 0.3262812 0.944418 -0.03347963 0.312945 0.9491811 -0.0278337 0.2983888 0.9540385 -0.0233165 0.2817211 0.9592131 -0.02426254 0.2622187 0.9647035 -0.06622695 0.3016838 0.9511051 -0.07846367 0.3167539 0.9452568 -0.05227959 0.2856611 0.9569037 -0.04211592 0.2687488 0.9622891 -0.03454732 0.2504681 0.9675083 -0.02868819 0.2304825 0.9726535 -0.02389639 0.2085979 0.9777095 -0.02017301 0.1842123 0.9826796 -0.02291977 0.1578443 0.9871981 -0.5831859 0.7954145 0.1649547 -0.6046129 0.7747871 0.1847928 -0.5238868 0.8331345 0.1772841 -0.5024412 0.8448387 0.183849 -0.4904437 0.8531035 0.177988 -0.4887329 0.8567323 0.1647726 -0.6488099 0.7379568 0.1856489 -0.6837517 0.7094183 0.1709074 -0.6233575 0.758192 0.1912342 -0.2987201 0.89732 0.3249359 -0.3506065 0.8891206 0.2941762 -0.3912221 0.8929227 0.2227881 -0.4284635 0.8873245 0.1705125 -0.5804573 0.5068128 0.6373463 -0.6172174 0.4818959 0.6219478 -0.5374436 0.4971277 0.6811891 -0.4149734 0.5394625 0.7326508 -0.3265266 0.5130304 0.793839 -0.267929 0.4975868 0.8249979 -0.2115883 0.4722513 0.8556923 -0.1588823 0.4364839 0.8855723 -0.1180467 0.3603966 0.9252997 -0.09891277 0.3432802 0.9340102 -0.08246374 0.3154803 0.9453423 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -90.8398 46.3673 175.044 -90.8398 46.3673 180.025 -90.8398 46.3673 185.006 -90.8398 46.3673 189.987 -90.83501 46.3512 194.989 -90.5999 46.2734 199.947 -89.95111 46.2247 204.895 -88.7883 46.2103 209.728 -86.89 46.2359 214.453 -83.97531 46.3038 218.592 -79.8473 46.3673 220.708 -90.8398 49.1011 173.813 -90.8282 49.3091 178.845 -90.8115 49.503 183.865 -90.7896 49.6831 188.876 -90.7586 49.8303 193.891 -90.5048 49.8938 198.839 -89.8468 49.9904 203.792 -83.9314 50.5297 217.786 -79.8473 50.7327 220.328 -90.8398 51.7725 172.364 -90.8164 52.1917 177.415 -90.7825 52.5817 182.448 -90.73841 52.9429 187.462 -90.68101 53.2538 192.467 -90.4087 53.4583 197.383 -83.8913 54.6849 216.557 -79.8473 55.016 219.503 -90.8398 54.3558 170.7 -90.8043 54.987 175.74 -90.7532 55.5733 180.756 -90.6866 56.1152 185.746 -90.6025 56.5886 190.717 -90.31211 56.9327 195.579 -83.85501 58.7335 214.902 -79.8473 59.1819 218.23 -90.8398 56.8256 168.83 -90.7922 57.6676 173.826 -90.7236 58.4486 178.793 -90.6345 59.1691 183.732 -90.5235 59.8028 188.642 -90.2154 60.2846 193.429 -83.8227 62.6424 212.819 -79.8473 63.1988 216.507 -90.8398 59.1579 166.765 -90.78 60.2073 171.683 -90.6941 61.1796 176.571 -90.5824 62.0756 181.428 -90.4447 62.8666 186.252 -90.1192 63.4833 190.939 -83.7945 66.3816 210.309 -79.8473 67.0385 214.332 -90.8398 61.3304 164.523 -90.76802 62.5819 169.326 -90.66481 63.7408 174.101 -90.5307 64.8078 178.847 -90.36631 65.7523 183.556 -90.0241 66.5009 188.121 -83.7703 69.9245 207.374 -79.8473 70.6766 211.702 -90.8398 63.3234 162.122 -90.75621 64.77011 166.775 -90.636 66.1093 171.402 -90.4797 67.3422 176.005 -90.289 68.4357 180.571 -89.9305 69.3126 184.988 -83.7502 73.2481 204.016 -79.8473 74.09201 208.615 -90.8398 65.1207 159.585 -90.7447 66.7539 164.05 -90.60781 68.2661 168.495 -90.4298 69.6584 172.922 -90.21321 70.8958 177.314 -89.8389 71.8972 181.557 -83.7343 76.33271 200.241 -79.8473 77.2672 205.071 -90.8398 66.7094 156.935 -90.7335 68.5189 161.175 -90.5806 70.19551 165.404 -90.3813 71.74031 169.621 -90.1392 73.1159 173.808 -89.7499 74.2376 177.85 -86.2849 77.8835 191.074 -83.72261 79.1626 196.056 -79.8473 80.1885 201.067 -90.8398 68.0806 154.198 -90.7229 70.055 158.177 -90.5543 71.8865 162.153 -90.33451 73.5758 166.128 -90.06771 75.0833 170.078 -88.96611 77.607 177.874 -87.89141 78.9311 182.033 -86.2397 80.3268 186.558 -83.71501 81.7258 191.468 -79.8473 82.8454 196.602 -90.8398 69.2295 151.401 -90.7128 71.3563 155.082 -90.5293 73.3321 158.772 -90.2896 75.15731 162.469 -89.9988 76.7899 166.15 -89.5812 78.1382 169.703 -88.8832 79.5383 173.44 -87.82241 80.9784 177.373 -86.1995 82.49501 181.702 -83.7116 84.0142 186.487 -79.8473 85.2312 191.675 -90.8398 70.1552 148.568 -90.7032 72.42102 151.919 -90.5057 74.5299 155.287 -90.247 76.4815 158.673 -89.93301 78.23191 162.052 -89.5022 79.6856 165.315 -88.8045 81.1952 168.771 -87.7583 82.74781 172.44 -86.1642 84.3835 176.526 -83.7124 86.0234 181.125 -79.8473 87.3428 186.285 -90.8398 70.8605 145.724 -90.6944 73.2513 148.713 -90.4834 75.4812 151.728 -90.20671 77.5494 154.769 -89.8704 79.4098 157.813 -89.4273 80.96321 160.756 -88.7305 82.5773 163.896 -87.6991 84.2388 167.258 -86.13391 85.9915 171.048 -83.7172 87.7532 175.394 -79.8473 89.1803 180.431 -90.8398 71.3517 142.894 -90.68621 73.8528 145.491 -90.4628 76.1915 148.122 -90.16901 78.3659 150.787 -89.8114 80.32801 153.463 -89.3567 81.97502 156.055 -88.6613 83.6884 158.841 -87.64501 85.45491 161.853 -86.1086 87.3225 165.291 -83.72602 89.20671 169.307 -79.8473 90.74771 174.114 -90.8398 71.6378 140.099 -90.67871 74.23471 142.278 -90.44371 76.6695 144.496 -90.13391 78.9396 146.753 -89.75621 80.9947 149.03 -89.2905 82.7289 151.241 -88.5969 84.53601 153.636 -87.596 86.4033 156.252 -86.08831 88.3833 159.277 -83.7389 90.3908 162.88 -79.8473 92.0525 167.332 -90.8398 71.7303 137.357 -90.6719 74.4086 139.095 -90.4263 76.927 140.875 -90.1016 79.28202 142.696 -89.70481 81.4214 144.543 -89.2289 83.2362 146.343 -88.5377 85.1313 148.31 -87.5522 87.09481 150.482 -86.0728 89.1846 153.03 -83.7556 91.3163 156.127 -79.8473 93.1057 160.085 -90.8398 71.6513 134.823 -90.6578 74.52581 136.204 -90.3925 77.21611 137.619 -90.0427 79.7195 139.066 -89.6169 81.9824 140.532 -89.1201 83.8945 141.959 -88.41761 85.8771 143.52 -87.4331 87.9124 145.248 -85.9713 90.0505 147.282 -83.6943 92.1827 149.768 -79.8473 93.8675 152.978 -90.8398 71.40641 132.234 -90.6435 74.4785 133.214 -90.3582 77.34111 134.22 -89.983 79.99211 135.254 -89.5279 82.3771 136.303 -89.0103 84.38481 137.324 -88.29721 86.4523 138.448 -87.31491 88.5561 139.701 -85.872 90.7381 141.19 -83.63591 92.8658 143.036 -79.8473 94.4411 145.475 -90.8398 70.37751 126.954 -90.61431 73.8527 126.989 -90.2884 77.0652 127.047 -89.86201 80.0151 127.129 -89.3479 82.6464 127.232 -88.7895 84.8468 127.346 -88.05751 87.0853 127.498 -87.0829 89.3269 127.704 -85.68161 91.59851 128.005 -83.5284 93.7218 128.472 -79.8473 95.0935 129.28 -87.89101 46.2184 212.263 -85.4055 50.4215 215.895 -83.95291 48.4232 218.242 -85.4696 46.2679 216.805 -85.43711 48.3507 216.402 -81.8263 50.6556 219.567 -79.8473 48.5579 220.574 -81.8434 46.3481 220.186 -81.83451 48.509 219.93 -85.3451 54.5082 214.572 -83.9109 52.6185 217.225 -85.3748 52.4755 215.286 -81.8118 54.8868 218.514 -79.8473 52.8869 219.972 -81.81871 52.783 219.095 -85.28881 58.4917 212.831 -83.87271 56.7247 215.783 -85.3164 56.515 213.754 -81.7999 59.0061 217.025 -79.8473 57.1157 218.923 -81.8055 56.9625 217.824 -85.23651 62.3387 210.672 -83.8384 60.7074 213.914 -85.2621 60.4342 211.804 -81.79061 62.981 215.096 -79.8473 61.2108 217.425 -81.7949 61.0135 216.115 -85.1886 66.0188 208.096 -83.8081 64.5349 211.618 -85.21202 64.2014 209.436 -81.7839 66.7825 212.726 -79.8473 65.14241 215.476 -81.78691 64.9051 213.966 -85.14511 69.5048 205.106 -83.7819 68.1791 208.895 -85.1663 67.7876 206.653 -81.7799 70.38491 209.916 -79.8473 68.8842 213.074 -81.7816 68.61 211.376 -85.1061 72.77291 201.709 -83.7597 71.61502 205.747 -85.12501 71.1674 203.458 -81.7784 73.7661 206.666 -79.8473 72.4133 210.216 -81.7788 72.1043 208.346 -85.0717 75.8029 197.91 -83.7417 74.8213 202.18 -85.08831 74.3188 199.859 -81.7796 76.9075 202.977 -79.8473 75.7106 206.9 -81.7787 75.3678 204.876 -85.0419 78.5786 193.721 -83.7279 77.7803 198.199 -86.30931 76.5613 193.2 -85.0562 77.2234 195.864 -81.7834 79.79441 198.852 -79.8473 78.7603 203.126 -81.7812 78.3836 200.968 -85.0169 81.0875 189.151 -83.7183 80.47811 193.811 -86.26171 79.1391 188.86 -85.0288 79.86701 191.483 -81.7899 82.4155 194.294 -79.8473 81.5505 198.892 -81.7863 81.1388 196.627 -81.7989 84.7633 189.308 -79.8473 84.0725 194.196 -83.7128 82.9047 189.026 -81.7941 83.6239 191.854 -81.8105 86.83401 183.899 -79.8473 86.32141 189.038 -83.7115 85.05381 183.853 -81.8044 85.8334 186.656 -81.8247 88.62751 178.074 -79.8473 88.2956 183.416 -83.7143 86.92311 178.305 -81.8173 87.7653 181.038 -81.8414 90.1473 171.838 -79.8473 89.9974 177.331 -83.7211 88.5141 172.394 -81.8328 89.42121 175.007 -81.86061 91.4005 165.2 -79.8473 91.4323 170.781 -83.732 89.8318 166.135 -81.8507 90.80661 168.569 -81.8823 92.3978 158.169 -79.8473 92.60971 163.767 -83.74681 90.8851 159.543 -81.8712 91.9303 161.733 -81.8535 93.22602 151.418 -79.8473 93.5111 156.581 -83.7246 91.77291 152.995 -81.8676 92.8359 154.842 -84.80181 91.90541 142.127 -83.66471 92.5466 146.449 -84.88211 91.2117 148.549 -85.9214 90.4164 144.279 -84.8416 91.58081 145.383 -81.8267 93.86801 144.281 -79.8473 94.17691 149.276 -81.8398 93.56951 147.898 -84.65071 92.7797 128.228 -83.5805 93.3748 135.935 -85.7754 91.2518 134.762 -84.7246 92.4249 135.351 -81.7797 94.6481 128.855 -79.8473 94.8434 137.575 -81.8021 94.3368 136.758 -80.81121 50.7014 220.073 -79.8473 49.6476 220.465 -80.8144 48.5393 220.38 -81.8303 49.5844 219.762 -80.8127 49.6225 220.24 -79.8473 47.4643 220.655 -80.8179 46.3621 220.578 -81.8389 47.4301 220.072 -80.8161 47.4523 220.493 -80.8083 52.8437 219.655 -79.8473 51.8127 220.164 -81.82241 51.722 219.345 -80.8097 51.7753 219.878 -86.0317 72.4805 199.711 -86.0317 74.37601 197.277 -86.0317 76.13681 194.744 -87.16001 76.13681 190.824 -87.6859 76.13681 188.595 -88.1438 76.13681 186.352 -88.6052 76.1369 183.692 -88.9902 76.1369 181.019 -89.30661 76.13681 178.337 -89.56201 76.13681 175.651 -89.56201 74.4313 179.573 -89.56201 72.4805 183.379 -89.56201 71.3443 185.343 -89.56201 70.1363 187.263 -89.56201 68.8558 189.136 -89.56201 67.50201 190.957 -89.56201 64.6609 194.33 -89.56201 63.1587 195.903 -89.56201 61.6011 197.401 -89.56201 58.453 200.063 -89.56201 55.0941 202.436 -89.56201 51.534 204.496 -89.56201 47.782 206.22 -88.87701 47.7821 208.913 -87.9934 47.7822 211.548 -86.0317 47.782 215.617 -86.0317 51.1914 214.633 -86.0317 54.5467 213.36 -86.0317 57.8271 211.798 -86.0317 61.0134 209.946 -86.0317 64.0876 207.808 -86.0317 67.0331 205.386 -86.0317 69.8352 202.685 -89.63861 57.3152 200.482 -89.6639 76.3207 173.89 -89.2289 83.2362 146.343 -88.5377 85.1313 148.31 -89.2289 83.2362 146.343 -87.5522 87.09481 150.482 -88.5377 85.1313 148.31 -86.0728 89.1846 153.03 -87.5522 87.09481 150.482 -86.0728 89.1846 153.03 -83.7556 91.3163 156.127 -86.0728 89.1846 153.03 -81.8823 92.3978 158.169 -81.8823 92.3978 158.169 -83.7556 91.3163 156.127 + + + + + + + + + + -0.999997 0.001015961 0.002262413 -0.9999923 0.003944516 0 -0.9999331 0.01098692 0.00363177 -0.9999808 0.00552386 0.002807676 -0.9999838 0.005554437 0.00125122 -0.9999389 0.01095646 0.001525938 -0.9998342 0.01754844 0.004882991 -0.9998444 0.01748758 0.002319455 -0.9990608 0.03271603 0.02841287 -0.9990208 0.03238099 0.03015309 -0.9941049 0.05893272 0.09100848 -0.9937015 0.05575835 0.09720325 -0.98347 0.08276712 0.1610479 -0.98194 0.06515747 0.1776189 -0.714704 0.1692913 0.67863 -0.8151375 0.1607446 0.5565178 -0.8059163 0.1379155 0.5757417 -0.6998404 0.138436 0.700756 -0.8054279 0.112249 0.5819675 -0.6853675 0.1192991 0.7183586 -0.250623 0.140449 0.9578426 -0.3539299 0.1547623 0.9223786 -0.3288125 0.1325749 0.9350435 -0.2211119 0.1171023 0.9681924 -0.3026601 0.1101747 0.9467092 -0.1900712 0.09289926 0.9773653 -0.5352249 0.1442363 0.8323042 -0.5192295 0.1205218 0.8460941 -0.5508427 0.1587003 0.8193819 -0.2750681 0.08673506 0.9575044 -0.1578128 0.06811797 0.9851168 -0.2533668 0.06762957 0.9650034 -0.1328201 0.04782372 0.9899858 -0.502198 0.1052006 0.8583298 -0.4851725 0.08692026 0.8700876 -0.9999586 0.007385611 0.005310297 -0.999978 0.004089474 0.005249202 -0.9999921 0.002441525 0.003143429 -0.9998853 0.01345872 0.006958246 -0.9997466 0.02066147 0.008942067 -0.998766 0.03814876 0.0318008 -0.9932188 0.06985855 0.09293115 -0.7408754 0.2271212 0.6320757 -0.8254486 0.2079567 0.524775 -0.8211453 0.1881499 0.5388137 -0.7284216 0.1975479 0.6560311 -0.404622 0.2122602 0.8895092 -0.5722048 0.2409492 0.7839167 -0.575774 0.2043256 0.7916663 -0.4304767 0.2411035 0.869804 -0.3082744 0.1930339 0.9315068 -0.3783162 0.1768894 0.9086182 -0.2798587 0.1637951 0.9459652 -0.5649083 0.1819242 0.8048493 -0.999923 0.009766042 0.00766021 -0.9999551 0.006134271 0.007232964 -0.9998094 0.016694 0.01013237 -0.9996111 0.0247507 0.01284837 -0.9983904 0.04464888 0.03497445 -0.9923706 0.08185315 0.09219926 -0.7589141 0.2807741 0.5875504 -0.8322573 0.2555674 0.4919688 -0.8307402 0.2329246 0.5055857 -0.7506533 0.254348 0.6097761 -0.5102769 0.3044266 0.804327 -0.6172217 0.3051621 0.7251989 -0.5953937 0.2724424 0.7558317 -0.4769159 0.2671303 0.8373725 -0.9998709 0.01269596 0.009857654 -0.9999222 0.008606314 0.00903356 -0.9997007 0.02069163 0.013062 -0.9994186 0.02984791 0.01648044 -0.9979136 0.05230969 0.03784364 -0.9916152 0.09213608 0.09061014 -0.7710793 0.3311383 0.5438604 -0.8379389 0.2996083 0.4561725 -0.8365411 0.2758663 0.4733889 -0.7656939 0.3063203 0.5655801 -0.5637847 0.3734352 0.7366771 -0.6515008 0.366204 0.6644105 -0.6359323 0.3363541 0.6945906 -0.5392757 0.3398932 0.7704898 -0.9997995 0.01617497 0.01181077 -0.9998764 0.01156681 0.01065123 -0.9995514 0.0255137 0.01568663 -0.9991547 0.03604269 0.01977616 -0.9973097 0.06122171 0.04031598 -0.9905726 0.1052281 0.08771044 -0.7777931 0.3791455 0.5012851 -0.8395878 0.3402604 0.4234563 -0.8392838 0.3173103 0.4414938 -0.7750797 0.3554025 0.5224371 -0.6008949 0.4361211 0.6698685 -0.6741732 0.4226935 0.6056572 -0.6641939 0.3949517 0.6347122 -0.5842286 0.4054778 0.7030397 -0.9997039 0.02023392 0.01351982 -0.9998155 0.01498502 0.01202464 -0.9993519 0.03119063 0.0179758 -0.9988 0.04342871 0.02264517 -0.9965476 0.07147622 0.04223871 -0.9895693 0.116734 0.08441472 -0.7794512 0.4255242 0.4597663 -0.8380053 0.3799682 0.3916266 -0.8379768 0.3608943 0.4093289 -0.7792297 0.4024636 0.4804416 -0.6233907 0.4942323 0.605903 -0.6864113 0.4760107 0.549776 -0.6815129 0.4496319 0.5773832 -0.6138579 0.465658 0.637449 -0.9995784 0.02496427 0.01483207 -0.9997358 0.01889115 0.01309257 -0.9990903 0.03778213 0.0197761 -0.9983317 0.05206507 0.02496439 -0.9955801 0.08319389 0.04358065 -0.9882218 0.1302878 0.08026629 -0.7762624 0.4705795 0.4194899 -0.8334759 0.4188438 0.3603997 -0.8352006 0.4020963 0.375178 -0.7784577 0.4481465 0.4395095 -0.6331914 0.5492623 0.5453253 -0.6895258 0.5271624 0.496643 -0.6890684 0.5018315 0.5228289 -0.6297647 0.5220928 0.5751658 -0.9994167 0.03030568 0.01574796 -0.9996327 0.02334731 0.0137642 -0.9987506 0.04532003 0.02105778 -0.9977216 0.0619837 0.02664291 -0.9943703 0.09634846 0.04409992 -0.98637 0.1458802 0.07611405 -0.768494 0.5147607 0.3800507 -0.8242188 0.461521 0.3281188 -0.8286558 0.4414289 0.3441949 -0.7729259 0.4927914 0.3996777 -0.632214 0.6018164 0.4879782 -0.684446 0.5767756 0.4459413 -0.6879716 0.5521292 0.4710081 -0.6339569 0.5757862 0.5163031 -0.9992132 0.03622567 0.01614439 -0.9995037 0.02819973 0.0140388 -0.9983219 0.05371421 0.02163827 -0.9969446 0.07312428 0.02746737 -0.9930167 0.1096536 0.04351961 -0.9842205 0.1618139 0.07159852 -0.7564846 0.5578948 0.3412985 -0.8165489 0.4965521 0.2944215 -0.8197986 0.4806726 0.3112622 -0.7630054 0.5364324 0.3606429 -0.8639733 0.4400285 0.244796 -0.8732115 0.408223 0.2661873 -0.6216191 0.6524742 0.4334365 -0.6719835 0.6248915 0.3974279 -0.6790884 0.6010197 0.4214432 -0.6280439 0.6274335 0.4603132 -0.9989619 0.04266613 0.01596164 -0.9993451 0.03347933 0.0137335 -0.9977899 0.06289976 0.02142435 -0.9959729 0.08539348 0.0273149 -0.9910587 0.1266863 0.04187268 -0.9106879 0.3783444 0.1658404 -0.8695263 0.437403 0.2293528 -0.8564658 0.4685643 0.2165961 -0.7406688 0.5996704 0.3029939 -0.8022716 0.539802 0.2549006 -0.8102607 0.515626 0.2785815 -0.7490075 0.5790144 0.3220714 -0.6025058 0.7012041 0.3811821 -0.6530514 0.671363 0.3504223 -0.6632404 0.6484082 0.3737365 -0.613008 0.6771593 0.4070341 -0.9986593 0.04953163 0.01504564 -0.9991537 0.03906399 0.01287889 -0.9971477 0.07269626 0.02029514 -0.9947928 0.09854537 0.02600204 -0.9889021 0.1433165 0.03915566 -0.974035 0.2164387 0.06640869 -0.9491521 0.2929553 0.1152716 -0.9471386 0.303851 0.1029724 -0.9040639 0.4013857 0.1468268 -0.8355006 0.512147 0.1991089 -0.7376223 0.6166436 0.2750709 -0.7401314 0.6208302 0.2584096 -0.5765102 0.7470522 0.3309822 -0.6288469 0.7152465 0.3049167 -0.6415076 0.693695 0.3274985 -0.5902681 0.7245517 0.3558211 -0.998306 0.05661267 0.01342833 -0.9989342 0.0447402 0.01135289 -0.9963983 0.08282971 0.01815903 -0.9934063 0.1122198 0.02346938 -0.9864565 0.1602843 0.0348218 -0.9700917 0.2357934 0.05765122 -0.9411607 0.3261315 0.08862864 -0.895689 0.4263892 0.126229 -0.8226782 0.5419006 0.1718847 -0.7287679 0.6415746 0.2393315 -0.7202527 0.657139 0.2222712 -0.5452808 0.7891571 0.2826658 -0.6009204 0.755591 0.2607244 -0.6152341 0.7359371 0.2826371 -0.5613994 0.7686548 0.3065952 -0.9979166 0.06357145 0.01101738 -0.9986925 0.05029469 0.009155571 -0.9955679 0.09283947 0.01501542 -0.9918624 0.1257987 0.01959306 -0.9838253 0.1767687 0.02899348 -0.9661278 0.2536402 0.04757851 -0.9357179 0.3450803 0.07315444 -0.8879278 0.4478703 0.1048642 -0.8104617 0.567897 0.1436833 -0.7085618 0.6757233 0.2033182 -0.7001432 0.6891563 0.186717 -0.5111389 0.8263128 0.2365253 -0.5713474 0.7911761 0.2181807 -0.5861788 0.7740539 0.2392386 -0.5284105 0.8084247 0.2592917 -0.9975091 0.07010179 0.007843315 -0.9984413 0.05545365 0.006317496 -0.994701 0.1022381 0.01083415 -0.9902443 0.1385859 0.01449644 -0.9811776 0.1918713 0.0218209 -0.962491 0.2688761 0.03628754 -0.9311466 0.3601899 0.05682706 -0.8816334 0.4645605 0.08310323 -0.7999774 0.5887519 0.115791 -0.6889641 0.7050476 0.168037 -0.681559 0.7157406 0.1522917 -0.4770214 0.8574788 0.1928228 -0.5426572 0.8209593 0.1776202 -0.5567389 0.8068472 0.197584 -0.4939137 0.8426808 0.2143324 -0.9971144 0.075809 0.003997921 -0.9982035 0.05984699 0.002899229 -0.9938614 0.1104799 0.005798637 -0.9886839 0.1497858 0.008270561 -0.9787587 0.2045719 0.01348954 -0.9595752 0.2804076 0.02423197 -0.9280493 0.3702858 0.04016286 -0.8776677 0.4753041 0.06152641 -0.7925822 0.603272 0.08874964 -0.6719174 0.7283785 0.1341332 -0.6665367 0.7358151 0.1196042 -0.4459137 0.8820307 0.1522595 -0.5174871 0.8441973 0.1397789 -0.5294771 0.8334175 0.1583334 -0.4609066 0.8706014 0.1720998 -0.9968153 0.07974642 2.13634e-4 -0.9980022 0.0631743 -7.62975e-4 -0.9932975 0.1155749 0.001648008 -0.9877227 0.1561666 0.003997981 -0.9777985 0.2093604 0.008850455 -0.969989 0.2428405 0.01223814 -0.9457425 0.3241186 0.0227676 -0.9462342 0.3227664 0.02151572 -0.9076683 0.4179284 0.03839302 -0.9087158 0.4158271 0.03637909 -0.8446151 0.5320083 0.05993944 -0.8463414 0.5295776 0.05704128 -0.6594094 0.7448035 0.1022105 -0.7348358 0.672668 0.08680045 -0.7319707 0.6760291 0.08487367 -0.4208247 0.8997573 0.1155139 -0.4243435 0.8976404 0.1190567 -0.50705 0.853232 0.1220472 -0.4324224 0.8917624 0.1333066 -0.578503 0.8088359 0.1054459 -0.5795234 0.8083541 0.1035201 -0.9965509 0.08289074 -0.003937005 -0.9978582 0.06525015 -0.00463891 -0.9927514 0.1201531 -0.002838253 -0.9867463 0.1622705 -4.27269e-4 -0.9765288 0.2153447 0.004272699 -0.9588544 0.283585 0.01333689 -0.9551463 0.2953608 0.02139365 -0.9299384 0.3667444 0.02670395 -0.9233971 0.3820122 0.03747791 -0.8813285 0.4703898 0.0446493 -0.8697453 0.4901435 0.05746823 -0.8086095 0.5847502 0.0649451 -0.7758402 0.6247984 0.08774399 -0.7248067 0.6842464 0.08038824 -0.6509441 0.7526341 0.0990653 -0.6153827 0.7836028 0.08526974 -0.6265018 0.7725676 0.1031249 -0.3725486 0.9234213 0.09219866 -0.4599875 0.8833212 0.09030669 -0.4829622 0.8695151 0.1033982 -0.4013558 0.9097723 0.105962 -0.4597135 0.8813998 0.1086184 -0.9963375 0.08496612 -0.009613573 -0.9977526 0.06628692 -0.0097965 -0.992274 0.1236642 -0.009979784 -0.985782 0.1677914 -0.008941948 -0.9751754 0.2213547 -0.005920648 -0.9576639 0.2878882 5.49347e-4 -0.928949 0.3700475 0.01089537 -0.8796558 0.4748793 0.02636861 -0.8050943 0.5908195 0.05249285 -0.8019953 0.5958351 0.04223918 -0.5901854 0.8050119 0.06030642 -0.7092969 0.7029184 0.05295079 -0.7160649 0.6949459 0.06558507 -0.6031787 0.7941365 0.07431387 -0.3174336 0.9460749 0.06464034 -0.4160013 0.9072009 0.06268554 -0.4381256 0.8955389 0.0778225 -0.3448035 0.935346 0.07898312 -0.9965286 0.08215641 -0.01345872 -0.997815 0.06485259 -0.01263481 -0.9924289 0.1219249 -0.01480185 -0.9857313 0.1677016 -0.01449644 -0.9755547 0.2193739 -0.01297074 -0.9601229 0.2794305 -0.009094595 -0.9344944 0.3559746 -0.001525938 -0.8870365 0.4616008 0.009552419 -0.8051158 0.5925831 0.02517795 -0.808722 0.5878868 0.01892173 -0.5716908 0.8197531 0.03427332 -0.7065571 0.7071369 0.02710127 -0.7028801 0.7103573 0.03677523 -0.572847 0.8185272 0.04312372 -0.2367343 0.9708943 0.03634786 -0.371908 0.9275116 0.03750818 -0.3816999 0.9231969 0.04486274 -0.2721368 0.961131 0.04657179 -0.9743424 0.06546276 0.2153404 -0.980532 0.1158486 0.1585441 -0.977485 0.1985855 0.07132232 -0.9254966 0.1152407 0.3607987 -0.9517128 0.08939093 0.2936869 -0.9167336 0.1149045 0.3826183 -0.9588223 0.08618623 0.2706139 -0.9785982 0.09799712 0.1809483 -0.8823149 0.142678 0.4485126 -0.9709348 0.2252004 0.08105874 -0.9853309 0.1206714 0.1206714 -0.9846552 0.1133769 0.1326647 -0.9841695 0.09564584 0.1492063 -0.9858679 0.1111821 0.1253126 -0.8505353 0.1245787 0.5109499 -0.8449209 0.1669394 0.5081733 -0.8521659 0.2028326 0.482361 -0.8572319 0.238693 0.4562666 -0.8600874 0.2739999 0.4303184 -0.8612068 0.3062551 0.4056239 -0.8605844 0.3392835 0.3798437 -0.9848156 0.1283016 0.1169486 -0.9833059 0.1479887 0.1058719 -0.9820134 0.1616291 0.0976001 -0.9799149 0.17924 0.08740735 -0.9809941 0.1692569 0.09488272 -0.9841226 0.1380079 0.1116088 -0.9825738 0.1546421 0.1031252 -0.9611873 0.2554417 0.1042519 -0.9411914 0.3098036 0.1348352 -0.9321959 0.328443 0.1521055 -0.857801 0.3722723 0.3543881 -0.8531662 0.4024576 0.3318665 -0.8482637 0.4277942 0.3121552 -0.8888477 0.4104862 0.2035951 -0.8850554 0.4078885 0.2242853 -0.9142543 0.3624423 0.181038 -0.8464879 0.4487583 0.2864862 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -77.0353 66.87271 -203.073 -69.1202 114.493 -209.303 -77.0353 66.87271 -187.579 -77.4342 90.6827 -193.163 -77.8332 114.493 -198.747 -69.29701 113.429 -209.163 -76.4831 113.429 -200.166 -75.8835 108.55 -200.064 -75.4832 103.592 -199.961 -75.2653 98.57701 -199.857 -75.2131 93.5272 -199.752 -75.30941 88.4624 -199.647 -75.5368 83.4084 -199.542 -76.3183 73.42301 -199.334 -75.56211 75.73571 -204.233 + + + + + + + + + + -0.9849694 0.1532663 -0.07965451 -0.991589 0.1258293 -0.0303052 -0.9935589 0.1091983 -0.03027522 -0.9964379 0.04651057 -0.07034575 -0.9787791 -0.01388615 -0.2044476 -0.9507036 -0.02877956 -0.3087627 -0.9473044 0.02587991 -0.319288 -0.9354064 -0.04080384 -0.3512123 -0.946781 -0.006164729 -0.3218195 -0.9104712 -0.07641935 -0.4064511 -0.8245955 -0.133521 -0.5497404 -0.7818107 -0.1238775 -0.6110863 -0.7704665 0.0443449 -0.6359363 -0.7711907 0.03531074 -0.6356242 -0.7663335 -0.1346501 -0.6281738 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -63.1569 78.1318 -209.308 -63.1562 72.9917 -209.306 -76.1744 72.0517 -203.751 -63.1556 67.8516 -209.303 -77.0353 66.87271 -203.073 -75.56211 75.73571 -204.233 -69.2855 76.9571 -206.82 + + + + + + + + + + -0.3936983 -0.04236072 -0.9182633 -0.3842962 -0.05212652 -0.9217371 -0.3928779 -0.01117014 -0.9195229 -0.4094431 -5.79861e-4 -0.9123355 -0.3848407 -0.02511686 -0.9226412 -0.3760848 -3.96746e-4 -0.9265853 -0.3704178 -0.05969655 -0.926945 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

4 0 0 2 1 1 1 2 2 4 0 3 1 2 4 3 3 5 1 2 6 6 4 7 0 5 8 5 6 9 6 4 10 2 1 11 1 2 12 2 1 13 6 4 14

+
+
+
+ + + + -90.8398 46.3673 175.044 -90.8398 42.5052 176.391 -90.8398 38.627 177.326 -90.8398 34.7915 177.865 -90.8398 31.05 178.038 -90.8398 27.4024 177.874 -90.8398 23.6625 177.361 -90.8398 19.8773 176.473 -90.8398 16.1015 175.192 -90.8398 46.3673 194.135 -90.8091 42.385 194.325 -90.77951 38.394 194.108 -90.75141 34.4449 193.51 -90.7249 30.5836 192.563 -90.6932 26.815 192.068 -90.6604 23.0041 191.177 -90.6269 19.1973 189.874 -90.59291 15.4455 188.148 -90.76361 46.309 197.467 -90.7397 42.3116 197.461 -90.71691 38.3065 197.05 -90.6953 34.3428 196.261 -90.6753 30.4655 195.125 -90.6477 26.68 194.528 -90.6196 22.8605 193.53 -90.59101 19.0529 192.115 -90.5623 15.3074 190.275 -90.5439 46.2657 200.562 -90.5439 42.2526 200.397 -90.5449 38.2325 199.83 -90.5468 34.2532 198.886 -90.5495 30.3588 197.596 -90.539 26.5567 196.911 -90.52901 22.7289 195.822 -90.5196 18.9207 194.315 -90.51091 15.1816 192.382 -90.1938 46.2359 203.423 -90.2316 42.2075 203.133 -90.27011 38.1728 202.442 -90.3089 34.1782 201.377 -90.3478 30.2666 199.968 -90.3649 26.4492 199.208 -90.38401 22.6144 198.042 -90.4052 18.8072 196.459 -90.4283 15.0758 194.453 -89.7269 46.218 206.053 -89.8124 42.1761 205.668 -89.8985 38.1284 204.886 -89.9844 34.1197 203.731 -90.06951 30.1922 202.232 -90.1223 26.3618 201.407 -90.179 22.5226 200.177 -90.23941 18.7187 198.534 -90.303 14.9976 196.471 -89.15631 46.2105 208.455 -89.2959 42.158 208.003 -89.4361 38.1 207.157 -89.7138 30.1385 204.38 -89.8078 26.2987 203.499 -89.9076 22.4587 202.217 -90.01271 18.6618 200.526 -90.1225 14.9545 198.421 -88.4954 46.2118 210.632 -88.69171 42.1528 210.138 -88.88871 38.0885 209.254 -89.7148 18.6429 202.423 -89.8732 14.9541 200.288 -87.7575 46.2203 212.588 -88.0092 42.1602 212.074 -88.26171 38.0946 211.175 -89.33451 18.6683 204.216 -89.5405 15.0037 202.062 -86.9559 46.2346 214.324 -87.2576 42.1797 213.811 -87.5606 38.1192 212.918 -88.8592 18.7442 205.894 -89.1085 15.1107 203.731 -86.10401 46.253 215.846 -86.4463 42.211 215.35 -86.7904 38.1631 214.482 -88.276 18.8772 207.449 -88.5606 15.2823 205.285 -85.2149 46.274 217.154 -85.5843 42.2537 216.692 -85.956 38.227 215.865 -87.5704 19.0733 208.875 -87.8788 15.5258 206.717 -84.3021 46.296 218.253 -84.68061 42.3072 217.838 -85.06211 38.3118 217.068 -85.4452 34.3432 215.952 -86.72731 19.3389 210.166 -87.04441 15.8484 208.02 -83.3788 46.3175 219.145 -83.7443 42.3713 218.79 -84.1131 38.4181 218.089 -84.4843 34.4898 217.05 -84.8567 30.6186 215.684 -85.1394 26.897 214.565 -85.4309 23.239 213.109 -85.7305 19.6801 211.317 -86.0374 16.257 209.188 -82.4584 46.337 219.833 -82.78411 42.4455 219.549 -83.1133 38.5469 218.929 -83.4452 34.6712 217.979 -83.7793 30.8494 216.709 -84.0335 27.1831 215.57 -84.2948 23.5897 214.108 -84.5627 20.1031 212.323 -84.8368 16.7587 210.218 -81.5541 46.3528 220.322 -81.8087 42.5293 220.117 -82.0665 38.6987 219.588 -82.32711 34.8894 218.739 -82.5899 31.1311 217.576 -82.7904 27.5325 216.42 -82.9958 24.016 214.956 -83.2059 20.614 213.184 -83.42041 17.3605 211.106 -80.6793 46.3634 220.612 -80.82701 42.6222 220.496 -80.9767 38.8743 220.067 -81.12831 35.1465 219.328 -81.2818 31.4671 218.284 -81.399 27.9497 217.115 -81.5187 24.5234 215.653 -81.6408 21.219 213.898 -81.7653 18.0691 211.853 -79.8473 46.3673 220.708 -79.8473 42.7239 220.688 -79.8473 39.0745 220.367 -79.8473 35.4445 219.748 -79.8473 31.861 218.832 -79.8473 28.4393 217.654 -79.8473 25.1171 216.198 -79.8473 21.9241 214.465 -79.8473 18.8915 212.458 -90.7092 28.7073 192.363 -90.7321 27.1803 184.652 -90.8398 29.2404 177.997 -90.7558 30.8738 184.997 -90.74411 29.0382 184.87 -90.67691 24.9121 191.673 -90.7074 23.4195 183.929 -90.8398 25.5412 177.663 -90.7199 25.3055 184.339 -90.6437 21.0971 190.578 -90.68201 19.6383 182.806 -90.8398 21.7723 176.966 -90.6948 21.5282 183.418 -90.6099 17.3112 189.064 -90.6562 15.8896 181.267 -90.8398 17.9846 175.882 -90.6692 17.7564 182.089 -86.0317 21.2002 211.73 -86.0317 23.4357 212.578 -86.0317 25.7194 213.276 -86.0317 28.0435 213.823 -86.0317 30.4004 214.221 -86.0317 30.4194 214.226 -86.0317 30.4384 214.232 -86.0317 30.4764 214.242 -86.0317 30.5525 214.264 -86.0317 30.7048 214.306 -86.0317 31.0095 214.389 -86.0317 31.6198 214.548 -86.0317 32.8445 214.843 -86.0317 35.3137 215.337 -87.1559 35.3137 213.414 -88.05661 35.3137 211.38 -88.9124 35.3136 208.828 -89.56201 35.3137 206.218 -89.56201 33.9499 205.982 -89.56201 32.6301 205.722 -89.56201 31.3548 205.442 -89.56201 30.734 205.296 -89.56201 30.4296 205.222 -89.56201 30.2784 205.184 -89.56201 30.2031 205.166 -89.56201 30.1655 205.156 -89.56201 30.1246 205.146 -89.56201 27.7501 204.97 -89.56201 25.3868 204.68 -89.56201 23.285 204.326 -89.56201 21.2002 203.882 -88.9656 21.2003 206.279 -88.1967 21.2003 208.404 -87.2713 21.2003 210.165 -85.8286 30.4352 214.505 -90.3478 30.2666 199.968 -90.06951 30.1922 202.232 -90.3478 30.2666 199.968 -84.8567 30.6186 215.684 -83.7793 30.8494 216.709 -84.8567 30.6186 215.684 -82.5899 31.1311 217.576 -83.7793 30.8494 216.709 -81.2818 31.4671 218.284 -82.5899 31.1311 217.576 -81.2818 31.4671 218.284 + + + + + + + + + + -0.9999056 -0.007233083 0.01168888 -0.999917 -0.007019281 0.01080363 -0.9999988 -7.62985e-4 0.001403868 -0.9999973 1.22077e-4 0.002349972 -0.9998952 -0.008118033 0.01199394 -0.9999906 2.13634e-4 0.004333674 -0.9998849 -0.009186089 0.01208537 -0.9999703 -0.001098632 0.007629632 -0.9999418 -0.008148431 0.007080256 -0.9999182 -4.27263e-4 0.01278734 -0.9999625 -0.007790148 0.003784894 -0.9999493 -0.009122729 0.004255354 -0.9999633 -0.007036268 0.004899024 -0.9999222 -0.00766021 0.009857594 -0.9999379 -0.00701946 0.008667469 -0.9998915 -0.001281738 0.01467955 -0.9998584 -0.002166807 0.01669377 -0.9998884 -0.009674429 0.01138347 -0.9998946 -0.009491384 0.0109868 -0.9999355 -0.01003104 0.005324423 -0.9999504 -0.007945954 0.006028711 -0.9998791 -0.009399712 0.01239049 -0.9999026 -0.008453786 0.01110899 -0.9998179 -0.003295958 0.01879942 -0.9997685 -0.004699885 0.02099698 -0.999943 -0.009555339 0.004774808 -0.9999576 -0.007416546 0.005464732 -0.999916 -0.01123511 0.006459951 -0.9999325 -0.009105265 0.007227778 -0.9998148 -0.01181095 0.01519864 -0.9998503 -0.01049834 0.01376384 -0.9997074 -0.006347894 0.0233469 -0.9996325 -0.008362293 0.02578884 -0.9999266 -0.01060062 0.005875945 -0.9999423 -0.008454859 0.006627857 -0.9998573 -0.01370292 0.009888052 -0.9998468 -0.01370316 0.01089543 -0.9997708 -0.01336729 0.01672434 -0.9996895 -0.0148018 0.02005112 -0.9995386 -0.01074278 0.02841347 -0.9994958 -0.01092576 0.02981698 -0.9998527 -0.01321458 0.01095616 -0.9989815 -0.007660269 0.04446631 -0.9989442 -0.005096614 0.0456562 -0.9990804 -0.01132261 0.04135364 -0.9991796 -0.01409959 0.03796511 -0.9993527 -0.01324534 0.03344905 -0.9994217 -0.01333659 0.03128147 -0.9998815 -0.01046788 0.01129186 -0.9998759 -0.01098692 0.01129215 -0.9995068 -0.01544272 0.02734524 -0.9998683 -0.01181089 0.01113945 -0.9998623 -0.01229912 0.01113939 -0.999598 -0.016694 0.02291995 -0.9997083 -0.01669383 0.01745676 -0.9958966 -0.007538139 0.09018367 -0.9954743 -0.00213629 0.09500616 -0.9964362 -0.01480156 0.08304142 -0.9969617 -0.02020353 0.0752291 -0.9976625 -0.01754832 0.06604284 -0.9980795 -0.01599168 0.05984687 -0.9985006 -0.01925766 0.05124193 -0.9989247 -0.0205394 0.04156714 -0.9993386 -0.02014237 0.03027462 -0.9903258 -0.006927907 0.1385888 -0.9891207 0.001190185 0.1471015 -0.991694 -0.01776218 0.1273875 -0.9929959 -0.02578848 0.1153007 -0.9958567 -0.02603244 0.08713096 -0.9955975 -0.01785373 0.09201538 -0.9946342 -0.0132451 0.1026037 -0.9965849 -0.02264475 0.07940936 -0.9975592 -0.02453762 0.06537264 -0.9985219 -0.0237438 0.04889148 -0.9817637 -0.006012201 0.1900109 -0.9793664 0.004699945 0.2020382 -0.98444 -0.02011173 0.1745666 -0.9866835 -0.03265547 0.1593403 -0.9915683 -0.03265547 0.1254033 -0.9921032 -0.03366214 0.1208237 -0.9914695 -0.01983731 0.1288205 -0.9885376 -0.0200814 0.1496341 -0.9932298 -0.02676481 0.1130411 -0.9949652 -0.03012269 0.09558695 -0.996808 -0.02902346 0.07437449 -0.9695685 -0.005188286 0.244765 -0.9655607 0.008087515 0.2600526 -0.9732451 -0.02557474 0.2283418 -0.9856621 -0.0230416 0.1671508 -0.984139 -0.02407926 0.1757576 -0.9875071 -0.03421193 0.1538163 -0.9901028 -0.03830152 0.1350167 -0.9933844 -0.03781265 0.108433 -0.9529227 -0.004852473 0.3031749 -0.9469221 0.0109564 0.3212766 -0.9592209 -0.02832186 0.2812351 -0.9868202 -0.05236995 0.153112 -0.9824144 -0.05005151 0.1798804 -0.930677 -0.005493402 0.3658008 -0.9223815 0.01281803 0.3860678 -0.9393466 -0.03195345 0.3414779 -0.9745954 -0.07535153 0.2109171 -0.9669498 -0.0768457 0.2431108 -0.9013753 -0.007629692 0.4329714 -0.8906996 0.0132758 0.4543987 -0.91192 -0.03811872 0.4085938 -0.9522707 -0.1098398 0.2848083 -0.9411689 -0.1111494 0.319135 -0.863076 -0.01181083 0.5049361 -0.8500249 0.01174992 0.5266114 -0.8735476 -0.0526759 0.48388 -0.9127816 -0.1586716 0.3763683 -0.8983898 -0.1573258 0.4100542 -0.8131411 -0.0183112 0.5817786 -0.7979146 0.008087456 0.6027163 -0.8274154 -0.06296181 0.5580499 -0.8461615 -0.2231608 0.4839525 -0.8315092 -0.2159574 0.5118154 -0.7484237 -0.02716213 0.6626646 -0.7313052 0.002197384 0.6820469 -0.7618812 -0.07895314 0.6428869 -0.7422347 -0.3004646 0.5990066 -0.7257155 -0.2921906 0.6228659 -0.6650363 -0.03787386 0.7458502 -0.6455395 -0.005188226 0.7637094 -0.6789034 -0.09720414 0.7277649 -0.6890721 -0.1532695 0.7082995 -0.7669968 -0.1296741 0.6284112 -0.7315522 -0.1631877 0.6619677 -0.598729 -0.3810954 0.7044786 -0.5822466 -0.3699851 0.7239475 -0.5590236 -0.04876995 0.8277163 -0.535852 -0.01275688 0.8442157 -0.5745001 -0.114784 0.8104162 -0.5844731 -0.178049 0.7916374 -0.6504805 -0.1947413 0.7341329 -0.6537582 -0.1950806 0.7311251 -0.5579601 -0.2461103 0.7925341 -0.5791022 -0.2123222 0.7871213 -0.7109389 -0.1625744 0.6842042 -0.6760917 -0.1970929 0.709968 -0.5011834 -0.3309178 0.7995678 -0.6247289 -0.2805328 0.7287079 -0.4355407 -0.42022 0.796065 -0.4298281 -0.4514355 0.7819551 -0.4279465 -0.05694961 0.9020081 -0.3952788 -0.01718205 0.9184005 -0.4492473 -0.1284871 0.8841199 -0.4619936 -0.1977007 0.8645671 -0.5356383 -0.2221475 0.8147038 -0.5392725 -0.2227284 0.8121438 -0.4193972 -0.2931996 0.8591508 -0.4479916 -0.2591081 0.8556674 -0.3510986 -0.3796346 0.855925 -0.2777889 -0.467529 0.8391961 -0.2617948 -0.5021955 0.8241744 -0.2720485 -0.05752873 0.9605624 -0.2186385 -0.01257383 0.975725 -0.3078149 -0.1335207 0.9420309 -0.3292069 -0.2073451 0.9212117 -0.4080104 -0.2416505 0.8804162 -0.4127712 -0.2427796 0.8778827 -0.2782131 -0.3316522 0.9014458 -0.3101962 -0.2988431 0.9024806 -0.2079297 -0.4149439 0.8857691 -0.1371233 -0.4975565 0.8565249 -0.1165826 -0.5328927 0.8381134 -0.1813774 -0.05105912 0.9820872 -0.1145691 -0.005432367 0.9934005 -0.228406 -0.1271126 0.9652321 -0.257707 -0.2013679 0.945007 -0.2720775 -0.2742138 0.9223777 -0.2846246 -0.2506564 0.9252893 -0.217813 -0.3379963 0.9155961 -0.1491184 -0.4180871 0.8960842 -0.08209723 -0.4972225 0.8637303 -0.03582954 -0.5456228 0.8372647 -0.9787982 -0.03064084 0.2025226 -0.9835196 -0.03882068 0.1765854 -0.9827535 -0.03347969 0.1818647 -0.9812705 -0.04174965 0.1880567 -0.960856 -0.03552395 0.2747613 -0.9324716 -0.04995924 0.3577719 -0.9803273 -0.04553413 0.1920552 -0.9800375 -0.04745757 0.1930654 -0.9799789 -0.04767131 0.19331 -0.9799705 -0.04834234 0.1931863 -0.979856 -0.04989922 0.1933709 -0.9827422 -0.01843345 0.18406 -0.9795535 -0.04770195 0.1954468 -0.9831886 -0.02938944 0.1802126 -0.98053 -0.03222852 0.1937071 -0.9842831 -0.0317707 0.1737167 -0.9503162 -0.08136498 0.3004645 -0.8899288 -0.0637843 0.4516175 -0.8200188 -0.08865809 0.5654281 -0.7828216 -0.1419456 0.6058399 -0.7858963 -0.157051 0.598082 -0.7744231 -0.1366342 0.6177379 -0.7711539 -0.1537852 0.617796 -0.7915539 -0.161204 0.5894538 -0.7923311 -0.1655039 0.5872138 -0.7931668 -0.1617524 0.5871309 -0.7913964 -0.1716712 0.5867033 -0.7926074 -0.1670911 0.5863909 -0.8002076 -0.1221369 0.5871546 -0.8985811 -0.1373065 0.4167722 -0.7431105 -0.1412731 0.6540862 -0.810332 -0.2035291 0.5494889 -0.7142038 -0.1947412 0.6723013 -0.6878199 -0.2382053 0.6856836 -0.6516476 -0.296098 0.698342 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

10 0 0 9 1 1 0 2 2 10 0 3 0 2 4 1 3 5 11 4 6 10 0 7 1 3 8 11 4 9 1 3 10 2 5 11 12 6 12 11 4 13 2 5 14 12 6 15 2 5 16 3 7 17 141 8 18 3 7 19 4 9 20 12 10 21 141 10 22 13 10 23 3 7 24 141 8 25 12 6 26 14 11 27 138 11 28 142 11 29 14 12 30 142 12 31 139 12 32 139 13 33 142 14 34 140 15 35 139 13 36 140 15 37 5 16 38 142 14 39 141 8 40 4 9 41 142 14 42 4 9 43 140 15 44 138 17 45 13 18 46 141 8 47 138 17 48 141 8 49 142 14 50 15 19 51 143 19 52 146 19 53 15 20 54 146 20 55 144 20 56 144 21 57 146 22 58 145 23 59 144 21 60 145 23 61 6 24 62 146 22 63 139 13 64 5 16 65 146 22 66 5 16 67 145 23 68 143 25 69 14 25 70 139 25 71 143 26 72 139 26 73 146 26 74 16 27 75 147 27 76 150 27 77 16 28 78 150 28 79 148 28 80 148 29 81 150 30 82 149 31 83 148 29 84 149 31 85 7 32 86 150 30 87 144 21 88 6 24 89 150 30 90 6 24 91 149 31 92 147 33 93 15 33 94 144 33 95 147 34 96 144 34 97 150 34 98 17 35 99 151 36 100 154 37 101 17 35 102 154 37 103 152 38 104 152 38 105 154 37 106 153 39 107 152 38 108 153 39 109 8 40 110 154 37 111 148 29 112 7 32 113 154 37 114 7 32 115 153 39 116 151 36 117 16 41 118 148 29 119 151 36 120 148 29 121 154 37 122 19 42 123 18 43 124 9 1 125 19 42 126 9 1 127 10 0 128 20 44 129 19 42 130 10 0 131 20 44 132 10 0 133 11 4 134 21 45 135 20 44 136 11 4 137 21 45 138 11 4 139 12 6 140 22 46 141 21 45 142 12 6 143 22 46 144 12 6 145 13 18 146 138 17 147 22 46 148 13 18 149 23 47 150 138 17 151 14 48 152 22 46 153 138 17 154 23 47 155 143 49 156 23 47 157 14 48 158 24 50 159 143 49 160 15 51 161 23 47 162 143 49 163 24 50 164 147 52 165 24 50 166 15 51 167 25 53 168 147 52 169 16 41 170 24 50 171 147 52 172 25 53 173 151 36 174 25 53 175 16 41 176 26 54 177 151 36 178 17 35 179 25 53 180 151 36 181 26 54 182 28 55 183 27 56 184 18 43 185 28 55 186 18 43 187 19 42 188 29 57 189 28 55 190 19 42 191 29 57 192 19 42 193 20 44 194 30 58 195 29 57 196 20 44 197 30 58 198 20 44 199 21 45 200 31 59 201 30 58 202 21 45 203 31 59 204 21 45 205 22 46 206 32 60 207 31 59 208 22 46 209 32 60 210 22 46 211 23 47 212 33 61 213 32 60 214 23 47 215 33 61 216 23 47 217 24 50 218 34 62 219 33 61 220 24 50 221 34 62 222 24 50 223 25 53 224 35 63 225 34 62 226 25 53 227 35 63 228 25 53 229 26 54 230 37 64 231 36 65 232 27 56 233 37 64 234 27 56 235 28 55 236 38 66 237 37 64 238 28 55 239 38 66 240 28 55 241 29 57 242 39 67 243 38 66 244 29 57 245 39 67 246 29 57 247 30 58 248 190 68 249 39 67 250 30 58 251 190 68 252 30 58 253 31 59 254 41 69 255 40 70 256 31 59 257 41 69 258 31 59 259 32 60 260 42 71 261 41 69 262 32 60 263 42 71 264 32 60 265 33 61 266 43 72 267 42 71 268 33 61 269 43 72 270 33 61 271 34 62 272 44 73 273 43 72 274 34 62 275 44 73 276 34 62 277 35 63 278 46 74 279 45 75 280 36 65 281 46 74 282 36 65 283 37 64 284 47 76 285 46 74 286 37 64 287 47 76 288 37 64 289 38 66 290 48 77 291 47 76 292 38 66 293 48 77 294 38 66 295 39 67 296 191 78 297 48 77 298 39 67 299 191 78 300 39 67 301 192 79 302 50 80 303 49 81 304 40 70 305 50 80 306 40 70 307 41 69 308 51 82 309 50 80 310 41 69 311 51 82 312 41 69 313 42 71 314 52 83 315 51 82 316 42 71 317 52 83 318 42 71 319 43 72 320 53 84 321 52 83 322 43 72 323 53 84 324 43 72 325 44 73 326 55 85 327 54 86 328 45 75 329 55 85 330 45 75 331 46 74 332 56 87 333 55 85 334 46 74 335 56 87 336 46 74 337 47 76 338 58 88 339 57 89 340 49 81 341 58 88 342 49 81 343 50 80 344 59 90 345 58 88 346 50 80 347 59 90 348 50 80 349 51 82 350 60 91 351 59 90 352 51 82 353 60 91 354 51 82 355 52 83 356 61 92 357 60 91 358 52 83 359 61 92 360 52 83 361 53 84 362 63 93 363 62 94 364 54 86 365 63 93 366 54 86 367 55 85 368 64 95 369 63 93 370 55 85 371 64 95 372 55 85 373 56 87 374 66 96 375 65 97 376 60 91 377 66 96 378 60 91 379 61 92 380 68 98 381 67 99 382 62 94 383 68 98 384 62 94 385 63 93 386 69 100 387 68 98 388 63 93 389 69 100 390 63 93 391 64 95 392 71 101 393 70 102 394 65 97 395 71 101 396 65 97 397 66 96 398 73 103 399 72 104 400 67 99 401 73 103 402 67 99 403 68 98 404 74 105 405 73 103 406 68 98 407 74 105 408 68 98 409 69 100 410 76 106 411 75 107 412 70 102 413 76 106 414 70 102 415 71 101 416 78 108 417 77 109 418 72 104 419 78 108 420 72 104 421 73 103 422 79 110 423 78 108 424 73 103 425 79 110 426 73 103 427 74 105 428 81 111 429 80 112 430 75 107 431 81 111 432 75 107 433 76 106 434 83 113 435 82 114 436 77 109 437 83 113 438 77 109 439 78 108 440 84 115 441 83 113 442 78 108 443 84 115 444 78 108 445 79 110 446 86 116 447 85 117 448 80 112 449 86 116 450 80 112 451 81 111 452 88 118 453 87 119 454 82 114 455 88 118 456 82 114 457 83 113 458 89 120 459 88 118 460 83 113 461 89 120 462 83 113 463 84 115 464 92 121 465 91 122 466 85 117 467 92 121 468 85 117 469 86 116 470 94 123 471 93 124 472 87 119 473 94 123 474 87 119 475 88 118 476 95 125 477 94 123 478 88 118 479 95 125 480 88 118 481 89 120 482 96 126 483 95 125 484 89 120 485 96 126 486 89 120 487 90 127 488 90 127 489 193 128 490 96 126 491 101 129 492 100 130 493 91 122 494 101 129 495 91 122 496 92 121 497 103 131 498 102 132 499 93 124 500 103 131 501 93 124 502 94 123 503 104 133 504 103 131 505 94 123 506 104 133 507 94 123 508 95 125 509 105 134 510 104 133 511 95 125 512 105 134 513 95 125 514 96 126 515 194 135 516 105 134 517 96 126 518 194 135 519 96 126 520 195 136 521 107 137 522 106 138 523 97 139 524 107 137 525 97 139 526 98 140 527 108 141 528 107 137 529 98 140 530 108 141 531 98 140 532 99 142 533 109 143 534 108 141 535 99 142 536 109 143 537 99 142 538 100 130 539 110 144 540 109 143 541 100 130 542 110 144 543 100 130 544 101 129 545 112 145 546 111 146 547 102 132 548 112 145 549 102 132 550 103 131 551 113 147 552 112 145 553 103 131 554 113 147 555 103 131 556 104 133 557 114 148 558 113 147 559 104 133 560 114 148 561 104 133 562 105 134 563 196 149 564 114 148 565 105 134 566 196 149 567 105 134 568 197 150 569 116 151 570 115 152 571 106 138 572 116 151 573 106 138 574 107 137 575 117 153 576 116 151 577 107 137 578 117 153 579 107 137 580 108 141 581 118 154 582 117 153 583 108 141 584 118 154 585 108 141 586 109 143 587 119 155 588 118 154 589 109 143 590 119 155 591 109 143 592 110 144 593 121 156 594 120 157 595 111 146 596 121 156 597 111 146 598 112 145 599 122 158 600 121 156 601 112 145 602 122 158 603 112 145 604 113 147 605 123 159 606 122 158 607 113 147 608 123 159 609 113 147 610 114 148 611 198 160 612 123 159 613 114 148 614 198 160 615 114 148 616 199 161 617 125 162 618 124 163 619 115 152 620 125 162 621 115 152 622 116 151 623 126 164 624 125 162 625 116 151 626 126 164 627 116 151 628 117 153 629 127 165 630 126 164 631 117 153 632 127 165 633 117 153 634 118 154 635 128 166 636 127 165 637 118 154 638 128 166 639 118 154 640 119 155 641 130 167 642 129 168 643 120 157 644 130 167 645 120 157 646 121 156 647 131 169 648 130 167 649 121 156 650 131 169 651 121 156 652 122 158 653 132 170 654 131 169 655 122 158 656 132 170 657 122 158 658 123 159 659 133 171 660 132 170 661 123 159 662 133 171 663 123 159 664 200 172 665 134 173 666 133 171 667 124 163 668 134 173 669 124 163 670 125 162 671 135 174 672 134 173 673 125 162 674 135 174 675 125 162 676 126 164 677 136 175 678 135 174 679 126 164 680 136 175 681 126 164 682 127 165 683 137 176 684 136 175 685 127 165 686 137 176 687 127 165 688 128 166 689 172 177 690 56 87 691 47 76 692 48 77 693 172 177 694 47 76 695 174 178 696 173 179 697 48 77 698 172 177 699 48 77 700 173 179 701 49 81 702 174 178 703 48 77 704 174 178 705 57 89 706 175 180 707 172 177 708 64 95 709 56 87 710 69 100 711 64 95 712 171 181 713 170 182 714 69 100 715 171 181 716 74 105 717 69 100 718 170 182 719 176 183 720 175 180 721 57 89 722 177 184 723 176 183 724 57 89 725 64 95 726 172 177 727 171 181 728 178 185 729 177 184 730 57 89 731 57 89 732 174 178 733 49 81 734 179 186 735 178 185 736 57 89 737 180 187 738 179 186 739 57 89 740 57 89 741 58 88 742 182 188 743 59 90 744 60 91 745 185 189 746 183 190 747 58 88 748 59 90 749 57 89 750 181 191 751 180 187 752 182 188 753 58 88 754 183 190 755 184 192 756 59 90 757 185 189 758 183 190 759 59 90 760 184 192 761 70 102 762 185 189 763 65 97 764 185 189 765 60 91 766 65 97 767 75 107 768 186 193 769 70 102 770 185 189 771 70 102 772 186 193 773 181 191 774 57 89 775 182 188 776 169 194 777 74 105 778 170 182 779 84 115 780 79 110 781 169 194 782 74 105 783 169 194 784 79 110 785 168 195 786 84 115 787 169 194 788 168 195 789 167 196 790 90 127 791 165 197 792 189 198 793 166 199 794 90 127 795 167 196 796 166 199 797 168 195 798 89 120 799 84 115 800 164 200 801 163 201 802 189 198 803 164 200 804 189 198 805 165 197 806 90 127 807 89 120 808 168 195 809 189 198 810 163 201 811 162 202 812 162 202 813 161 203 814 189 198 815 160 204 816 159 205 817 189 198 818 189 198 819 161 203 820 160 204 821 189 198 822 90 127 823 166 199 824 187 206 825 186 193 826 75 107 827 97 139 828 189 198 829 158 207 830 80 112 831 187 206 832 75 107 833 188 208 834 85 117 835 91 122 836 80 112 837 85 117 838 188 208 839 80 112 840 188 208 841 187 206 842 158 207 843 189 198 844 159 205 845 98 140 846 157 209 847 156 210 848 158 207 849 157 209 850 98 140 851 98 140 852 97 139 853 158 207 854 99 142 855 98 140 856 156 210 857 100 130 858 155 211 859 91 122 860 91 122 861 155 211 862 188 208 863 155 211 864 100 130 865 99 142 866 155 211 867 99 142 868 156 210 869 97 139 870 90 127 871 189 198 872

+
+
+
+ + + + -79.8473 109.365 -123.175 -79.8473 114.537 -193.438 -80.6813 113.773 -192.798 -81.3684 112.818 -191.953 -81.9085 111.675 -190.901 -82.3017 110.342 -189.644 -82.5478 108.819 -188.18 -82.64701 107.107 -186.511 -82.5992 105.205 -184.635 -82.40441 103.114 -182.554 -79.7238 114.579 -194.692 -80.57421 113.818 -194.04 -81.2774 112.869 -193.18 -81.8333 111.73 -192.115 -82.24201 110.402 -190.842 -82.50341 108.885 -189.363 -82.6177 107.178 -187.677 -82.5847 105.282 -185.784 -82.40441 103.197 -183.685 -79.3502 114.558 -196.058 -80.2482 113.81 -195.379 -80.99871 112.873 -194.492 -81.6017 111.746 -193.398 -82.0572 110.431 -192.097 -82.36531 108.927 -190.587 -82.52581 107.234 -188.871 -82.5389 105.351 -186.947 -82.40441 103.28 -184.815 -78.72161 114.516 -197.442 -79.69902 113.782 -196.733 -80.5288 112.86 -195.817 -81.2107 111.75 -194.693 -81.74501 110.45 -193.36 -82.1315 108.961 -191.819 -82.3702 107.284 -190.069 -82.4612 105.418 -188.112 -82.40441 103.363 -185.946 -77.8332 114.493 -198.747 -78.9226 113.772 -198.02 -79.86402 112.862 -197.084 -80.6574 111.764 -195.938 -81.30281 110.478 -194.584 -81.8002 109.003 -193.021 -82.1496 107.339 -191.248 -82.35102 105.487 -189.267 -82.40441 103.447 -187.076 -82.40441 99.0637 -127.543 -82.5763 101.852 -126.586 -82.4088 104.581 -125.473 -82.13 105.93 -124.865 -81.65921 107.223 -124.252 -80.9192 108.409 -123.664 -80.63961 109.825 -138.513 -81.2983 108.993 -138.883 -81.82302 107.976 -139.304 -82.5857 103.825 -140.961 -82.21321 106.775 -139.793 -82.5652 102.07 -141.513 -82.46791 105.391 -140.352 + + + + + + + + + + -0.7835873 0.6094738 -0.1205519 -0.7458932 0.6660546 0.003845393 -0.6760618 0.7367951 -0.008575856 -0.7127745 0.6853988 -0.1489334 -0.891453 0.4377611 -0.1169478 -0.861772 0.507291 -0.002227902 -0.9535583 0.2822069 -0.1052896 -0.9356191 0.3529515 -0.006500482 -0.984007 0.1543061 -0.08899462 -0.9763348 0.2160748 -0.009064137 -0.9960228 0.05472081 -0.07031607 -0.9947581 0.1017494 -0.01016271 -0.9985162 -0.02066123 -0.0503866 -0.9999089 0.008819818 -0.01022368 -0.9966168 -0.07675439 -0.02938944 -0.9977627 -0.0661655 -0.009582996 -0.995047 -0.09903466 -0.008575856 -0.9950653 -0.09900295 -0.006592035 -0.7984908 0.5399266 -0.2662551 -0.7225502 0.6258337 -0.2936896 -0.899393 0.3551794 -0.2548331 -0.9530913 0.2006652 -0.2266067 -0.9782143 0.08465874 -0.1895513 -0.9889847 0.003173887 -0.1479845 -0.9933237 -0.05060005 -0.1036721 -0.9949943 -0.08243292 -0.05649143 -0.9958863 -0.08996909 -0.01077306 -0.7849581 0.4713411 -0.4020926 -0.7063999 0.5620741 -0.4302001 -0.8793832 0.2783361 -0.3862828 -0.9299221 0.1296764 -0.3441352 -0.956965 0.02783364 -0.2888657 -0.973439 -0.03491389 -0.226269 -0.9851934 -0.06656259 -0.1579984 -0.9937812 -0.07321441 -0.08389598 -0.997812 -0.06503552 -0.01190233 -0.726575 0.5037224 -0.4672822 -0.6836922 0.5538634 -0.4751847 -0.8378415 0.2886804 -0.4633413 -0.899125 0.1251285 -0.4194248 -0.9345312 0.0185557 -0.3553972 -0.9587343 -0.04226922 -0.2811441 -0.9775851 -0.06799632 -0.1992586 -0.9917839 -0.06537222 -0.1099608 -0.999194 -0.03698909 -0.01559519 -0.7214696 0.6906149 0.05032581 -0.757333 0.6510347 0.05099749 -0.6771008 0.7336835 0.05694895 -0.8950487 0.4445487 0.0355553 -0.8470616 0.5300887 0.03863734 -0.9265702 0.3750839 0.02792525 -0.9995221 0.03073245 0.003357052 -0.9999549 0.008514761 0.004211604 -0.989816 0.1417292 0.01330614 -0.9601695 0.2784891 0.02276742 -0.9709675 0.2385073 0.01834201 -0.998916 -0.04644984 -0.003082394 -0.9980428 -0.06250357 -0.001953184 -0.9922674 0.1236634 0.01062059 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -91.0375 32.7315 90.88801 -91.0599 29.8121 92.31581 -91.0572 27.1228 93.6671 -91.0338 24.4493 95.04251 -90.9897 21.7213 96.47702 -90.9251 18.9387 97.9705 -90.8398 16.1015 99.5231 -90.996 21.3905 67.71501 -90.92681 18.7689 68.7489 -90.8398 16.1015 69.78411 -91.0432 23.3916 38.5778 -90.9905 20.9993 39.1134 -90.9227 18.5684 39.6028 -90.8398 16.1015 40.0451 -91.0222 22.8083 10.5138 -90.9736 20.6003 10.5301 -90.91291 18.3634 10.4612 -90.8398 16.1015 10.3062 -90.9878 22.3116 -17.7841 -90.9478 20.2581 -18.219 -90.8985 18.1864 -18.7684 -90.8398 16.1015 -19.4328 -90.9656 23.9423 -45.9862 -90.94371 21.9962 -46.5858 -90.9154 20.0367 -47.3162 -90.8808 18.0698 -48.1782 -90.8398 16.1015 -49.1718 -90.9046 23.9059 -75.50521 -90.89321 21.9554 -76.1574 -90.8787 19.9996 -76.9419 -90.8609 18.0458 -77.85971 -90.8398 16.1015 -78.9107 -90.8398 31.05 -105.803 -90.8398 28.7999 -105.866 -90.8398 26.4698 -106.062 -90.8398 24.3521 -106.359 -90.8398 22.281 -106.76 -90.8398 20.2095 -107.275 -90.8398 18.1465 -107.904 -90.8398 16.1015 -108.65 -91.02201 33.8185 90.3673 -91.05931 30.7332 89.8527 -91.0643 27.6185 89.5636 -91.0544 25.9319 89.4226 -91.0467 25.1117 89.19831 -91.03791 24.3521 88.816 -91.0293 23.7078 88.2383 -91.0226 23.2454 87.5069 -91.01831 22.9528 86.6989 -91.0158 22.7788 85.8574 -91.0142 22.6409 84.3378 -91.01461 22.6129 82.81221 -91.0158 22.6269 81.2875 -91.01702 22.6469 79.7628 -91.0445 23.7517 65.21501 -91.06221 24.4694 45.5505 -91.06311 24.6881 25.8741 -91.0492 24.5901 6.19795 -91.02301 24.2684 -13.4758 -90.9944 24.5387 -33.6099 -90.95671 24.8089 -53.744 -90.9226 24.8089 -69.1487 -90.88761 24.8089 -84.5533 -90.88021 25.6117 -88.4833 -90.8725 26.8664 -92.2931 -90.86441 28.5753 -95.9267 -90.8561 30.8023 -99.2679 -90.84801 30.9211 -102.522 -90.8561 30.8023 -99.2679 -90.1101 41.4136 -104.85 -90.136 41.2161 -104.869 -90.8398 31.05 -105.803 -90.7955 32.8985 -101.485 -90.67041 35.3746 -103.264 -90.4554 38.1987 -104.428 -90.136 41.215 -104.848 -90.84801 30.9211 -102.522 + + + + + + + + + + -0.9995689 -0.02935957 1.83116e-4 -0.999616 -0.02771115 6.10378e-5 -0.9997839 -0.02078366 4.5779e-4 -0.9997289 -0.02328568 2.44149e-4 -0.9995485 -0.03005027 0 -0.9994716 -0.032503 2.47071e-4 -0.9995296 -0.03067159 3.05191e-5 -0.9996899 -0.02490371 0 -0.9994685 -0.03260159 0 -0.9994365 -0.03356897 9.01844e-5 -0.9997562 -0.02208244 -2.82783e-4 -0.9996996 -0.02450644 -3.66224e-4 -0.9998111 -0.01944077 -9.15578e-5 -0.9998121 -0.01937973 -5.49347e-4 -0.99956 -0.02966451 -1.52595e-4 -0.9994359 -0.0335856 0 -0.9994786 -0.03228884 -1.08792e-4 -0.9997578 -0.022004 -6.35311e-4 -0.9997703 -0.02142429 -7.32455e-4 -0.9998574 -0.01684635 -0.001220703 -0.9996323 -0.02711462 -3.2842e-4 -0.9997206 -0.0236296 -6.16026e-4 -0.9994781 -0.03230351 0 -0.9996069 -0.02803838 -3.22801e-4 -0.9998789 -0.01553392 -0.001068115 -0.9999021 -0.01393294 -0.001378357 -0.9998208 -0.01892155 -5.49335e-4 -0.9996666 -0.0258187 -3.66223e-4 -0.9998526 -0.01714366 -9.82863e-4 -0.9997821 -0.02087515 -1.52597e-4 -0.9996023 -0.02819991 -9.15582e-5 -0.9999807 -0.005981683 -0.001709043 -0.9999237 -0.0122686 -0.001434385 -0.9999569 -0.009125173 -0.001739561 -0.9999847 -0.005158185 -0.002059936 -0.9999697 -0.007690608 -0.00125122 -0.9999759 -0.006740629 -0.001698315 -0.9999536 -0.009613454 -6.71417e-4 -0.9999403 -0.01092559 -1.83111e-4 -0.9999847 -0.005242049 -0.001800835 -0.9999977 4.1147e-4 -0.002094447 -0.9999989 2.44155e-4 -0.001434385 -0.9999984 4.30196e-4 -0.001740515 -0.9999997 1.22078e-4 -9.15583e-4 -0.9999998 -3.05194e-4 -6.40908e-4 -0.9999998 2.54e-4 -7.01534e-4 -0.9999147 0.01263469 -0.003326535 -0.9999793 0.006317377 0.001312255 -0.9999315 0.01162779 -0.00137335 -0.9999963 -0.002533078 0.00100708 -0.9999851 -0.005249261 0.001525938 -0.9999952 0.002655148 0.001617491 -0.9999672 -0.00802654 0.001129209 -0.9999133 -0.01312297 0.00112915 -0.9999818 -0.005953967 0.001011431 -0.9999275 -0.01201266 8.46606e-4 -0.999939 -0.0110175 9.46103e-4 -0.9998998 -0.01413255 8.79961e-4 -0.9998604 -0.01669383 8.54529e-4 -0.9998432 -0.01769888 6.92147e-4 -0.9998568 -0.01690196 7.98401e-4 -0.9998306 -0.01839834 6.20119e-4 -0.9998679 -0.01621788 0.00110799 -0.9997968 -0.02016043 3.58401e-4 -0.9997677 -0.02154666 5.11725e-4 -0.9997819 -0.0208851 4.59263e-4 -0.9997475 -0.02246522 5.79969e-4 -0.9998237 -0.01876759 6.068e-4 -0.999791 -0.02044552 8.73354e-5 -0.9998201 -0.01896959 2.0751e-4 -0.9999968 -9.81145e-4 -0.002346515 -0.999988 -0.004370093 -0.002213776 -0.9999897 -0.003940105 -0.002271771 -0.9999968 -0.001372396 -0.002163529 -0.999997 -8.91028e-6 -0.002487719 -0.999997 6.60668e-5 -0.002499282 -0.9999971 2.00954e-4 -0.002380609 -0.999997 2.79537e-5 -0.002474784 -0.9999969 -5.58667e-4 -0.002487957 -0.9999974 3.19169e-4 -0.002282857 -0.9998611 -0.01666271 -6.23397e-4 -0.999849 -0.01735872 -9.10822e-4 -0.9998226 -0.01883882 -3.56387e-4 -0.9997588 -0.02196609 2.47993e-4 -0.9998775 -0.01561552 -0.001075625 -0.9998601 -0.01673036 -1.40136e-4 -0.9998955 -0.01437443 -0.001617491 -0.9999658 -0.00802654 -0.002044737 -0.9999876 -0.00451678 -0.002105772 -0.9999943 -0.002602875 -0.002137899 -0.9998946 -0.01443153 -0.00161463 -0.9993889 0.03460901 -0.004913568 -0.9993796 0.03299117 -0.01232969 -0.9982205 0.05313384 -0.02707046 -0.9996258 0.02731466 -0.001464903 -0.9987069 0.04721301 -0.01886075 -0.9932679 0.1156971 -0.00576806 -0.9931334 0.1168285 0.006103873 -0.9915731 0.1293714 0.006775259 -0.9881633 0.0785855 -0.131749 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -77.0353 66.87271 -187.579 -77.4593 67.1365 -184.74 -78.00981 67.8421 -181.433 -78.6505 68.8679 -177.715 -79.3702 70.14101 -173.507 -80.07511 71.4412 -169.233 -80.8039 72.7923 -164.546 -81.51271 74.0712 -159.599 -82.1828 75.2032 -154.413 -82.7989 76.1231 -149 -83.3492 76.77481 -143.364 -83.82521 77.1118 -137.505 -84.2222 77.0968 -131.411 -84.5389 76.7022 -125.067 -78.6039 71.55931 -187.297 -78.9416 71.7979 -184.08 -79.39 72.42311 -180.454 -79.9174 73.3286 -176.467 -80.5128 74.4506 -172.03 -81.0972 75.5958 -167.58 -81.7016 76.7858 -162.745 -82.2885 77.9127 -157.684 -82.8416 78.91101 -152.413 -83.3474 79.7237 -146.943 -83.7955 80.3017 -141.279 -84.17881 80.6044 -135.419 -84.4929 80.5992 -129.354 -79.9161 76.2131 -187.078 -80.1771 76.40901 -183.484 -80.5329 76.93621 -179.538 -80.9563 77.7036 -175.284 -81.4373 78.65641 -170.618 -81.9105 79.6296 -165.992 -82.4 80.6409 -161.011 -82.87461 81.5981 -155.835 -83.3201 82.4452 -150.48 -83.72502 83.13311 -144.954 -84.0806 83.6198 -139.262 -84.3806 83.8706 -133.402 -80.9719 80.8341 -186.922 -81.16561 80.9696 -182.95 -81.4383 81.38121 -178.686 -81.76741 81.99301 -174.165 -82.1437 82.7584 -169.272 -82.51501 83.54251 -164.469 -82.8991 84.3576 -159.342 -83.2708 85.12751 -154.054 -83.6182 85.80561 -148.615 -83.9319 86.3512 -143.034 -84.2045 86.72911 -137.315 -84.43061 86.9103 -131.455 -81.7713 85.42221 -186.828 -81.90721 85.4797 -182.48 -82.1063 85.7582 -177.898 -82.3506 86.1967 -173.111 -82.63201 86.7567 -167.99 -82.9106 87.3346 -163.013 -83.1988 87.9357 -157.741 -83.4771 88.5008 -152.339 -83.7361 88.9925 -146.817 -83.968 89.37802 -141.182 -84.16701 89.6294 -135.436 -82.3142 89.9776 -186.796 -82.4019 89.9395 -182.073 -82.53691 90.0671 -177.174 -82.70581 90.3148 -172.12 -82.9022 90.6511 -166.774 -83.0973 91.0058 -161.622 -83.2992 91.37551 -156.205 -83.4937 91.7181 -150.691 -83.6736 92.0056 -145.088 -83.8333 92.2136 -139.399 -83.9683 92.32101 -133.626 -82.6007 94.5 -186.827 -82.6496 94.3488 -181.729 -82.7302 94.30801 -176.513 -82.8333 94.3473 -171.195 -82.9544 94.44181 -165.622 -83.07521 94.5562 -160.297 -83.2003 94.67681 -154.736 -83.3204 94.7793 -149.111 -83.4309 94.8451 -143.425 -83.5278 94.85791 -137.683 -83.6083 94.8036 -131.886 -82.6308 98.9897 -186.92 -82.6505 98.70771 -181.448 -82.68601 98.48091 -175.916 -82.73281 98.2941 -170.333 -82.7884 98.1288 -164.536 -82.8442 97.98571 -159.037 -82.902 97.8396 -153.333 -82.9573 97.6845 -147.597 -83.0078 97.511 -141.831 -83.0515 97.3109 -136.036 -83.08702 97.0774 -130.214 -82.40441 103.447 -187.076 -82.40441 103.016 -181.23 -82.40441 102.586 -175.383 -82.40441 102.155 -169.536 -82.40441 101.712 -163.514 -82.40441 101.294 -157.843 -82.40441 100.864 -151.997 -82.40441 100.434 -146.15 -82.40441 100.003 -140.304 -82.40441 99.5727 -134.457 -82.40441 99.0637 -127.543 -83.2713 96.3497 -128.275 -83.8732 93.5189 -128.802 -84.2593 90.61402 -129.06 -84.47702 87.6808 -128.997 -84.5739 84.76601 -128.569 -84.5932 81.9317 -127.759 -84.5728 79.2311 -126.58 + + + + + + + + + + -0.9592164 -0.2720781 -0.07666403 -0.9549812 -0.2872787 -0.07403993 -0.9498152 -0.2962488 -0.1004383 -0.9533672 -0.2831901 -0.1043766 -0.9647062 -0.2529721 -0.07312357 -0.9596407 -0.2645085 -0.09552454 -0.9697187 -0.2329534 -0.07333773 -0.9652222 -0.2444261 -0.09274703 -0.9746038 -0.2107359 -0.07574892 -0.9705836 -0.2217857 -0.0936951 -0.9790342 -0.1880915 -0.07819086 -0.9754168 -0.1986175 -0.09546333 -0.9833069 -0.1632486 -0.08035773 -0.980085 -0.1730423 -0.0974164 -0.9871914 -0.1374871 -0.08093583 -0.9843353 -0.1467057 -0.09778344 -0.9905696 -0.1118232 -0.07916742 -0.9880778 -0.1206409 -0.09564602 -0.9933771 -0.08734661 -0.07465052 -0.9912581 -0.09607386 -0.09042787 -0.9955951 -0.06518882 -0.0673862 -0.9938711 -0.0740993 -0.08203417 -0.9972014 -0.04651057 -0.05853497 -0.9959325 -0.0554533 -0.07101809 -0.9982231 -0.03051918 -0.05118072 -0.9973083 -0.04126203 -0.06061118 -0.9716146 -0.2293835 -0.05786472 -0.9687076 -0.2424439 -0.0531643 -0.9755333 -0.2116783 -0.05938953 -0.9793116 -0.1925724 -0.06216639 -0.9830827 -0.1710293 -0.06555509 -0.9865031 -0.1488727 -0.0681799 -0.9897483 -0.1245197 -0.06995075 -0.9926012 -0.09924787 -0.06994962 -0.9949597 -0.07400929 -0.06766128 -0.9967734 -0.05002021 -0.0627771 -0.998062 -0.02847415 -0.05533087 -0.9987441 -0.007721364 -0.04950231 -0.9821378 -0.183054 -0.04355084 -0.9802511 -0.1940726 -0.03799659 -0.9848085 -0.1668763 -0.04800593 -0.9875121 -0.1486594 -0.0521574 -0.9902431 -0.1276295 -0.05594092 -0.992672 -0.1057495 -0.05847501 -0.9948716 -0.08151733 -0.05987906 -0.9966524 -0.05618506 -0.05938953 -0.9979152 -0.0308243 -0.05670458 -0.9986433 -0.006714165 -0.05163812 -0.9988699 0.01422202 -0.0453518 -0.9987564 0.03460824 -0.03589004 -0.9905157 -0.133611 -0.03204464 -0.9894202 -0.142645 -0.02645981 -0.9921891 -0.1189039 -0.03772211 -0.9939402 -0.1014449 -0.04232972 -0.9956671 -0.08078503 -0.04605382 -0.9970991 -0.05884134 -0.04828166 -0.998199 -0.03424274 -0.04925835 -0.998792 -0.008301138 -0.04843348 -0.9988013 0.01788419 -0.04556512 -0.9982566 0.04291015 -0.04052966 -0.9969478 0.06885182 -0.0368064 -0.9964269 -0.08151721 -0.02209597 -0.9959152 -0.08865666 -0.01712095 -0.9972941 -0.06811797 -0.02765005 -0.9981745 -0.05127137 -0.03192251 -0.9989122 -0.03067141 -0.03512716 -0.9992877 -0.008331716 -0.03680604 -0.9991587 0.01706004 -0.03729408 -0.998363 0.04431331 -0.03616482 -0.9968338 0.07220733 -0.03329592 -0.9946526 0.09924852 -0.028566 -0.9915671 0.1269596 -0.02600228 -0.9995501 -0.02716165 -0.0127263 -0.9994269 -0.03268551 -0.008819878 -0.9997439 -0.01480174 -0.01712119 -0.9997934 0.001586973 -0.02026438 -0.9994974 0.02240091 -0.02243143 -0.9986935 0.0454728 -0.02331626 -0.9971162 0.0722689 -0.02316391 -0.9945944 0.1015378 -0.02172976 -0.9910569 0.132088 -0.01895254 -0.9866363 0.1622675 -0.01477098 -0.9808945 0.1941035 -0.01303178 -0.999578 0.02887064 -0.003234922 -0.9996926 0.0247817 -8.24023e-4 -0.9991635 0.04052931 -0.005462884 -0.9983609 0.05682593 -0.006805658 -0.9969156 0.07812958 -0.007416188 -0.9947281 0.1022988 -0.007141351 -0.9913609 0.1310197 -0.00613439 -0.9866216 0.162972 -0.004272639 -0.9803712 0.1971546 -0.001586973 -0.9729469 0.2310291 1.83114e-4 -0.9646536 0.2634119 0.007599294 -0.9984509 0.05557459 0.002685606 -0.9986997 0.05084443 0.003723263 -0.9978279 0.06583005 0.002441525 -0.9966981 0.08115071 0.002777218 -0.9947938 0.1018415 0.003692746 -0.9920343 0.1258621 0.005157768 -0.9879076 0.1548851 0.0070194 -0.9821654 0.187784 0.009399831 -0.9745886 0.2236726 0.01214647 -0.962515 0.2711022 0.00827068 -0.9988875 -0.01831138 -0.04345905 -0.999283 0.007355034 -0.03714156 -0.9978992 0.05401802 -0.03576785 -0.9979012 -0.04120022 -0.04995912 -0.9976111 -0.04480212 -0.05258452 -0.9949895 0.09711229 -0.0237745 -0.9541215 0.2986303 0.02172964 -0.9855971 0.1689202 -0.008026361 -0.9671213 0.2541635 0.008789479 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

15 0 0 14 1 1 0 2 2 15 0 3 0 2 4 1 3 5 16 4 6 15 0 7 1 3 8 16 4 9 1 3 10 2 5 11 17 6 12 16 4 13 2 5 14 17 6 15 2 5 16 3 7 17 18 8 18 17 6 19 3 7 20 18 8 21 3 7 22 4 9 23 19 10 24 18 8 25 4 9 26 19 10 27 4 9 28 5 11 29 20 12 30 19 10 31 5 11 32 20 12 33 5 11 34 6 13 35 21 14 36 20 12 37 6 13 38 21 14 39 6 13 40 7 15 41 22 16 42 21 14 43 7 15 44 22 16 45 7 15 46 8 17 47 23 18 48 22 16 49 8 17 50 23 18 51 8 17 52 9 19 53 24 20 54 23 18 55 9 19 56 24 20 57 9 19 58 10 21 59 25 22 60 24 20 61 10 21 62 25 22 63 10 21 64 11 23 65 26 24 66 25 22 67 11 23 68 26 24 69 11 23 70 12 25 71 28 26 72 27 27 73 14 1 74 28 26 75 14 1 76 15 0 77 29 28 78 28 26 79 15 0 80 29 28 81 15 0 82 16 4 83 30 29 84 29 28 85 16 4 86 30 29 87 16 4 88 17 6 89 31 30 90 30 29 91 17 6 92 31 30 93 17 6 94 18 8 95 32 31 96 31 30 97 18 8 98 32 31 99 18 8 100 19 10 101 33 32 102 32 31 103 19 10 104 33 32 105 19 10 106 20 12 107 34 33 108 33 32 109 20 12 110 34 33 111 20 12 112 21 14 113 35 34 114 34 33 115 21 14 116 35 34 117 21 14 118 22 16 119 36 35 120 35 34 121 22 16 122 36 35 123 22 16 124 23 18 125 37 36 126 36 35 127 23 18 128 37 36 129 23 18 130 24 20 131 38 37 132 37 36 133 24 20 134 38 37 135 24 20 136 25 22 137 40 38 138 39 39 139 27 27 140 40 38 141 27 27 142 28 26 143 41 40 144 40 38 145 28 26 146 41 40 147 28 26 148 29 28 149 42 41 150 41 40 151 29 28 152 42 41 153 29 28 154 30 29 155 43 42 156 42 41 157 30 29 158 43 42 159 30 29 160 31 30 161 44 43 162 43 42 163 31 30 164 44 43 165 31 30 166 32 31 167 45 44 168 44 43 169 32 31 170 45 44 171 32 31 172 33 32 173 46 45 174 45 44 175 33 32 176 46 45 177 33 32 178 34 33 179 47 46 180 46 45 181 34 33 182 47 46 183 34 33 184 35 34 185 48 47 186 47 46 187 35 34 188 48 47 189 35 34 190 36 35 191 49 48 192 48 47 193 36 35 194 49 48 195 36 35 196 37 36 197 50 49 198 49 48 199 37 36 200 50 49 201 37 36 202 38 37 203 52 50 204 51 51 205 39 39 206 52 50 207 39 39 208 40 38 209 53 52 210 52 50 211 40 38 212 53 52 213 40 38 214 41 40 215 54 53 216 53 52 217 41 40 218 54 53 219 41 40 220 42 41 221 55 54 222 54 53 223 42 41 224 55 54 225 42 41 226 43 42 227 56 55 228 55 54 229 43 42 230 56 55 231 43 42 232 44 43 233 57 56 234 56 55 235 44 43 236 57 56 237 44 43 238 45 44 239 58 57 240 57 56 241 45 44 242 58 57 243 45 44 244 46 45 245 59 58 246 58 57 247 46 45 248 59 58 249 46 45 250 47 46 251 60 59 252 59 58 253 47 46 254 60 59 255 47 46 256 48 47 257 61 60 258 60 59 259 48 47 260 61 60 261 48 47 262 49 48 263 63 61 264 62 62 265 51 51 266 63 61 267 51 51 268 52 50 269 64 63 270 63 61 271 52 50 272 64 63 273 52 50 274 53 52 275 65 64 276 64 63 277 53 52 278 65 64 279 53 52 280 54 53 281 66 65 282 65 64 283 54 53 284 66 65 285 54 53 286 55 54 287 67 66 288 66 65 289 55 54 290 67 66 291 55 54 292 56 55 293 68 67 294 67 66 295 56 55 296 68 67 297 56 55 298 57 56 299 69 68 300 68 67 301 57 56 302 69 68 303 57 56 304 58 57 305 70 69 306 69 68 307 58 57 308 70 69 309 58 57 310 59 58 311 71 70 312 70 69 313 59 58 314 71 70 315 59 58 316 60 59 317 72 71 318 71 70 319 60 59 320 72 71 321 60 59 322 61 60 323 74 72 324 73 73 325 62 62 326 74 72 327 62 62 328 63 61 329 75 74 330 74 72 331 63 61 332 75 74 333 63 61 334 64 63 335 76 75 336 75 74 337 64 63 338 76 75 339 64 63 340 65 64 341 77 76 342 76 75 343 65 64 344 77 76 345 65 64 346 66 65 347 78 77 348 77 76 349 66 65 350 78 77 351 66 65 352 67 66 353 79 78 354 78 77 355 67 66 356 79 78 357 67 66 358 68 67 359 80 79 360 79 78 361 68 67 362 80 79 363 68 67 364 69 68 365 81 80 366 80 79 367 69 68 368 81 80 369 69 68 370 70 69 371 82 81 372 81 80 373 70 69 374 82 81 375 70 69 376 71 70 377 83 82 378 82 81 379 71 70 380 83 82 381 71 70 382 72 71 383 85 83 384 84 84 385 73 73 386 85 83 387 73 73 388 74 72 389 86 85 390 85 83 391 74 72 392 86 85 393 74 72 394 75 74 395 87 86 396 86 85 397 75 74 398 87 86 399 75 74 400 76 75 401 88 87 402 87 86 403 76 75 404 88 87 405 76 75 406 77 76 407 89 88 408 88 87 409 77 76 410 89 88 411 77 76 412 78 77 413 90 89 414 89 88 415 78 77 416 90 89 417 78 77 418 79 78 419 91 90 420 90 89 421 79 78 422 91 90 423 79 78 424 80 79 425 92 91 426 91 90 427 80 79 428 92 91 429 80 79 430 81 80 431 93 92 432 92 91 433 81 80 434 93 92 435 81 80 436 82 81 437 94 93 438 93 92 439 82 81 440 94 93 441 82 81 442 83 82 443 96 94 444 95 95 445 84 84 446 96 94 447 84 84 448 85 83 449 97 96 450 96 94 451 85 83 452 97 96 453 85 83 454 86 85 455 98 97 456 97 96 457 86 85 458 98 97 459 86 85 460 87 86 461 99 98 462 98 97 463 87 86 464 99 98 465 87 86 466 88 87 467 100 99 468 99 98 469 88 87 470 100 99 471 88 87 472 89 88 473 101 100 474 100 99 475 89 88 476 101 100 477 89 88 478 90 89 479 102 101 480 101 100 481 90 89 482 102 101 483 90 89 484 91 90 485 103 102 486 102 101 487 91 90 488 103 102 489 91 90 490 92 91 491 104 103 492 103 102 493 92 91 494 104 103 495 92 91 496 93 92 497 38 37 498 25 22 499 111 104 500 110 105 501 50 49 502 38 37 503 61 60 504 49 48 505 50 49 506 109 106 507 50 49 508 110 105 509 110 105 510 38 37 511 111 104 512 112 107 513 12 25 514 13 108 515 111 104 516 26 24 517 112 107 518 12 25 519 112 107 520 26 24 521 25 22 522 26 24 523 111 104 524 108 109 525 72 71 526 61 60 527 94 93 528 105 110 529 104 103 530 94 93 531 104 103 532 93 92 533 107 111 534 83 82 535 72 71 536 109 106 537 108 109 538 50 49 539 107 111 540 72 71 541 108 109 542 105 110 543 94 93 544 106 112 545 83 82 546 107 111 547 106 112 548 94 93 549 83 82 550 106 112 551 61 60 552 50 49 553 108 109 554

+
+
+
+ + + + -90.8398 70.37751 -156.887 -90.8398 69.1981 -160.612 -90.8398 67.6352 -164.272 -90.8398 65.6935 -167.808 -90.8398 63.3893 -171.163 -90.8398 60.7505 -174.283 -90.8398 57.8157 -177.119 -90.8398 54.632 -179.632 -90.8398 51.2527 -181.793 -85.78041 70.8675 -162.999 -85.4351 69.53701 -166.786 -85.0993 68.0217 -170.408 -84.7833 66.3568 -173.825 -84.49771 64.5824 -176.997 -84.2539 62.7432 -179.888 -84.0634 60.8868 -182.461 -83.9376 59.0627 -184.686 -81.2694 73.6389 -161.35 -80.6738 72.5525 -165.408 -80.0669 71.42601 -169.284 -79.4619 70.3082 -172.962 -78.8732 69.25241 -176.423 -78.3174 68.3164 -179.643 -77.8124 67.5626 -182.596 -77.3779 67.0576 -185.253 -77.0353 66.87271 -187.579 -86.05461 72.0082 -159.119 -90.8398 60.3375 -118.25 -90.8398 61.8732 -119.936 -90.8398 63.4256 -121.853 -90.8398 64.8805 -123.892 -90.8398 66.21791 -126.036 -90.8398 67.4274 -128.275 -90.8398 68.5497 -130.715 -90.8398 69.5428 -133.324 -90.8398 70.3715 -136.058 -90.8398 71.0168 -138.898 -90.8398 71.4625 -141.824 -90.8398 71.7007 -144.933 -90.8398 71.7014 -148.019 -90.8398 71.4727 -151.055 -90.8398 71.0265 -154.018 -90.8398 70.37751 -156.887 -87.7388 70.5767 -121.762 -87.6646 71.4702 -124.572 -87.5823 72.2371 -127.394 -87.4868 72.9037 -130.366 -87.37831 73.44271 -133.444 -87.2575 73.8343 -136.584 -87.12461 74.0693 -139.771 -86.98001 74.1407 -142.991 -86.8181 74.03701 -146.362 -86.6493 73.7572 -149.67 -86.4761 73.3127 -152.902 -86.3007 72.7167 -156.044 -84.4729 76.82801 -126.554 -84.29901 77.0432 -130.034 -84.0932 77.1439 -133.559 -83.8558 77.1226 -137.083 -83.58551 76.97702 -140.602 -83.2816 76.7069 -144.11 -82.9295 76.2958 -147.744 -82.5492 75.7688 -151.286 -82.1434 75.1397 -154.736 -81.7154 74.42401 -158.091 -81.2694 73.6389 -161.35 -86.05461 72.0082 -159.119 -89.0296 64.6249 -115.414 -88.3832 67.7362 -117.914 -87.4654 70.7658 -120.43 -86.2009 73.7432 -122.862 -84.5389 76.7022 -125.067 + + + + + + + + + + -0.4550691 0.8173604 -0.3533187 -0.4662154 0.8017771 -0.373894 -0.4280984 0.8512833 -0.3033953 -0.427879 0.8503562 -0.3062906 -0.4956321 0.7743946 -0.3932707 -0.5135219 0.7392138 -0.4357275 -0.5447971 0.7230288 -0.4247653 -0.5637002 0.6669791 -0.4872176 -0.5977243 0.6656301 -0.4468359 -0.6114599 0.5890586 -0.5283246 -0.6503931 0.6049501 -0.4593738 -0.6529394 0.5091915 -0.5607088 -0.7000581 0.5439199 -0.4626768 -0.6854502 0.43068 -0.5870885 -0.7184573 0.501617 -0.4818708 -0.6935575 0.3881175 -0.6069124 -0.441828 0.8362901 -0.3246644 -0.4262629 0.8518239 -0.3044604 -0.4731951 0.8145486 -0.335555 -0.5174893 0.7874345 -0.3348909 -0.5709852 0.7563899 -0.3191401 -0.6297929 0.7235171 -0.2826377 -0.6897956 0.6911994 -0.2154657 -0.7207829 0.6567831 -0.2216032 -0.4192779 0.8643143 -0.2777892 -0.4238546 0.8599475 -0.2843195 -0.4276049 0.855576 -0.2917943 -0.8677182 0.4828727 0.1178951 -0.8473123 0.4674364 0.2521214 -0.884441 0.4008977 0.2388418 -0.8844128 0.4513773 0.1186277 -0.8359797 0.5391812 0.1020864 -0.810469 0.5320114 0.245161 -0.7928825 0.6022611 0.09283864 -0.765074 0.6008461 0.2316158 -0.7455872 0.6625441 0.07165938 -0.7118564 0.6704421 0.209208 -0.6919631 0.7205902 0.04400873 -0.6530859 0.7363125 0.1769823 -0.6345561 0.7728083 0.01028496 -0.5922915 0.7943305 0.1350181 -0.5770912 0.8161497 -0.02942067 -0.5338516 0.8414602 0.0833494 -0.5219714 0.8498097 -0.07327681 -0.4805601 0.8766117 0.02478182 -0.4766504 0.8708682 -0.1199713 -0.4402135 0.8970602 -0.03866821 -0.443781 0.880512 -0.1666048 -0.4144456 0.9041813 -0.1033977 -0.4243663 0.8803198 -0.2120153 -0.4033088 0.8996394 -0.1673052 -0.8047212 0.5936528 5.79858e-4 -0.8281638 0.5604816 0.002288877 -0.7618829 0.6473135 -0.02279788 -0.7127622 0.6995782 -0.05059981 -0.6593084 0.7473871 -0.08200532 -0.6046057 0.7879924 -0.1162762 -0.5503315 0.8210414 -0.151744 -0.5032634 0.8435842 -0.1873275 -0.466422 0.8566076 -0.2206219 -0.44109 0.8617323 -0.2507129 -0.9321083 0.3126051 0.1828998 -0.9321174 0.2859954 0.2221798 -0.9419692 0.2481805 0.2260543 -0.9181166 0.3617165 0.1619362 -0.9115747 0.3385177 0.2333184 -0.892865 0.4290671 0.1367253 -0.413507 0.8806061 -0.2313979 -0.3991039 0.8943139 -0.2022835 -0.8398618 0.5411995 0.04165887 -0.8639138 0.4979247 0.07565766 -0.4284316 0.8666599 -0.2556307 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -90.8398 46.3673 -108.797 -90.8398 48.3558 -109.668 -90.8398 50.2882 -110.64 -90.8398 52.1571 -111.708 -90.8398 53.9555 -112.865 -90.8398 55.6776 -114.105 -90.8398 57.3181 -115.421 -90.8398 58.8725 -116.806 -90.8398 60.3375 -118.25 -90.6546 49.3438 -108.517 -90.6614 50.9891 -109.406 -90.66841 52.5778 -110.393 -90.6755 54.1042 -111.474 -90.6827 55.5629 -112.642 -90.69001 56.9494 -113.89 -90.6972 58.2599 -115.213 -90.7045 59.4913 -116.602 -90.7117 60.6411 -118.05 -90.35401 53.5923 -109.147 -90.38681 54.8421 -110.149 -90.4199 56.0307 -111.242 -90.4531 57.1543 -112.42 -90.4861 58.2098 -113.677 -90.51902 59.1944 -115.005 -90.5515 60.1065 -116.398 -90.58351 60.9446 -117.849 -90.2315 54.2222 -109.058 -90.2775 55.3904 -110.068 -90.3238 56.4976 -111.167 -90.37001 57.5406 -112.351 -90.4161 58.5162 -113.613 -90.4618 59.4224 -114.947 -90.50701 60.2575 -116.344 -90.5515 61.0205 -117.799 -90.1179 55.9093 -109.947 -90.1859 56.9403 -111.06 -90.2538 57.9075 -112.256 -90.32141 58.8084 -113.531 -90.3883 59.641 -114.875 -90.4544 60.4039 -116.284 -90.5195 61.0964 -117.749 -90.0063 57.3587 -110.919 -90.1044 58.2552 -112.135 -90.20201 59.0862 -113.428 -90.2986 59.8501 -114.791 -90.3938 60.5456 -116.217 -90.4874 61.1722 -117.698 -89.9219 58.5836 -111.987 -90.0579 59.3497 -113.306 -90.1925 60.0497 -114.694 -90.32511 60.6826 -116.143 -90.4554 61.2481 -117.648 -89.7064 58.8928 -111.813 -89.8893 59.599 -113.164 -90.0701 60.2399 -114.583 -90.2484 60.815 -116.064 -90.4233 61.324 -117.598 -89.45771 59.1828 -111.612 -89.6959 59.8339 -113.002 -89.93151 60.4207 -114.46 -90.1635 60.9427 -115.977 -90.3913 61.3999 -117.548 -89.47801 60.0546 -112.821 -89.77661 60.5921 -114.323 -90.07061 61.0658 -115.885 -90.3593 61.4758 -117.498 -90.3272 61.5516 -117.447 -90.7657 47.8599 -108.657 -90.5065 50.8191 -108.378 -90.32151 52.2857 -108.24 -90.1308 53.2075 -108.104 -90.0884 54.1076 -108.544 -90.0324 54.997 -109.004 -89.95951 55.8754 -109.483 -89.8649 56.7423 -109.978 -89.7425 57.598 -110.489 -89.58361 58.44 -111.012 -89.37601 59.2659 -111.545 -89.1025 60.07 -112.081 -89.41471 60.5068 -113.362 -89.7233 60.8993 -114.686 -90.0277 61.2475 -116.05 -89.1025 60.07 -112.081 -89.7233 60.8993 -114.686 -90.3272 61.5516 -117.447 -89.6784 63.0883 -116.431 -89.0296 64.6249 -115.414 -89.11301 61.2304 -112.885 -89.10601 62.3756 -113.71 -89.0793 63.5067 -114.554 -90.0277 61.2475 -116.05 -89.41471 60.5068 -113.362 -90.8398 31.05 -105.803 -90.8398 32.9526 -105.848 -90.8398 34.8719 -105.983 -90.8398 36.8018 -106.212 -90.8398 38.7354 -106.536 -90.8398 40.6659 -106.956 -90.8398 42.5862 -107.474 -90.8398 44.4891 -108.088 -90.8398 46.3673 -108.797 -90.6214 36.1569 -105.334 -90.6245 37.8275 -105.408 -90.6279 39.5036 -105.572 -90.6317 41.1794 -105.827 -90.6357 42.8491 -106.176 -90.64 44.5066 -106.619 -90.6446 46.1456 -107.157 -90.6495 47.7601 -107.79 -90.6546 49.3438 -108.517 -90.2693 49.6644 -106.845 -90.29502 50.9933 -107.497 -90.32151 52.2857 -108.24 -90.1308 53.2075 -108.104 -90.5065 50.8191 -108.378 -90.7657 47.8599 -108.657 -90.1101 41.414 -104.85 -90.1646 43.301 -105.048 -90.1876 44.8548 -105.305 -90.20401 47.007 -105.799 -90.2034 49.1203 -106.439 -90.1827 51.1883 -107.212 -90.22071 46.9178 -105.82 -90.2445 48.3042 -106.286 + + + + + + + + + + -0.9872986 0.08408057 0.1348036 -0.9909688 0.0621072 0.118843 -0.9934327 0.05395805 0.1008967 -0.9880521 0.07702988 0.13349 -0.9873444 0.0918616 0.1292777 -0.9905029 0.07043844 0.118079 -0.9866701 0.1019935 0.1268053 -0.9893624 0.08142447 0.1205497 -0.9849311 0.1162763 0.1280261 -0.9871381 0.09695893 0.1271117 -0.9811893 0.1380989 0.1348944 -0.9826115 0.1211288 0.1407218 -0.9722799 0.1767671 0.1530537 -0.9722331 0.1635241 0.1674001 -0.9458768 0.2425959 0.215556 -0.9408196 0.2378982 0.2413774 -0.9733332 0.13297 0.1869271 -0.9706838 0.1270806 0.2040187 -0.9750047 0.1401147 0.1724348 -0.9756347 0.1489637 0.1610798 -0.975136 0.1604982 0.1528075 -0.9726842 0.1779282 0.1490873 -0.9662426 0.2077147 0.1524136 -0.9466878 0.261431 0.1882449 -0.949299 0.1915078 0.2493112 -0.9458743 0.1832664 0.2678344 -0.9531967 0.199441 0.2272437 -0.9558766 0.2075272 0.207924 -0.9572774 0.2167196 0.1914494 -0.9572026 0.2283138 0.1778656 -0.9542682 0.2467156 0.1688311 -0.9438975 0.2780908 0.17811 -0.923921 0.2599357 0.2807196 -0.9197294 0.2512043 0.3016527 -0.9291864 0.2683244 0.2541941 -0.9332348 0.2754933 0.2306001 -0.9366616 0.2812945 0.208659 -0.9395682 0.2859051 0.1883348 -0.9434435 0.2812049 0.1756081 -0.8992193 0.3243281 0.2936258 -0.8922705 0.3167627 0.3217374 -0.9057782 0.3306446 0.2650284 -0.9129247 0.3322334 0.2370436 -0.9233216 0.3231046 0.2075596 -0.9429526 0.2820281 0.1769199 -0.8673559 0.3755999 0.326525 -0.8758401 0.3821309 0.2947545 -0.8870716 0.3798422 0.2623432 -0.9051298 0.3594212 0.2270607 -0.9422817 0.2808076 0.1823524 -0.8441801 0.4300096 0.320081 -0.8341609 0.4246493 0.3519212 -0.8593459 0.4246829 0.2849023 -0.8859804 0.3931214 0.2459564 -0.9417044 0.2765967 0.1915393 -0.8110786 0.4748484 0.341571 -0.8036037 0.4626421 0.3744108 -0.8302461 0.4667006 0.3047654 -0.8657907 0.4248231 0.2644463 -0.9412195 0.2689678 0.2043581 -0.7976475 0.5075023 0.3258831 -0.7756689 0.5173568 0.3614966 -0.8428093 0.4554026 0.2868469 -0.9378033 0.2604839 0.2295066 -0.9948511 0.04065096 0.0928381 -0.9940156 0.04764068 0.09830284 -0.9891973 0.06647139 0.1306539 -0.9714956 0.1177746 0.2057317 -0.9818689 0.0919243 0.1657811 -0.9486141 0.1616272 0.2720441 -0.931654 0.1992892 0.3038168 -0.9275333 0.2219036 0.3007342 -0.906385 0.2652715 0.3287816 -0.8984913 0.293383 0.3265576 -0.8707807 0.3488982 0.3464262 -0.8464511 0.394217 0.3579297 -0.7899591 0.48083 0.3804829 -0.7658526 0.5203244 0.3777991 -0.8053754 0.5050649 0.3102903 -0.8516729 0.4463455 0.2746436 -0.7784456 0.5240095 0.345596 -0.9404154 0.2288627 0.2514774 -0.9367265 0.2025561 0.2855073 -0.936745 0.2022177 0.2856868 -0.9353419 0.1956869 0.2946901 -0.9394263 0.2152483 0.2667333 -0.9390971 0.2280372 0.2570912 -0.9386993 0.2134184 0.2707328 -0.939968 0.2304648 0.2516866 -0.9399382 0.2285296 0.2535557 -0.9403303 0.2327097 0.248244 -0.9425129 0.2196134 0.2518719 -0.9067552 0.02386599 0.4209815 -0.9342427 0.009125113 0.3565211 -0.9377125 0.00952208 0.3472817 -0.944988 0.01272636 0.3268577 -0.9419974 0.03647011 0.333633 -0.9619993 0.01992911 0.2723239 -0.9596991 0.04529011 0.2773563 -0.9749425 0.02704018 0.2208079 -0.9696002 0.05221861 0.2390581 -0.9816529 0.03238093 0.1879072 -0.9766901 0.05722254 0.2068863 -0.9855729 0.03695821 0.1651675 -0.9809377 0.06213641 0.1841204 -0.9880542 0.04117017 0.1485056 -0.9812289 0.06824135 0.1803696 -0.9895852 0.04455798 0.1368786 -0.9613255 0.114264 0.2505935 -0.9563997 0.1075789 0.2715262 -0.8329655 0.03351026 0.5523093 -0.9052901 0.05279815 0.4215002 -0.9387767 0.06595242 0.3381549 -0.9405355 0.07956308 0.3302464 -0.9422056 0.1002541 0.319684 -0.9937248 0.03949141 0.1046492 -0.9893334 0.05252313 0.1358704 -0.9728786 0.09271609 0.2119226 -0.981312 0.07764065 0.1760648 -0.9340043 0.09463948 0.3444988 -0.9481335 0.1062061 0.299605 -0.949395 0.1366044 0.2828225 -0.9495907 0.1413933 0.2797958 -0.9449464 0.1498205 0.2909124 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

11 0 0 2 1 1 1 2 2 11 0 3 1 2 4 10 3 5 12 4 6 3 5 7 2 1 8 12 4 9 2 1 10 11 0 11 13 6 12 4 7 13 3 5 14 13 6 15 3 5 16 12 4 17 14 8 18 5 9 19 4 7 20 14 8 21 4 7 22 13 6 23 15 10 24 6 11 25 5 9 26 15 10 27 5 9 28 14 8 29 16 12 30 7 13 31 6 11 32 16 12 33 6 11 34 15 10 35 17 14 36 8 15 37 7 13 38 17 14 39 7 13 40 16 12 41 19 16 42 11 0 43 10 3 44 19 16 45 10 3 46 18 17 47 20 18 48 12 4 49 11 0 50 20 18 51 11 0 52 19 16 53 21 19 54 13 6 55 12 4 56 21 19 57 12 4 58 20 18 59 22 20 60 14 8 61 13 6 62 22 20 63 13 6 64 21 19 65 23 21 66 15 10 67 14 8 68 23 21 69 14 8 70 22 20 71 24 22 72 16 12 73 15 10 74 24 22 75 15 10 76 23 21 77 25 23 78 17 14 79 16 12 80 25 23 81 16 12 82 24 22 83 27 24 84 19 16 85 18 17 86 27 24 87 18 17 88 26 25 89 28 26 90 20 18 91 19 16 92 28 26 93 19 16 94 27 24 95 29 27 96 21 19 97 20 18 98 29 27 99 20 18 100 28 26 101 30 28 102 22 20 103 21 19 104 30 28 105 21 19 106 29 27 107 31 29 108 23 21 109 22 20 110 31 29 111 22 20 112 30 28 113 32 30 114 24 22 115 23 21 116 32 30 117 23 21 118 31 29 119 33 31 120 25 23 121 24 22 122 33 31 123 24 22 124 32 30 125 35 32 126 28 26 127 27 24 128 35 32 129 27 24 130 34 33 131 36 34 132 29 27 133 28 26 134 36 34 135 28 26 136 35 32 137 37 35 138 30 28 139 29 27 140 37 35 141 29 27 142 36 34 143 38 36 144 31 29 145 30 28 146 38 36 147 30 28 148 37 35 149 39 37 150 32 30 151 31 29 152 39 37 153 31 29 154 38 36 155 40 38 156 33 31 157 32 30 158 40 38 159 32 30 160 39 37 161 42 39 162 36 34 163 35 32 164 42 39 165 35 32 166 41 40 167 43 41 168 37 35 169 36 34 170 43 41 171 36 34 172 42 39 173 44 42 174 38 36 175 37 35 176 44 42 177 37 35 178 43 41 179 45 43 180 39 37 181 38 36 182 45 43 183 38 36 184 44 42 185 46 44 186 40 38 187 39 37 188 46 44 189 39 37 190 45 43 191 47 45 192 42 39 193 41 40 194 48 46 195 43 41 196 42 39 197 48 46 198 42 39 199 47 45 200 49 47 201 44 42 202 43 41 203 49 47 204 43 41 205 48 46 206 50 48 207 45 43 208 44 42 209 50 48 210 44 42 211 49 47 212 51 49 213 46 44 214 45 43 215 51 49 216 45 43 217 50 48 218 53 50 219 48 46 220 47 45 221 53 50 222 47 45 223 52 51 224 54 52 225 49 47 226 48 46 227 54 52 228 48 46 229 53 50 230 55 53 231 50 48 232 49 47 233 55 53 234 49 47 235 54 52 236 56 54 237 51 49 238 50 48 239 56 54 240 50 48 241 55 53 242 58 55 243 53 50 244 52 51 245 58 55 246 52 51 247 57 56 248 59 57 249 54 52 250 53 50 251 59 57 252 53 50 253 58 55 254 60 58 255 55 53 256 54 52 257 60 58 258 54 52 259 59 57 260 61 59 261 56 54 262 55 53 263 61 59 264 55 53 265 60 58 266 63 60 267 59 57 268 58 55 269 63 60 270 58 55 271 62 61 272 64 62 273 60 58 274 59 57 275 64 62 276 59 57 277 63 60 278 65 63 279 61 59 280 60 58 281 65 63 282 60 58 283 64 62 284 1 2 285 0 64 286 67 65 287 67 65 288 9 66 289 10 3 290 1 2 291 67 65 292 10 3 293 69 67 294 18 17 295 68 68 296 69 67 297 70 69 298 26 25 299 69 67 300 26 25 301 18 17 302 68 68 303 10 3 304 9 66 305 26 25 306 70 69 307 71 70 308 68 68 309 18 17 310 10 3 311 72 71 312 27 24 313 26 25 314 34 33 315 72 71 316 73 72 317 41 40 318 35 32 319 74 73 320 35 32 321 34 33 322 74 73 323 74 73 324 34 33 325 73 72 326 27 24 327 72 71 328 34 33 329 72 71 330 26 25 331 71 70 332 41 40 333 75 74 334 47 45 335 47 45 336 76 75 337 52 51 338 76 75 339 47 45 340 75 74 341 74 73 342 75 74 343 41 40 344 57 56 345 76 75 346 77 76 347 57 56 348 77 76 349 58 55 350 52 51 351 76 75 352 57 56 353 62 61 354 77 76 355 78 77 356 77 76 357 62 61 358 58 55 359 64 62 360 63 60 361 80 78 362 64 62 363 80 78 364 81 79 365 63 60 366 62 61 367 79 80 368 63 60 369 79 80 370 80 78 371 81 79 372 66 81 373 65 63 374 81 79 375 65 63 376 64 62 377 79 80 378 62 61 379 78 77 380 87 82 381 91 83 382 82 84 383 88 85 384 90 86 385 83 87 386 85 88 387 84 88 388 90 88 389 83 87 390 91 83 391 87 82 392 90 86 393 88 85 394 85 89 395 86 90 396 85 89 397 89 91 398 88 85 399 89 91 400 85 89 401 87 82 402 88 85 403 83 87 404 102 92 405 93 93 406 92 94 407 102 92 408 92 94 409 101 95 410 103 96 411 94 97 412 93 93 413 103 96 414 93 93 415 102 92 416 104 98 417 95 99 418 94 97 419 104 98 420 94 97 421 103 96 422 105 100 423 96 101 424 95 99 425 105 100 426 95 99 427 104 98 428 106 102 429 97 103 430 96 101 431 106 102 432 96 101 433 105 100 434 107 104 435 98 105 436 97 103 437 107 104 438 97 103 439 106 102 440 108 106 441 99 107 442 98 105 443 108 106 444 98 105 445 107 104 446 111 108 447 108 106 448 107 104 449 111 108 450 107 104 451 110 109 452 116 110 453 102 92 454 101 95 455 117 111 456 103 96 457 102 92 458 105 100 459 104 98 460 118 112 461 105 100 462 118 112 463 122 113 464 106 102 465 105 100 466 122 113 467 106 102 468 122 113 469 123 114 470 104 98 471 103 96 472 118 112 473 100 115 474 99 107 475 115 116 476 108 106 477 115 116 478 99 107 479 114 117 480 109 118 481 108 106 482 115 116 483 108 106 484 109 118 485 107 104 486 106 102 487 123 114 488 107 104 489 123 114 490 110 109 491 119 119 492 122 113 493 118 112 494 123 114 495 122 113 496 119 119 497 120 120 498 123 114 499 119 119 500 118 112 501 103 96 502 117 111 503 110 109 504 123 114 505 120 120 506 114 117 507 108 106 508 111 108 509 121 121 510 111 108 511 110 109 512 112 122 513 114 117 514 111 108 515 121 121 516 113 123 517 111 108 518 113 123 519 112 122 520 111 108 521 120 120 522 121 121 523 110 109 524 116 110 525 117 111 526 102 92 527

+
+
+
+ + + + -79.8473 97.1577 42.6349 -80.5001 96.6383 42.8081 -81.0578 95.8806 43.0325 -81.5203 94.8844 43.3081 -81.8875 93.6499 43.635 -82.33641 90.4655 44.4426 -82.40441 86.3276 45.4552 -79.8473 98.4842 24.6159 -80.51401 97.9462 24.8246 -81.0815 97.1734 25.0964 -81.5499 96.16601 25.4313 -81.9191 94.9239 25.8293 -82.3601 91.73571 26.8143 -82.40441 87.6089 28.0516 -79.8473 99.8108 6.59681 -80.5278 99.25402 6.84117 -81.1052 98.4663 7.1604 -81.5796 97.4476 7.5545 -81.9508 96.19802 8.02347 -82.3838 93.0059 9.18602 -82.40441 88.8901 10.648 -79.8473 101.137 -11.4223 -80.54161 100.562 -11.1423 -81.1289 99.7591 -10.7756 -81.6092 98.7292 -10.3223 -81.9824 97.47201 -9.78231 -82.4075 94.2761 -8.442271 -82.40441 90.1714 -6.75552 -82.40441 91.4526 -24.1591 -79.8473 102.079 -24.2076 -80.8866 101.109 -24.1228 -81.57151 99.8637 -24.0393 -81.9992 98.5227 -23.9817 -82.2607 97.13871 -23.9561 -82.4665 94.3912 -24.0106 -82.41471 91.6427 -24.2042 + + + + + + + + + + -0.7128059 0.699469 0.05148583 -0.7272055 0.6845704 0.0503562 -0.6122441 0.7885532 0.05780321 -0.6160027 0.7856294 0.05768156 -0.8542553 0.518425 0.03851485 -0.8649085 0.5005421 0.0372942 -0.9318483 0.3618072 0.02746742 -0.9376485 0.3465787 0.02642983 -0.9761192 0.2165627 0.01709061 -0.9792543 0.2020034 0.0159918 -0.9970986 0.07584065 0.006531119 -0.9977594 0.06668412 0.005432367 -0.9999312 0.01162779 0.001556456 -0.9998595 0.01672434 0.001220703 -0.7141231 0.6981309 0.05139464 -0.6198179 0.7826387 0.05746793 -0.8533902 0.519841 0.03860729 -0.9312395 0.3633643 0.02755904 -0.9762271 0.216078 0.01706039 -0.9973898 0.07193315 0.006256341 -0.9999822 0.005859613 0.001159667 -0.7148581 0.69734 0.05191361 -0.6229303 0.7801659 0.05743736 -0.8525472 0.5211724 0.03927791 -0.9306729 0.3647921 0.02783316 -0.9759958 0.2169896 0.01864707 -0.9976066 0.06869834 0.007843375 -0.9999982 -5.79868e-4 0.001831114 -0.6768332 0.7344846 0.0492891 -0.7800965 0.624236 0.04217725 -0.9682691 0.2491858 0.01901316 -0.9995988 0.02826082 0.001953184 -0.9909721 0.1336718 0.01031529 -0.9153121 0.401746 0.02835172 -0.999392 -0.03479117 -0.002319395 -0.9984769 -0.05502498 -0.004028439 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -83.3654 77.055 71.8376 -83.6696 74.1819 66.5329 -83.9407 71.0371 61.205 -84.1622 67.90911 56.0414 -84.3524 64.6935 50.5026 -84.5088 61.5632 44.5381 -84.6352 58.6042 38.0024 -84.73561 55.8782 30.7559 -84.8137 53.4434 22.7115 -84.8732 51.3439 13.815 -84.9162 49.6498 4.30781 -84.94841 48.2758 -6.42986 -84.9712 47.2674 -18.5273 -83.5431 74.7801 65.4599 -83.78511 71.7974 59.7168 -83.9821 68.83602 54.1659 -84.15081 65.7937 48.2643 -84.28881 62.8312 41.9923 -84.3997 60.0269 35.2219 -84.4871 57.437 27.8266 -84.5544 55.1147 19.7299 -84.6048 53.1002 10.8845 -84.6406 51.4602 1.52994 -84.6664 50.1107 -8.941591 -83.4301 75.4228 64.4005 -83.6485 72.6211 58.2479 -83.8266 69.8445 52.3151 -83.9792 66.9938 46.0563 -84.1043 64.2168 39.4823 -84.20491 61.5848 32.4824 -84.2844 59.1481 24.9434 -84.3459 56.9549 16.7995 -84.3922 55.0415 8.01017 -84.4252 53.4707 -1.18716 -84.44931 52.1608 -11.388 -83.2442 76.84191 62.3223 -83.4328 74.4592 55.368 -83.5893 72.10601 48.6879 -83.72631 69.6932 41.7312 -83.8417 67.3412 34.5694 -83.9377 65.1061 27.1266 -84.0169 63.027 19.316 -84.0816 61.1417 11.0927 -84.1341 59.4789 2.43002 -84.1753 58.0917 -6.43907 -82.9168 80.19551 67.90721 -83.11201 78.4392 60.2982 -83.2937 76.5512 52.5653 -83.4503 74.69371 45.1597 -83.5937 72.7917 37.5274 -83.7209 70.9364 29.7995 -83.8334 69.1682 21.9351 -83.9329 67.5149 13.8735 -84.0209 66.00402 5.591 -84.0989 64.6559 -2.92544 -84.16661 63.513 -11.4479 -82.83 81.4505 66.6603 -83.2311 78.8971 49.8397 -83.1845 77.99781 70.49591 -83.03501 79.0446 69.1857 -82.9396 80.79901 62.2173 -83.0466 80.1315 57.7821 -83.14 79.5196 53.8103 -83.32101 78.2586 45.8129 -83.4087 77.61431 41.7733 -83.4943 76.9666 37.7137 -83.5777 76.3181 33.6271 -83.65921 75.67131 29.5063 -83.7388 75.02851 25.3445 -83.8166 74.39241 21.1344 -83.8927 73.76541 16.869 -83.9672 73.15 12.5412 -84.0401 72.5486 8.14399 -84.11151 71.9637 3.6703 -84.18161 71.39791 -0.886957 -84.2504 70.8536 -5.53485 -84.318 70.3333 -10.2804 -84.3845 69.8394 -15.1308 -84.45 69.3745 -20.093 -84.4067 68.4247 -19.9706 -84.23191 63.1485 -19.3745 -84.1985 57.8552 -18.9224 -84.3834 52.55 -18.6329 -84.6062 49.9013 -18.5557 -84.2096 56.9066 -16.0846 -82.83 81.4505 66.6603 -83.2311 78.8971 49.8397 -84.45 69.3745 -20.093 -83.123 81.2084 48.8369 -83.4307 79.9052 32.5738 -83.7257 78.5727 15.3166 -84.0007 77.3794 -2.69606 -82.94921 83.2173 47.7719 -83.1905 82.9547 30.9896 -83.4246 82.69461 13.3291 -83.6455 82.5274 -4.8351 -82.7097 84.9237 46.6447 -82.8484 85.5354 29.3089 -82.9842 86.1753 11.2095 -83.11341 86.86161 -7.14164 -82.40441 84.9124 64.679 -82.40441 86.3276 45.4552 -82.40441 87.6472 27.5316 -82.40441 89.01451 8.957982 -82.40441 90.3819 -9.61568 -84.3845 69.8394 -15.1308 -84.318 70.3333 -10.2804 -84.2504 70.8536 -5.53485 -84.18161 71.39791 -0.886957 -84.11151 71.9637 3.6703 -84.0401 72.5486 8.14399 -83.9672 73.15 12.5412 -83.8927 73.76541 16.869 -83.8166 74.39241 21.1344 -83.7388 75.02851 25.3445 -83.65921 75.67131 29.5063 -83.5777 76.3181 33.6271 -83.4943 76.9666 37.7137 -83.4087 77.61431 41.7733 -83.32101 78.2586 45.8129 -83.14 79.5196 53.8103 -83.0466 80.1315 57.7821 -82.9396 80.79901 62.2173 -82.6711 83.4293 65.7206 -82.40441 91.4526 -24.1591 -83.0055 88.7615 -23.5382 -83.4416 86.0327 -22.9441 -84.0086 80.5178 -21.8526 -84.3151 74.96102 -20.9006 -82.888 80.7262 79.40441 -83.01181 79.8479 77.5058 -83.1328 78.9433 75.6104 -83.2508 78.0123 73.7202 -83.3654 77.055 71.8376 -82.86811 80.5309 77.29341 -82.8861 80.1856 74.8857 -82.94181 79.6901 72.1827 -82.888 80.7262 79.40441 -82.7558 81.318 77.11251 -82.7269 81.6802 70.7399 -82.83 81.4505 66.6603 -82.7191 81.5112 75.7429 -82.70211 81.636 74.2242 -82.7047 81.6923 72.55651 -82.7687 81.5996 68.7745 -82.9168 80.19551 67.90721 -83.03501 79.0446 69.1857 -83.1845 77.99781 70.49591 -82.7558 81.318 77.11251 -82.70211 81.636 74.2242 -82.7269 81.6802 70.7399 -82.83 81.4505 66.6603 -82.888 80.7262 79.40441 -82.6944 81.8786 77.0376 -82.5937 82.71331 73.9678 -82.58602 83.2302 70.1954 -82.60601 82.3153 76.93711 -82.4314 83.5427 73.6605 -82.3642 84.4084 69.5744 -82.40441 84.9124 64.679 -82.7687 81.5996 68.7745 -82.7047 81.6923 72.55651 -82.7191 81.5112 75.7429 -82.6711 83.4293 65.7206 + + + + + + + + + + -0.9912897 0.1284547 -0.0290541 -0.9900396 0.1368476 -0.03308266 -0.9876871 0.1534496 -0.03045797 -0.9893902 0.142645 -0.0275585 -0.9927934 0.1162481 -0.02911537 -0.9917476 0.1237243 -0.03360146 -0.9938001 0.107611 -0.02795565 -0.9928582 0.114753 -0.03262525 -0.9944067 0.1023308 -0.02615493 -0.9934822 0.1097155 -0.03091561 -0.9947071 0.09991931 -0.02395743 -0.9937329 0.1080377 -0.02868795 -0.9947751 0.09979796 -0.02151602 -0.9936871 0.1091041 -0.02612394 -0.9946461 0.1015979 -0.01889127 -0.9933699 0.1125854 -0.02325564 -0.9943369 0.1050461 -0.01611393 -0.9927891 0.1181703 -0.02014261 -0.9938645 0.1098088 -0.0132454 -0.9919673 0.1253731 -0.01681607 -0.9931451 0.11646 -0.01001018 -0.9908405 0.1344071 -0.01303172 -0.9938211 0.1095632 -0.01776206 -0.9920592 0.1246101 -0.01706022 -0.9950929 0.09735465 -0.01767033 -0.9959772 0.08801585 -0.01681578 -0.9965734 0.08124202 -0.01553422 -0.9969648 0.07657217 -0.01406925 -0.997216 0.07352083 -0.01245182 -0.9973626 0.0717808 -0.01074266 -0.9974341 0.07101857 -0.009033679 -0.9974389 0.07113879 -0.007416009 -0.9973904 0.0719332 -0.006164789 -0.9964145 0.08450704 -0.004089534 -0.995036 0.09943032 -0.004119992 -0.9973582 0.07254344 -0.003753781 -0.998034 0.06259453 -0.003173947 -0.9985136 0.0544455 -0.002502501 -0.9988645 0.04760998 -0.001800596 -0.9991262 0.04178029 -0.00112915 -0.9993258 0.03671473 -5.18829e-4 -0.9994836 0.03213602 0 -0.9996227 0.02746719 -2.74672e-4 -0.9982823 0.05789488 0.008972585 -0.9972824 0.07324653 0.007934987 -0.9989106 0.04577815 0.009064078 -0.9993236 0.03555494 0.00939989 -0.999598 0.02667385 0.009613573 -0.9997805 0.01870828 0.009430408 -0.999882 0.01181066 0.009826958 -0.9999395 0.004577755 0.01001006 -0.9999532 -0.003173947 0.009155631 -0.9999064 -0.01110905 0.007996022 -0.9879855 0.152472 -0.02523905 -0.9893512 0.1441437 -0.02017337 -0.9929018 0.118749 -0.006683588 -0.99545 0.09522038 0.003540217 -0.9971814 0.0744971 0.00891155 -0.9980637 0.06021404 0.01559519 -0.999283 0.03500527 0.01443547 -0.9993348 0.03277707 0.01599174 -0.9995869 0.02450668 0.0150153 -0.9996098 0.02264487 0.01635801 -0.9984548 0.05420148 0.01226854 -0.9988597 0.04486304 0.01632767 -0.9904729 0.1373978 -0.009247303 -0.9937331 0.1115474 -0.007202506 -0.9981346 0.06097757 -0.003021359 -0.9995266 0.03076308 6.10379e-4 -0.9998547 0.006897211 0.01559501 -0.9998838 0.00125122 0.01519829 -0.999851 -0.002014219 0.01715141 -0.9998846 0.01388597 0.006164729 -0.9998633 -0.006805717 0.01507633 -0.9998107 -0.009735584 0.01684659 -0.9997639 0.01532036 0.01541197 -0.9997692 0.01367247 0.01657176 -0.998888 0.04455775 0.01541209 -0.999634 -0.02285903 0.01446616 -0.9995271 -0.02731448 0.01413023 -0.9997739 -0.01922696 0.009094655 -0.9992628 -0.0358296 0.01379472 -0.9998157 -0.01034605 0.01617527 -0.9997436 -0.01681596 0.01516795 -0.9989131 -0.04330623 0.01724314 -0.9936448 0.111914 0.01205503 -0.9978272 0.06467026 0.01260441 -0.9972134 0.07327646 0.01400828 -0.9926467 0.1203079 0.01336753 -0.994377 0.1052913 0.01132261 -0.9982348 0.05822956 0.01168864 -0.9948413 0.1007751 0.01162785 -0.9985233 0.05313366 0.01132255 -0.9837738 0.1788707 0.01394706 -0.9822829 0.1868064 0.01495426 -0.9849837 0.1721295 0.01336747 -0.9856268 0.1683455 0.01413047 -0.9756553 0.2187281 0.01596128 -0.9740089 0.2259005 0.01660221 -0.9771518 0.2119837 0.01541197 -0.9776087 0.2097557 0.01684635 -0.9979903 0.06143403 0.01553398 -0.9963038 0.08453851 0.0152291 -0.998416 0.05423152 0.0149846 -0.9982465 0.0571621 0.01538157 -0.9984862 0.0533775 0.01327568 -0.9984979 0.05288982 0.01431351 -0.998871 0.04550445 0.01364219 -0.9986482 0.0498988 0.0145576 -0.9989141 0.04474067 0.01300102 -0.9990096 0.04245191 0.01333677 -0.9989124 0.04498475 0.01226854 -0.9991857 0.03854525 0.01193284 -0.9991608 0.03903377 0.01242119 -0.9991886 0.03863686 0.01138353 -0.9993609 0.03387558 0.01141393 -0.9992513 0.03668373 0.01229912 -0.9993786 0.03360152 0.01065117 -0.9993763 0.03354036 0.01104784 -0.9994562 0.0306102 0.01226848 -0.9990457 0.0423606 0.01065117 -0.9926996 0.1196049 0.01556479 -0.9817226 0.1895816 0.01672416 -0.9996042 0.02591019 0.0109561 -0.9965155 0.08285981 0.009552478 -0.9996117 0.02569675 0.01077312 -0.990535 0.1368181 0.01101744 -0.9803849 0.1965408 0.01474052 -0.975016 0.2215363 0.01629704 -0.9857558 0.1669986 -0.01992869 -0.980437 0.1952939 -0.02456814 -0.9798954 0.1976087 -0.02749735 -0.9877237 0.1558921 -0.009979724 -0.9836315 0.1790557 -0.02020364 -0.9904075 0.1380991 -0.004669427 -0.9864389 0.162911 -0.01995944 -0.9913623 0.1309588 -0.007111012 -0.9918389 0.1274476 0.003570675 -0.9904339 0.1362369 -0.02191263 -0.9902958 0.1384363 -0.01223826 -0.9885477 0.1506122 -0.009460926 -0.9869809 0.1594612 -0.02099698 -0.9950367 0.0986064 0.01336723 -0.992852 0.1192387 0.005188226 -0.992919 0.1186595 0.005646049 -0.9929167 0.1178963 0.01474082 -0.9947733 0.1012932 0.01287907 -0.9955865 0.0911293 0.02243137 -0.9788584 0.2032853 0.02261435 -0.9876837 0.1564399 0.002716183 -0.9898463 0.1416376 -0.01196336 -0.9792439 0.201092 0.02536153 -0.9883806 0.151373 0.01379448 -0.979582 0.1991392 0.02762007 -0.9887809 0.1478028 0.02160733 -0.9941258 0.1058093 -0.02276712 -0.995366 0.09588956 -0.007202386 -0.9954094 0.09521943 0.009674489 -0.9949712 0.1001624 2.74668e-4 -0.995474 0.0925951 0.02139389 -0.9953519 0.09531134 0.01379466 -0.9865637 0.1613245 0.02581924 -0.995633 0.09061193 0.02246224 -0.9801374 0.1963875 0.02761936 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

14 0 0 2 1 1 1 2 2 14 0 3 1 2 4 13 3 5 15 4 6 3 5 7 2 1 8 15 4 9 2 1 10 14 0 11 16 6 12 4 7 13 3 5 14 16 6 15 3 5 16 15 4 17 17 8 18 5 9 19 4 7 20 17 8 21 4 7 22 16 6 23 18 10 24 6 11 25 5 9 26 18 10 27 5 9 28 17 8 29 19 12 30 7 13 31 6 11 32 19 12 33 6 11 34 18 10 35 20 14 36 8 15 37 7 13 38 20 14 39 7 13 40 19 12 41 21 16 42 9 17 43 8 15 44 21 16 45 8 15 46 20 14 47 22 18 48 10 19 49 9 17 50 22 18 51 9 17 52 21 16 53 23 20 54 11 21 55 10 19 56 23 20 57 10 19 58 22 18 59 25 22 60 14 0 61 13 3 62 25 22 63 13 3 64 24 23 65 26 24 66 15 4 67 14 0 68 26 24 69 14 0 70 25 22 71 27 25 72 16 6 73 15 4 74 27 25 75 15 4 76 26 24 77 28 26 78 17 8 79 16 6 80 28 26 81 16 6 82 27 25 83 29 27 84 18 10 85 17 8 86 29 27 87 17 8 88 28 26 89 30 28 90 19 12 91 18 10 92 30 28 93 18 10 94 29 27 95 31 29 96 20 14 97 19 12 98 31 29 99 19 12 100 30 28 101 32 30 102 21 16 103 20 14 104 32 30 105 20 14 106 31 29 107 33 31 108 22 18 109 21 16 110 33 31 111 21 16 112 32 30 113 34 32 114 23 20 115 22 18 116 34 32 117 22 18 118 33 31 119 36 33 120 25 22 121 24 23 122 36 33 123 24 23 124 35 34 125 37 35 126 26 24 127 25 22 128 37 35 129 25 22 130 36 33 131 38 36 132 27 25 133 26 24 134 38 36 135 26 24 136 37 35 137 39 37 138 28 26 139 27 25 140 39 37 141 27 25 142 38 36 143 40 38 144 29 27 145 28 26 146 40 38 147 28 26 148 39 37 149 41 39 150 30 28 151 29 27 152 41 39 153 29 27 154 40 38 155 42 40 156 31 29 157 30 28 158 42 40 159 30 28 160 41 39 161 43 41 162 32 30 163 31 29 164 43 41 165 31 29 166 42 40 167 44 42 168 33 31 169 32 30 170 44 42 171 32 30 172 43 41 173 34 32 174 33 31 175 44 42 176 47 43 177 36 33 178 35 34 179 47 43 180 35 34 181 46 44 182 48 45 183 37 35 184 36 33 185 48 45 186 36 33 187 47 43 188 49 46 189 38 36 190 37 35 191 49 46 192 37 35 193 48 45 194 50 47 195 39 37 196 38 36 197 50 47 198 38 36 199 49 46 200 51 48 201 40 38 202 39 37 203 51 48 204 39 37 205 50 47 206 52 49 207 41 39 208 40 38 209 52 49 210 40 38 211 51 48 212 53 50 213 42 40 214 41 39 215 53 50 216 41 39 217 52 49 218 54 51 219 43 41 220 42 40 221 54 51 222 42 40 223 53 50 224 55 52 225 44 42 226 43 41 227 55 52 228 43 41 229 54 51 230 13 3 231 1 2 232 0 53 233 0 53 234 58 54 235 24 23 236 0 53 237 24 23 238 13 3 239 35 34 240 24 23 241 58 54 242 35 34 243 58 54 244 59 55 245 59 55 246 45 56 247 46 44 248 59 55 249 46 44 250 35 34 251 46 44 252 45 56 253 56 57 254 46 44 255 56 57 256 60 58 257 48 45 258 47 43 259 63 59 260 48 45 261 63 59 262 64 60 263 49 46 264 48 45 265 65 61 266 49 46 267 65 61 268 66 62 269 47 43 270 46 44 271 61 63 272 47 43 273 61 63 274 62 64 275 12 65 276 11 21 277 23 20 278 83 66 279 23 20 280 34 32 281 12 65 282 23 20 283 83 66 284 82 67 285 83 66 286 34 32 287 82 67 288 34 32 289 84 68 290 51 48 291 50 47 292 69 69 293 51 48 294 69 69 295 70 70 296 52 49 297 51 48 298 70 70 299 52 49 300 70 70 301 71 71 302 34 32 303 44 42 304 84 68 305 81 72 306 84 68 307 44 42 308 81 72 309 44 42 310 55 52 311 82 67 312 84 68 313 81 72 314 53 50 315 52 49 316 72 73 317 53 50 318 72 73 319 73 74 320 50 47 321 49 46 322 67 75 323 50 47 324 67 75 325 68 76 326 60 58 327 61 63 328 46 44 329 57 77 330 63 59 331 47 43 332 62 64 333 57 77 334 47 43 335 66 62 336 67 75 337 49 46 338 68 76 339 69 69 340 50 47 341 64 60 342 65 61 343 48 45 344 52 49 345 71 71 346 72 73 347 55 52 348 54 51 349 76 78 350 55 52 351 76 78 352 77 79 353 80 80 354 55 52 355 79 81 356 55 52 357 77 79 358 79 81 359 81 72 360 55 52 361 80 80 362 73 74 363 74 82 364 53 50 365 74 82 366 75 83 367 53 50 368 54 51 369 75 83 370 76 78 371 79 81 372 77 79 373 78 84 374 53 50 375 75 83 376 54 51 377 93 85 378 89 86 379 88 87 380 93 85 381 88 87 382 92 88 383 94 89 384 90 90 385 89 86 386 94 89 387 89 86 388 93 85 389 95 91 390 91 92 391 90 90 392 95 91 393 90 90 394 94 89 395 97 93 396 93 85 397 92 88 398 97 93 399 92 88 400 96 94 401 98 95 402 94 89 403 93 85 404 98 95 405 93 85 406 97 93 407 99 96 408 95 91 409 94 89 410 99 96 411 94 89 412 98 95 413 102 97 414 97 93 415 96 94 416 102 97 417 96 94 418 101 98 419 103 99 420 98 95 421 97 93 422 103 99 423 97 93 424 102 97 425 104 100 426 99 96 427 98 95 428 104 100 429 98 95 430 103 99 431 88 87 432 122 101 433 85 102 434 88 87 435 120 103 436 121 104 437 121 104 438 122 101 439 88 87 440 88 87 441 119 105 442 86 106 443 89 86 444 117 107 445 118 108 446 89 86 447 116 109 448 117 107 449 118 108 450 119 105 451 88 87 452 86 106 453 120 103 454 88 87 455 89 86 456 114 110 457 115 111 458 90 90 459 112 112 460 113 113 461 90 90 462 111 114 463 112 112 464 113 113 465 114 110 466 90 90 467 91 92 468 109 115 469 110 116 470 91 92 471 107 117 472 108 118 473 91 92 474 106 119 475 107 117 476 108 118 477 109 115 478 91 92 479 110 116 480 111 114 481 90 90 482 115 111 483 116 109 484 89 86 485 89 86 486 90 90 487 114 110 488 91 92 489 128 120 490 106 119 491 90 90 492 91 92 493 110 116 494 123 121 495 100 122 496 96 94 497 123 121 498 96 94 499 92 88 500 100 122 501 101 98 502 96 94 503 88 87 504 123 121 505 92 88 506 123 121 507 88 87 508 85 102 509 106 119 510 128 120 511 105 123 512 127 124 513 91 92 514 95 91 515 87 125 516 105 123 517 128 120 518 128 120 519 91 92 520 127 124 521 127 124 522 95 91 523 126 126 524 125 127 525 99 96 526 104 100 527 126 126 528 99 96 529 125 127 530 124 128 531 125 127 532 104 100 533 95 91 534 99 96 535 126 126 536 88 87 537 89 86 538 118 108 539 134 129 540 130 130 541 129 131 542 135 132 543 131 133 544 130 130 545 135 132 546 130 130 547 134 129 548 136 134 549 132 135 550 131 133 551 136 134 552 131 133 553 135 132 554 135 132 555 134 129 556 141 136 557 135 132 558 141 136 559 142 137 560 134 129 561 137 138 562 138 139 563 147 140 564 133 141 565 132 135 566 145 142 567 146 143 568 136 134 569 147 140 570 136 134 571 146 143 572 147 140 573 132 135 574 136 134 575 136 134 576 135 132 577 143 144 578 138 139 579 141 136 580 134 129 581 142 137 582 143 144 583 135 132 584 136 134 585 139 145 586 144 146 587 139 145 588 136 134 589 143 144 590 136 134 591 144 146 592 145 142 593 145 142 594 144 146 595 140 147 596 156 148 597 153 149 598 152 150 599 157 151 600 154 152 601 153 149 602 157 151 603 153 149 604 156 148 605 158 153 606 155 154 607 154 152 608 158 153 609 154 152 610 157 151 611 148 155 612 152 150 613 153 149 614 153 149 615 162 156 616 148 155 617 154 152 618 161 157 619 149 158 620 155 154 621 160 159 622 150 160 623 150 160 624 161 157 625 155 154 626 149 158 627 162 156 628 154 152 629 153 149 630 154 152 631 162 156 632 155 154 633 163 161 634 160 159 635 154 152 636 155 154 637 161 157 638 151 162 639 160 159 640 163 161 641 159 163 642 163 161 643 155 154 644 159 163 645 155 154 646 158 153 647

+
+
+
+ + + + -90.9895 35.5228 89.5636 -91.06501 33.1384 74.2791 -91.07991 31.3523 75.0942 -91.0849 29.6364 75.87802 -91.0809 27.9034 76.6702 -91.0681 26.1458 77.4743 -91.0941 32.5087 58.334 -91.1021 30.7863 59.042 -91.1015 29.1316 59.7096 -91.0928 27.4606 60.3719 -91.07601 25.7662 61.0317 -91.1085 31.8165 42.5368 -91.1114 30.1636 43.105 -91.1067 28.5758 43.6272 -91.09481 26.9728 44.1318 -91.0756 25.3479 44.6208 -91.1095 31.1069 26.8851 -91.10871 29.5241 27.2949 -91.1014 28.0043 27.6555 -91.0877 26.4706 27.9875 -91.0987 30.4224 11.2485 -91.0956 28.906 11.495 -91.0869 27.4507 11.6905 -91.0726 25.9832 11.848 -91.07801 29.8035 -4.51603 -91.0737 28.3454 -4.42543 -91.0646 26.9472 -4.38644 -91.0506 25.5387 -4.39351 -91.0135 35.2572 82.29602 -91.0353 34.9756 75.08351 -91.0545 34.678 67.928 -91.07061 34.3647 60.8317 -91.0801 34.1296 55.7582 -91.0879 33.8881 50.7116 -91.094 33.6418 45.6871 -91.0984 33.3923 40.6801 -91.1014 33.1412 35.6859 -91.1029 32.8902 30.6998 -91.1029 32.6407 25.7174 -91.1017 32.3944 20.7341 -91.0991 32.1528 15.7455 -91.0954 31.9174 10.7471 -91.0905 31.6898 5.73464 -91.08451 31.4715 0.703709 -91.0775 31.2638 -4.34997 -91.06961 31.0684 -9.43063 -91.0607 30.8867 -14.5425 -91.05101 30.72 -19.6897 -91.01371 24.3685 -20.9304 -91.02301 24.2684 -13.4758 -91.0375 24.4524 -3.68716 -91.0492 24.5901 6.19795 -91.0579 24.6719 16.0837 -91.06311 24.6881 25.8741 -91.0646 24.6266 35.7128 -91.06221 24.4694 45.5505 -91.0557 24.191 55.3857 -91.0445 23.7517 65.21501 -91.0327 23.2845 72.4954 -91.01702 22.6469 79.7628 -91.0158 22.6269 81.2875 -91.01461 22.6129 82.81221 -91.0142 22.6409 84.3378 -91.0158 22.7788 85.8574 -91.01831 22.9528 86.6989 -91.0226 23.2454 87.5069 -91.0293 23.7078 88.2383 -91.03791 24.3521 88.816 -91.0467 25.1117 89.19831 -91.0544 25.9319 89.4226 -91.0643 27.6185 89.5636 -91.05931 30.7332 89.8527 -91.02201 33.8185 90.3673 -91.02941 25.7762 -20.6075 -82.888 80.7262 79.40441 -84.5974 77.1133 78.58 -86.1065 72.9692 78.3305 -87.4152 68.2937 78.6557 -88.5237 63.0869 79.5558 -89.4692 57.0687 81.11341 -90.1954 50.4687 83.3006 -90.7022 43.2867 86.1173 -90.9895 35.5228 89.5636 -83.2397 78.1024 73.9006 -84.9505 74.6597 72.3609 -86.4412 70.705 71.38491 -87.71231 66.2395 70.97161 -88.7644 61.2643 71.1197 -89.6455 55.522 71.8613 -90.3162 49.2423 73.1886 -90.7768 42.4264 75.10031 -83.5663 75.22161 68.39521 -85.2807 71.9764 66.1346 -86.75521 68.2382 64.42881 -87.9908 64.0091 63.2754 -88.98851 59.2915 62.6721 -89.80751 53.8516 62.6008 -90.4251 47.918 63.0736 -90.8423 41.493 64.08831 -83.8502 72.1617 63.0736 -85.57151 69.1363 60.1009 -87.0333 65.63581 57.6762 -88.2372 61.6635 55.7961 -89.1848 57.2225 54.4572 -89.94651 52.1035 53.5921 -90.5158 46.5325 53.2333 -90.89421 40.5126 53.3772 -84.1091 68.7117 57.3739 -85.8416 65.9433 53.6528 -87.2937 62.7182 50.4746 -88.4678 59.0406 47.8349 -89.3661 54.9145 45.7292 -90.07101 50.1571 44.0389 -90.5935 44.9907 42.8171 -90.93521 39.4191 42.0596 -84.3216 65.25402 51.5004 -86.06861 62.7499 47.0867 -87.5148 59.8061 43.213 -88.6633 56.4277 39.8738 -89.51741 52.6196 37.0635 -90.1711 48.2252 34.6159 -90.65201 43.4621 32.6026 -90.96202 38.3348 31.0187 -84.49411 61.8799 45.1783 -86.2586 59.6378 40.1511 -87.7022 56.9721 35.6625 -88.8291 53.8884 31.7059 -89.6431 50.3924 28.2747 -90.2504 46.353 25.1596 -90.6943 41.9831 22.4471 -90.9769 37.2876 20.132 -84.6335 58.6458 38.1026 -86.4181 56.657 32.5588 -87.86201 54.2596 27.5532 -88.9703 51.46 23.078 -89.74781 48.2645 19.1258 -90.3123 44.5666 15.4488 -90.7229 40.5749 12.1444 -90.9818 36.2943 9.20716 -84.7447 55.6098 29.9557 -86.552 53.8587 24.0135 -87.9988 51.7135 18.6092 -89.09111 49.1812 13.7342 -89.8348 46.2686 9.37974 -90.3596 42.8931 5.26557 -90.7398 39.2593 1.49457 -90.9779 35.3721 -1.939 -84.8309 52.863 20.4784 -86.6633 51.3243 14.2842 -88.1152 49.4057 8.627071 -89.1938 47.1147 3.49719 -89.9062 44.4586 -1.115 -90.3939 41.3771 -5.51565 -90.7464 38.0718 -9.602972 -90.9664 34.5477 -13.3828 -84.89521 50.4963 9.41155 -86.7548 49.135 3.14064 -88.2139 47.4079 -2.59585 -89.2809 45.3228 -7.80862 -89.96401 42.8878 -12.5082 -90.41701 40.0625 -17.0186 -84.941 48.6007 -3.50396 -86.8294 47.3719 -9.646942 -88.2974 45.7914 -15.2609 -84.9712 47.2674 -18.5273 -91.05101 30.72 -19.6897 -91.0607 30.8867 -14.5425 -91.06961 31.0684 -9.43063 -91.0775 31.2638 -4.34997 -91.08451 31.4715 0.703709 -91.0905 31.6898 5.73464 -91.0954 31.9174 10.7471 -91.0991 32.1528 15.7455 -91.1017 32.3944 20.7341 -91.1029 32.6407 25.7174 -91.1029 32.8902 30.6998 -91.1014 33.1412 35.6859 -91.0984 33.3923 40.6801 -91.094 33.6418 45.6871 -91.0879 33.8881 50.7116 -91.0801 34.1296 55.7582 -91.07061 34.3647 60.8317 -91.0545 34.678 67.928 -91.0353 34.9756 75.08351 -91.0135 35.2572 82.29602 -86.7293 46.5988 -18.5282 -88.2672 45.5158 -18.5367 -89.37371 43.988 -18.5643 -89.9886 42.2052 -18.6202 -90.81221 36.4742 -18.9889 + + + + + + + + + + -0.9999964 0.002533078 9.1558e-4 -0.9999787 0.006378412 0.001464843 -0.9999269 0.01196342 0.001800596 -0.9999696 0.007721126 0.001098632 -0.9999968 -0.002441525 7.93503e-4 -0.9999991 8.24024e-4 0.001129209 -0.9999734 -0.007263422 6.7141e-4 -0.9999901 -0.004364192 9.46093e-4 -0.999928 -0.011994 5.79863e-4 -0.999949 -0.01007115 7.93489e-4 -0.9999999 -4.57792e-4 2.44156e-4 -0.9999909 0.004242122 3.35711e-4 -0.999987 -0.005096673 1.83114e-4 -0.9999549 -0.009491384 1.83114e-4 -0.9999104 -0.01339763 1.52593e-4 -0.9999963 -0.002716183 -3.35713e-4 -0.9999987 0.001617491 -3.35713e-4 -0.999976 -0.006927728 -3.35706e-4 -0.999938 -0.01113957 -2.74675e-4 -0.9999301 -0.01182883 -7.16666e-5 -0.9999912 -0.004120051 -9.15575e-4 -0.9999995 -2.13636e-4 -9.46102e-4 -0.9999682 -0.007934987 -8.54543e-4 -0.9999318 -0.01165831 -7.62981e-4 -0.9999967 -0.002252817 -0.001295804 -0.9999948 -0.00304079 -0.001193463 -0.9999806 -0.006122171 -0.001194894 -0.9999779 -0.0065521 -0.001144945 -0.9999507 -0.009867727 -0.001084864 -0.9999501 -0.009930789 -0.001075923 -0.999791 0.02028936 0.002559781 -0.9998809 0.01528978 0.00213629 -0.9998535 0.01699888 0.002014219 -0.999883 0.01510667 0.002433121 -0.9999743 0.006958246 0.001800596 -0.9999966 -0.002258419 0.00137335 -0.9998814 0.01527267 0.002047121 -0.9999212 0.01248222 0.001403868 -0.9999454 0.01031529 0.001709043 -0.9999462 0.01031744 0.001051664 -0.9999406 0.010818 0.001370906 -0.9999977 -0.001730859 0.001249194 -0.9999705 0.007671177 5.75043e-4 -0.9999792 0.006390333 9.01735e-4 -0.9999035 -0.01388454 5.89444e-4 -0.9998794 -0.01551538 6.32493e-4 -0.99993 -0.01183044 4.53627e-4 -0.9998573 -0.01688814 5.29626e-4 -0.9998347 -0.01818066 5.99427e-4 -0.9998712 -0.01604241 5.0571e-4 -0.999953 -0.009650528 9.73976e-4 -0.9999065 -0.01366192 7.44043e-4 -0.9999022 -0.01396697 8.0366e-4 -0.9998928 -0.01463592 4.85388e-4 -0.9999041 -0.01384794 2.68664e-4 -0.9998377 -0.01800918 6.20414e-4 -0.9998581 -0.016837 5.75436e-4 -0.9998477 -0.01743936 6.27356e-4 -0.999909 -0.01347565 6.36353e-4 -0.9999707 -0.007599115 0.00100708 -0.9999775 0.006713926 2.63955e-4 -0.9999914 0.004154443 -2.07546e-4 -0.9999942 0.003430843 1.27325e-4 -0.9999895 0.004602253 -1.44982e-4 -0.9999971 0.002271592 -7.90245e-4 -0.999999 0.001294136 -5.83898e-4 -0.999992 0.00397098 -4.36595e-4 -0.9999751 0.007036209 5.27285e-4 -0.9999977 0.001861274 -0.00106132 -0.999999 6.49684e-4 -0.001338005 -0.9999993 -1.93572e-4 -0.001183807 -0.9999986 5.28811e-4 -0.001574516 -0.9999989 5.15176e-4 -0.001406788 -0.9999985 -1.07821e-4 -0.001737952 -0.9999978 -0.001078009 -0.001846432 -0.9999979 0.001930773 -8.31226e-4 -0.999913 -0.01318907 -5.09594e-4 -0.9999157 -0.01297938 -5.43817e-4 -0.9999061 -0.01369184 -7.66469e-4 -0.9999186 -0.01271903 -0.001006722 -0.999884 -0.01523673 -1.75364e-7 -0.9998892 -0.01488828 3.54017e-4 -0.9999126 -0.01322209 -1.647e-4 -0.9999086 -0.01352202 -2.36468e-4 -0.9999933 -0.003090262 -0.001965343 -0.9999498 -0.009930074 -0.001452565 -0.9999771 -0.006563663 -0.001696228 -0.9999899 -0.003978192 -0.002105474 -0.9999165 -0.01286983 -0.001238167 -0.999919 -0.01269555 -0.001006722 -0.9999309 -0.01167845 -0.001405179 -0.9999405 -0.01080924 -0.001465499 -0.8900779 0.4361122 -0.1325427 -0.9030321 0.4155187 -0.108984 -0.8726696 0.4660301 -0.1458213 -0.8399291 0.5087307 -0.1889771 -0.943635 0.3240875 -0.06723463 -0.947465 0.3150485 -0.05527001 -0.9698356 0.2416806 -0.03177034 -0.9705753 0.239363 -0.0262466 -0.9838426 0.1785364 -0.01336729 -0.9837473 0.1792072 -0.01123094 -0.9916985 0.1285173 -0.004181146 -0.9916225 0.1291257 -0.00338757 -0.9962022 0.08707076 3.35709e-4 -0.9962313 0.08673495 6.1038e-4 -0.9986591 0.05172896 0.002044737 -0.9987087 0.05075329 0.00225836 -0.8471373 0.498614 -0.1836919 -0.7595095 0.5938799 -0.2654285 -0.9306603 0.3541172 -0.09204667 -0.9666004 0.2525454 -0.04364228 -0.9835457 0.1796366 -0.01919662 -0.9919663 0.1262885 -0.007355093 -0.9964503 0.08417177 -0.001464903 -0.9988186 0.04858589 0.001037597 -0.7668151 0.5903859 -0.2518715 -0.590548 0.7140902 -0.3759365 -0.9076031 0.400958 -0.1244562 -0.9607298 0.271281 -0.05835181 -0.9825165 0.1843382 -0.02609419 -0.9919674 0.126014 -0.01101744 -0.9965903 0.08243113 -0.003631711 -0.9989335 0.04617458 -1.22074e-4 -0.6247869 0.7101794 -0.324479 -0.27531 0.830935 -0.4834786 -0.8666915 0.4718918 -0.1617531 -0.9506075 0.3013757 -0.07428336 -0.9804694 0.1938903 -0.03296101 -0.9916521 0.1281185 -0.01455754 -0.9966056 0.08212721 -0.005707085 -0.9990044 0.04458802 -0.001434385 -0.4440836 0.8172407 -0.3672975 0.03885102 0.8645193 -0.5010958 -0.8076135 0.557138 -0.1932815 -0.9362447 0.3402001 -0.08780437 -0.9774996 0.2074085 -0.03842365 -0.9910505 0.1323618 -0.01730436 -0.9965057 0.08319473 -0.007416069 -0.9990347 0.04385554 -0.002533018 -0.2835247 0.8866176 -0.3654081 0.2139378 0.8634728 -0.4567772 -0.7381961 0.6411759 -0.2096662 -0.9185982 0.3833215 -0.09613555 -0.973887 0.2231843 -0.0416277 -0.9902399 0.1380665 -0.01904362 -0.9963073 0.08542388 -0.008636951 -0.9990313 0.04388594 -0.0032655 -0.1936444 0.9242743 -0.3289666 0.2624975 0.879234 -0.3975459 -0.6764208 0.7073059 -0.2053616 -0.9004935 0.4239088 -0.09701985 -0.970141 0.238873 -0.04202479 -0.9893501 0.144235 -0.01956295 -0.9960432 0.08838254 -0.009308218 -0.9989939 0.0446791 -0.003875851 -0.1837265 0.9437502 -0.2749184 0.2217522 0.9155137 -0.3356497 -0.6406109 0.7459654 -0.1820812 -0.8862046 0.4545468 -0.08960312 -0.9670401 0.251572 -0.03930908 -0.9885583 0.1496677 -0.0187695 -0.9957527 0.09158837 -0.00939989 -0.9989372 0.04590004 -0.004211544 -0.236277 0.9477937 -0.2141508 0.1156048 0.955723 -0.2706092 -0.6382834 0.7557222 -0.1465543 -0.8796787 0.4695954 -0.07513767 -0.9654591 0.2583714 -0.03366208 -0.98809 0.1529623 -0.01675504 -0.9954273 0.09506559 -0.009338676 -0.9988992 0.0466336 -0.005066215 -0.3237521 0.933595 -0.1535747 -0.03085476 0.9787468 -0.2027382 -0.6625699 0.7413398 -0.1068474 -0.8801472 0.471127 -0.05813932 -0.9650948 0.2604471 -0.02755844 -0.9883003 0.1491163 -0.03204506 -0.4113703 0.9057229 -0.1021788 -0.1879081 0.9725933 -0.1369407 -0.6974551 0.7128062 -0.07391744 -0.9993259 0.03662317 0.002594113 -0.9992831 0.037813 0.001892149 -0.9993979 0.03466928 0.001434326 -0.999458 0.03286862 0.001861631 -0.9995495 0.02999991 9.46081e-4 -0.9994961 0.03173971 5.49341e-4 -0.9996466 0.02658194 -5.4934e-4 -0.9996301 0.02719271 -6.40906e-4 -0.9996758 0.02542215 -0.001434385 -0.9996585 0.02609395 -0.001464903 -0.9996075 0.02801609 1.83112e-4 -0.9995725 0.02923756 -6.10389e-5 -0.9996789 0.02526968 -0.001953184 -0.9996759 0.02539169 -0.001861631 -0.9996636 0.02591097 -0.001159727 -0.9996783 0.02526962 -0.002227842 -0.8906046 0.4524437 -0.04602259 -0.9698683 0.2410708 -0.03521907 -0.4690499 0.8795028 -0.0804181 -0.3542066 0.9315701 -0.08194422 -0.7057923 0.7052125 -0.06732583 -0.9996693 0.02560514 -0.002410948 -0.9996667 0.02569663 -0.002502501 -0.9996501 0.02630734 -0.002777218 -0.999643 0.02658182 -0.002716124 -0.9964802 0.08163863 -0.01904392 -0.9992721 0.03704959 -0.009094536 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

7 0 0 2 1 1 1 2 2 7 0 3 1 2 4 6 3 5 8 4 6 3 5 7 2 1 8 8 4 9 2 1 10 7 0 11 9 6 12 4 7 13 3 5 14 9 6 15 3 5 16 8 4 17 10 8 18 5 9 19 4 7 20 10 8 21 4 7 22 9 6 23 12 10 24 7 0 25 6 3 26 12 10 27 6 3 28 11 11 29 13 12 30 8 4 31 7 0 32 13 12 33 7 0 34 12 10 35 14 13 36 9 6 37 8 4 38 14 13 39 8 4 40 13 12 41 15 14 42 10 8 43 9 6 44 15 14 45 9 6 46 14 13 47 17 15 48 12 10 49 11 11 50 17 15 51 11 11 52 16 16 53 18 17 54 13 12 55 12 10 56 18 17 57 12 10 58 17 15 59 19 18 60 14 13 61 13 12 62 19 18 63 13 12 64 18 17 65 15 19 66 14 19 67 19 19 68 21 20 69 17 15 70 16 16 71 21 20 72 16 16 73 20 21 74 22 22 75 18 17 76 17 15 77 22 22 78 17 15 79 21 20 80 23 23 81 19 18 82 18 17 83 23 23 84 18 17 85 22 22 86 25 24 87 21 24 88 20 24 89 25 25 90 20 25 91 24 25 92 26 26 93 22 26 94 21 26 95 26 27 96 21 27 97 25 27 98 27 28 99 23 28 100 22 28 101 27 29 102 22 29 103 26 29 104 28 30 105 72 30 106 0 30 107 1 2 108 72 31 109 28 32 110 29 33 111 1 33 112 28 33 113 71 34 114 3 5 115 70 35 116 72 31 117 2 1 118 71 34 119 2 1 120 72 31 121 1 2 122 2 1 123 3 5 124 71 34 125 1 36 126 29 36 127 30 36 128 6 3 129 30 37 130 31 38 131 6 39 132 32 39 133 33 39 134 6 40 135 31 40 136 32 40 137 70 41 138 3 41 139 4 41 140 11 42 141 6 42 142 33 42 143 11 43 144 33 43 145 34 43 146 30 37 147 6 3 148 1 2 149 5 9 150 70 35 151 4 7 152 66 44 153 67 44 154 58 44 155 65 45 156 66 45 157 58 45 158 68 46 159 58 46 160 67 46 161 64 47 162 61 47 163 63 47 164 63 48 165 61 48 166 62 48 167 65 49 168 60 49 169 64 49 170 5 50 171 68 50 172 69 50 173 58 51 174 5 51 175 57 51 176 10 52 177 57 52 178 5 52 179 57 53 180 10 53 181 56 53 182 10 54 183 55 54 184 56 54 185 60 55 186 61 55 187 64 55 188 65 56 189 59 56 190 60 56 191 58 57 192 59 57 193 65 57 194 5 58 195 58 58 196 68 58 197 5 9 198 69 59 199 70 35 200 11 60 201 35 60 202 36 60 203 16 61 204 37 61 205 38 61 206 16 62 207 36 62 208 37 62 209 16 63 210 11 63 211 36 63 212 20 64 213 16 64 214 39 64 215 20 65 216 39 65 217 40 65 218 16 66 219 38 66 220 39 66 221 34 67 222 35 67 223 11 67 224 20 68 225 41 68 226 42 68 227 24 69 228 20 69 229 42 69 230 24 70 231 42 70 232 43 70 233 44 71 234 45 71 235 24 71 236 24 72 237 43 72 238 44 72 239 46 73 240 24 73 241 45 73 242 47 74 243 24 74 244 46 74 245 40 75 246 41 75 247 20 75 248 53 76 249 19 76 250 52 76 251 23 77 252 52 77 253 19 77 254 52 78 255 23 78 256 51 78 257 27 79 258 51 79 259 23 79 260 54 80 261 55 80 262 15 80 263 15 81 264 55 81 265 10 81 266 19 82 267 54 82 268 15 82 269 54 83 270 19 83 271 53 83 272 25 84 273 24 84 274 47 84 275 27 85 276 26 85 277 73 85 278 25 86 279 73 86 280 26 86 281 25 87 282 47 87 283 73 87 284 49 88 285 50 88 286 27 88 287 27 89 288 50 89 289 51 89 290 27 90 291 48 90 292 49 90 293 48 91 294 27 91 295 73 91 296 84 92 297 75 93 298 74 94 299 84 92 300 74 94 301 83 95 302 85 96 303 76 97 304 75 93 305 85 96 306 75 93 307 84 92 308 86 98 309 77 99 310 76 97 311 86 98 312 76 97 313 85 96 314 87 100 315 78 101 316 77 99 317 87 100 318 77 99 319 86 98 320 88 102 321 79 103 322 78 101 323 88 102 324 78 101 325 87 100 326 89 104 327 80 105 328 79 103 329 89 104 330 79 103 331 88 102 332 90 106 333 81 107 334 80 105 335 90 106 336 80 105 337 89 104 338 92 108 339 84 92 340 83 95 341 92 108 342 83 95 343 91 109 344 93 110 345 85 96 346 84 92 347 93 110 348 84 92 349 92 108 350 94 111 351 86 98 352 85 96 353 94 111 354 85 96 355 93 110 356 95 112 357 87 100 358 86 98 359 95 112 360 86 98 361 94 111 362 96 113 363 88 102 364 87 100 365 96 113 366 87 100 367 95 112 368 97 114 369 89 104 370 88 102 371 97 114 372 88 102 373 96 113 374 98 115 375 90 106 376 89 104 377 98 115 378 89 104 379 97 114 380 100 116 381 92 108 382 91 109 383 100 116 384 91 109 385 99 117 386 101 118 387 93 110 388 92 108 389 101 118 390 92 108 391 100 116 392 102 119 393 94 111 394 93 110 395 102 119 396 93 110 397 101 118 398 103 120 399 95 112 400 94 111 401 103 120 402 94 111 403 102 119 404 104 121 405 96 113 406 95 112 407 104 121 408 95 112 409 103 120 410 105 122 411 97 114 412 96 113 413 105 122 414 96 113 415 104 121 416 106 123 417 98 115 418 97 114 419 106 123 420 97 114 421 105 122 422 108 124 423 100 116 424 99 117 425 108 124 426 99 117 427 107 125 428 109 126 429 101 118 430 100 116 431 109 126 432 100 116 433 108 124 434 110 127 435 102 119 436 101 118 437 110 127 438 101 118 439 109 126 440 111 128 441 103 120 442 102 119 443 111 128 444 102 119 445 110 127 446 112 129 447 104 121 448 103 120 449 112 129 450 103 120 451 111 128 452 113 130 453 105 122 454 104 121 455 113 130 456 104 121 457 112 129 458 114 131 459 106 123 460 105 122 461 114 131 462 105 122 463 113 130 464 116 132 465 108 124 466 107 125 467 116 132 468 107 125 469 115 133 470 117 134 471 109 126 472 108 124 473 117 134 474 108 124 475 116 132 476 118 135 477 110 127 478 109 126 479 118 135 480 109 126 481 117 134 482 119 136 483 111 128 484 110 127 485 119 136 486 110 127 487 118 135 488 120 137 489 112 129 490 111 128 491 120 137 492 111 128 493 119 136 494 121 138 495 113 130 496 112 129 497 121 138 498 112 129 499 120 137 500 122 139 501 114 131 502 113 130 503 122 139 504 113 130 505 121 138 506 124 140 507 116 132 508 115 133 509 124 140 510 115 133 511 123 141 512 125 142 513 117 134 514 116 132 515 125 142 516 116 132 517 124 140 518 126 143 519 118 135 520 117 134 521 126 143 522 117 134 523 125 142 524 127 144 525 119 136 526 118 135 527 127 144 528 118 135 529 126 143 530 128 145 531 120 137 532 119 136 533 128 145 534 119 136 535 127 144 536 129 146 537 121 138 538 120 137 539 129 146 540 120 137 541 128 145 542 130 147 543 122 139 544 121 138 545 130 147 546 121 138 547 129 146 548 132 148 549 124 140 550 123 141 551 132 148 552 123 141 553 131 149 554 133 150 555 125 142 556 124 140 557 133 150 558 124 140 559 132 148 560 134 151 561 126 143 562 125 142 563 134 151 564 125 142 565 133 150 566 135 152 567 127 144 568 126 143 569 135 152 570 126 143 571 134 151 572 136 153 573 128 145 574 127 144 575 136 153 576 127 144 577 135 152 578 137 154 579 129 146 580 128 145 581 137 154 582 128 145 583 136 153 584 138 155 585 130 147 586 129 146 587 138 155 588 129 146 589 137 154 590 140 156 591 132 148 592 131 149 593 140 156 594 131 149 595 139 157 596 141 158 597 133 150 598 132 148 599 141 158 600 132 148 601 140 156 602 142 159 603 134 151 604 133 150 605 142 159 606 133 150 607 141 158 608 143 160 609 135 152 610 134 151 611 143 160 612 134 151 613 142 159 614 144 161 615 136 153 616 135 152 617 144 161 618 135 152 619 143 160 620 145 162 621 137 154 622 136 153 623 145 162 624 136 153 625 144 161 626 146 163 627 138 155 628 137 154 629 146 163 630 137 154 631 145 162 632 148 164 633 140 156 634 139 157 635 148 164 636 139 157 637 147 165 638 149 166 639 141 158 640 140 156 641 149 166 642 140 156 643 148 164 644 150 167 645 142 159 646 141 158 647 150 167 648 141 158 649 149 166 650 151 168 651 143 160 652 142 159 653 151 168 654 142 159 655 150 167 656 152 169 657 144 161 658 143 160 659 152 169 660 143 160 661 151 168 662 153 170 663 145 162 664 144 161 665 153 170 666 144 161 667 152 169 668 154 171 669 146 163 670 145 162 671 154 171 672 145 162 673 153 170 674 156 172 675 148 164 676 147 165 677 156 172 678 147 165 679 155 173 680 157 174 681 149 166 682 148 164 683 157 174 684 148 164 685 156 172 686 158 175 687 150 167 688 149 166 689 158 175 690 149 166 691 157 174 692 159 176 693 151 168 694 150 167 695 159 176 696 150 167 697 158 175 698 160 177 699 152 169 700 151 168 701 160 177 702 151 168 703 159 176 704 162 178 705 156 172 706 155 173 707 162 178 708 155 173 709 161 179 710 163 180 711 157 174 712 156 172 713 163 180 714 156 172 715 162 178 716 81 107 717 90 106 718 184 181 719 81 107 720 184 181 721 82 182 722 90 106 723 183 183 724 184 181 725 90 106 726 98 115 727 182 184 728 90 106 729 182 184 730 183 183 731 98 115 732 106 123 733 180 185 734 98 115 735 180 185 736 181 186 737 114 131 738 122 139 739 176 187 740 114 131 741 176 187 742 177 188 743 122 139 744 130 147 745 173 189 746 122 139 747 173 189 748 174 190 749 106 123 750 114 131 751 178 191 752 106 123 753 178 191 754 179 192 755 130 147 756 138 155 757 171 193 758 130 147 759 171 193 760 172 194 761 98 115 762 181 186 763 182 184 764 114 131 765 177 188 766 178 191 767 179 192 768 180 185 769 106 123 770 122 139 771 175 195 772 176 187 773 122 139 774 174 190 775 175 195 776 130 147 777 172 194 778 173 189 779 171 193 780 138 155 781 170 196 782 187 197 783 158 175 784 157 174 785 159 176 786 158 175 787 188 198 788 187 197 789 188 198 790 158 175 791 160 177 792 159 176 793 188 198 794 187 197 795 157 174 796 163 180 797 185 199 798 161 179 799 164 200 800 162 178 801 161 179 802 185 199 803 163 180 804 162 178 805 186 201 806 185 199 807 186 201 808 162 178 809 187 197 810 163 180 811 186 201 812 170 196 813 138 155 814 169 202 815 169 202 816 138 155 817 146 163 818 168 203 819 169 202 820 146 163 821 146 163 822 167 204 823 168 203 824 167 204 825 154 171 826 166 205 827 154 171 828 167 204 829 146 163 830 153 170 831 152 169 832 160 177 833 189 206 834 153 170 835 160 177 836 165 207 837 154 171 838 189 206 839 153 170 840 189 206 841 154 171 842 166 205 843 154 171 844 165 207 845 189 206 846 160 177 847 188 198 848

+
+
+
+ + + + -91.05101 30.72 -19.6897 -91.0076 28.715 -39.1937 -91.0021 27.1844 -39.3869 -90.9923 25.6441 -39.6583 -90.9601 28.5557 -58.5541 -90.9559 27.0333 -58.8164 -90.9487 25.5036 -59.1598 -90.9089 28.6913 -78.4951 -90.9065 27.1429 -78.7481 -90.9023 25.589 -79.08 -90.8561 30.8023 -99.2679 -91.01371 24.3685 -20.9304 -91.02941 25.7762 -20.6075 -91.0319 30.4649 -28.9627 -91.0106 30.2703 -38.3841 -90.98751 30.1441 -47.9765 -90.9629 30.0938 -57.7621 -90.93721 30.1271 -67.76271 -90.9106 30.2514 -77.9999 -90.8835 30.4741 -88.4947 -90.88761 24.8089 -84.5533 -90.9051 24.8089 -76.85102 -90.9226 24.8089 -69.1487 -90.93991 24.8089 -61.4464 -90.95671 24.8089 -53.744 -90.97301 24.6988 -45.5406 -90.98801 24.5887 -37.3372 -91.0017 24.4786 -29.1338 -90.86441 28.5753 -95.9267 -90.8725 26.8664 -92.2931 -90.88021 25.6117 -88.4833 -91.05101 30.72 -19.6897 -90.7438 36.9884 -22.0123 -90.94701 33.8076 -25.9688 -90.0058 41.7325 -23.5348 -90.42961 39.0963 -27.973 -90.7359 36.3005 -32.159 -90.9276 33.3494 -36.0984 -88.34951 44.9058 -25.3523 -89.4005 43.0647 -30.2273 -90.0376 40.8995 -34.6038 -90.4356 38.3998 -38.8147 -90.7238 35.7685 -42.8039 -90.9051 33.0093 -46.5765 -86.9183 45.6735 -33.1623 -88.4028 44.2082 -38.1232 -89.4475 42.4232 -42.5848 -90.06401 40.3271 -46.5598 -90.43701 37.9208 -50.374 -90.7081 35.4112 -54.0002 -90.88 32.8014 -57.4431 -86.9559 45.3645 -47.8796 -88.45021 43.8942 -52.227 -89.48931 42.1177 -56.0908 -90.0858 40.044 -59.4841 -90.4349 37.683 -62.7173 -90.6897 35.2473 -65.8005 -90.85301 32.7396 -68.7376 -86.9886 45.5323 -64.2472 -88.4932 44.0031 -67.7754 -89.5272 42.1823 -70.84101 -90.1044 40.0789 -73.4573 -90.4301 37.7096 -75.9104 -90.6693 35.2952 -78.2566 -90.8246 32.8374 -80.4986 -87.01802 46.2225 -82.3935 -88.53321 44.5744 -84.8796 -89.5624 42.6506 -86.9304 -90.1208 40.4603 -88.55931 -90.4236 38.0239 -90.01821 -90.6477 35.5729 -91.41941 -90.79541 33.1083 -92.7643 -85.0016 49.0455 -100.829 -86.06901 48.3125 -101.674 -87.00981 47.5142 -102.418 -87.82621 46.6517 -103.063 -88.52011 45.7261 -103.61 -89.0935 44.7384 -104.06 -89.5484 43.6898 -104.416 -89.8866 42.5812 -104.679 -90.1101 41.4138 -104.85 -90.136 41.2152 -104.848 -90.4554 38.1988 -104.428 -90.67041 35.3746 -103.264 -90.7955 32.8986 -101.485 -90.8561 30.8023 -99.2679 -90.81221 36.4742 -18.9889 -89.9886 42.2052 -18.6202 -89.37371 43.988 -18.5643 -88.2672 45.5158 -18.5367 -86.7293 46.5988 -18.5282 -84.9712 47.2674 -18.5273 -84.9813 46.8527 -26.5901 -84.9888 46.5997 -35.2307 -84.9942 46.5186 -44.478 -84.9962 46.5456 -49.3383 -84.99781 46.6193 -54.361 -84.999 46.7411 -59.55 -85 46.9123 -64.9087 -85.0007 47.1339 -70.44081 -85.0011 47.4075 -76.1499 -85.00141 47.7341 -82.0396 -85.00151 48.1152 -88.1136 -85.0016 48.5519 -94.37551 -90.8835 30.4741 -88.4947 -90.9106 30.2514 -77.9999 -90.93721 30.1271 -67.76271 -90.9629 30.0938 -57.7621 -90.98751 30.1441 -47.9765 -91.0106 30.2703 -38.3841 -91.0319 30.4649 -28.9627 -85.0016 49.0455 -100.829 -84.4667 51.0978 -23.4265 -84.47502 50.5455 -33.3962 -84.48011 50.2277 -44.1997 -84.4825 50.1632 -55.8909 -84.48291 50.3711 -68.5236 -84.482 50.8703 -82.1518 -84.2397 55.9019 -27.2592 -84.2587 55.3373 -36.3741 -84.2751 54.9542 -46.1343 -84.2895 54.7671 -56.5814 -84.3024 54.7908 -67.75701 -84.3142 55.0398 -79.7028 -84.2915 61.6309 -30.8108 -84.3357 61.1025 -39.0564 -84.3781 60.7024 -47.7586 -84.4191 60.4411 -56.9468 -84.4589 60.3288 -66.6506 -84.4981 60.3761 -76.8993 -84.45 69.3745 -20.093 -84.5367 68.79811 -26.9706 -84.622 68.2849 -34.0816 -84.8711 67.18502 -56.9872 -84.9526 66.9853 -65.2045 -85.11441 66.87271 -82.6157 -85.0016 48.5519 -94.37551 -85.00151 48.1152 -88.1136 -85.00141 47.7341 -82.0396 -85.0011 47.4075 -76.1499 -85.0007 47.1339 -70.44081 -85 46.9123 -64.9087 -84.999 46.7411 -59.55 -84.99781 46.6193 -54.361 -84.9962 46.5456 -49.3383 -84.9942 46.5186 -44.478 -84.9888 46.5997 -35.2307 -84.9813 46.8527 -26.5901 -84.9712 47.2674 -18.5273 -84.7799 63.581 -85.2153 -84.53691 60.5931 -87.72261 -84.3854 57.9091 -90.13771 -84.3256 55.5288 -92.46051 -84.3572 53.4523 -94.691 -84.4805 51.6795 -96.8292 -84.6062 49.9013 -18.5557 -84.3834 52.55 -18.6329 -84.1985 57.8552 -18.9224 -84.23191 63.1485 -19.3745 -84.4067 68.4247 -19.9706 -84.706 67.8409 -41.4431 -84.789 67.4723 -49.0726 -85.0336 66.87921 -73.7415 -85.11441 66.87271 -82.6157 -84.3865 76.1152 -32.0021 -84.5632 75.8415 -47.3004 -84.7367 75.8464 -63.5792 -83.95901 82.63031 -33.6385 -84.1039 82.90161 -48.2835 -84.2467 83.35871 -63.5821 -83.2983 88.07201 -35.4959 -83.3843 88.7638 -49.5131 -83.4692 89.5484 -63.8572 -82.40441 91.4526 -24.1591 -82.40441 95.4031 -77.81961 -83.5536 90.4412 -78.5719 -84.3883 84.03221 -79.62191 -84.6878 80.28501 -80.2587 -84.9086 76.17601 -80.9699 -85.0508 71.7053 -81.7555 -84.45 69.3745 -20.093 -84.3151 74.96102 -20.9006 -84.0086 80.5178 -21.8526 -83.4416 86.0327 -22.9441 -83.0055 88.7615 -23.5382 -82.40441 91.94641 -30.8666 -82.40441 92.4402 -37.5742 -82.40441 92.93402 -44.2818 -82.40441 93.4279 -50.9894 -82.40441 93.9217 -57.6969 -82.40441 94.4155 -64.40451 -82.40441 94.9093 -71.1121 -85.0336 66.87921 -73.7415 -84.9526 66.9853 -65.2045 -84.8711 67.18502 -56.9872 -84.789 67.4723 -49.0726 -84.706 67.8409 -41.4431 -84.622 68.2849 -34.0816 -84.5367 68.79811 -26.9706 -79.8473 102.079 -24.2076 -79.8473 104.145 -52.2761 -81.1827 102.69 -51.4412 -82.054 100.361 -50.1526 -82.46131 97.1559 -48.4101 -79.8473 106.211 -80.3446 -81.2196 104.704 -79.3804 -82.1033 102.345 -77.8888 -82.4982 99.1345 -75.86991 -79.8473 108.278 -108.413 -81.2566 106.718 -107.32 -82.1525 104.33 -105.625 -82.53511 101.113 -103.33 -82.40441 99.0637 -127.543 -82.40441 95.4031 -77.81961 -82.40441 94.9093 -71.1121 -82.40441 94.4155 -64.40451 -82.40441 93.9217 -57.6969 -82.40441 93.4279 -50.9894 -82.40441 92.93402 -44.2818 -82.40441 92.4402 -37.5742 -82.40441 91.94641 -30.8666 -82.40441 91.4526 -24.1591 -79.8473 109.365 -123.175 -80.9192 108.409 -123.664 -81.65921 107.223 -124.252 -82.4088 104.581 -125.473 -82.5763 101.852 -126.586 -82.40441 98.6061 -121.328 -82.40441 98.1486 -115.112 -82.40441 97.691 -108.897 -82.40441 97.2334 -102.681 -82.40441 96.77581 -96.4659 -82.40441 96.3182 -90.25051 -82.40441 95.86071 -84.03511 -82.41471 91.6427 -24.2042 -82.4665 94.3912 -24.0106 -82.2607 97.13871 -23.9561 -81.57151 99.8637 -24.0393 -80.8866 101.109 -24.1228 -85.0016 49.0455 -100.829 -87.3492 56.8759 -105.964 -84.9164 53.735 -98.0604 -85.401 55.7794 -99.6186 -85.92031 57.7288 -101.483 -84.6556 57.4226 -94.3025 -85.0175 59.3022 -96.3941 -85.401 61.097 -98.6897 -84.7231 62.1558 -90.25241 -84.9239 63.7021 -92.9413 -85.1333 65.179 -95.7213 -85.11441 66.87271 -82.6157 -85.09941 70.88391 -95.82431 -84.4805 51.6795 -96.8292 -84.3572 53.4523 -94.691 -84.3256 55.5288 -92.46051 -84.3854 57.9091 -90.13771 -84.53691 60.5931 -87.72261 -84.7799 63.581 -85.2153 -85.1142 67.9584 -86.0382 -85.11251 68.9902 -89.3778 -85.108 69.96601 -92.6385 -87.02671 56.0259 -104.998 -86.7107 55.1317 -104.123 -86.4022 54.1967 -103.341 -86.10221 53.2246 -102.652 -85.8114 52.2195 -102.056 -85.5306 51.1852 -101.555 -85.2605 50.1258 -101.146 -85.19802 68.6549 -97.2019 -85.34671 66.5568 -98.5493 -85.5464 64.5924 -99.8659 -85.79821 62.7645 -101.151 -86.10321 61.0759 -102.404 -86.4626 59.5296 -103.624 -86.8776 58.1285 -104.811 -90.1308 53.2075 -108.104 -89.1169 55.2616 -107.335 -87.3492 56.8759 -105.964 -88.22731 58.6334 -108.798 -89.1025 60.07 -112.081 -87.7875 57.7933 -107.32 -88.6664 59.3931 -110.388 -89.58361 58.44 -111.012 -89.8649 56.7423 -109.978 -90.0324 54.997 -109.004 -89.7183 54.2896 -107.795 -88.32711 56.1236 -106.725 -87.3492 56.8759 -105.964 -86.4626 59.5296 -103.624 -87.0736 61.0872 -106.134 -87.7136 62.508 -108.985 -88.3586 63.7268 -112.086 -85.79821 62.7645 -101.151 -86.2447 64.248 -103.891 -86.7131 65.62841 -106.879 -87.18721 66.84761 -110.025 -85.5837 67.8216 -101.555 -85.8301 69.01731 -104.713 -86.0774 70.098 -107.936 -85.09941 70.88391 -95.82431 -84.9845 74.2053 -109.077 -89.1025 60.07 -112.081 -88.6664 59.3931 -110.388 -88.22731 58.6334 -108.798 -87.7875 57.7933 -107.32 -86.8776 58.1285 -104.811 -86.10321 61.0759 -102.404 -85.5464 64.5924 -99.8659 -85.34671 66.5568 -98.5493 -85.19802 68.6549 -97.2019 -85.0925 71.3648 -97.5506 -85.0838 71.8273 -99.2558 -85.0732 72.2712 -100.941 -85.06031 72.6963 -102.605 -85.0452 73.1024 -104.251 -85.02761 73.48941 -105.878 -89.0296 64.6249 -115.414 -89.10601 62.3756 -113.71 -85.9958 71.81021 -110.661 -87.00711 69.4151 -112.245 -88.01831 67.02 -113.83 -89.67121 46.2416 -104.787 -89.7679 48.8292 -105.489 -89.8722 51.3178 -106.558 -88.7284 48.1423 -104.059 -88.9302 50.5173 -104.85 -89.1463 52.78 -106.009 -87.3481 49.7901 -102.982 -87.7081 51.9823 -103.904 -88.0923 54.0512 -105.197 -85.0016 49.0455 -100.829 -87.3492 56.8759 -105.964 -90.1101 41.4138 -104.85 -89.8866 42.5812 -104.679 -89.5484 43.6898 -104.416 -89.0935 44.7384 -104.06 -88.52011 45.7261 -103.61 -87.82621 46.6517 -103.063 -87.00981 47.5142 -102.418 -86.06901 48.3125 -101.674 -85.2605 50.1258 -101.146 -85.5306 51.1852 -101.555 -85.8114 52.2195 -102.056 -86.10221 53.2246 -102.652 -86.4022 54.1967 -103.341 -86.7107 55.1317 -104.123 -87.02671 56.0259 -104.998 -90.1308 53.2075 -108.104 -90.1614 52.2043 -107.644 -90.1827 51.1883 -107.212 -90.1961 50.16 -106.81 -90.2034 49.1203 -106.439 -90.2059 48.0685 -106.101 -90.20401 47.0069 -105.799 -90.1979 45.9355 -105.533 -90.1876 44.8547 -105.305 -90.1646 43.3008 -105.048 -88.32711 56.1236 -106.725 -89.1169 55.2616 -107.335 -89.7183 54.2896 -107.795 -90.1784 44.2441 -105.191 -90.1873 44.8359 -105.301 -89.0296 64.6249 -115.414 -84.9845 74.2053 -109.077 -84.5389 76.7022 -125.067 -84.9089 75.0392 -113.239 -84.8105 75.7332 -117.286 -84.6876 76.2871 -121.227 -86.2009 73.7432 -122.862 -87.4654 70.7658 -120.43 -88.3832 67.7362 -117.914 -88.01831 67.02 -113.83 -87.00711 69.4151 -112.245 -85.9958 71.81021 -110.661 -84.9845 74.2053 -109.077 -85.11441 66.87271 -82.6157 -84.7642 83.65702 -122.641 -84.9281 82.9234 -114.372 -85.0022 81.6821 -105.718 -84.9911 79.3241 -93.8133 -84.3917 89.7078 -126.77 -84.5175 89.4524 -118.965 -84.5778 88.86911 -110.935 -84.57801 87.94741 -102.649 -84.50701 86.2532 -91.44841 -84.3883 84.03221 -79.62191 -83.6926 94.5777 -123.246 -83.73101 94.21791 -115.571 -83.73651 93.6941 -107.785 -83.7121 93.00101 -99.8693 -83.6448 91.8528 -89.37701 -82.40441 99.0637 -127.543 -82.40441 95.4031 -77.81961 -83.5536 90.4412 -78.5719 -84.6878 80.28501 -80.2587 -84.9086 76.17601 -80.9699 -85.0508 71.7053 -81.7555 -82.40441 98.6061 -121.328 -82.40441 98.1486 -115.112 -82.40441 97.691 -108.897 -82.40441 97.2334 -102.681 -82.40441 96.77581 -96.4659 -82.40441 96.3182 -90.25051 -82.40441 95.86071 -84.03511 -85.1142 67.9584 -86.0382 -85.11251 68.9902 -89.3778 -85.108 69.96601 -92.6385 -85.09941 70.88391 -95.82431 -85.0925 71.3648 -97.5506 -85.0838 71.8273 -99.2558 -85.0732 72.2712 -100.941 -85.06031 72.6963 -102.605 -85.0452 73.1024 -104.251 -85.02761 73.48941 -105.878 -84.9089 75.0392 -113.239 -84.8105 75.7332 -117.286 -84.6876 76.2871 -121.227 -84.5389 76.7022 -125.067 -84.5728 79.2311 -126.58 -84.5932 81.9317 -127.759 -84.5739 84.76601 -128.569 -84.47702 87.6808 -128.997 -84.2593 90.61402 -129.06 -83.8732 93.5189 -128.802 -83.2713 96.3497 -128.275 + + + + + + + + + + -0.9999918 -0.003294408 -0.002351939 -0.9999944 -0.002330839 -0.002434194 -0.9999798 -0.005978226 -0.002192735 -0.9999885 -0.004180073 -0.002345025 -0.9999942 -0.002339065 -0.002491235 -0.9999961 -0.00112152 -0.002575218 -0.9999886 -0.004177927 -0.00234729 -0.9999946 -0.002165138 -0.002490401 -0.9999957 -0.00217837 -0.002000749 -0.9999973 -7.66329e-4 -0.002245247 -0.9999968 -5.28568e-4 -0.00251162 -0.9999966 -9.65907e-4 -0.002445518 -0.9999966 -4.83263e-4 -0.002571046 -0.9999969 -6.9204e-4 -0.00239855 -0.9999926 -0.003363907 -0.001880645 -0.999953 -0.009526133 -0.001797318 -0.9999645 -0.008216321 -0.001890361 -0.9999406 -0.01078003 -0.001607537 -0.9999801 -0.006025671 -0.001905679 -0.999982 -0.005596399 -0.002195417 -0.9999703 -0.007438182 -0.002087056 -0.9999635 -0.008324325 -0.00194025 -0.9999904 -0.004042804 -0.001757204 -0.9999967 -2.74099e-4 -0.002601921 -0.9999967 -2.74937e-4 -0.002587854 -0.9999968 -9.06381e-5 -0.002545833 -0.9999968 -5.86298e-4 -0.002498686 -0.9999962 -0.001132845 -0.002544939 -0.9999968 -6.05863e-5 -0.002552032 -0.9999825 -0.00549215 -0.002181053 -0.9999836 -0.005286931 -0.002246439 -0.9999932 -0.002894997 -0.002272248 -0.99999 -0.003838598 -0.0023458 -0.9999969 -9.79743e-4 -0.002352058 -0.9999946 -0.002315461 -0.002355217 -0.9999932 -0.002925455 -0.002271234 -0.9999946 -0.002178549 -0.002465963 -0.9999966 -5.03103e-4 -0.002570927 -0.9987407 0.05002093 -0.003875911 -0.9987989 0.0488916 -0.003234982 -0.9938912 0.1102662 -0.00463891 -0.9953712 0.0958901 -0.006439447 -0.8992582 0.4367651 -0.02389675 -0.9706338 0.2402779 -0.01168882 -0.9681928 0.2495254 -0.01843363 -0.9895453 0.1440492 -0.007080376 -0.9887372 0.1493925 -0.008972704 -0.9955368 0.09424334 -0.004974603 -0.9987225 0.05041676 -0.00338751 -0.5465403 0.8368403 -0.03149592 -0.7605791 0.6489078 -0.02093642 -0.7321345 0.679885 -0.04165923 -0.909485 0.4155858 -0.01120066 -0.9739859 0.2265431 -0.005462884 -0.9906892 0.1360858 -0.003967463 -0.9958305 0.09115982 -0.003418087 -0.9987367 0.05017334 -0.002807736 -0.7885555 0.6149622 -0.001312315 -0.6007335 0.7994418 -0.00350964 -0.9198414 0.3922907 0 -0.9774253 0.2112815 -9.15564e-5 -0.9919542 0.1265922 -0.001190185 -0.9962297 0.08673483 -0.001892149 -0.9987838 0.04925709 -0.002166807 -0.812254 0.58312 0.01464891 -0.6471647 0.7621009 0.01950192 -0.9292331 0.3693798 0.009186387 -0.9806938 0.195504 0.004242122 -0.9932271 0.1161842 0.00112915 -0.9966944 0.08124196 -4.88306e-4 -0.9988634 0.04764044 -0.001525938 -0.8333256 0.5519695 0.02996981 -0.683848 0.7285894 0.03885114 -0.9381803 0.3456261 0.0189827 -0.9839648 0.1781092 0.009521901 -0.9944861 0.1048016 0.003753781 -0.9972136 0.07458883 0.00125128 -0.9989875 0.04498541 -5.79866e-4 -0.6953223 0.7164722 -0.05652183 -0.4711822 0.8801057 -0.05832171 -0.9688395 0.2471464 -0.01638889 -0.8828336 0.4682585 -0.03659266 -0.3590007 0.9317904 -0.05371427 -0.4049829 0.9132409 -0.04449617 -0.4525684 0.8915252 -0.01910495 -0.5005993 0.8656648 -0.004974544 -0.512443 0.85868 0.008423209 -0.5287812 0.8486563 0.01315391 -0.9954621 0.09515756 4.27263e-4 -0.999607 0.02789402 -0.002807676 -0.9993017 0.03732424 0.001800596 -0.9995756 0.02899265 -0.002868711 -0.9995461 0.02999979 -0.002777159 -0.9995086 0.03125178 -0.002411007 -0.9995214 0.03082394 -0.002624571 -0.9995104 0.03122133 -0.002075314 -0.5543772 0.8320083 0.02069187 -0.5630201 0.8258829 0.03042769 -0.5657938 0.8238939 0.032808 -0.5938038 0.8036508 0.03927761 -0.785445 0.6177414 0.03836274 -0.8482195 0.5286838 0.03189253 -0.6043695 0.7953275 0.04681628 -0.5918001 0.804062 0.05707108 -0.6426949 0.7643427 0.05218708 -0.5746152 0.8164187 0.05725395 -0.5974805 0.7995501 0.06113058 -0.7168092 0.6958423 0.0445888 -0.9009249 0.4332191 0.02560555 -0.9928433 0.1192986 0.005493402 -0.9976772 0.06811916 1.83116e-4 -0.9955086 0.09464031 0.002472043 -0.9995253 0.03076303 -0.001678526 -0.9995916 0.02856582 -7.93496e-4 -0.9990347 0.04391658 -0.001037597 -0.9722583 0.2335348 0.0132454 -0.9874169 0.1579061 0.008575856 -0.9426175 0.3333312 0.01904398 -0.9998643 0.01641923 0.00137335 -0.9961804 0.08728516 -0.002411007 -0.9962485 0.08652013 -0.001831114 -0.999786 0.02057009 0.002227902 -0.9999139 0.01303142 0.001525878 -0.9959056 0.09039813 -3.96751e-4 -0.9999538 0.009491384 0.001586973 -0.9955971 0.09372442 0.001434385 -0.9999822 0.005737543 0.001617491 -0.9952254 0.09753876 0.003570675 -0.9999977 0.001770079 0.001220762 -0.9948017 0.1016897 0.005371332 -0.999529 -0.0298171 0.007263481 -0.9996839 -0.02371335 0.008362233 -0.9993174 -0.03637874 0.006439507 -0.9990484 -0.0432763 0.005432426 -0.9987131 -0.05053991 0.004211604 -0.9983066 -0.05810815 0.002746701 -0.9920728 0.1255541 -0.005279719 -0.9913271 0.131416 6.71424e-4 -0.9913192 0.1314454 -0.002868771 -0.9901614 0.13993 2.44153e-4 -0.9905371 0.1372457 3.05194e-4 -0.9894149 0.1450857 0.002868711 -0.993366 0.1149959 -1.83115e-4 -0.9982935 0.05825996 -0.003997921 -0.9891214 0.1470711 0.003021359 -0.9881614 0.1533254 0.005340695 -0.9880695 0.1538489 0.00701946 -0.9864622 0.1637033 0.009674489 -0.9873843 0.1582109 0.006439507 -0.9867343 0.1619634 0.01110881 -0.9851349 0.1714578 0.01055967 -0.9999324 0.01120054 -0.003143429 -0.9986418 0.05209589 7.62974e-4 -0.9888427 0.148627 0.01001018 -0.9845657 0.1745063 0.01333665 -0.9999211 0.01242119 0.001892149 -0.9997326 -0.02087479 0.009949088 -0.9988851 -0.04550373 0.01257377 -0.9985423 -0.0526753 0.0117802 -0.9981178 -0.06033563 0.01098674 -0.9991449 -0.03912585 0.01336747 -0.9991919 -0.03662276 0.01657181 -0.9989252 -0.04342883 0.01620566 -0.99759 -0.06863617 0.01016265 -0.9969331 -0.07770133 0.009338796 -0.9983911 -0.05664283 -0.002624571 -0.9994272 -0.03375369 -0.002441465 -0.9960973 -0.0878936 0.008056879 -0.9961378 -0.08774191 0.003296017 -0.9940852 -0.1082192 0.009125053 -0.9953619 0.09549248 0.01165807 -0.9989122 0.04544252 0.01046794 -0.9988374 0.04718291 0.009888231 -0.9953348 0.09592002 0.01040685 -0.9953265 0.09570854 0.01284861 -0.9989981 0.04330599 0.01129186 -0.9857613 0.1675488 0.01422178 -0.9859806 0.1663596 0.01290953 -0.9852478 0.1704796 0.01495432 -0.999175 0.03912585 0.01089543 -0.9995945 0.02676528 0.009735584 -0.9996169 0.02563589 0.01043742 -0.99961 0.02594089 0.01034581 -0.9995753 0.02743619 0.009826958 -0.9969092 0.07757973 0.01239079 -0.9996438 0.02493387 0.009521842 -0.9996712 0.02362143 0.009979605 -0.9997707 0.01806718 0.0115056 -0.9997008 0.02264481 0.009247124 -0.9998921 0.01153612 0.009094595 -0.9997438 0.02002048 0.01055955 -0.9991515 0.03979635 0.01062047 -0.9979017 0.06366205 0.01181071 -0.991504 0.1293398 0.01382511 -0.9822903 0.1867774 0.01483231 -0.9772779 0.2115573 0.01309257 -0.975016 0.2215363 0.01629704 -0.9781357 0.2074075 0.0152595 -0.9777346 0.2092376 0.01596134 -0.9775261 0.2102459 0.01547312 -0.985085 0.1713629 0.01556456 -0.994868 0.1003474 0.01297068 -0.9768504 0.2132664 0.01675486 -0.9764031 0.2153745 0.01583945 -0.9754784 0.2193704 0.01785355 -0.9746304 0.2232174 0.01641929 -0.8419023 0.5381448 0.04001063 -0.8426374 0.5371089 0.03842377 -0.7208023 0.6913512 0.04977679 -0.7220821 0.6899454 0.05072271 -0.9682782 0.249127 0.01931852 -0.9684464 0.2485817 0.01785391 -0.9986104 0.05249255 0.004669368 -0.9983111 0.0579558 0.004028499 -0.8406749 0.5398496 0.04275703 -0.7203266 0.6914854 0.05456924 -0.9679766 0.2501351 0.02130234 -0.9989398 0.04577809 0.004882991 -0.7935854 0.6067481 0.04559534 -0.9325404 0.3598502 0.02960348 -0.9876576 0.1559218 0.01486277 -0.6789655 0.7321914 0.05386674 -0.9996613 0.02588039 0.002746701 -0.9997983 -0.0200814 -3.35708e-4 -0.9998944 -0.0144965 -0.001068115 -0.9998542 -0.01696836 -0.001953184 -0.9997776 -0.02102768 -0.001648008 -0.9984786 -0.05499458 -0.004028439 -0.9992656 -0.03817969 -0.003265559 -0.9997056 -0.02420139 -0.001770079 -0.7911255 0.6100841 0.0437954 -0.929593 0.3677903 0.02423244 -0.9900062 0.1407536 0.008728384 -0.9999342 -0.01144468 -8.8506e-4 -0.6782333 0.7328631 0.05395835 -0.9995693 -0.02932906 -0.00100708 -0.9997063 -0.02417093 -0.001770079 -0.9994158 -0.03409004 -0.00250256 -0.9981887 -0.06000053 -0.00439471 -0.9992355 -0.03909534 -3.05194e-4 -0.9906615 -0.04696941 0.1279985 -0.9724107 -0.04956358 0.2279497 -0.9772333 -0.08356225 0.1950194 -0.9921199 -0.07349032 0.1014765 -0.9883646 -0.01321476 0.1515278 -0.9679351 -0.003936886 0.2511699 -0.9974739 -0.05475056 0.04525923 -0.9965915 -0.0759918 0.03210574 -0.9978144 -0.01483213 0.06439477 -0.9774136 -0.1052919 0.1832383 -0.9602897 -0.1413959 0.2405226 -0.9592487 -0.1619043 0.2315796 -0.9566658 -0.1033391 0.2722344 -0.9541602 -0.1357505 0.26674 -0.9855996 -0.09476035 0.14005 -0.9505301 -0.09155851 0.2968327 -0.9530468 -0.05218744 0.2982925 -0.9497607 0.01385575 0.3126702 -0.9473516 -0.03518879 0.3182559 -0.9380254 0.035829 0.3447097 -0.9546824 0.0423001 0.2946053 -0.9620274 0.03250294 0.2710108 -0.9716883 0.01181077 0.2359714 -0.983671 0.01370316 0.1794541 -0.9922848 -0.09128141 0.08389586 -0.994668 -0.08230912 0.06213623 -0.9960207 -0.08694881 0.01956272 -0.9968049 -0.07986766 0.001098632 -0.9978203 -0.06573802 -0.00576806 -0.9996907 -0.02487319 1.52597e-4 -0.9963897 -0.08090627 -0.02572762 -0.9927685 0.01162755 0.1194801 -0.9956207 0.02853524 0.08902382 -0.9999459 0.007934868 0.006744623 -0.9992262 0.01016283 0.03799629 -0.9992064 0.03891223 0.008514881 -0.8614445 0.3026317 0.4078326 -0.8978981 0.2361862 0.3714767 -0.8756633 0.2816332 0.3922967 -0.8207045 0.3691049 0.4361261 -0.8040284 0.3911951 0.4477777 -0.7772084 0.4140269 0.473845 -0.7836837 0.4482422 0.430022 -0.7742651 0.4167054 0.4763088 -0.7365278 0.4254117 0.525882 -0.7968936 0.3993777 0.453275 -0.7756741 0.4725276 0.4183866 -0.7773575 0.4889805 0.395744 -0.9672386 0.1457892 0.2078344 -0.9493922 0.1593409 0.270675 -0.9565839 0.09531044 0.2754329 -0.9778103 0.08478277 0.1915701 -0.9556698 0.2024626 0.2137851 -0.9451941 0.2026745 0.2559907 -0.9829499 0.1324821 0.1275076 -0.991309 0.07870775 0.1054116 -0.9672346 0.2125639 0.1388303 -0.940723 0.07678622 0.33037 -0.9410492 0.04577827 0.3351581 -0.9489062 0.06613528 0.3085501 -0.9648956 0.03982758 0.2595965 -0.9725124 0.04940992 0.2275483 -0.9840792 0.02798575 0.1755137 -0.9888435 0.04583936 0.1417298 -0.9430333 0.09827077 0.3178541 -0.9426562 0.1416105 0.3022347 -0.942313 0.1759741 0.2847448 -0.942709 0.2060964 0.2623434 -0.9409736 0.2270947 0.2509914 -0.9452597 0.2322483 0.2292269 -0.9956828 0.0255444 0.08923757 -0.9972848 0.06482332 0.03494477 -0.997154 0.03839313 0.06488382 -0.9991828 0.03979641 0.007080316 -0.9936167 0.1102357 0.02395761 -0.990265 0.1303486 0.0488311 -0.9494648 0.2873725 0.1262291 -0.9493685 0.2522737 0.1872368 -0.9795248 0.1926639 0.05841255 -0.9631094 0.2634375 0.05496418 -0.9591736 0.274333 0.06875872 -0.9341219 0.3508145 0.06592077 -0.7686293 0.1883653 0.6113327 -0.8278239 0.1507021 0.5403669 -0.7708761 0.09787398 0.6294211 -0.7214437 0.1178041 0.6823791 -0.8071118 0.2515091 0.5341477 -0.8621292 0.196725 0.4669396 -0.7253823 0.2151914 0.6538451 -0.6910132 0.1306217 0.7109422 -0.7520828 0.292068 0.5908197 -0.9453091 0.03686743 0.3240859 -0.9492299 0.04742634 0.3109877 -0.8343356 0.1027584 0.5415948 -0.7444291 0.06213748 0.664804 -0.8350458 0.1112133 0.538823 -0.7463264 0.05185276 0.6635572 -0.7033486 0.07043862 0.7073466 -0.7284218 0.06408935 0.6821248 -0.7512195 0.04736512 0.6583508 -0.8777886 0.1357792 0.4594031 -0.8810058 0.153513 0.4475071 -0.9022234 0.1768862 0.3933246 -0.8943734 0.1592201 0.4180253 -0.8598345 0.1214035 0.4959293 -0.8880542 0.2107976 0.4085635 -0.7903036 0.2909123 0.5392498 -0.8328424 0.2489157 0.4943829 -0.8836194 0.218059 0.4143273 -0.6877449 0.07489353 0.7220788 -0.6753324 0.08023536 0.7331361 -0.6671301 0.08423435 0.7401637 -0.6608397 0.08044952 0.7462029 -0.6611105 0.09113079 0.7447336 -0.6474081 0.06760048 0.7591397 -0.6752811 0.1387735 0.7243875 -0.6919891 0.1816799 0.6986728 -0.7021875 0.2278874 0.674537 -0.7552075 0.3330298 0.5645821 -0.7339016 0.3452057 0.5849972 -0.7164462 0.2672596 0.6444201 -0.7226324 0.3097999 0.6179211 -0.7312017 0.3722387 0.571649 -0.9297921 0.3469401 0.1229611 -0.9418409 0.3064699 0.1378839 -0.9418585 0.3064146 0.1378865 -0.9373387 0.3291504 0.1142641 -0.9103575 0.405051 0.08475184 -0.8910688 0.4505243 0.05499553 -0.8807706 0.4713313 0.04571706 -0.9296829 0.3587864 0.08344012 -0.9159987 0.3938178 0.0765112 -0.9323227 0.3574682 0.05468988 -0.868348 0.4947993 0.03384518 -0.8650383 0.5012791 0.02069205 -0.99373 0.1116996 0.004882991 -0.9941391 0.1079166 -0.006439566 -0.9995633 0.01992899 -0.0218212 -0.9994897 0.02932852 -0.01266527 -0.9938943 0.1092289 0.01559537 -0.9994053 0.03448641 3.0519e-5 -0.9944789 0.1024509 0.02270579 -0.9992138 0.03854513 0.009277641 -0.9714615 0.2368607 0.01263499 -0.9760428 0.2174206 0.008301258 -0.9949233 0.1000111 -0.01120048 -0.9700723 0.2420755 0.01895219 -0.972115 0.2331025 0.02560526 -0.9778824 0.2073445 0.02746689 -0.9992843 -0.02136331 -0.03122091 -0.9983188 -0.03903424 -0.04284918 -0.9994576 -0.01486259 -0.0293895 -0.9995699 -0.004608392 -0.02896285 -0.9998386 -0.002014219 -0.01785367 -0.9998746 0.004455804 -0.01519858 -0.9999323 0.003296077 -0.01117002 -0.9994992 -0.01077318 -0.02975606 -0.9994911 0.02435398 -0.02060019 -0.9999544 0.003479123 -0.00891149 -0.9999608 0.008423268 -0.002746701 -0.9998813 0.01504564 -0.003356993 -0.9999014 0.01388621 -0.002105772 -0.9999126 0.01318401 -9.76596e-4 -0.9999187 0.01275682 2.74669e-4 -0.9999174 0.0127263 0.001861631 -0.9997904 0.01910465 0.007354974 -0.9999102 0.01303142 0.00314337 -0.9999122 0.01275676 0.003601193 -0.999915 0.01245158 0.003875851 -0.9990929 0.0394302 0.01608335 -0.9978119 0.0627771 0.02075272 -0.993593 0.112644 -0.009186089 -0.9987024 0.04840302 -0.01583933 -0.9867806 0.1620575 0.001190245 -0.9531739 0.3019258 0.01733487 -0.9540588 0.2988129 0.02197372 -0.9663169 0.2572125 0.008575737 -0.9480671 0.3172126 0.0233469 -0.9468637 0.3208502 0.02246224 -0.9548579 0.295488 0.03054982 -0.9490477 0.3140094 0.026582 -0.9946388 0.09936922 0.02862662 -0.9828478 0.1821399 0.02890187 -0.962319 0.2711901 0.01995927 -0.9686211 0.2467179 0.03006148 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -79.8473 93.7044 89.5419 -79.8473 93.4797 92.5949 -79.8473 93.2549 95.64791 -80.0812 92.2922 94.096 -80.3083 91.3573 92.6183 -79.95951 93.1827 90.3594 -80.0722 92.6235 91.15161 -80.1291 92.3283 91.5344 -80.1875 92.0185 91.9097 -80.2472 91.69461 92.2726 + + + + + + + + + + -0.9736098 0.2275785 0.01709049 -0.971552 0.236189 0.01736545 -0.9722744 0.2331652 0.01779258 -0.9768898 0.2129021 0.01895242 -0.9750229 0.2212631 0.01931852 -0.9784384 0.2055148 0.02053922 -0.9764883 0.2145186 0.02127176 -0.9777669 0.2085972 0.02142429 -0.97928 0.2011784 0.02319407 -0.9787943 0.2036204 0.02237015 -0.9785323 0.2049245 0.02192413 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -79.8473 97.1577 42.6349 -79.8473 96.0059 58.2799 -79.8473 94.85411 73.9248 -80.5001 96.6383 42.8081 -80.4329 95.16841 57.4107 -80.3656 93.6985 72.0134 -81.0578 95.8806 43.0325 -80.9425 94.19931 56.6752 -80.8272 92.5179 70.3179 -81.5203 94.8844 43.3081 -81.3762 93.09851 56.0732 -81.2321 91.3125 68.83831 -81.8875 93.6499 43.635 -81.73381 91.8661 55.6048 -82.1596 92.17691 44.0132 -82.01551 90.50201 55.27 -82.33641 90.4655 44.4426 -82.2211 89.0063 55.0688 -82.1058 87.5471 65.695 -82.41801 88.5158 44.9233 -82.3508 87.37902 55.0011 -82.2835 86.24221 65.07901 -82.40441 86.3276 45.4552 -82.40441 85.62001 55.0671 -82.40441 84.9124 64.679 -81.8714 88.82711 66.5269 -81.5801 90.0823 67.5747 -80.6035 93.1113 71.13871 -80.11351 94.27941 72.9421 -79.8473 94.85411 73.9248 -79.8473 94.6542 76.6402 -79.8473 94.4543 79.3556 -79.8473 94.2544 82.0709 -79.8473 94.0545 84.7863 -79.8473 93.8546 87.5017 -80.2022 93.80601 75.2381 -80.1931 93.5506 77.8852 -80.1864 93.2874 80.5147 -80.18201 93.0163 83.1266 -80.18 92.7373 85.7209 -80.1803 92.4505 88.2977 -80.1829 92.1558 90.85691 -80.5583 92.8817 73.84191 -80.5412 92.57621 76.4226 -80.5291 92.25431 78.9666 -80.5217 91.91601 81.47401 -80.5193 91.5614 83.9447 -80.5217 91.1903 86.3788 -80.52901 90.8029 88.7762 -80.5411 90.3991 91.1369 -80.88391 91.9538 72.5766 -80.8608 91.60871 75.0991 -80.8451 91.2387 77.56591 -80.8367 90.84381 79.9769 -80.8358 90.42401 82.3321 -80.8422 89.9793 84.6316 -80.8561 89.5096 86.8754 -80.8773 89.0151 89.0634 -81.2062 90.93161 71.3393 -81.1786 90.5552 73.8073 -81.1611 90.1446 76.1986 -81.1538 89.6997 78.5132 -81.1567 89.2206 80.7511 -81.1698 88.7072 82.9124 -81.193 88.1595 84.99691 -81.2264 87.5775 87.0048 -81.5324 89.7473 70.1082 -81.50241 89.3506 72.5255 -81.4858 88.90901 74.84191 -81.4826 88.42221 77.0576 -81.4927 87.89041 79.1723 -81.5162 87.3135 81.1863 -81.5531 86.6916 83.0993 -81.6034 86.0246 84.9116 -81.8456 88.3866 68.9581 -81.81671 87.9874 71.3333 -81.80471 87.5309 73.5802 -81.8098 87.01702 75.6985 -81.832 86.44561 77.6885 -81.8712 85.8169 79.55001 -81.9274 85.1308 81.2831 -82.0007 84.3873 82.88771 -82.1361 86.7526 67.9441 -82.1136 86.3794 70.2915 -82.1124 85.93402 72.4775 -82.1327 85.4165 74.5021 -82.1744 84.8269 76.3654 -82.23751 84.1652 78.0673 -82.32201 83.4314 79.60781 -82.4279 82.6254 80.9869 -82.40441 84.9124 64.679 -82.37091 84.7056 67.2279 -82.3642 84.4084 69.5744 -82.3844 84.0207 71.7186 -82.4314 83.5427 73.6605 -82.50531 82.9742 75.4 -82.60601 82.3153 76.93711 -82.7336 81.566 78.2719 -82.888 80.7262 79.40441 -82.3843 84.8203 65.9787 -82.27101 85.7312 67.5105 -82.15541 86.9122 66.7099 -82.28791 85.8714 66.2712 -82.3642 84.5683 68.4264 -82.25531 85.3899 69.8528 -82.1222 86.57501 69.138 -82.2602 85.5707 68.7044 -82.371 84.2259 70.6718 -82.2638 84.9673 72.0132 -82.1103 86.16571 71.4047 -82.2565 85.1887 70.95571 -82.4046 83.79301 72.7148 -82.29631 84.4635 73.9918 -82.11991 85.68431 73.51 -82.277 84.7255 73.0252 -82.46501 83.2698 74.5555 -82.35301 83.87831 75.7884 -82.1509 85.1307 75.45391 -82.3216 84.18101 74.91281 -82.5523 82.6561 76.1938 -82.4338 83.2119 77.4033 -82.2033 84.5051 77.23651 -82.39041 83.5553 76.6186 -82.6665 81.9519 77.6298 -82.53881 82.4643 78.8362 -82.2771 83.8073 78.8577 -82.4833 82.8483 78.1425 -82.80751 81.1574 78.86351 -82.6678 81.6354 80.0874 -82.3723 83.0374 80.3175 -82.60031 82.06 79.4845 -80.11351 94.27941 72.9421 -80.3656 93.6985 72.0134 -80.6035 93.1113 71.13871 -80.8272 92.5179 70.3179 -81.2321 91.3125 68.83831 -81.5801 90.0823 67.5747 -81.8714 88.82711 66.5269 -82.1058 87.5471 65.695 -82.2835 86.24221 65.07901 -80.3083 91.3573 92.6183 -80.0722 92.6235 91.15161 -79.8473 93.7044 89.5419 + + + + + + + + + + -0.8707484 0.4894393 0.04739654 -0.8418046 0.5378662 0.0454427 -0.621434 0.7793409 0.08029627 -0.6914731 0.7177501 0.08185243 -0.9194846 0.3898836 0.05038726 -0.8381909 0.5398921 0.07715356 -0.9522336 0.3012562 0.04996013 -0.9212152 0.3835014 0.0654937 -0.9727327 0.2274582 0.04532068 -0.9646297 0.2586527 0.05087596 -0.9860016 0.1627873 0.0360732 -0.9861937 0.1617206 0.03561574 -0.9941548 0.104802 0.02594107 -0.9960525 0.08627754 0.02087503 -0.9983804 0.05472123 0.01556485 -0.9996109 0.02685648 0.00753808 -0.9994789 0.03091609 0.00927788 -0.99998 -0.006317377 -4.57782e-4 -0.9257762 0.3768233 0.03070253 -0.9244272 0.3803305 0.0279861 -0.9455112 0.3231969 0.0394001 -0.9658309 0.2549547 0.04657179 -0.955544 0.291302 0.0455951 -0.9393972 0.3406501 0.03860616 -0.9746286 0.2196767 0.04290986 -0.9827966 0.1804271 0.03946077 -0.9941768 0.1067239 0.01492363 -0.9894639 0.1416702 0.0298478 -0.9960465 0.08859646 0.006500482 -0.9525128 0.3028142 0.03198438 -0.9503589 0.3098279 0.02871829 -0.9415204 0.3355292 0.03097707 -0.9445919 0.3264306 0.03448635 -0.9592487 0.2809597 0.03006136 -0.9578014 0.2862051 0.02652078 -0.9648793 0.261179 0.02816873 -0.963956 0.2649391 0.02441549 -0.9695603 0.2434811 0.02588015 -0.966104 0.2574568 0.01895219 -0.9604689 0.2757102 0.03851515 -0.9556319 0.2916765 0.04114049 -0.9654024 0.2581588 0.03677517 -0.9695957 0.2422005 0.03497499 -0.9730964 0.228007 0.033113 -0.9759755 0.2156186 0.03131276 -0.9740551 0.2248054 0.0260635 -0.978309 0.2050249 0.02960318 -0.9771376 0.2110717 0.02551412 -0.9671458 0.2505912 0.04281806 -0.9634671 0.264237 0.04370373 -0.9705498 0.2373194 0.04138439 -0.9734994 0.2252007 0.03979694 -0.9759909 0.2144555 0.03808742 -0.9780687 0.2050868 0.03634792 -0.9797614 0.1971547 0.0346089 -0.980373 0.1944997 0.03222841 -0.9790739 0.2017293 0.02682602 -0.972953 0.2265747 0.04501581 -0.970395 0.2372273 0.0453518 -0.9749829 0.2178734 0.04403853 -0.9767869 0.2098782 0.04287898 -0.9783516 0.2027385 0.0415365 -0.979666 0.1965741 0.04016321 -0.9807442 0.1914183 0.03872925 -0.9811885 0.189493 0.03689754 -0.9784021 0.2018513 0.04455739 -0.9775879 0.2056987 0.04483252 -0.9791342 0.1983721 0.04409962 -0.9797956 0.1952022 0.0435512 -0.9803801 0.1923893 0.04290914 -0.9808802 0.1899806 0.04220771 -0.9812818 0.1880589 0.04147547 -0.9815254 0.1869906 0.04052937 -0.9839563 0.1738655 0.04001009 -0.9843873 0.171272 0.0405901 -0.9834666 0.1766425 0.03988796 -0.9829423 0.1795158 0.03998053 -0.9824079 0.1823512 0.04028511 -0.9818899 0.1850066 0.04080396 -0.9815164 0.186761 0.04178333 -0.9814999 0.1867743 0.04211264 -0.9815116 0.1868442 0.04152327 -0.9815074 0.1868216 0.04172658 -0.9895325 0.1407557 0.0318318 -0.9888289 0.1458522 0.03073304 -0.9900365 0.1371524 0.03189235 -0.988223 0.1498463 0.03100687 -0.9873899 0.1554041 0.03018355 -0.9867081 0.159553 0.03082412 -0.9857751 0.1652928 0.03042775 -0.9850316 0.169472 0.03149557 -0.9840348 0.1751504 0.03158748 -0.983283 0.1790534 0.0330823 -0.9822868 0.1843352 0.03366249 -0.981574 0.1877512 0.03552377 -0.9806473 0.1923328 0.03659266 -0.9814112 0.1873888 0.04144525 -0.980029 0.1950474 0.03872871 -0.9795305 0.1972733 0.04004061 -0.9812593 0.1881214 0.04171997 -0.9957343 0.09027433 0.0190742 -0.994118 0.1055644 0.02420133 -0.9946008 0.1007723 0.02478104 -0.9961469 0.08527064 0.02050888 -0.9910668 0.1293996 0.03228884 -0.9944316 0.1043445 0.01477116 -0.992743 0.118321 0.02148514 -0.9934813 0.1116991 0.02276706 -0.9951428 0.09699028 0.01684665 -0.9926081 0.1208257 0.01141417 -0.9909364 0.1328817 0.01968502 -0.9918953 0.1254022 0.02044767 -0.9935846 0.1123414 0.0130012 -0.9902009 0.1393209 0.009583055 -0.9886875 0.1487487 0.01925736 -0.9898646 0.1406942 0.01931869 -0.9914785 0.1298593 0.01034599 -0.9871995 0.1591873 0.009827077 -0.9860362 0.16526 0.02053922 -0.9874042 0.1569885 0.01968455 -0.9887653 0.1491785 0.009430468 -0.9837359 0.1791746 0.01266521 -0.983142 0.1812834 0.02383536 -0.9846048 0.1734091 0.02197366 -0.9855168 0.1692274 0.01089525 -0.9801017 0.1976439 0.01837271 -0.9802451 0.1956278 0.02914577 -0.9816734 0.1887598 0.02621579 -0.9819179 0.1886988 0.01516789 -0.9774895 0.2091764 0.02755856 -0.9782106 0.2044195 0.03628766 -0.9788843 0.2018195 0.03247177 -0.9783341 0.2058173 0.02240061 -0.9321132 0.3603996 0.03573781 -0.9349578 0.3528637 0.03662312 -0.9454655 0.3231411 0.04092669 -0.9539716 0.2963727 0.04583996 -0.9710474 0.2378025 0.02273648 -0.975323 0.2193393 0.02520859 -0.9783653 0.2055428 0.02352982 -0.9618167 0.2696078 0.04712182 -0.9707766 0.2352094 0.04764002 -0.9786159 0.2006 0.04550349 -0.9849861 0.1677351 0.04083508 -0.9903244 0.1343159 0.03488367 -0.9944868 0.1012004 0.02746695 -0.9962249 0.0841403 0.02136313 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

4 0 0 1 1 1 0 2 2 4 0 3 0 2 4 3 3 5 7 4 6 4 0 7 3 3 8 7 4 9 3 3 10 6 5 11 10 6 12 7 4 13 6 5 14 10 6 15 6 5 16 9 7 17 13 8 18 10 6 19 9 7 20 13 8 21 9 7 22 12 9 23 15 10 24 13 8 25 12 9 26 15 10 27 12 9 28 14 11 29 17 12 30 15 10 31 14 11 32 17 12 33 14 11 34 16 13 35 20 14 36 17 12 37 16 13 38 20 14 39 16 13 40 19 15 41 23 16 42 20 14 43 19 15 44 23 16 45 19 15 46 22 17 47 1 1 48 28 18 49 2 19 50 4 0 51 28 18 52 1 1 53 7 4 54 27 20 55 4 0 56 10 6 57 11 21 58 8 22 59 10 6 60 8 22 61 7 4 62 4 0 63 5 23 64 28 18 65 7 4 66 8 22 67 27 20 68 27 20 69 5 23 70 4 0 71 26 24 72 11 21 73 10 6 74 26 24 75 10 6 76 13 8 77 13 8 78 15 10 79 25 25 80 13 8 81 25 25 82 26 24 83 20 14 84 21 26 85 18 27 86 20 14 87 18 27 88 17 12 89 23 16 90 24 28 91 21 26 92 23 16 93 21 26 94 20 14 95 15 10 96 17 12 97 18 27 98 15 10 99 18 27 100 25 25 101 36 29 102 31 30 103 30 31 104 36 29 105 30 31 106 35 32 107 37 33 108 32 34 109 31 30 110 37 33 111 31 30 112 36 29 113 38 35 114 33 36 115 32 34 116 38 35 117 32 34 118 37 33 119 39 37 120 34 38 121 33 36 122 39 37 123 33 36 124 38 35 125 43 39 126 36 29 127 35 32 128 43 39 129 35 32 130 42 40 131 44 41 132 37 33 133 36 29 134 44 41 135 36 29 136 43 39 137 45 42 138 38 35 139 37 33 140 45 42 141 37 33 142 44 41 143 46 43 144 39 37 145 38 35 146 46 43 147 38 35 148 45 42 149 47 44 150 40 45 151 39 37 152 47 44 153 39 37 154 46 43 155 48 46 156 41 47 157 40 45 158 48 46 159 40 45 160 47 44 161 51 48 162 43 39 163 42 40 164 51 48 165 42 40 166 50 49 167 52 50 168 44 41 169 43 39 170 52 50 171 43 39 172 51 48 173 53 51 174 45 42 175 44 41 176 53 51 177 44 41 178 52 50 179 54 52 180 46 43 181 45 42 182 54 52 183 45 42 184 53 51 185 55 53 186 47 44 187 46 43 188 55 53 189 46 43 190 54 52 191 56 54 192 48 46 193 47 44 194 56 54 195 47 44 196 55 53 197 57 55 198 49 56 199 48 46 200 57 55 201 48 46 202 56 54 203 59 57 204 51 48 205 50 49 206 59 57 207 50 49 208 58 58 209 60 59 210 52 50 211 51 48 212 60 59 213 51 48 214 59 57 215 61 60 216 53 51 217 52 50 218 61 60 219 52 50 220 60 59 221 62 61 222 54 52 223 53 51 224 62 61 225 53 51 226 61 60 227 63 62 228 55 53 229 54 52 230 63 62 231 54 52 232 62 61 233 64 63 234 56 54 235 55 53 236 64 63 237 55 53 238 63 62 239 65 64 240 57 55 241 56 54 242 65 64 243 56 54 244 64 63 245 67 65 246 59 57 247 58 58 248 67 65 249 58 58 250 66 66 251 68 67 252 60 59 253 59 57 254 68 67 255 59 57 256 67 65 257 69 68 258 61 60 259 60 59 260 69 68 261 60 59 262 68 67 263 70 69 264 62 61 265 61 60 266 70 69 267 61 60 268 69 68 269 71 70 270 63 62 271 62 61 272 71 70 273 62 61 274 70 69 275 72 71 276 64 63 277 63 62 278 72 71 279 63 62 280 71 70 281 73 72 282 65 64 283 64 63 284 73 72 285 64 63 286 72 71 287 75 73 288 67 65 289 66 66 290 75 73 291 66 66 292 74 74 293 76 75 294 68 67 295 67 65 296 76 75 297 67 65 298 75 73 299 77 76 300 69 68 301 68 67 302 77 76 303 68 67 304 76 75 305 78 77 306 70 69 307 69 68 308 78 77 309 69 68 310 77 76 311 79 78 312 71 70 313 70 69 314 79 78 315 70 69 316 78 77 317 80 79 318 72 79 319 71 79 320 80 80 321 71 80 322 79 80 323 81 81 324 73 81 325 72 81 326 81 82 327 72 82 328 80 82 329 105 83 330 83 84 331 75 73 332 74 74 333 82 85 334 105 83 335 75 73 336 74 74 337 105 83 338 109 86 339 84 87 340 76 75 341 75 73 342 83 84 343 109 86 344 76 75 345 75 73 346 109 86 347 113 88 348 85 89 349 77 76 350 76 75 351 84 87 352 113 88 353 77 76 354 76 75 355 113 88 356 117 90 357 86 91 358 78 77 359 77 76 360 85 89 361 117 90 362 78 77 363 77 76 364 117 90 365 121 92 366 87 93 367 79 78 368 78 77 369 86 91 370 121 92 371 79 78 372 78 77 373 121 92 374 125 94 375 88 95 376 80 96 377 79 78 378 87 93 379 125 94 380 80 96 381 79 78 382 125 94 383 129 97 384 89 98 385 81 99 386 80 96 387 88 95 388 129 97 389 81 99 390 80 96 391 129 97 392 91 100 393 100 101 394 102 102 395 91 100 396 102 102 397 99 103 398 100 101 399 82 85 400 101 104 401 100 101 402 101 104 403 102 102 404 92 105 405 104 106 406 106 107 407 92 105 408 106 107 409 103 108 410 104 106 411 83 84 412 105 83 413 104 106 414 105 83 415 106 107 416 106 107 417 105 83 418 82 85 419 106 107 420 82 85 421 100 101 422 103 108 423 106 107 424 100 101 425 103 108 426 100 101 427 91 100 428 93 109 429 108 110 430 110 111 431 93 109 432 110 111 433 107 112 434 108 110 435 84 87 436 109 86 437 108 110 438 109 86 439 110 111 440 110 111 441 109 86 442 83 84 443 110 111 444 83 84 445 104 106 446 107 112 447 110 111 448 104 106 449 107 112 450 104 106 451 92 105 452 94 113 453 112 114 454 114 115 455 94 113 456 114 115 457 111 116 458 112 114 459 85 89 460 113 88 461 112 114 462 113 88 463 114 115 464 114 115 465 113 88 466 84 87 467 114 115 468 84 87 469 108 110 470 111 116 471 114 115 472 108 110 473 111 116 474 108 110 475 93 109 476 95 117 477 116 118 478 118 119 479 95 117 480 118 119 481 115 120 482 116 118 483 86 91 484 117 90 485 116 118 486 117 90 487 118 119 488 118 119 489 117 90 490 85 89 491 118 119 492 85 89 493 112 114 494 115 120 495 118 119 496 112 114 497 115 120 498 112 114 499 94 113 500 96 121 501 120 122 502 122 123 503 96 121 504 122 123 505 119 124 506 120 122 507 87 93 508 121 92 509 120 122 510 121 92 511 122 123 512 122 123 513 121 92 514 86 91 515 122 123 516 86 91 517 116 118 518 119 124 519 122 123 520 116 118 521 119 124 522 116 118 523 95 117 524 97 125 525 124 126 526 126 127 527 97 125 528 126 127 529 123 128 530 124 126 531 88 95 532 125 94 533 124 126 534 125 94 535 126 127 536 126 127 537 125 94 538 87 93 539 126 127 540 87 93 541 120 122 542 123 128 543 126 127 544 120 122 545 123 128 546 120 122 547 96 121 548 98 129 549 128 130 550 130 131 551 98 129 552 130 131 553 127 132 554 128 130 555 89 98 556 129 97 557 128 130 558 129 97 559 130 131 560 130 131 561 129 97 562 88 95 563 130 131 564 88 95 565 124 126 566 127 132 567 130 131 568 124 126 569 127 132 570 124 126 571 97 125 572 29 133 573 131 134 574 35 32 575 29 133 576 35 32 577 30 31 578 35 32 579 131 134 580 132 135 581 42 40 582 35 32 583 132 135 584 42 40 585 132 135 586 133 136 587 39 37 588 40 45 589 142 137 590 39 37 591 142 137 592 34 38 593 41 47 594 141 138 595 40 45 596 142 137 597 40 45 598 141 138 599 41 47 600 48 46 601 49 56 602 41 47 603 49 56 604 140 139 605 141 138 606 41 47 607 140 139 608 50 49 609 42 40 610 133 136 611 50 49 612 133 136 613 134 140 614 135 141 615 136 142 616 66 66 617 135 141 618 66 66 619 58 58 620 134 140 621 135 141 622 58 58 623 134 140 624 58 58 625 50 49 626 74 74 627 137 143 628 138 144 629 139 145 630 90 146 631 99 103 632 139 145 633 99 103 634 102 102 635 138 144 636 139 145 637 102 102 638 138 144 639 102 102 640 101 104 641 136 142 642 137 143 643 74 74 644 136 142 645 74 74 646 66 66 647 74 74 648 101 104 649 82 85 650 101 104 651 74 74 652 138 144 653

+
+
+
+ + + + -90.8398 31.05 96.677 -90.8398 27.3919 96.8418 -90.8398 23.6483 97.35601 -90.8398 19.8666 98.2444 -90.8398 16.1015 99.5231 -90.92411 35.2048 93.9816 -90.9628 31.9317 93.8704 -91.0027 28.602 94.0772 -91.04301 25.2572 94.62371 -91.02201 33.8185 90.3673 -90.86911 32.8851 96.07611 -90.8869 34.6991 95.4995 -90.89321 36.4917 94.9472 -90.8879 38.2629 94.4195 -90.871 40.0125 93.9165 -90.8422 41.7402 93.4385 -90.8016 43.446 92.98561 -90.749 45.1296 92.5581 -90.88311 39.475 91.4574 -90.9486 36.6486 90.9025 -90.8398 70.37751 126.954 -90.8398 69.4023 123.793 -90.8398 68.1499 120.669 -90.8398 66.6208 117.619 -90.8398 64.8213 114.677 -90.8398 62.7642 111.88 -90.8398 60.4681 109.26 -90.8398 57.9572 106.847 -90.8398 55.2604 104.666 -90.8398 52.41 102.736 -90.8398 49.4408 101.071 -90.8398 46.3885 99.6795 -90.8398 43.2885 98.5616 -90.8398 40.1748 97.7136 -90.8398 37.0789 97.1262 -90.8398 34.0291 96.7862 -90.8398 31.05 96.677 -90.4158 75.9525 127.024 -90.4217 75.2214 123.944 -90.43201 74.2302 120.877 -90.4469 72.9774 117.855 -90.46601 71.4665 114.908 -90.48902 69.7059 112.067 -90.5157 67.7092 109.362 -90.5456 65.4945 106.821 -90.5782 63.084 104.467 -90.6129 60.5034 102.322 -90.6491 57.7809 100.4 -90.6864 54.9461 98.7145 -90.7242 52.0292 97.2704 -90.7619 49.0602 96.0701 -90.7989 46.0677 95.1109 -90.83501 43.0785 94.3864 -89.7204 80.8174 127.157 -89.7265 80.2827 124.203 -89.7419 79.5085 121.24 -89.7663 78.4927 118.292 -89.7995 77.23661 115.387 -89.8409 75.74591 112.551 -89.8899 74.0299 109.809 -89.9458 72.1019 107.188 -90.0076 69.9783 104.709 -90.0744 67.67881 102.392 -90.1453 65.2252 100.256 -90.2191 62.6412 98.3127 -90.2949 59.9514 96.5737 -88.7535 84.9721 127.353 -88.7564 84.5915 124.57 -88.7731 83.9954 121.754 -88.8033 83.18151 118.927 -88.84661 82.1502 116.109 -88.9022 80.9049 113.323 -88.9694 79.4519 110.592 -89.04721 77.8004 107.938 -89.1344 75.9622 105.38 -89.2298 73.9514 102.939 -89.332 71.7844 100.63 -89.4397 69.4788 98.4708 -89.5514 67.05371 96.4724 -88.1682 86.7831 127.475 -88.1688 86.4653 124.794 -88.18531 85.9452 122.068 -88.2174 85.2205 119.317 -88.26461 84.2913 116.559 -88.32601 83.1602 113.816 -88.4009 81.8323 111.108 -88.48801 80.3152 108.454 -88.58631 78.6185 105.874 -88.6942 76.75402 103.388 -88.8105 74.7353 101.011 -88.9335 72.5776 98.7588 -89.0617 70.29701 96.64521 -87.5151 88.41661 127.612 -87.5132 88.1531 125.044 -87.5292 87.70101 122.419 -87.5627 87.0582 119.755 -87.6131 86.2248 117.069 -87.67961 85.2027 114.379 -87.7612 83.99591 111.704 -87.8567 82.6104 109.063 -87.9648 81.054 106.473 -88.08401 79.3365 103.953 -88.21302 77.46891 101.519 -88.3499 75.4639 99.1856 -88.4933 73.3349 96.9673 -86.7941 89.8726 127.766 -86.78981 89.6553 125.321 -86.8052 89.2639 122.808 -86.8398 88.69651 120.241 -86.89302 87.95301 117.636 -86.9638 87.0349 115.01 -87.0512 85.9451 112.38 -87.1539 84.6884 109.763 -87.2706 83.27101 107.175 -87.39981 81.7007 104.634 -87.5399 79.9864 102.154 -87.6893 78.1382 99.7508 -87.8461 76.1672 97.4386 -86.00531 91.1511 127.935 -85.9989 90.9728 125.624 -86.0138 90.6353 123.233 -86.0494 90.1371 120.774 -86.1049 89.47801 118.261 -86.1794 88.6589 115.711 -86.2718 87.6823 113.136 -86.3806 86.5516 110.554 -86.5046 85.2717 107.98 -86.6422 83.8486 105.428 -86.7918 82.2891 102.915 -86.9517 80.6012 100.454 -87.1201 78.7938 98.05931 -85.1486 92.25201 128.12 -85.1406 92.10601 125.954 -85.1553 91.8163 123.694 -85.1919 91.3816 121.354 -85.24961 90.8017 118.944 -85.3272 90.0773 116.478 -85.4236 89.21 113.971 -85.5375 88.2025 111.435 -85.6674 87.0583 108.885 -85.8118 85.7818 106.336 -85.969 84.3782 103.801 -86.1374 82.8536 101.295 -86.3152 81.2145 98.8296 -86.5008 79.4683 96.41901 -84.2241 93.1753 128.32 -84.2153 93.0557 126.31 -84.2302 92.8082 124.193 -84.26802 92.4318 121.98 -84.3276 91.9263 119.683 -84.4079 91.2922 117.313 -84.5076 90.5306 114.882 -84.6254 89.64331 112.404 -84.7597 88.6328 109.891 -84.90911 87.5022 107.356 -85.07201 86.2551 104.812 -85.2466 84.8958 102.272 -85.4314 83.4291 99.7495 -85.6245 81.8603 97.2558 -83.2317 93.92121 128.537 -83.2231 93.8226 126.692 -83.23902 93.6122 124.727 -83.2783 93.2893 122.652 -83.3398 92.8539 120.477 -83.4223 92.30601 118.213 -83.5245 91.6465 115.871 -83.64501 90.87651 113.461 -83.78231 89.9974 110.996 -83.9349 89.0114 108.487 -84.1012 87.9209 105.947 -84.2796 86.7285 103.387 -84.4685 85.4375 100.819 -84.6661 84.0514 98.25502 -84.8708 82.5739 95.7063 -82.1714 94.4895 128.769 -82.1644 94.40721 127.1 -82.1821 94.2294 125.297 -82.2233 93.9559 123.37 -82.2867 93.58631 121.327 -82.371 93.12091 119.179 -82.47502 92.5599 116.935 -82.597 91.9041 114.605 -82.7358 91.1542 112.199 -82.88961 90.3114 109.729 -83.0571 89.3769 107.205 -83.23661 88.35231 104.638 -83.4265 87.2395 102.039 -83.6252 86.0404 99.41761 -83.8312 84.7573 96.7858 -81.0433 94.88021 129.017 -81.0393 94.81021 127.534 -81.0598 94.6612 125.903 -81.1035 94.43301 124.133 -81.16901 94.1257 122.232 -81.2549 93.73902 120.209 -81.3599 93.2733 118.073 -81.4823 92.7286 115.834 -81.6208 92.1052 113.5 -81.77391 91.40361 111.081 -81.9401 90.6243 108.586 -82.1177 89.7679 106.025 -82.3054 88.83501 103.408 -82.50151 87.8266 100.744 -82.7046 86.7433 98.04351 -82.913 85.58641 95.3152 -79.8473 95.0935 129.28 -79.84801 95.03221 127.994 -79.8726 94.9085 126.545 -79.9196 94.7224 124.941 -79.9874 94.4738 123.191 -80.0747 94.1626 121.303 -80.1799 93.7887 119.286 -80.3016 93.35202 117.148 -80.4382 92.8524 114.897 -80.5884 92.2899 112.541 -80.75051 91.6644 110.088 -80.9233 90.9757 107.548 -81.10511 90.2238 104.928 -81.2945 89.4086 102.236 -81.4901 88.5301 99.4812 -81.6903 87.5881 96.6715 -81.8936 86.5825 93.8151 -90.749 45.1296 92.5581 -90.8016 43.446 92.98561 -90.8422 41.7402 93.4385 -90.871 40.0125 93.9165 -90.8879 38.2629 94.4195 -90.89321 36.4917 94.9472 -90.8869 34.6991 95.4995 -90.86911 32.8851 96.07611 -83.0841 84.9945 94.2889 -84.2006 83.3344 94.6904 -85.21611 81.5959 95.0246 -86.1146 79.78302 95.2918 -86.8911 77.9078 95.4933 -87.5526 75.9834 95.63101 -88.11071 74.0237 95.7082 -88.5794 72.0393 95.72911 -88.9121 70.3706 95.70671 -89.20011 68.6875 95.65081 -89.44802 66.9992 95.5642 -89.6606 65.31501 95.4496 -89.84391 63.6291 95.30902 -90.00201 61.9371 95.1439 -90.13771 60.2455 94.957 -90.2537 58.5605 94.75051 -90.35311 56.8776 94.52571 -90.4384 55.1925 94.2835 -90.5113 53.5091 94.026 -90.5735 51.8313 93.7551 -90.6271 50.1535 93.4713 -90.6733 48.4772 93.1762 -90.7135 46.8026 92.8714 -90.5275 54.7215 95.29911 + + + + + + + + + + -0.9992797 0.01187181 0.03604274 -0.9970639 0.01706022 0.07465004 -0.9986847 0.006622672 0.0508452 -0.9998479 0.008392572 0.01528978 -0.9985239 0.01712119 0.05154675 -0.9933038 0.03647023 0.1096245 -0.9954575 0.02716159 0.09125077 -0.9928908 0.03827142 0.1127085 -0.9984033 0.002533078 0.05642986 -0.9996389 -0.001586914 0.0268259 -0.9996997 -6.10373e-5 0.02450644 -0.9997331 0.007599115 0.0218209 -0.9999164 0.01080363 0.007110834 -0.999653 0.01928806 0.01794523 -0.999759 0.01077306 -0.01913511 -0.9982135 0.007568657 -0.05926775 -0.9928364 3.05188e-4 -0.1194809 -0.9997548 0.01532071 -0.01599216 -0.9992775 0.0195015 0.0326246 -0.9995097 0.0182811 0.02542263 -0.9940716 0.1053828 -0.02676534 -0.9972378 0.07028514 -0.0240184 -0.9970959 0.07336837 -0.02041739 -0.9933665 0.1126155 -0.02325552 -0.9944094 0.1003779 -0.03277766 -0.9974507 0.0654326 -0.02847415 -0.994783 0.09463804 -0.03808712 -0.9976741 0.06003135 -0.03228932 -0.99519 0.08823001 -0.0425738 -0.997911 0.05414074 -0.03524947 -0.9956271 0.08124202 -0.04611444 -0.9981554 0.04788434 -0.03732472 -0.996087 0.07382601 -0.0485866 -0.9984077 0.0413841 -0.03833216 -0.9965659 0.06610405 -0.04986792 -0.9986639 0.03476077 -0.03823989 -0.9970521 0.05826056 -0.0499289 -0.9989192 0.02823013 -0.03692805 -0.9975413 0.05041724 -0.04867762 -0.9991669 0.02197378 -0.03439509 -0.9980167 0.0428493 -0.04611486 -0.9994043 0.01611399 -0.03051894 -0.9984681 0.03570753 -0.04226917 -0.9996206 0.01089525 -0.02530026 -0.9984456 0.03161722 -0.04589992 -0.9998036 0.006470024 -0.01873868 -0.9992093 0.02362138 -0.03198343 -0.9999369 0.003082454 -0.01080381 -0.9996518 0.01760947 -0.01965427 -0.9999986 9.15582e-4 -0.001464903 -0.9998759 0.01516813 -0.004272699 -0.9993559 0.003570735 0.03570759 -0.9828355 0.1808864 -0.03625661 -0.9815137 0.1889721 -0.0303356 -0.9834956 0.1749331 -0.04620528 -0.9842404 0.1679465 -0.05536156 -0.9850862 0.159888 -0.06357067 -0.9860328 0.150824 -0.07065105 -0.9870674 0.1409355 -0.07638835 -0.9881809 0.1303169 -0.08072322 -0.9893512 0.1192361 -0.08346825 -0.9905574 0.1078849 -0.08459883 -0.9917677 0.09650027 -0.08417069 -0.9929491 0.0853933 -0.0822193 -0.9952369 0.07190364 -0.06583029 -0.9634279 0.2645398 -0.04272675 -0.9615593 0.2724118 -0.0345779 -0.9644744 0.2580721 -0.05646085 -0.9657219 0.2501971 -0.0691567 -0.9672107 0.240826 -0.08066189 -0.9689589 0.2299938 -0.09067296 -0.970975 0.2177559 -0.09894388 -0.973227 0.2042955 -0.1053218 -0.9756507 0.1899175 -0.1097145 -0.9781993 0.1748746 -0.1120052 -0.980771 0.1595858 -0.1123418 -0.9833022 0.1443259 -0.1108462 -0.9858359 0.1308364 -0.1049255 -0.9403668 0.3366301 -0.04889219 -0.9380956 0.3441942 -0.03882026 -0.9417006 0.3298516 -0.06631821 -0.9433827 0.3212769 -0.08252424 -0.9454867 0.3107776 -0.09732592 -0.94807 0.2982918 -0.1103869 -0.9511345 0.2839212 -0.1213753 -0.9546279 0.267894 -0.1300711 -0.9584635 0.2504732 -0.1364219 -0.9625381 0.2320663 -0.1402347 -0.9666988 0.2131468 -0.14164 -0.9708061 0.1941612 -0.1408447 -0.975081 0.1757282 -0.1354126 -0.9125338 0.4055435 -0.0530734 -0.9096069 0.4134188 -0.04123198 -0.9140952 0.3987569 -0.07364153 -0.916191 0.3898542 -0.0927788 -0.9189958 0.3785609 -0.1101745 -0.9225885 0.3647933 -0.1255245 -0.926981 0.3486173 -0.1384642 -0.9321061 0.3302443 -0.1487182 -0.9378191 0.3100427 -0.1561048 -0.9439219 0.2884655 -0.1606214 -0.9502125 0.2660351 -0.1622396 -0.9564056 0.2434198 -0.1613541 -0.9626139 0.2209607 -0.1566868 -0.8734601 0.4835466 -0.05700987 -0.8697274 0.4916288 -0.04330629 -0.8751382 0.4770457 -0.08099794 -0.8776704 0.4680116 -0.1032463 -0.881307 0.456142 -0.1234202 -0.8862619 0.4411624 -0.1411231 -0.8925536 0.4230825 -0.1560428 -0.9000609 0.4021769 -0.1677619 -0.908577 0.3788001 -0.1760633 -0.9177266 0.3535587 -0.1810367 -0.9271212 0.3271995 -0.1827202 -0.9363948 0.3003715 -0.1814986 -0.9450004 0.2750096 -0.1770426 -0.8192784 0.5701836 -0.06061041 -0.8146209 0.578249 -0.04495489 -0.8208687 0.5642653 -0.08819979 -0.8237249 0.5554878 -0.1136246 -0.8284136 0.5432115 -0.1365734 -0.8351624 0.527222 -0.1566559 -0.8440995 0.5073814 -0.1733794 -0.8550924 0.4837934 -0.1864429 -0.8676619 0.4570866 -0.1955367 -0.8812549 0.4278855 -0.2007582 -0.8952248 0.3970571 -0.2022824 -0.9089536 0.3655285 -0.2004806 -0.9218158 0.3331831 -0.1981031 -0.7457852 0.6631406 -0.06363147 -0.7402178 0.6707862 -0.04608428 -0.74683 0.6582334 -0.09473091 -0.7498815 0.6499929 -0.1232355 -0.7557125 0.6377869 -0.1487498 -0.7649102 0.6210412 -0.1709397 -0.7775121 0.5997062 -0.1892813 -0.7932314 0.5739186 -0.2034733 -0.8115165 0.5440427 -0.21321 -0.8314071 0.5108934 -0.2185183 -0.8518738 0.4754233 -0.219736 -0.8719237 0.4388306 -0.2172027 -0.8907558 0.4022089 -0.2116182 -0.6495684 0.7574533 -0.06576859 -0.6432037 0.7642756 -0.04660362 -0.6494712 0.7537846 -0.09997969 -0.6524052 0.7464649 -0.1309877 -0.6595149 0.7347746 -0.1585765 -0.6715433 0.7181765 -0.1823518 -0.6888097 0.6962562 -0.2019125 -0.7108725 0.6690315 -0.2169271 -0.7367351 0.6369066 -0.2270938 -0.7651159 0.6004648 -0.2324646 -0.794386 0.5608525 -0.2332282 -0.823059 0.5193063 -0.2299889 -0.8498793 0.4772655 -0.223434 -0.8744329 0.4359956 -0.2127791 -0.9090654 0.3638154 -0.2030725 -0.5295384 0.8456562 -0.06674546 -0.5228536 0.8511478 -0.04660266 -0.5277129 0.8431321 -0.1031864 -0.5301218 0.8369943 -0.1356892 -0.5384762 0.8264529 -0.164375 -0.5538405 0.8109076 -0.1889168 -0.5765138 0.7899063 -0.2089977 -0.6061465 0.763047 -0.2243789 -0.6414561 0.730359 -0.2347549 -0.6804571 0.6923596 -0.2400339 -0.7209043 0.6499462 -0.2405557 -0.7605974 0.6045227 -0.2367367 -0.7977448 0.5576493 -0.2294138 -0.8310476 0.5110195 -0.2195882 -0.389244 0.9187244 -0.06659322 -0.3829219 0.9226199 -0.04629731 -0.3852129 0.9169789 -0.1037346 -0.3869271 0.9119858 -0.1362698 -0.3964718 0.9031781 -0.1645582 -0.4152455 0.8899426 -0.1886092 -0.4437503 0.8716 -0.2083246 -0.4814127 0.8475537 -0.2233713 -0.5269126 0.81718 -0.2336238 -0.5779116 0.780376 -0.2388127 -0.6314074 0.7376441 -0.2391773 -0.684297 0.6902482 -0.2351489 -0.73388 0.6400659 -0.2274549 -0.7783644 0.5890532 -0.2171754 -0.7923505 0.5608592 -0.2400369 -0.85615 0.471885 -0.2105507 -0.236983 0.9692955 -0.06561666 -0.23179 0.9716563 -0.04644954 -0.2309047 0.9676575 -0.1015968 -0.2320956 0.9636622 -0.132238 -0.2429047 0.9570308 -0.1583962 -0.2648455 0.9472545 -0.1804599 -0.2986028 0.9335002 -0.1985294 -0.3438275 0.9146862 -0.212443 -0.3991565 0.8896253 -0.2219027 -0.4620514 0.8573586 -0.2268141 -0.5289542 0.8176938 -0.2271219 -0.5958861 0.7714322 -0.2231864 -0.6592899 0.7202991 -0.2156533 -0.7164636 0.6666566 -0.2055453 -0.7668758 0.611108 -0.1960831 -0.1604099 0.9852271 -0.05997055 -0.1653814 0.9851165 -0.04684633 -0.1518912 0.9839814 -0.09332591 -0.1506711 0.9810254 -0.122014 -0.1590636 0.976294 -0.146795 -0.178718 0.9694292 -0.168128 -0.2106449 0.9597133 -0.1859547 -0.2550461 0.9459627 -0.2002648 -0.3112012 0.9267061 -0.2106413 -0.3770669 0.9004743 -0.2167181 -0.449274 0.8663196 -0.2182737 -0.5234714 0.8243331 -0.215529 -0.5956751 0.7756167 -0.2087823 -0.6622301 0.7224135 -0.1989223 -0.72083 0.6673606 -0.1871734 -0.7716773 0.6108413 -0.1771638 -0.797479 0.5716946 -0.1928538 -0.998492 0.04684674 -0.02862685 -0.9965264 0.05649006 -0.06118994 -0.9983522 0.03708112 -0.0437954 -0.9992656 0.03335767 -0.01886093 -0.9992752 0.03747701 -0.006683588 -0.992913 0.09671545 -0.06906503 -0.9929043 0.1035814 -0.05841326 -0.9931649 0.0837149 -0.08133441 -0.9968672 0.06390643 -0.04660224 -0.9953483 0.06586009 -0.07031589 -0.9990394 -0.001586973 0.04379475 -0.9991126 -5.49349e-4 0.0421167 -0.9991531 0.007446527 0.04046785 -0.9989414 0.01223802 0.04434376 -0.999614 0.01113933 0.02545267 -0.9995376 0.02621603 -0.01541221 -0.9995732 0.02835166 -0.007049739 -0.999778 0.01623618 -0.01342839 -0.9999328 0.01132261 0.002533078 -0.9994189 0.02545315 -0.02267587 -0.9996152 0.02649033 0.008240044 -0.9826321 0.1423118 -0.1190866 -0.9727739 0.1844894 -0.1402669 -0.9818425 0.1533909 -0.1116098 -0.9885659 0.117589 -0.09439474 -0.9558281 0.2425048 -0.166085 -0.9402941 0.2874901 -0.1821991 -0.9684556 0.2027674 -0.1448426 -0.8992906 0.3856152 -0.206343 -0.9349827 0.3220374 -0.1486584 -0.8407104 0.5056409 -0.1937354 -0.8747557 0.4345549 -0.2143934 -0.8205783 0.5473675 -0.1644392 -0.81187 0.5664046 -0.1416087 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

6 0 0 2 1 1 1 2 2 6 0 3 1 2 4 5 3 5 7 4 6 3 5 7 2 1 8 7 4 9 2 1 10 6 0 11 8 6 12 4 7 13 3 5 14 8 6 15 3 5 16 7 4 17 1 2 18 0 8 19 10 9 20 5 3 21 11 10 22 12 11 23 1 2 24 10 9 25 11 10 26 1 2 27 11 10 28 5 3 29 13 12 30 5 3 31 12 11 32 18 13 33 6 0 34 5 3 35 5 3 36 13 12 37 14 14 38 15 15 39 16 16 40 5 3 41 5 3 42 17 17 43 18 13 44 16 16 45 17 17 46 5 3 47 9 18 48 8 6 49 7 4 50 7 4 51 19 19 52 9 18 53 6 0 54 19 19 55 7 4 56 6 0 57 18 13 58 19 19 59 15 15 60 5 3 61 14 14 62 38 20 63 21 21 64 20 22 65 38 20 66 20 22 67 37 23 68 39 24 69 22 25 70 21 21 71 39 24 72 21 21 73 38 20 74 40 26 75 23 27 76 22 25 77 40 26 78 22 25 79 39 24 80 41 28 81 24 29 82 23 27 83 41 28 84 23 27 85 40 26 86 42 30 87 25 31 88 24 29 89 42 30 90 24 29 91 41 28 92 43 32 93 26 33 94 25 31 95 43 32 96 25 31 97 42 30 98 44 34 99 27 35 100 26 33 101 44 34 102 26 33 103 43 32 104 45 36 105 28 37 106 27 35 107 45 36 108 27 35 109 44 34 110 46 38 111 29 39 112 28 37 113 46 38 114 28 37 115 45 36 116 47 40 117 30 41 118 29 39 119 47 40 120 29 39 121 46 38 122 48 42 123 31 43 124 30 41 125 48 42 126 30 41 127 47 40 128 49 44 129 32 45 130 31 43 131 49 44 132 31 43 133 48 42 134 50 46 135 33 47 136 32 45 137 50 46 138 32 45 139 49 44 140 51 48 141 34 49 142 33 47 143 51 48 144 33 47 145 50 46 146 52 50 147 35 51 148 34 49 149 52 50 150 34 49 151 51 48 152 54 52 153 38 20 154 37 23 155 54 52 156 37 23 157 53 53 158 55 54 159 39 24 160 38 20 161 55 54 162 38 20 163 54 52 164 56 55 165 40 26 166 39 24 167 56 55 168 39 24 169 55 54 170 57 56 171 41 28 172 40 26 173 57 56 174 40 26 175 56 55 176 58 57 177 42 30 178 41 28 179 58 57 180 41 28 181 57 56 182 59 58 183 43 32 184 42 30 185 59 58 186 42 30 187 58 57 188 60 59 189 44 34 190 43 32 191 60 59 192 43 32 193 59 58 194 61 60 195 45 36 196 44 34 197 61 60 198 44 34 199 60 59 200 62 61 201 46 38 202 45 36 203 62 61 204 45 36 205 61 60 206 63 62 207 47 40 208 46 38 209 63 62 210 46 38 211 62 61 212 64 63 213 48 42 214 47 40 215 64 63 216 47 40 217 63 62 218 65 64 219 49 44 220 48 42 221 65 64 222 48 42 223 64 63 224 50 46 225 49 44 226 65 64 227 67 65 228 54 52 229 53 53 230 67 65 231 53 53 232 66 66 233 68 67 234 55 54 235 54 52 236 68 67 237 54 52 238 67 65 239 69 68 240 56 55 241 55 54 242 69 68 243 55 54 244 68 67 245 70 69 246 57 56 247 56 55 248 70 69 249 56 55 250 69 68 251 71 70 252 58 57 253 57 56 254 71 70 255 57 56 256 70 69 257 72 71 258 59 58 259 58 57 260 72 71 261 58 57 262 71 70 263 73 72 264 60 59 265 59 58 266 73 72 267 59 58 268 72 71 269 74 73 270 61 60 271 60 59 272 74 73 273 60 59 274 73 72 275 75 74 276 62 61 277 61 60 278 75 74 279 61 60 280 74 73 281 76 75 282 63 62 283 62 61 284 76 75 285 62 61 286 75 74 287 77 76 288 64 63 289 63 62 290 77 76 291 63 62 292 76 75 293 78 77 294 65 64 295 64 63 296 78 77 297 64 63 298 77 76 299 80 78 300 67 65 301 66 66 302 80 78 303 66 66 304 79 79 305 81 80 306 68 67 307 67 65 308 81 80 309 67 65 310 80 78 311 82 81 312 69 68 313 68 67 314 82 81 315 68 67 316 81 80 317 83 82 318 70 69 319 69 68 320 83 82 321 69 68 322 82 81 323 84 83 324 71 70 325 70 69 326 84 83 327 70 69 328 83 82 329 85 84 330 72 71 331 71 70 332 85 84 333 71 70 334 84 83 335 86 85 336 73 72 337 72 71 338 86 85 339 72 71 340 85 84 341 87 86 342 74 73 343 73 72 344 87 86 345 73 72 346 86 85 347 88 87 348 75 74 349 74 73 350 88 87 351 74 73 352 87 86 353 89 88 354 76 75 355 75 74 356 89 88 357 75 74 358 88 87 359 90 89 360 77 76 361 76 75 362 90 89 363 76 75 364 89 88 365 91 90 366 78 77 367 77 76 368 91 90 369 77 76 370 90 89 371 93 91 372 80 78 373 79 79 374 93 91 375 79 79 376 92 92 377 94 93 378 81 80 379 80 78 380 94 93 381 80 78 382 93 91 383 95 94 384 82 81 385 81 80 386 95 94 387 81 80 388 94 93 389 96 95 390 83 82 391 82 81 392 96 95 393 82 81 394 95 94 395 97 96 396 84 83 397 83 82 398 97 96 399 83 82 400 96 95 401 98 97 402 85 84 403 84 83 404 98 97 405 84 83 406 97 96 407 99 98 408 86 85 409 85 84 410 99 98 411 85 84 412 98 97 413 100 99 414 87 86 415 86 85 416 100 99 417 86 85 418 99 98 419 101 100 420 88 87 421 87 86 422 101 100 423 87 86 424 100 99 425 102 101 426 89 88 427 88 87 428 102 101 429 88 87 430 101 100 431 103 102 432 90 89 433 89 88 434 103 102 435 89 88 436 102 101 437 104 103 438 91 90 439 90 89 440 104 103 441 90 89 442 103 102 443 106 104 444 93 91 445 92 92 446 106 104 447 92 92 448 105 105 449 107 106 450 94 93 451 93 91 452 107 106 453 93 91 454 106 104 455 108 107 456 95 94 457 94 93 458 108 107 459 94 93 460 107 106 461 109 108 462 96 95 463 95 94 464 109 108 465 95 94 466 108 107 467 110 109 468 97 96 469 96 95 470 110 109 471 96 95 472 109 108 473 111 110 474 98 97 475 97 96 476 111 110 477 97 96 478 110 109 479 112 111 480 99 98 481 98 97 482 112 111 483 98 97 484 111 110 485 113 112 486 100 99 487 99 98 488 113 112 489 99 98 490 112 111 491 114 113 492 101 100 493 100 99 494 114 113 495 100 99 496 113 112 497 115 114 498 102 101 499 101 100 500 115 114 501 101 100 502 114 113 503 116 115 504 103 102 505 102 101 506 116 115 507 102 101 508 115 114 509 117 116 510 104 103 511 103 102 512 117 116 513 103 102 514 116 115 515 119 117 516 106 104 517 105 105 518 119 117 519 105 105 520 118 118 521 120 119 522 107 106 523 106 104 524 120 119 525 106 104 526 119 117 527 121 120 528 108 107 529 107 106 530 121 120 531 107 106 532 120 119 533 122 121 534 109 108 535 108 107 536 122 121 537 108 107 538 121 120 539 123 122 540 110 109 541 109 108 542 123 122 543 109 108 544 122 121 545 124 123 546 111 110 547 110 109 548 124 123 549 110 109 550 123 122 551 125 124 552 112 111 553 111 110 554 125 124 555 111 110 556 124 123 557 126 125 558 113 112 559 112 111 560 126 125 561 112 111 562 125 124 563 127 126 564 114 113 565 113 112 566 127 126 567 113 112 568 126 125 569 128 127 570 115 114 571 114 113 572 128 127 573 114 113 574 127 126 575 129 128 576 116 115 577 115 114 578 129 128 579 115 114 580 128 127 581 130 129 582 117 116 583 116 115 584 130 129 585 116 115 586 129 128 587 132 130 588 119 117 589 118 118 590 132 130 591 118 118 592 131 131 593 133 132 594 120 119 595 119 117 596 133 132 597 119 117 598 132 130 599 134 133 600 121 120 601 120 119 602 134 133 603 120 119 604 133 132 605 135 134 606 122 121 607 121 120 608 135 134 609 121 120 610 134 133 611 136 135 612 123 122 613 122 121 614 136 135 615 122 121 616 135 134 617 137 136 618 124 123 619 123 122 620 137 136 621 123 122 622 136 135 623 138 137 624 125 124 625 124 123 626 138 137 627 124 123 628 137 136 629 139 138 630 126 125 631 125 124 632 139 138 633 125 124 634 138 137 635 140 139 636 127 126 637 126 125 638 140 139 639 126 125 640 139 138 641 141 140 642 128 127 643 127 126 644 141 140 645 127 126 646 140 139 647 142 141 648 129 128 649 128 127 650 142 141 651 128 127 652 141 140 653 143 142 654 130 129 655 129 128 656 143 142 657 129 128 658 142 141 659 146 143 660 132 130 661 131 131 662 146 143 663 131 131 664 145 144 665 147 145 666 133 132 667 132 130 668 147 145 669 132 130 670 146 143 671 148 146 672 134 133 673 133 132 674 148 146 675 133 132 676 147 145 677 149 147 678 135 134 679 134 133 680 149 147 681 134 133 682 148 146 683 150 148 684 136 135 685 135 134 686 150 148 687 135 134 688 149 147 689 151 149 690 137 136 691 136 135 692 151 149 693 136 135 694 150 148 695 152 150 696 138 137 697 137 136 698 152 150 699 137 136 700 151 149 701 153 151 702 139 138 703 138 137 704 153 151 705 138 137 706 152 150 707 154 152 708 140 139 709 139 138 710 154 152 711 139 138 712 153 151 713 155 153 714 141 140 715 140 139 716 155 153 717 140 139 718 154 152 719 156 154 720 142 141 721 141 140 722 156 154 723 141 140 724 155 153 725 157 155 726 143 142 727 142 141 728 157 155 729 142 141 730 156 154 731 158 156 732 144 157 733 143 142 734 158 156 735 143 142 736 157 155 737 160 158 738 146 143 739 145 144 740 160 158 741 145 144 742 159 159 743 161 160 744 147 145 745 146 143 746 161 160 747 146 143 748 160 158 749 162 161 750 148 146 751 147 145 752 162 161 753 147 145 754 161 160 755 163 162 756 149 147 757 148 146 758 163 162 759 148 146 760 162 161 761 164 163 762 150 148 763 149 147 764 164 163 765 149 147 766 163 162 767 165 164 768 151 149 769 150 148 770 165 164 771 150 148 772 164 163 773 166 165 774 152 150 775 151 149 776 166 165 777 151 149 778 165 164 779 167 166 780 153 151 781 152 150 782 167 166 783 152 150 784 166 165 785 168 167 786 154 152 787 153 151 788 168 167 789 153 151 790 167 166 791 169 168 792 155 153 793 154 152 794 169 168 795 154 152 796 168 167 797 170 169 798 156 154 799 155 153 800 170 169 801 155 153 802 169 168 803 171 170 804 157 155 805 156 154 806 171 170 807 156 154 808 170 169 809 172 171 810 158 156 811 157 155 812 172 171 813 157 155 814 171 170 815 175 172 816 160 158 817 159 159 818 175 172 819 159 159 820 174 173 821 176 174 822 161 160 823 160 158 824 176 174 825 160 158 826 175 172 827 177 175 828 162 161 829 161 160 830 177 175 831 161 160 832 176 174 833 178 176 834 163 162 835 162 161 836 178 176 837 162 161 838 177 175 839 179 177 840 164 163 841 163 162 842 179 177 843 163 162 844 178 176 845 180 178 846 165 164 847 164 163 848 180 178 849 164 163 850 179 177 851 181 179 852 166 165 853 165 164 854 181 179 855 165 164 856 180 178 857 182 180 858 167 166 859 166 165 860 182 180 861 166 165 862 181 179 863 183 181 864 168 167 865 167 166 866 183 181 867 167 166 868 182 180 869 184 182 870 169 168 871 168 167 872 184 182 873 168 167 874 183 181 875 185 183 876 170 169 877 169 168 878 185 183 879 169 168 880 184 182 881 186 184 882 171 170 883 170 169 884 186 184 885 170 169 886 185 183 887 187 185 888 172 171 889 171 170 890 187 185 891 171 170 892 186 184 893 188 186 894 173 187 895 172 171 896 188 186 897 172 171 898 187 185 899 190 188 900 175 172 901 174 173 902 190 188 903 174 173 904 189 189 905 191 190 906 176 174 907 175 172 908 191 190 909 175 172 910 190 188 911 192 191 912 177 175 913 176 174 914 192 191 915 176 174 916 191 190 917 193 192 918 178 176 919 177 175 920 193 192 921 177 175 922 192 191 923 194 193 924 179 177 925 178 176 926 194 193 927 178 176 928 193 192 929 195 194 930 180 178 931 179 177 932 195 194 933 179 177 934 194 193 935 196 195 936 181 179 937 180 178 938 196 195 939 180 178 940 195 194 941 197 196 942 182 180 943 181 179 944 197 196 945 181 179 946 196 195 947 198 197 948 183 181 949 182 180 950 198 197 951 182 180 952 197 196 953 199 198 954 184 182 955 183 181 956 199 198 957 183 181 958 198 197 959 200 199 960 185 183 961 184 182 962 200 199 963 184 182 964 199 198 965 201 200 966 186 184 967 185 183 968 201 200 969 185 183 970 200 199 971 202 201 972 187 185 973 186 184 974 202 201 975 186 184 976 201 200 977 203 202 978 188 186 979 187 185 980 203 202 981 187 185 982 202 201 983 206 203 984 190 188 985 189 189 986 206 203 987 189 189 988 205 204 989 207 205 990 191 190 991 190 188 992 207 205 993 190 188 994 206 203 995 208 206 996 192 191 997 191 190 998 208 206 999 191 190 1000 207 205 1001 209 207 1002 193 192 1003 192 191 1004 209 207 1005 192 191 1006 208 206 1007 210 208 1008 194 193 1009 193 192 1010 210 208 1011 193 192 1012 209 207 1013 211 209 1014 195 194 1015 194 193 1016 211 209 1017 194 193 1018 210 208 1019 212 210 1020 196 195 1021 195 194 1022 212 210 1023 195 194 1024 211 209 1025 213 211 1026 197 196 1027 196 195 1028 213 211 1029 196 195 1030 212 210 1031 214 212 1032 198 197 1033 197 196 1034 214 212 1035 197 196 1036 213 211 1037 215 213 1038 199 198 1039 198 197 1040 215 213 1041 198 197 1042 214 212 1043 216 214 1044 200 199 1045 199 198 1046 216 214 1047 199 198 1048 215 213 1049 217 215 1050 201 200 1051 200 199 1052 217 215 1053 200 199 1054 216 214 1055 218 216 1056 202 201 1057 201 200 1058 218 216 1059 201 200 1060 217 215 1061 219 217 1062 203 202 1063 202 201 1064 219 217 1065 202 201 1066 218 216 1067 220 218 1068 204 219 1069 203 202 1070 220 218 1071 203 202 1072 219 217 1073 253 220 1074 51 48 1075 50 46 1076 65 64 1077 253 220 1078 50 46 1079 247 221 1080 248 222 1081 253 220 1082 248 222 1083 51 48 1084 253 220 1085 250 223 1086 51 48 1087 249 224 1088 248 222 1089 249 224 1090 51 48 1091 52 50 1092 51 48 1093 250 223 1094 243 225 1095 65 64 1096 242 226 1097 78 77 1098 242 226 1099 65 64 1100 244 227 1101 65 64 1102 243 225 1103 246 228 1104 247 221 1105 253 220 1106 65 64 1107 244 227 1108 245 229 1109 246 228 1110 253 220 1111 245 229 1112 245 229 1113 253 220 1114 65 64 1115 36 230 1116 35 51 1117 229 231 1118 228 232 1119 229 231 1120 35 51 1121 35 51 1122 227 233 1123 228 232 1124 227 233 1125 52 50 1126 226 234 1127 52 50 1128 227 233 1129 35 51 1130 252 235 1131 52 50 1132 251 236 1133 250 223 1134 251 236 1135 52 50 1136 224 237 1137 52 50 1138 252 235 1139 52 50 1140 224 237 1141 225 238 1142 252 235 1143 222 239 1144 223 240 1145 223 240 1146 224 237 1147 252 235 1148 226 234 1149 52 50 1150 225 238 1151 91 90 1152 240 241 1153 78 77 1154 238 242 1155 239 243 1156 91 90 1157 239 243 1158 240 241 1159 91 90 1160 78 77 1161 240 241 1162 241 244 1163 238 242 1164 91 90 1165 104 103 1166 242 226 1167 78 77 1168 241 244 1169 236 245 1170 104 103 1171 117 116 1172 235 246 1173 117 116 1174 130 129 1175 236 245 1176 237 247 1177 104 103 1178 143 142 1179 144 157 1180 130 129 1181 117 116 1182 235 246 1183 236 245 1184 235 246 1185 130 129 1186 144 157 1187 238 242 1188 104 103 1189 237 247 1190 233 248 1191 144 157 1192 158 156 1193 173 187 1194 158 156 1195 172 171 1196 233 248 1197 234 249 1198 144 157 1199 231 250 1200 232 251 1201 173 187 1202 158 156 1203 232 251 1204 233 248 1205 158 156 1206 173 187 1207 232 251 1208 235 246 1209 144 157 1210 234 249 1211 203 202 1212 231 250 1213 188 186 1214 173 187 1215 188 186 1216 231 250 1217 204 219 1218 231 250 1219 203 202 1220 220 218 1221 230 252 1222 204 219 1223 231 250 1224 204 219 1225 230 252 1226 230 252 1227 220 218 1228 221 253 1229

+
+
+
+ + + + -90.5422 48.5791 89.8632 -90.6333 46.0292 88.7443 -90.7275 43.412 87.8535 -90.8236 40.7343 87.2088 -90.3135 51.9708 89.0335 -90.41571 49.5804 87.67031 -90.5214 47.1153 86.5138 -90.6296 44.5799 85.5812 -90.03041 55.2489 88.3288 -90.1427 53.0041 86.7339 -90.25901 50.6783 85.32501 -90.37841 48.2735 84.1183 -89.6923 58.412 87.7507 -89.81391 56.2996 85.9361 -89.9401 54.1004 84.2876 -90.0697 51.8148 82.8199 -89.2985 61.459 87.3005 -89.4289 59.4659 85.2778 -89.5644 57.3812 83.4019 -89.7037 55.204 81.68621 -88.8483 64.3884 86.9798 -88.9874 62.502 84.76 -89.1319 60.5203 82.6686 -89.2803 58.441 80.7172 -88.3412 67.1988 86.7901 -88.48902 65.4071 84.3837 -88.6422 63.5172 82.08802 -88.7995 61.5258 79.91281 -87.7765 69.8889 86.73291 -87.9332 68.1802 84.15 -88.0953 66.3715 81.6608 -88.2614 64.45851 79.27301 -87.1534 72.4573 86.8097 -87.31961 70.8204 84.0598 -87.4909 69.08271 81.3873 -87.6659 67.23902 78.7979 -86.4713 74.90261 87.0221 -86.6478 73.3267 84.1142 -86.82891 71.6503 81.2681 -87.013 69.8673 78.4873 -85.7296 77.2232 87.37181 -85.91751 75.69831 84.3141 -86.109 74.0738 81.3036 -86.3027 72.3434 78.3415 -84.9274 79.4178 87.8603 -85.1281 77.93402 84.6607 -85.3311 76.3529 81.4944 -85.53511 74.6674 78.3603 -84.0641 81.4848 88.48931 -84.2793 80.03302 85.15501 -84.4951 78.4871 81.8409 -84.7101 76.83921 78.5437 -83.1389 83.4226 89.2605 -83.3706 81.9943 85.79801 -83.6006 80.4758 82.3437 -83.8278 78.85881 78.8917 -81.8936 86.5825 93.8151 -82.1512 85.2298 90.1755 -82.40171 83.81681 86.5909 -82.6476 82.31871 83.00331 -82.888 80.7262 79.40441 -91.02201 33.8185 90.3673 -90.9486 36.6486 90.9025 -90.88311 39.475 91.4574 -90.8191 42.3014 92.0131 -90.749 45.1296 92.5581 -90.6833 46.8157 92.1503 -90.60511 48.4786 91.76902 -90.5142 50.1182 91.4145 -90.4107 51.7341 91.0869 -90.2943 53.3264 90.7865 -90.1649 54.8947 90.51361 -90.0226 56.4388 90.26821 -89.86701 57.9586 90.0507 -89.69831 59.4539 89.8612 -89.5161 60.9245 89.70001 -89.32051 62.3701 89.5674 -89.1114 63.7906 89.4636 -88.8885 65.1857 89.3888 -88.6518 66.5553 89.3432 -88.4012 67.899 89.32711 -88.1366 69.2168 89.3407 -87.85781 70.5084 89.3844 -87.5647 71.7736 89.4582 -87.2573 73.0121 89.5626 -86.93531 74.2238 89.6977 -86.5987 75.4084 89.8638 -86.2474 76.5656 90.06121 -85.88111 77.6953 90.2902 -85.4999 78.7971 90.55091 -85.1035 79.871 90.8437 -84.69181 80.91661 91.1689 -84.2647 81.9336 91.52671 -83.8221 82.9219 91.9174 -83.3638 83.88121 92.3413 -82.8898 84.81121 92.7987 -82.3997 85.7118 93.2899 -90.749 45.1296 92.5581 -90.5049 53.0327 93.5375 -90.5683 50.5047 92.6286 -90.2442 58.2387 94.3422 -90.3208 55.7879 93.1594 -90.3967 53.3098 92.1357 -89.9907 61.0305 94.1382 -90.0804 58.6494 92.8421 -90.1695 56.2325 91.69701 -89.69271 63.7162 94.0237 -89.7951 61.4114 92.61721 -89.8973 59.0634 91.3527 -89.35 66.29502 93.99901 -89.4647 64.0731 92.4854 -89.5796 61.8013 91.1038 -88.9475 68.85321 94.06861 -89.0744 66.7236 92.4478 -89.20201 64.5382 90.9479 -88.4676 71.43991 94.2488 -88.6067 69.4151 92.5189 -88.74691 67.3295 90.8972 -87.9124 73.9825 94.5517 -88.0629 72.07341 92.71421 -88.2152 70.09941 90.97071 -87.2742 76.4693 94.9914 -87.43521 74.68721 93.0485 -87.59851 72.8375 91.18441 -86.7152 77.2418 93.5382 -86.8881 75.52951 91.5554 -85.89511 79.7184 94.1997 -86.0755 78.1568 92.1019 -81.8936 86.5825 93.8151 -90.7135 46.8026 92.8714 -90.6733 48.4772 93.1762 -90.6271 50.1535 93.4713 -90.5735 51.8313 93.7551 -90.5113 53.5091 94.026 -90.4384 55.1925 94.2835 -90.35311 56.8776 94.52571 -90.2537 58.5605 94.75051 -90.13771 60.2455 94.957 -90.00201 61.9371 95.1439 -89.84391 63.6291 95.30902 -89.6606 65.31501 95.4496 -89.44802 66.9992 95.5642 -89.20011 68.6875 95.65081 -88.9121 70.3706 95.70671 -88.5794 72.0393 95.72911 -88.11071 74.0237 95.7082 -87.5526 75.9834 95.63101 -86.8911 77.9078 95.4933 -86.1146 79.78302 95.2918 -85.21611 81.5959 95.0246 -84.2006 83.3344 94.6904 -83.0841 84.9945 94.2889 -82.3997 85.7118 93.2899 -82.8898 84.81121 92.7987 -83.3638 83.88121 92.3413 -83.8221 82.9219 91.9174 -84.2647 81.9336 91.52671 -84.69181 80.91661 91.1689 -85.1035 79.871 90.8437 -85.4999 78.7971 90.55091 -85.88111 77.6953 90.2902 -86.2474 76.5656 90.06121 -86.5987 75.4084 89.8638 -86.93531 74.2238 89.6977 -87.2573 73.0121 89.5626 -87.5647 71.7736 89.4582 -87.85781 70.5084 89.3844 -88.1366 69.2168 89.3407 -88.4012 67.899 89.32711 -88.6518 66.5553 89.3432 -88.8885 65.1857 89.3888 -89.1114 63.7906 89.4636 -89.32051 62.3701 89.5674 -89.5161 60.9245 89.70001 -89.69831 59.4539 89.8612 -89.86701 57.9586 90.0507 -90.0226 56.4388 90.26821 -90.1649 54.8947 90.51361 -90.2943 53.3264 90.7865 -90.4107 51.7341 91.0869 -90.5142 50.1182 91.4145 -90.60511 48.4786 91.76902 -90.6833 46.8157 92.1503 -84.0816 83.1944 93.8239 + + + + + + + + + + -0.9975798 0.06054997 -0.03418141 -0.9989678 0.04257351 -0.01583915 -0.9983784 0.04797631 -0.03064137 -0.996986 0.06695806 -0.03918606 -0.9980998 0.05465984 -0.02844387 -0.9991934 0.03906434 -0.009308278 -0.9985682 0.04864662 -0.02224802 -0.9993824 0.03494447 0.003723323 -0.9959932 0.07831215 -0.04318457 -0.9951539 0.08615428 -0.04739552 -0.9967382 0.07098627 -0.03839242 -0.9974138 0.06360107 -0.03347903 -0.9938108 0.09851431 -0.05133241 -0.9926813 0.1076394 -0.0547505 -0.9948313 0.0898177 -0.0473656 -0.9957525 0.08112019 -0.04355096 -0.9908762 0.1211929 -0.05896365 -0.9894295 0.1312016 -0.06177061 -0.9922281 0.1112106 -0.05581891 -0.9934592 0.1012014 -0.05288964 -0.9869684 0.1465849 -0.06637978 -0.9849056 0.1584235 -0.06973564 -0.9887287 0.1353219 -0.06405967 -0.9903502 0.1239998 -0.06189304 -0.9818248 0.174843 -0.07382529 -0.9791815 0.1882125 -0.07602357 -0.984075 0.1623594 -0.0723598 -0.9861961 0.1496659 -0.07083493 -0.9750807 0.2063081 -0.08157718 -0.9720851 0.2199795 -0.08160728 -0.977916 0.1926656 -0.08099704 -0.980691 0.1784434 -0.08002024 -0.9662708 0.2413464 -0.08984869 -0.9626006 0.255902 -0.08896291 -0.9698029 0.2266037 -0.09018367 -0.9734233 0.2107313 -0.0896638 -0.9547858 0.2803472 -0.09894245 -0.9503552 0.2956355 -0.09708029 -0.9591194 0.2646604 -0.1002243 -0.9638568 0.2469002 -0.1001029 -0.9398071 0.3238083 -0.1091365 -0.9345329 0.3396498 -0.1062378 -0.9450785 0.3072642 -0.1114245 -0.9512952 0.2873936 -0.1115455 -0.9202706 0.37221 -0.1206722 -0.9140779 0.3883557 -0.1167966 -0.9266047 0.3550037 -0.124001 -0.9348049 0.3327209 -0.1242439 -0.8947592 0.4259857 -0.1339483 -0.8876607 0.4420145 -0.1291586 -0.9022446 0.408441 -0.1383138 -0.9131037 0.3834736 -0.1385266 -0.8614419 0.4854423 -0.1492096 -0.8530713 0.5015518 -0.1439283 -0.8701353 0.4679217 -0.1546412 -0.8845425 0.4400586 -0.1547026 -0.8403709 0.519128 -0.1558299 -0.8316539 0.5345475 -0.1503691 -0.8495999 0.5019531 -0.1619361 -0.8586483 0.4846395 -0.1668771 -0.9987596 0.03076297 -0.03915566 -0.9989867 0.03103804 -0.03259456 -0.9975485 0.03189247 -0.06228953 -0.9986742 0.03964418 -0.03283846 -0.9979193 0.0538665 -0.03543287 -0.9967902 0.06143528 -0.05133342 -0.9966033 0.06921744 -0.04461902 -0.9950443 0.08026516 -0.05868816 -0.9947221 0.08829021 -0.05227828 -0.9927308 0.1012324 -0.06509757 -0.9922168 0.1095952 -0.05911606 -0.9897027 0.1243652 -0.07086521 -0.9889184 0.133278 -0.06540292 -0.9867902 0.1470999 -0.06787347 -0.9992775 0.02887076 -0.02472019 -0.9995552 0.02945071 -0.004699885 -0.9995331 0.02832174 -0.0114752 -0.9843273 0.1618725 -0.0699799 -0.9818143 0.1749022 -0.07382452 -0.9787108 0.1907432 -0.07577842 -0.974152 0.2085397 -0.08682799 -0.9718012 0.2205337 -0.08347076 -0.9657952 0.2422575 -0.09247165 -0.9625522 0.2557528 -0.0899102 -0.9550939 0.2793715 -0.09872913 -0.9507099 0.2945427 -0.0969296 -0.9414268 0.3201773 -0.1058407 -0.9355485 0.3372918 -0.1048009 -0.9240339 0.3649502 -0.1138981 -0.9161331 0.3843621 -0.1138681 -0.9017454 0.4142651 -0.1234494 -0.8912919 0.4360322 -0.1243975 -0.8747176 0.466337 -0.131905 -0.8592954 0.4930358 -0.1361151 -0.8379914 0.5257207 -0.1462472 -0.8186209 0.5541096 -0.1510708 -0.8119243 0.5636227 -0.1520145 -0.9955465 0.05847358 -0.07394647 -0.9974518 0.04400831 -0.0561549 -0.9967197 0.05020374 -0.06347948 -0.9948899 0.06552433 -0.07681638 -0.9921981 0.08398783 -0.09213638 -0.9937232 0.0743438 -0.08359098 -0.9906485 0.09442591 -0.09848499 -0.9935045 0.07483172 -0.08572691 -0.9886319 0.1052905 -0.1073352 -0.9866226 0.117285 -0.1132259 -0.9903884 0.09464097 -0.1008669 -0.984012 0.1293684 -0.1224102 -0.9815254 0.1429515 -0.1271731 -0.9860905 0.1177718 -0.1172834 -0.9779108 0.1574155 -0.1375172 -0.9753944 0.1716096 -0.1384047 -0.9808233 0.1436229 -0.131751 -0.9697395 0.1906518 -0.1525031 -0.965229 0.2083237 -0.157906 -0.9742404 0.1733807 -0.1442041 -0.9588376 0.2295008 -0.1672121 -0.9520825 0.2510829 -0.1746318 -0.9649372 0.2096694 -0.1579082 -0.9442793 0.2751871 -0.1805791 -0.9318447 0.3052537 -0.1961778 -0.9526 0.2517235 -0.1708472 -0.9360493 0.300765 -0.1826258 -0.9262881 0.3248463 -0.1909586 -0.9114078 0.3656557 -0.1887639 -0.8937238 0.3932702 -0.2158622 -0.9955292 0.05945092 -0.07339811 -0.9925796 0.06558597 -0.1023923 -0.9935885 0.07642048 -0.08331781 -0.9917872 0.08459961 -0.09592229 -0.9977504 0.03982698 -0.05392664 -0.9965584 0.04419106 -0.07013201 -0.9966452 0.05169844 -0.06344813 -0.9839739 0.1292799 -0.1228098 -0.9879827 0.1104778 -0.1080973 -0.9735723 0.1678878 -0.1548254 -0.9814912 0.1435919 -0.1267149 -0.9700312 0.1871149 -0.1550084 -0.989907 0.09955221 -0.1008645 -0.9639704 0.2125031 -0.1600106 -0.9987273 0.02894186 -0.04130727 -0.997553 0.03537184 -0.06030607 -0.9985811 0.03332668 -0.04153633 -0.9985405 0.03296011 -0.04278713 -0.9971473 0.04638886 -0.05954253 -0.9981807 0.03799599 -0.04681593 -0.996358 0.05404937 -0.06595182 -0.996053 0.06250315 -0.06302201 -0.9939965 0.07055938 -0.08362144 -0.9924176 0.0820046 -0.09155702 -0.9888814 0.1034599 -0.106817 -0.9907996 0.09094661 -0.1002244 -0.9865485 0.1158796 -0.1152998 -0.9855794 0.1258602 -0.1131033 -0.9812694 0.1424615 -0.1296741 -0.9542208 0.2455288 -0.1708173 -0.9406656 0.2827612 -0.1876021 -0.9710748 0.1873602 -0.1480203 -0.9748914 0.1696843 -0.1442011 -0.9213218 0.3348901 -0.197522 -0.9616066 0.2228224 -0.1601966 -0.9668886 0.2019781 -0.1559852 -0.9018422 0.3811237 -0.2035325 -0.8615949 0.4372218 -0.2578589 -0.9354919 0.3047299 -0.1788705 -0.9458424 0.2764099 -0.1702345 -0.864318 0.4674538 -0.1855837 -0.8581477 0.4681999 -0.2106456 -0.8314579 0.5276418 -0.1739884 -0.9079442 0.3847241 -0.1662071 -0.9234516 0.3711751 -0.09729534 -0.9498123 0.2620667 -0.1708148 -0.9572064 0.237623 -0.1652008 -0.8611993 0.4753718 -0.1798819 -0.9801917 0.1531158 -0.1256178 -0.9195532 0.3457556 -0.1867489 -0.9328591 0.3179522 -0.1693527 -0.9039182 0.4044101 -0.1392287 -0.8826152 0.4382252 -0.1701445 -0.8599309 0.4864407 -0.1545782 -0.8162086 0.5549632 -0.1606842 -0.8342357 0.5235222 -0.173134 -0.8120595 0.5635097 -0.1517118 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

5 0 0 1 1 1 0 2 2 5 0 3 0 2 4 4 3 5 6 4 6 2 5 7 1 1 8 6 4 9 1 1 10 5 0 11 7 6 12 3 7 13 2 5 14 7 6 15 2 5 16 6 4 17 9 8 18 5 0 19 4 3 20 9 8 21 4 3 22 8 9 23 10 10 24 6 4 25 5 0 26 10 10 27 5 0 28 9 8 29 11 11 30 7 6 31 6 4 32 11 11 33 6 4 34 10 10 35 13 12 36 9 8 37 8 9 38 13 12 39 8 9 40 12 13 41 14 14 42 10 10 43 9 8 44 14 14 45 9 8 46 13 12 47 15 15 48 11 11 49 10 10 50 15 15 51 10 10 52 14 14 53 17 16 54 13 12 55 12 13 56 17 16 57 12 13 58 16 17 59 18 18 60 14 14 61 13 12 62 18 18 63 13 12 64 17 16 65 19 19 66 15 15 67 14 14 68 19 19 69 14 14 70 18 18 71 21 20 72 17 16 73 16 17 74 21 20 75 16 17 76 20 21 77 22 22 78 18 18 79 17 16 80 22 22 81 17 16 82 21 20 83 23 23 84 19 19 85 18 18 86 23 23 87 18 18 88 22 22 89 25 24 90 21 20 91 20 21 92 25 24 93 20 21 94 24 25 95 26 26 96 22 22 97 21 20 98 26 26 99 21 20 100 25 24 101 27 27 102 23 23 103 22 22 104 27 27 105 22 22 106 26 26 107 29 28 108 25 24 109 24 25 110 29 28 111 24 25 112 28 29 113 30 30 114 26 26 115 25 24 116 30 30 117 25 24 118 29 28 119 31 31 120 27 27 121 26 26 122 31 31 123 26 26 124 30 30 125 33 32 126 29 28 127 28 29 128 33 32 129 28 29 130 32 33 131 34 34 132 30 30 133 29 28 134 34 34 135 29 28 136 33 32 137 35 35 138 31 31 139 30 30 140 35 35 141 30 30 142 34 34 143 37 36 144 33 32 145 32 33 146 37 36 147 32 33 148 36 37 149 38 38 150 34 34 151 33 32 152 38 38 153 33 32 154 37 36 155 39 39 156 35 35 157 34 34 158 39 39 159 34 34 160 38 38 161 41 40 162 37 36 163 36 37 164 41 40 165 36 37 166 40 41 167 42 42 168 38 38 169 37 36 170 42 42 171 37 36 172 41 40 173 43 43 174 39 39 175 38 38 176 43 43 177 38 38 178 42 42 179 45 44 180 41 40 181 40 41 182 45 44 183 40 41 184 44 45 185 46 46 186 42 42 187 41 40 188 46 46 189 41 40 190 45 44 191 47 47 192 43 43 193 42 42 194 47 47 195 42 42 196 46 46 197 49 48 198 45 44 199 44 45 200 49 48 201 44 45 202 48 49 203 50 50 204 46 46 205 45 44 206 50 50 207 45 44 208 49 48 209 51 51 210 47 47 211 46 46 212 51 51 213 46 46 214 50 50 215 53 52 216 49 48 217 48 49 218 53 52 219 48 49 220 52 53 221 54 54 222 50 50 223 49 48 224 54 54 225 49 48 226 53 52 227 55 55 228 51 51 229 50 50 230 55 55 231 50 50 232 54 54 233 58 56 234 53 52 235 52 53 236 58 56 237 52 53 238 57 57 239 59 58 240 54 54 241 53 52 242 59 58 243 53 52 244 58 56 245 60 59 246 55 55 247 54 54 248 60 59 249 54 54 250 59 58 251 64 60 252 65 61 253 66 62 254 64 60 255 66 62 256 67 63 257 0 2 258 68 64 259 69 65 260 0 2 261 69 65 262 70 66 263 0 2 264 67 63 265 68 64 266 4 3 267 71 67 268 72 68 269 8 9 270 72 68 271 73 69 272 12 13 273 74 70 274 75 71 275 16 17 276 76 72 277 77 73 278 12 13 279 75 71 280 76 72 281 8 9 282 73 69 283 74 70 284 4 3 285 70 66 286 71 67 287 0 2 288 63 74 289 64 60 290 0 2 291 64 60 292 67 63 293 1 1 294 63 74 295 0 2 296 2 5 297 61 75 298 62 76 299 62 76 300 1 1 301 2 5 302 1 1 303 62 76 304 63 74 305 3 7 306 61 75 307 2 5 308 4 3 309 72 68 310 8 9 311 70 66 312 4 3 313 0 2 314 8 9 315 74 70 316 12 13 317 20 21 318 16 17 319 77 73 320 20 21 321 77 73 322 78 77 323 12 13 324 76 72 325 16 17 326 20 21 327 78 77 328 79 78 329 24 25 330 20 21 331 79 78 332 24 25 333 79 78 334 80 79 335 24 25 336 80 79 337 81 80 338 28 29 339 82 81 340 83 82 341 32 33 342 84 83 343 85 84 344 28 29 345 83 82 346 84 83 347 24 25 348 81 80 349 82 81 350 36 37 351 86 85 352 87 86 353 36 37 354 87 86 355 88 87 356 40 41 357 89 88 358 90 89 359 44 45 360 91 90 361 92 91 362 44 45 363 90 89 364 91 90 365 40 41 366 88 87 367 89 88 368 32 33 369 85 84 370 86 85 371 28 29 372 24 25 373 82 81 374 32 33 375 28 29 376 84 83 377 40 41 378 36 37 379 88 87 380 48 49 381 44 45 382 92 91 383 40 41 384 90 89 385 44 45 386 32 33 387 86 85 388 36 37 389 52 53 390 48 49 391 93 92 392 52 53 393 93 92 394 94 93 395 52 53 396 94 93 397 95 94 398 57 57 399 52 53 400 95 94 401 57 57 402 95 94 403 96 95 404 96 95 405 56 96 406 57 57 407 93 92 408 48 49 409 92 91 410 102 97 411 99 98 412 98 99 413 102 97 414 98 99 415 101 100 416 104 101 417 101 100 418 100 102 419 104 101 420 100 102 421 103 103 422 105 104 423 102 97 424 101 100 425 105 104 426 101 100 427 104 101 428 107 105 429 104 101 430 103 103 431 107 105 432 103 103 433 106 106 434 108 107 435 105 104 436 104 101 437 108 107 438 104 101 439 107 105 440 110 108 441 107 105 442 106 106 443 110 108 444 106 106 445 109 109 446 111 110 447 108 107 448 107 105 449 111 110 450 107 105 451 110 108 452 113 111 453 110 108 454 109 109 455 113 111 456 109 109 457 112 112 458 114 113 459 111 110 460 110 108 461 114 113 462 110 108 463 113 111 464 116 114 465 113 111 466 112 112 467 116 114 468 112 112 469 115 115 470 117 116 471 114 113 472 113 111 473 117 116 474 113 111 475 116 114 476 119 117 477 116 114 478 115 115 479 119 117 480 115 115 481 118 118 482 120 119 483 117 116 484 116 114 485 120 119 486 116 114 487 119 117 488 122 120 489 119 117 490 118 118 491 122 120 492 118 118 493 121 121 494 123 122 495 120 119 496 119 117 497 123 122 498 119 117 499 122 120 500 125 123 501 123 122 502 122 120 503 125 123 504 122 120 505 124 124 506 127 125 507 125 123 508 124 124 509 127 125 510 124 124 511 126 126 512 100 102 513 134 127 514 135 128 515 100 102 516 136 129 517 137 130 518 135 128 519 136 129 520 100 102 521 101 100 522 134 127 523 100 102 524 98 99 525 131 131 526 132 132 527 133 133 528 134 127 529 98 99 530 101 100 531 98 99 532 134 127 533 99 98 534 131 131 535 98 99 536 132 132 537 133 133 538 98 99 539 103 103 540 100 102 541 137 130 542 140 134 543 106 106 544 139 135 545 142 136 546 109 109 547 141 137 548 106 106 549 140 134 550 141 137 551 143 138 552 109 109 553 142 136 554 137 130 555 138 139 556 103 103 557 103 103 558 138 139 559 139 135 560 106 106 561 103 103 562 139 135 563 109 109 564 106 106 565 141 137 566 109 109 567 143 138 568 112 112 569 112 112 570 143 138 571 144 140 572 129 141 573 182 141 574 97 141 575 130 142 576 131 131 577 99 98 578 99 98 579 182 143 580 129 144 581 129 144 582 130 142 583 99 98 584 99 98 585 102 97 586 180 145 587 99 98 588 180 145 589 181 146 590 99 98 591 181 146 592 182 143 593 102 97 594 179 147 595 180 145 596 179 147 597 105 104 598 178 148 599 105 104 600 179 147 601 102 97 602 178 148 603 105 104 604 177 149 605 105 104 606 108 107 607 176 150 608 105 104 609 176 150 610 177 149 611 108 107 612 111 110 613 174 151 614 108 107 615 174 151 616 175 152 617 111 110 618 114 113 619 173 153 620 111 110 621 173 153 622 174 151 623 108 107 624 175 152 625 176 150 626 114 113 627 172 154 628 173 153 629 171 155 630 172 154 631 114 113 632 145 156 633 115 115 634 144 140 635 118 118 636 145 156 637 146 157 638 121 121 639 118 118 640 146 157 641 115 115 642 145 156 643 118 118 644 117 116 645 120 119 646 168 158 647 117 116 648 168 158 649 169 159 650 147 160 651 122 120 652 121 121 653 120 119 654 123 122 655 166 161 656 120 119 657 166 161 658 167 162 659 121 121 660 146 157 661 147 160 662 114 113 663 117 116 664 171 155 665 148 163 666 124 124 667 147 160 668 126 126 669 148 163 670 149 164 671 127 125 672 126 126 673 149 164 674 124 124 675 148 163 676 126 126 677 125 123 678 127 125 679 162 165 680 125 123 681 162 165 682 163 166 683 183 167 684 150 168 685 151 169 686 159 170 687 183 167 688 158 171 689 150 168 690 183 167 691 127 125 692 127 125 693 149 164 694 150 168 695 123 122 696 125 123 697 164 172 698 123 122 699 164 172 700 165 173 701 147 160 702 124 124 703 122 120 704 183 167 705 151 169 706 155 174 707 117 116 708 170 175 709 171 155 710 120 119 711 167 162 712 168 158 713 169 159 714 170 175 715 117 116 716 123 122 717 165 173 718 166 161 719 125 123 720 163 166 721 164 172 722 127 125 723 160 176 724 161 177 725 159 170 726 127 125 727 183 167 728 183 167 729 157 178 730 158 171 731 159 170 732 160 176 733 127 125 734 183 167 735 155 174 736 156 179 737 151 169 738 154 180 739 155 174 740 151 169 741 152 181 742 153 182 743 151 169 744 128 183 745 152 181 746 153 182 747 154 180 748 151 169 749 156 179 750 157 178 751 183 167 752 161 177 753 162 165 754 127 125 755 115 115 756 112 112 757 144 140 758

+
+
+
+ + + + -82.888 80.7262 79.40441 -82.05381 85.7523 91.55561 -81.17591 89.9229 103.918 -80.3427 93.2027 116.456 -79.8473 95.0935 129.28 -82.00331 84.37641 82.8751 -81.1971 87.5859 96.2201 -80.2579 90.34571 109.044 -79.1794 92.6748 121.406 -77.8637 94.45401 133.401 -81.2568 87.4523 86.83071 -80.4617 89.16661 100.461 -79.47261 90.6892 113.038 -78.21791 92.0513 124.634 -76.3315 93.2908 135.133 -80.5496 90.3641 91.08351 -79.75901 90.6805 104.628 -78.72351 91.00801 116.657 -77.3171 91.373 127.224 -74.9497 91.8818 135.916 -79.8473 93.2549 95.64791 -79.05701 92.1954 108.868 -77.9759 91.3202 120.142 -76.429 90.6402 129.482 -73.6241 90.27571 136.115 + + + + + + + + + + -0.8048725 0.5878227 -0.08151572 -0.9722179 0.2340208 0.005157709 -0.9552395 0.2948424 -0.02420139 0.1420986 0.913142 -0.382073 0.7258288 0.6603964 -0.1924821 0.8992704 0.3927785 -0.1924523 0.8743524 0.4560525 -0.1659038 0.8866426 0.4314494 -0.166482 0.7019788 0.6906256 -0.1739611 0.5585942 0.817184 -0.1420672 -0.921998 0.3868973 0.01516824 -0.9800493 0.1956863 0.03479135 0.2893481 0.9467828 -0.1409965 0.8788924 0.4401176 -0.1839698 0.7497272 0.6303373 -0.2014552 -0.9603474 0.2716818 0.06262534 -0.9854924 0.1602253 0.05597198 -0.5134464 0.8575446 0.03146475 0.8874748 0.4110053 -0.2084783 0.7659435 0.5994911 -0.232252 -0.9808002 0.1675817 0.09973722 -0.9890182 0.1304062 0.069552 -0.9375743 0.3030842 0.1705707 0.9256818 -0.02780306 -0.3772799 0.7811365 0.5703411 -0.254041 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

6 0 0 5 1 1 0 2 2 6 0 3 0 2 4 1 3 5 7 4 6 6 0 7 1 3 8 7 4 9 1 3 10 2 5 11 8 6 12 7 4 13 2 5 14 8 6 15 2 5 16 3 7 17 9 8 18 8 6 19 3 7 20 9 8 21 3 7 22 4 9 23 11 10 24 10 11 25 5 1 26 11 10 27 5 1 28 6 0 29 12 12 30 11 10 31 6 0 32 12 12 33 6 0 34 7 4 35 13 13 36 12 12 37 7 4 38 13 13 39 7 4 40 8 6 41 14 14 42 13 13 43 8 6 44 14 14 45 8 6 46 9 8 47 16 15 48 15 16 49 10 11 50 16 15 51 10 11 52 11 10 53 17 17 54 16 15 55 11 10 56 17 17 57 11 10 58 12 12 59 18 18 60 17 17 61 12 12 62 18 18 63 12 12 64 13 13 65 19 19 66 18 18 67 13 13 68 19 19 69 13 13 70 14 14 71 21 20 72 20 21 73 15 16 74 21 20 75 15 16 76 16 15 77 22 22 78 21 20 79 16 15 80 22 22 81 16 15 82 17 17 83 23 23 84 22 22 85 17 17 86 23 23 87 17 17 88 18 18 89 24 24 90 23 23 91 18 18 92 24 24 93 18 18 94 19 19 95

+
+
+
+ + + + -82.888 80.7262 79.40441 -82.64231 82.3521 83.0812 -82.3857 83.9104 86.8219 -82.1203 85.3973 90.61441 -81.3145 89.32061 101.954 -81.0411 90.4919 105.846 -80.7735 91.57431 109.747 -80.5278 92.5185 113.479 -80.2857 93.40921 117.418 -80.07061 94.1773 121.387 -79.9049 94.7784 125.385 -79.8473 95.0935 129.28 -82.41481 82.67961 81.0401 -82.178 83.982 85.0073 -81.9275 85.23571 88.9972 -81.66471 86.4378 92.9986 -81.3976 87.56021 96.9086 -81.1268 88.6098 100.739 -80.83602 89.6509 104.731 -80.5399 90.6281 108.687 -80.23902 91.54351 112.619 -79.9486 92.3564 116.35 -79.6411 93.1435 120.259 -79.3329 93.85231 124.169 -79.03 94.4579 128.077 -78.7558 94.8855 131.859 -82.00331 84.37641 82.8751 -81.7724 85.40541 87.00141 -81.5256 86.3993 91.11811 -81.2638 87.35601 95.2148 -80.9944 88.2532 99.18801 -80.7174 89.09661 103.053 -80.4149 89.9383 107.052 -80.1008 90.7346 110.986 -79.7737 91.4878 114.868 -79.4485 92.1654 118.526 -79.0904 92.8331 122.329 -78.7109 93.4513 126.101 -78.3031 94.00701 129.834 -77.8637 94.45401 133.401 -81.6137 85.9822 84.8566 -81.3871 86.75701 89.0785 -81.1429 87.5078 93.2624 -80.8814 88.2334 97.3981 -80.6093 88.9168 101.383 -80.3264 89.5624 105.234 -80.0133 90.2106 109.193 -79.6831 90.8284 113.061 -79.3328 91.4181 116.851 -78.9771 91.95481 120.396 -78.5749 92.49211 124.051 -78.1333 93.00151 127.642 -77.6346 93.47821 131.154 -77.0526 93.8973 134.446 -81.2488 87.4854 86.8766 -81.0255 88.0253 91.1509 -80.7831 88.5506 95.3619 -80.5213 89.0605 99.4998 -80.2465 89.5432 103.463 -79.958 90.00201 107.271 -79.6352 90.4657 111.161 -79.2905 90.9115 114.936 -78.9196 91.3414 118.61 -78.53701 91.7377 122.019 -78.0959 92.1411 125.505 -77.6 92.5331 128.893 -77.0218 92.9145 132.158 -76.3155 93.2762 135.146 -80.8925 88.9524 88.9715 -80.67201 89.2653 93.26921 -80.4308 89.5719 97.48001 -80.16841 89.87191 101.594 -79.8907 90.1585 105.513 -79.59671 90.4335 109.255 -79.26461 90.7149 113.054 -78.9062 90.98902 116.716 -78.5161 91.25801 120.253 -78.1083 91.51081 123.508 -77.6313 91.77481 126.805 -77.0852 92.0405 129.969 -76.4337 92.3128 132.964 -75.6128 92.5953 135.621 -80.5446 90.38491 91.1152 -80.3263 90.4779 95.4136 -80.0859 90.5721 99.60301 -79.8226 90.66761 103.674 -79.5419 90.7624 107.529 -79.2425 90.857 111.188 -78.9015 90.9582 114.88 -78.5301 91.06201 118.413 -78.12181 91.1696 121.798 -77.6905 91.2773 124.886 -77.1799 91.3983 127.979 -76.5869 91.53141 130.905 -75.86721 91.6845 133.614 -74.94001 91.87091 135.919 -80.20391 91.7871 93.2939 -79.9873 91.6665 97.57511 -79.7475 91.55371 101.726 -79.483 91.4494 105.738 -79.1994 91.3561 109.515 -78.8946 91.2733 113.079 -78.5449 91.1966 116.65 -78.1611 91.13111 120.042 -77.73571 91.0776 123.264 -77.2821 91.039 126.174 -76.7398 91.0142 129.052 -76.1027 91.01 131.727 -75.3191 91.03601 134.138 -74.2922 91.1133 136.075 -79.8473 93.2549 95.64791 -79.6322 92.91191 99.8945 -79.3926 92.5833 103.989 -79.1267 92.27021 107.924 -78.8398 91.9798 111.605 -78.52941 91.71051 115.055 -78.1708 91.4462 118.487 -77.7743 91.2014 121.717 -77.3313 90.9761 124.755 -76.85511 90.7807 127.465 -76.2808 90.5981 130.104 -75.5993 90.4432 132.502 -74.7511 90.3266 134.584 -73.6241 90.27571 136.115 -82.2976 83.34 83.0302 -82.4207 83.1301 83.9414 -82.7661 81.5515 81.2433 -82.6618 81.6603 80.1082 -82.5423 82.40602 82.0283 -78.8782 94.7152 130.115 -79.3148 95.0415 130.646 -79.8543 94.9942 127.482 -79.4803 94.6578 126.782 -79.37931 94.9005 128.862 -75.4093 91.7779 134.909 -75.27941 92.2446 135.787 -76.02571 92.4612 134.436 -76.1533 92.0074 133.301 -75.7204 92.1297 134.687 -74.8144 91.0684 135.249 -74.6187 91.5021 136.012 -75.5956 91.3679 133.886 -75.11431 91.4319 135.091 -74.1994 90.2884 135.491 -73.9607 90.7045 136.11 -75.0376 90.68891 134.371 -74.5094 90.68721 135.382 -81.8113 86.5749 93.8176 -81.8304 86.57421 93.81781 -81.8378 86.57431 93.81781 -81.8297 86.57421 93.81781 -81.8146 86.5747 93.81771 -81.79821 86.5763 93.8172 + + + + + + + + + + -0.9416955 0.3329932 -0.04822003 -0.9589682 0.2816904 -0.03210598 -0.9499439 0.3069632 -0.05813926 -0.9288083 0.3615864 -0.08105784 -0.9432843 0.3221901 -0.0800516 -0.9227107 0.3725146 -0.09918665 -0.9624533 0.2680196 -0.04300153 -0.9575291 0.2830319 -0.05505597 -0.9645691 0.2621015 -0.03015327 -0.8899271 0.44887 -0.08090519 -0.8576478 0.4990484 -0.1240601 -0.6973856 0.6977213 -0.163825 -0.3251519 0.8879266 -0.3253656 0.8584314 0.480182 -0.1803352 0.7714709 0.6009282 -0.2090888 0.8553295 0.4812564 -0.1918433 0.9061601 0.3837851 -0.1777161 0.8855835 0.4337123 -0.1662395 0.9118417 0.3757174 -0.1654731 0.8873525 0.4323688 -0.1601965 0.9020146 0.4011395 -0.1595524 0.8702867 0.4665476 -0.1579065 0.8741289 0.4598928 -0.1561968 0.8139246 0.5607958 -0.1517735 0.8114063 0.5647525 -0.1505803 0.6836537 0.716492 -0.1387694 0.6525377 0.7455307 -0.1355677 0.7379914 0.6583966 -0.1479279 0.5797683 0.8063713 -0.1167654 0.6633343 0.7354816 -0.1380382 0.5155957 0.8504246 -0.1045901 0.4239501 0.9017371 -0.08447867 0.4542742 0.8854151 -0.0983625 0.2346278 0.970556 -0.05450636 -0.9635719 0.2668874 -0.01733469 -0.9541519 0.2987828 -0.0179758 -0.9233624 0.3824378 -0.03381538 -0.8442572 0.5317695 -0.0667153 -0.6006802 0.7883126 -0.1332166 -0.1525964 0.9530257 -0.2616418 0.02154606 0.9772344 -0.2110663 0.4935213 0.8296871 -0.2608757 0.5913776 0.7793781 -0.2069836 0.7877353 0.588688 -0.1814376 0.8519998 0.4958733 -0.1679462 0.8711809 0.4629512 -0.1634628 0.8686317 0.467429 -0.1642837 0.8454462 0.5067428 -0.1686192 0.7710464 0.6145726 -0.1666979 0.6927287 0.7013046 -0.1682227 -0.9639982 0.2658495 0.005615413 -0.9748545 0.2224873 0.01257401 -0.9448086 0.3276219 -7.93495e-4 -0.9015318 0.432424 -0.01580882 -0.7847282 0.6178823 -0.0492267 -0.4244865 0.8979253 -0.1163683 0.2914862 0.940227 -0.1760942 0.6863097 0.7065438 -0.172554 0.8141291 0.5570051 -0.164132 0.8560596 0.4903497 -0.16346 0.8665677 0.4694798 -0.1692605 0.8557568 0.4844303 -0.1816805 0.8211142 0.5331367 -0.203806 0.7383551 0.6424327 -0.2052122 -0.9710605 0.2376837 0.02340823 -0.9787496 0.2033492 0.02642959 -0.958412 0.2844961 0.02255338 -0.9325383 0.3606429 0.01757889 -0.8706353 0.4919164 0.003540277 -0.6879561 0.7250365 -0.03222787 -0.1109365 0.9879912 -0.1075489 0.5293259 0.8351898 -0.1492391 0.7663316 0.6235638 -0.1546092 0.8402482 0.5178458 -0.1606823 0.8642981 0.4722205 -0.1731953 0.8618056 0.4681364 -0.1952933 0.8359187 0.4968208 -0.2332576 0.7816016 0.5591152 -0.2765667 -0.9762835 0.2132387 0.03741669 -0.9818843 0.1856769 0.03778237 -0.9676743 0.2489456 0.04040747 -0.9513882 0.3051559 0.04171895 -0.9162807 0.3986124 0.03921729 -0.8231334 0.5672299 0.02649062 -0.4853795 0.8740737 -0.02005118 0.2703647 0.9574921 -0.1005589 0.6972168 0.7037479 -0.136483 0.8219499 0.5481904 -0.1545504 0.8620349 0.4751171 -0.1765209 0.8660956 0.4537549 -0.2097258 0.8380771 0.4824414 -0.25471 0.802837 0.5205959 -0.290573 0.7589899 0.5623832 -0.3281154 -0.9801674 0.1920843 0.04873824 -0.984393 0.1695334 0.04721301 -0.9741383 0.2193101 0.05438494 -0.9634521 0.2610894 0.05993914 -0.9424369 0.3280828 0.0646094 -0.8925976 0.4460089 0.06592166 -0.7211065 0.6908926 0.05169939 -0.1085875 0.9939211 -0.01815897 0.5851354 0.8043208 -0.1033669 0.7984516 0.5846319 -0.143808 0.8598954 0.4779231 -0.1793585 0.864834 0.4507745 -0.2210534 0.8387259 0.4693837 -0.2760758 0.835762 0.4648955 -0.2921886 0.7486025 0.5387838 -0.386402 0.7959886 0.4806999 -0.3678723 0.802383 0.4929783 -0.3363837 0.7576089 0.549712 -0.351917 -0.9831143 0.173532 0.05807799 -0.9863668 0.1550354 0.05517792 -0.9787598 0.1941955 0.06570839 -0.9715098 0.2250773 0.07422208 -0.9583625 0.2730548 0.08356142 -0.9304137 0.3544215 0.09335875 -0.8450146 0.5252959 0.1000723 -0.494563 0.8657675 0.0765115 0.3824308 0.9230405 -0.04174965 0.7642042 0.6326658 -0.125404 0.8580249 0.4802852 -0.1819877 0.8667242 0.4367955 -0.2408296 0.8354682 0.4492759 -0.3164555 0.8296008 0.4454263 -0.3366867 0.715857 0.5203514 -0.4656 0.7719162 0.4575098 -0.4413958 0.7862103 0.4693273 -0.4020016 0.7347183 0.5301483 -0.4232397 -0.9858936 0.153115 0.06760007 -0.9880344 0.1414573 0.06146597 -0.982996 0.1666048 0.07721382 -0.9785489 0.1860778 0.08841514 -0.971257 0.2152482 0.1016272 -0.9578061 0.2622187 0.117681 -0.923379 0.358261 0.1379147 -0.79344 0.5880453 0.1570217 -0.04248189 0.9960666 0.07776141 0.7447836 0.6571028 -0.1162465 0.8796492 0.4231154 -0.2172343 0.8754074 0.3840818 -0.2935014 0.825201 0.4267461 -0.3700419 0.8137324 0.390218 -0.4307779 0.6816384 0.4749342 -0.5566027 0.7233321 0.3963814 -0.5653959 0.7516359 0.4450973 -0.4867565 0.6892396 0.5111616 -0.513481 0 0 1 0.0415945 -0.0415945 0.9982685 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

13 0 0 124 1 1 128 2 2 13 0 3 128 2 4 125 3 5 125 3 6 128 2 7 126 4 8 125 3 9 126 4 10 1 5 11 128 2 12 127 6 13 0 7 14 128 2 15 0 7 16 126 4 17 124 1 18 12 8 19 127 6 20 124 1 21 127 6 22 128 2 23 125 3 24 14 9 25 13 0 26 2 10 27 125 3 28 1 5 29 14 9 30 125 3 31 2 10 32 15 11 33 14 9 34 2 10 35 15 11 36 2 10 37 3 12 38 19 13 39 18 14 40 4 15 41 19 13 42 4 15 43 5 16 44 20 17 45 19 13 46 5 16 47 20 17 48 5 16 49 6 18 50 21 19 51 20 17 52 6 18 53 21 19 54 6 18 55 7 20 56 22 21 57 21 19 58 7 20 59 22 21 60 7 20 61 8 22 62 23 23 63 22 21 64 8 22 65 23 23 66 8 22 67 9 24 68 132 25 69 9 24 70 10 26 71 23 23 72 132 25 73 24 27 74 9 24 75 132 25 76 23 23 77 25 28 78 129 29 79 133 30 80 25 28 81 133 30 82 130 31 83 130 31 84 133 30 85 131 32 86 130 31 87 131 32 88 11 33 89 133 30 90 132 25 91 10 26 92 133 30 93 10 26 94 131 32 95 129 29 96 24 27 97 132 25 98 129 29 99 132 25 100 133 30 101 124 1 102 26 34 103 12 8 104 27 35 105 124 1 106 13 0 107 26 34 108 124 1 109 27 35 110 28 36 111 27 35 112 13 0 113 28 36 114 13 0 115 14 9 116 29 37 117 28 36 118 14 9 119 29 37 120 14 9 121 15 11 122 30 38 123 29 37 124 15 11 125 30 38 126 15 11 127 16 39 128 31 40 129 30 38 130 16 39 131 31 40 132 16 39 133 17 41 134 32 42 135 31 40 136 17 41 137 32 42 138 17 41 139 18 14 140 33 43 141 32 42 142 18 14 143 33 43 144 18 14 145 19 13 146 34 44 147 33 43 148 19 13 149 34 44 150 19 13 151 20 17 152 35 45 153 34 44 154 20 17 155 35 45 156 20 17 157 21 19 158 36 46 159 35 45 160 21 19 161 36 46 162 21 19 163 22 21 164 37 47 165 36 46 166 22 21 167 37 47 168 22 21 169 23 23 170 38 48 171 37 47 172 23 23 173 38 48 174 23 23 175 24 27 176 129 29 177 38 48 178 24 27 179 39 49 180 129 29 181 25 28 182 38 48 183 129 29 184 39 49 185 41 50 186 40 51 187 26 34 188 41 50 189 26 34 190 27 35 191 42 52 192 41 50 193 27 35 194 42 52 195 27 35 196 28 36 197 43 53 198 42 52 199 28 36 200 43 53 201 28 36 202 29 37 203 44 54 204 43 53 205 29 37 206 44 54 207 29 37 208 30 38 209 45 55 210 44 54 211 30 38 212 45 55 213 30 38 214 31 40 215 46 56 216 45 55 217 31 40 218 46 56 219 31 40 220 32 42 221 47 57 222 46 56 223 32 42 224 47 57 225 32 42 226 33 43 227 48 58 228 47 57 229 33 43 230 48 58 231 33 43 232 34 44 233 49 59 234 48 58 235 34 44 236 49 59 237 34 44 238 35 45 239 50 60 240 49 59 241 35 45 242 50 60 243 35 45 244 36 46 245 51 61 246 50 60 247 36 46 248 51 61 249 36 46 250 37 47 251 52 62 252 51 61 253 37 47 254 52 62 255 37 47 256 38 48 257 53 63 258 52 62 259 38 48 260 53 63 261 38 48 262 39 49 263 55 64 264 54 65 265 40 51 266 55 64 267 40 51 268 41 50 269 56 66 270 55 64 271 41 50 272 56 66 273 41 50 274 42 52 275 57 67 276 56 66 277 42 52 278 57 67 279 42 52 280 43 53 281 58 68 282 57 67 283 43 53 284 58 68 285 43 53 286 44 54 287 59 69 288 58 68 289 44 54 290 59 69 291 44 54 292 45 55 293 60 70 294 59 69 295 45 55 296 60 70 297 45 55 298 46 56 299 61 71 300 60 70 301 46 56 302 61 71 303 46 56 304 47 57 305 62 72 306 61 71 307 47 57 308 62 72 309 47 57 310 48 58 311 63 73 312 62 72 313 48 58 314 63 73 315 48 58 316 49 59 317 64 74 318 63 73 319 49 59 320 64 74 321 49 59 322 50 60 323 65 75 324 64 74 325 50 60 326 65 75 327 50 60 328 51 61 329 66 76 330 65 75 331 51 61 332 66 76 333 51 61 334 52 62 335 67 77 336 66 76 337 52 62 338 67 77 339 52 62 340 53 63 341 69 78 342 68 79 343 54 65 344 69 78 345 54 65 346 55 64 347 70 80 348 69 78 349 55 64 350 70 80 351 55 64 352 56 66 353 71 81 354 70 80 355 56 66 356 71 81 357 56 66 358 57 67 359 72 82 360 71 81 361 57 67 362 72 82 363 57 67 364 58 68 365 73 83 366 72 82 367 58 68 368 73 83 369 58 68 370 59 69 371 74 84 372 73 83 373 59 69 374 74 84 375 59 69 376 60 70 377 75 85 378 74 84 379 60 70 380 75 85 381 60 70 382 61 71 383 76 86 384 75 85 385 61 71 386 76 86 387 61 71 388 62 72 389 77 87 390 76 86 391 62 72 392 77 87 393 62 72 394 63 73 395 78 88 396 77 87 397 63 73 398 78 88 399 63 73 400 64 74 401 79 89 402 78 88 403 64 74 404 79 89 405 64 74 406 65 75 407 80 90 408 79 89 409 65 75 410 80 90 411 65 75 412 66 76 413 136 91 414 67 77 415 81 92 416 66 76 417 136 91 418 80 90 419 67 77 420 136 91 421 66 76 422 83 93 423 82 94 424 68 79 425 83 93 426 68 79 427 69 78 428 84 95 429 83 93 430 69 78 431 84 95 432 69 78 433 70 80 434 85 96 435 84 95 436 70 80 437 85 96 438 70 80 439 71 81 440 86 97 441 85 96 442 71 81 443 86 97 444 71 81 445 72 82 446 87 98 447 86 97 448 72 82 449 87 98 450 72 82 451 73 83 452 88 99 453 87 98 454 73 83 455 88 99 456 73 83 457 74 84 458 89 100 459 88 99 460 74 84 461 89 100 462 74 84 463 75 85 464 90 101 465 89 100 466 75 85 467 90 101 468 75 85 469 76 86 470 91 102 471 90 101 472 76 86 473 91 102 474 76 86 475 77 87 476 92 103 477 91 102 478 77 87 479 92 103 480 77 87 481 78 88 482 93 104 483 92 103 484 78 88 485 93 104 486 78 88 487 79 89 488 137 105 489 79 89 490 80 90 491 93 104 492 137 105 493 94 106 494 79 89 495 137 105 496 93 104 497 95 107 498 134 108 499 138 109 500 95 107 501 138 109 502 135 110 503 135 110 504 138 109 505 136 91 506 135 110 507 136 91 508 81 92 509 138 109 510 137 105 511 80 90 512 138 109 513 80 90 514 136 91 515 134 108 516 94 106 517 137 105 518 134 108 519 137 105 520 138 109 521 97 111 522 96 112 523 82 94 524 97 111 525 82 94 526 83 93 527 98 113 528 97 111 529 83 93 530 98 113 531 83 93 532 84 95 533 99 114 534 98 113 535 84 95 536 99 114 537 84 95 538 85 96 539 100 115 540 99 114 541 85 96 542 100 115 543 85 96 544 86 97 545 101 116 546 100 115 547 86 97 548 101 116 549 86 97 550 87 98 551 102 117 552 101 116 553 87 98 554 102 117 555 87 98 556 88 99 557 103 118 558 102 117 559 88 99 560 103 118 561 88 99 562 89 100 563 104 119 564 103 118 565 89 100 566 104 119 567 89 100 568 90 101 569 105 120 570 104 119 571 90 101 572 105 120 573 90 101 574 91 102 575 106 121 576 105 120 577 91 102 578 106 121 579 91 102 580 92 103 581 107 122 582 106 121 583 92 103 584 107 122 585 92 103 586 93 104 587 141 123 588 93 104 589 94 106 590 107 122 591 141 123 592 108 124 593 93 104 594 141 123 595 107 122 596 109 125 597 139 126 598 142 127 599 109 125 600 142 127 601 140 128 602 140 128 603 142 127 604 134 108 605 140 128 606 134 108 607 95 107 608 142 127 609 141 123 610 94 106 611 142 127 612 94 106 613 134 108 614 139 126 615 108 124 616 141 123 617 139 126 618 141 123 619 142 127 620 111 129 621 110 130 622 96 112 623 111 129 624 96 112 625 97 111 626 112 131 627 111 129 628 97 111 629 112 131 630 97 111 631 98 113 632 113 132 633 112 131 634 98 113 635 113 132 636 98 113 637 99 114 638 114 133 639 113 132 640 99 114 641 114 133 642 99 114 643 100 115 644 115 134 645 114 133 646 100 115 647 115 134 648 100 115 649 101 116 650 116 135 651 115 134 652 101 116 653 116 135 654 101 116 655 102 117 656 117 136 657 116 135 658 102 117 659 117 136 660 102 117 661 103 118 662 118 137 663 117 136 664 103 118 665 118 137 666 103 118 667 104 119 668 119 138 669 118 137 670 104 119 671 119 138 672 104 119 673 105 120 674 120 139 675 119 138 676 105 120 677 120 139 678 105 120 679 106 121 680 121 140 681 120 139 682 106 121 683 121 140 684 106 121 685 107 122 686 145 141 687 107 122 688 108 124 689 121 140 690 145 141 691 122 142 692 107 122 693 145 141 694 121 140 695 123 143 696 143 144 697 146 145 698 123 143 699 146 145 700 144 146 701 144 146 702 146 145 703 139 126 704 144 146 705 139 126 706 109 125 707 146 145 708 145 141 709 108 124 710 146 145 711 108 124 712 139 126 713 143 144 714 122 142 715 145 141 716 143 144 717 145 141 718 146 145 719 149 147 720 148 147 721 150 147 722 151 148 723 147 148 724 152 148 725

+
+
+
+ + + + -69.2208 142.507 14.1685 -69.1972 145.684 -2.16074 -69.1767 147.78 -18.8396 -69.1594 148.794 -35.8679 -69.1453 148.728 -53.2459 -69.1343 147.58 -70.97351 -69.12641 145.351 -89.0506 -69.1217 142.041 -107.477 -69.1202 137.65 -126.254 -59.1157 142.981 14.2629 -59.345 146.132 -2.15003 -59.5772 148.213 -18.8939 -59.812 149.224 -35.9688 -60.0497 149.164 -53.3746 -60.2902 148.034 -71.1114 -60.5334 145.834 -89.1791 -60.7794 142.563 -107.578 -49.1888 143.431 14.3822 -49.6697 146.546 -2.11871 -50.153 148.603 -18.9312 -50.6387 149.6 -36.0554 -51.1268 149.538 -53.4911 -51.6173 148.417 -71.23851 -52.1102 146.238 -89.2974 -52.6055 142.998 -107.668 -39.5485 143.849 14.528 -40.2474 146.92 -2.06487 -40.9483 148.943 -18.9494 -41.6513 149.919 -36.1255 -42.3562 149.847 -53.5933 -43.0631 148.728 -71.3528 -43.7721 146.561 -89.4039 -44.483 143.347 -107.747 -29.6216 144.258 14.7158 -30.4747 147.272 -1.9801 -31.3293 149.251 -18.9456 -32.1855 150.195 -36.1807 -33.0433 150.105 -53.6854 -33.9026 148.98 -71.4596 -34.7636 146.821 -89.5035 -35.626 143.627 -107.817 -19.6997 144.637 14.9515 -20.5695 147.584 -1.85814 -21.4404 149.509 -18.9134 -22.3124 150.414 -36.2144 -23.1855 150.299 -53.7609 -24.0597 149.162 -71.5531 -24.935 147.005 -89.5909 -25.8114 143.827 -107.874 -9.78945 144.978 15.2499 -10.4327 147.847 -1.68766 -11.0765 149.711 -18.8444 -11.721 150.57 -36.2203 -12.366 150.423 -53.8155 -13.0115 149.27 -71.6299 -13.6577 147.112 -89.6635 -14.3044 143.949 -107.916 0 145.263 15.6307 0 148.047 -1.45285 0 149.843 -18.7261 0 150.651 -36.1891 0 150.471 -53.8418 0 149.302 -71.6842 0 147.145 -89.7163 0 144 -107.938 0 139.866 -126.35 -10.3745 139.827 -126.335 -12.8021 139.812 -126.332 -15.1713 139.794 -126.329 -17.4859 139.773 -126.325 -19.75 139.75 -126.322 -24.142 139.692 -126.316 -26.2779 139.658 -126.313 -28.3789 139.62 -126.31 -30.4491 139.578 -126.307 -32.4922 139.531 -126.305 -36.5132 139.423 -126.299 -44.4095 139.142 -126.288 -52.3017 138.763 -126.277 -60.4569 138.271 -126.266 -64.7094 137.978 -126.26 + + + + + + + + + + -0.04394686 0.9866998 0.1564998 -0.04480254 0.986481 0.1576331 -0.04675501 0.9807567 0.1895531 -0.04654163 0.9810369 0.1881503 -0.04260492 0.9948683 0.09177154 -0.04443579 0.9947402 0.0922898 -0.04315346 0.9986644 0.02841293 -0.04590022 0.9985437 0.0283519 -0.04529041 0.9984341 -0.03283858 -0.04883056 0.9982499 -0.03335738 -0.04886049 0.9946061 -0.09149521 -0.05313318 0.9943024 -0.09241092 -0.05353116 0.9876714 -0.1471039 -0.05847471 0.9872041 -0.1483538 -0.05868887 0.9780567 -0.1999023 -0.06424295 0.97747 -0.2010607 -0.04144477 0.9871061 0.1546092 -0.04513818 0.9815961 0.185558 -0.03872877 0.995108 0.09088605 -0.03796523 0.9988769 0.02835184 -0.03891134 0.9987249 -0.03216671 -0.04129183 0.9950633 -0.09024387 -0.04474061 0.9883531 -0.1454529 -0.0491656 0.9789487 -0.1980969 -0.03848457 0.9876286 0.1520156 -0.04339879 0.982303 0.1822018 -0.03427326 0.9954205 0.0892387 -0.03210604 0.9991037 0.02758926 -0.03177016 0.9989765 -0.03219747 -0.03289997 0.9954228 -0.08972722 -0.03512746 0.9888799 -0.1445079 -0.03827065 0.9797177 -0.1966943 -0.03494429 0.9882985 0.1484752 -0.04126167 0.9832006 0.1778038 -0.02914565 0.9958051 0.08673501 -0.02557462 0.9993332 0.0260629 -0.02395761 0.9991696 -0.03296077 -0.02386552 0.9956697 -0.08984678 -0.02493387 0.9892386 -0.1441711 -0.02697879 0.9803012 -0.1956574 -0.0305491 0.989108 0.1439868 -0.03842318 0.9842933 0.1723093 -0.02319467 0.9962429 0.08343988 -0.01846373 0.9995462 0.02380448 -0.01583939 0.9992861 -0.03430342 -0.01486289 0.9957866 -0.09048998 -0.01507633 0.9894246 -0.1442631 -0.01614451 0.9806368 -0.195169 -0.02514773 0.9900395 0.1385262 -0.03466951 0.985579 0.1656263 -0.01644992 0.9967038 0.07944208 -0.01095634 0.9997182 0.02105826 -0.007934927 0.9993199 -0.03601258 -0.006714105 0.9957969 -0.09134262 -0.006714165 0.9894855 -0.1444767 -0.007446706 0.9807713 -0.1950189 -0.02407974 0.9905673 0.1348956 -0.03494435 0.9863774 0.1607441 -0.01416063 0.9969542 0.07669347 -0.007904529 0.9997857 0.01913565 -0.004486322 0.9992977 -0.03720313 -0.003051817 0.9957644 -0.09189182 -0.002960324 0.9894991 -0.1445092 -0.003662288 0.9808292 -0.1948352 -0.06903362 0.9717509 -0.2256869 -0.06250393 0.972657 -0.2236775 -0.04071271 0.9744812 -0.220746 -0.02414065 0.9752396 -0.2198294 -0.03088498 0.9749535 -0.2202541 -0.05261439 0.9736415 -0.2219327 -0.07251274 0.9711704 -0.2270907 -0.01910507 0.9753373 -0.2198919 -0.0215466 0.9753964 -0.2194032 -0.01690769 0.9753364 -0.2200748 -0.01156675 0.9755177 -0.2196166 -0.01440507 0.9753974 -0.2199832 -0.004944086 0.9756358 -0.219341 -0.009766101 0.9755445 -0.2195852 -0.006958305 0.9755412 -0.2197065 -0.008453905 0.9755285 -0.2197106 -0.003967463 0.9757017 -0.2190674 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -69.1202 115.856 -202.315 -69.1202 115.085 -205.855 -69.1202 114.493 -209.303 -54.9806 117.116 -202.376 -55.1479 116.356 -205.913 -55.3152 115.774 -209.358 -48.1555 117.508 -202.394 -48.3898 116.749 -205.931 -48.6241 116.168 -209.375 -40.9443 117.773 -202.406 -41.2211 117.014 -205.943 -41.4978 116.432 -209.387 -23.716 118.026 -202.415 -23.9637 117.261 -205.952 -24.2115 116.675 -209.397 0 118.072 -202.411 0 117.301 -205.951 0 116.709 -209.399 -69.1202 117.84 -194.88 -61.659 118.555 -194.88 -54.6432 119.098 -194.88 -51.1801 119.313 -194.88 -47.6819 119.494 -194.88 -40.384 119.765 -194.88 -36.4867 119.861 -194.88 -34.4545 119.901 -194.88 -32.3585 119.935 -194.88 -23.2138 120.03 -194.88 -17.8861 120.057 -194.88 -12.5583 120.071 -194.88 -6.27918 120.08 -194.88 0 120.084 -194.88 -54.7834 118.209 -198.063 -47.8783 118.604 -198.063 -40.616 118.874 -198.063 + + + + + + + + + + -0.07339811 0.980056 -0.1846703 -0.0904572 0.9776952 -0.1895512 -0.08783543 0.9681738 -0.2343601 -0.0719639 0.9719404 -0.2239488 -0.074925 0.9837612 -0.1630955 -0.09173953 0.9814243 -0.1684944 -0.04693859 0.9816212 -0.1849772 -0.04632812 0.9733795 -0.2244687 -0.0478236 0.9854356 -0.1631863 -0.02526962 0.9821587 -0.1863483 -0.02517843 0.9738101 -0.2259649 -0.02594083 0.9860265 -0.1645565 -0.007904291 0.981939 -0.1890327 -0.008209645 0.9720716 -0.2345411 -0.008056998 0.9859188 -0.1670309 -0.001709043 0.9815906 -0.1909894 -0.001525938 0.971795 -0.2358224 -0.001586973 0.9856022 -0.1690737 -0.06677579 0.961749 -0.2656689 -0.0681802 0.9641975 -0.2562709 -0.08050823 0.9604529 -0.26655 -0.04248243 0.9628752 -0.2665836 -0.04495447 0.9658347 -0.2552304 -0.05478119 0.961677 -0.2686567 -0.02713167 0.9660296 -0.2570036 -0.09216725 0.9620797 -0.2567254 -0.02942049 0.9631254 -0.2674399 -0.01608365 0.9602605 -0.2786415 -0.01992857 0.9619753 -0.2724086 -0.0174877 0.9636856 -0.2664663 -0.003234982 0.9661625 -0.2579139 -0.007355034 0.966505 -0.2565424 -0.001861631 0.965856 -0.2590733 -0.001159727 0.9660024 -0.2585304 -6.10385e-4 0.9661177 -0.2581014 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -42.6767 58.6588 220.979 -38.3598 59.3745 221.105 -33.7522 59.9997 221.226 -28.8537 60.5344 221.341 -23.6645 60.9786 221.45 -18.1846 61.3322 221.553 -12.4138 61.5954 221.65 -6.35229 61.768 221.742 0 61.8501 221.827 -23.0269 59.4584 221.985 -17.6724 59.7826 222.103 -12.0498 60.0268 222.213 -6.15895 60.1907 222.313 0 60.2746 222.404 0 58.6588 222.913 -40.4561 58.6588 221.163 -38.1655 58.6588 221.339 -35.8094 58.6588 221.507 -33.3926 58.6588 221.667 -30.9168 58.6588 221.818 -28.3821 58.6588 221.961 -25.7912 58.6588 222.096 -23.1465 58.6588 222.221 -20.4509 58.6588 222.338 -17.6952 58.6587 222.446 -14.8908 58.6585 222.545 -12.025 58.6584 222.636 -9.096071 58.6585 222.718 -6.11288 58.6586 222.792 -3.07951 58.6588 222.857 + + + + + + + + + + -0.04303246 0.3026923 0.9521164 -0.04397761 0.3156563 0.9478541 -0.05191367 0.3031198 0.9515374 -0.03528058 0.3085224 0.9505626 -0.03595167 0.3242059 0.9453032 -0.02810782 0.313703 0.9491051 -0.02832162 0.3322603 0.9427625 -0.02148526 0.3182507 0.9477632 -0.02124106 0.338454 0.9407433 -0.01742631 0.3220973 0.9465461 -0.01699942 0.3438345 0.9388764 -0.07080352 0.2943534 0.9530704 -0.07858741 0.3070251 0.9484512 -0.07800751 0.305377 0.9490309 -0.07016438 0.2927433 0.9536133 -0.06070339 0.2985728 0.9524544 -0.06540215 0.2989029 0.9520397 -0.0601533 0.297257 0.9529008 -0.05536228 0.3017458 0.9517797 -0.04895257 0.3012537 0.9522867 -0.03164881 0.2961317 0.9546228 -0.02469027 0.2982675 0.954163 -0.03900361 0.2946941 0.9547954 -0.04960745 0.3022038 0.9519518 -0.04348975 0.2887724 0.9564096 -0.03558516 0.2923723 0.9556424 -0.02850484 0.2947233 0.9551575 -0.02200442 0.2977162 0.9544009 -0.01840293 0.3010088 0.9534439 -0.01733475 0.3003981 0.9536565 -0.053707 0.3012005 0.9520472 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

9 0 0 4 1 1 3 2 2 10 3 3 5 4 4 4 1 5 10 3 6 4 1 7 9 0 8 11 5 9 6 6 10 5 4 11 11 5 12 5 4 13 10 3 14 12 7 15 7 8 16 6 6 17 12 7 18 6 6 19 11 5 20 13 9 21 8 10 22 7 8 23 13 9 24 7 8 25 12 7 26 1 11 27 0 12 28 15 13 29 16 14 30 1 11 31 15 13 32 2 15 33 1 11 34 17 16 35 16 14 36 17 16 37 1 11 38 18 17 39 2 15 40 17 16 41 3 2 42 2 15 43 19 18 44 21 19 45 9 0 46 3 2 47 25 20 48 11 5 49 10 3 50 27 21 51 12 7 52 11 5 53 10 3 54 9 0 55 23 22 56 18 17 57 19 18 58 2 15 59 3 23 60 20 23 61 21 23 62 22 24 63 9 0 64 21 19 65 10 3 66 23 22 67 24 25 68 22 24 69 23 22 70 9 0 71 10 3 72 24 25 73 25 20 74 11 5 75 26 26 76 27 21 77 26 26 78 11 5 79 25 20 80 12 7 81 27 21 82 28 27 83 12 7 84 29 28 85 13 9 86 29 28 87 14 29 88 13 9 89 12 7 90 28 27 91 29 28 92 19 30 93 20 30 94 3 30 95

+
+
+
+ + + + 77.5224 111.53 83.54341 77.5224 108.059 90.0433 77.5224 104.549 96.4335 77.5224 100.985 102.76 77.5224 97.2594 109.22 77.5224 93.37271 115.814 77.5224 111.53 83.54341 77.8172 108.386 87.32141 78.1001 105.008 91.2751 78.3738 101.402 95.4083 78.6471 97.4683 99.8394 78.92 93.2061 104.568 77.5224 111.53 83.54341 77.9275 108.566 86.1438 78.3162 105.271 89.0555 78.6921 101.66 92.26271 79.0676 97.63771 95.8501 79.4425 93.2036 99.8175 78.0131 108.758 85.0885 78.48371 105.556 87.0756 78.93901 101.951 89.4706 79.3935 97.85041 92.3281 79.8473 93.2549 95.64791 + + + + + + + + + + 0.9626907 0.2377428 0.1292479 0.9587084 0.2508701 0.1339499 0.9624275 0.2373489 0.1319046 0.9674381 0.2206866 0.1239397 0.9666972 0.2224548 0.1265327 0.9710531 0.2066745 0.1197565 0.9698443 0.2107362 0.1224436 0.973921 0.1948635 0.1162162 0.9723572 0.2008132 0.1191451 0.9740307 0.193799 0.1170729 0.9726667 0.2000511 0.1178944 0.9655755 0.2295675 0.1223221 0.9616426 0.2430277 0.1272057 0.9709454 0.2096075 0.115455 0.9747869 0.1940417 0.1101747 0.9776992 0.181373 0.1058696 0.9782667 0.1785381 0.1054443 0.9652234 0.2320052 0.1204889 0.9635627 0.2382965 0.1214982 0.9713015 0.2094527 0.1127071 0.9755165 0.1922101 0.1068783 0.9786648 0.1783247 0.1020568 0.9805375 0.169898 0.09839248 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

7 0 0 0 1 1 1 2 2 8 3 3 7 0 4 1 2 5 8 3 6 1 2 7 2 4 8 9 5 9 8 3 10 2 4 11 9 5 12 2 4 13 3 6 14 10 7 15 9 5 16 3 6 17 10 7 18 3 6 19 4 8 20 11 9 21 10 7 22 4 8 23 11 9 24 4 8 25 5 10 26 13 11 27 6 12 28 7 0 29 14 13 30 13 11 31 7 0 32 14 13 33 7 0 34 8 3 35 15 14 36 14 13 37 8 3 38 15 14 39 8 3 40 9 5 41 16 15 42 15 14 43 9 5 44 16 15 45 9 5 46 10 7 47 17 16 48 16 15 49 10 7 50 17 16 51 10 7 52 11 9 53 18 17 54 12 18 55 13 11 56 19 19 57 18 17 58 13 11 59 19 19 60 13 11 61 14 13 62 20 20 63 19 19 64 14 13 65 20 20 66 14 13 67 15 14 68 21 21 69 20 20 70 15 14 71 21 21 72 15 14 73 16 15 74 22 22 75 21 21 76 16 15 77 22 22 78 16 15 79 17 16 80

+
+
+
+ + + + -77.5224 111.53 83.54341 -77.5224 108.059 90.0433 -77.5224 104.549 96.4335 -77.5224 100.985 102.76 -77.5224 97.2594 109.22 -77.5224 93.37271 115.814 -77.5224 111.53 83.54341 -77.8172 108.386 87.32141 -78.1001 105.008 91.2751 -78.3738 101.402 95.4083 -78.6471 97.4683 99.8394 -78.92 93.2061 104.568 -77.5224 111.53 83.54341 -77.9275 108.566 86.1438 -78.3162 105.271 89.0555 -78.6921 101.66 92.26271 -79.0676 97.63771 95.8501 -79.4425 93.2036 99.8175 -78.0131 108.758 85.0885 -78.48371 105.556 87.0756 -78.93901 101.951 89.4706 -79.3935 97.85041 92.3281 -79.8473 93.2549 95.64791 + + + + + + + + + + -0.9626907 0.2377428 0.1292479 -0.9624275 0.2373489 0.1319046 -0.9587084 0.2508701 0.1339499 -0.9674381 0.2206866 0.1239397 -0.9666972 0.2224548 0.1265327 -0.9710531 0.2066745 0.1197565 -0.9698443 0.2107362 0.1224436 -0.973921 0.1948635 0.1162162 -0.9723572 0.2008132 0.1191451 -0.9740307 0.193799 0.1170729 -0.9726667 0.2000511 0.1178944 -0.9655755 0.2295675 0.1223221 -0.9616426 0.2430277 0.1272057 -0.9709454 0.2096075 0.115455 -0.9747869 0.1940417 0.1101747 -0.9776992 0.181373 0.1058696 -0.9782667 0.1785381 0.1054443 -0.9652234 0.2320052 0.1204889 -0.9635627 0.2382965 0.1214982 -0.9713015 0.2094527 0.1127071 -0.9755165 0.1922101 0.1068783 -0.9786648 0.1783247 0.1020568 -0.9805375 0.169898 0.09839248 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

7 0 0 1 1 1 0 2 2 8 3 3 2 4 4 1 1 5 8 3 6 1 1 7 7 0 8 9 5 9 3 6 10 2 4 11 9 5 12 2 4 13 8 3 14 10 7 15 4 8 16 3 6 17 10 7 18 3 6 19 9 5 20 11 9 21 5 10 22 4 8 23 11 9 24 4 8 25 10 7 26 13 11 27 7 0 28 6 12 29 14 13 30 8 3 31 7 0 32 14 13 33 7 0 34 13 11 35 15 14 36 9 5 37 8 3 38 15 14 39 8 3 40 14 13 41 16 15 42 10 7 43 9 5 44 16 15 45 9 5 46 15 14 47 17 16 48 11 9 49 10 7 50 17 16 51 10 7 52 16 15 53 18 17 54 13 11 55 12 18 56 19 19 57 14 13 58 13 11 59 19 19 60 13 11 61 18 17 62 20 20 63 15 14 64 14 13 65 20 20 66 14 13 67 19 19 68 21 21 69 16 15 70 15 14 71 21 21 72 15 14 73 20 20 74 22 22 75 17 16 76 16 15 77 22 22 78 16 15 79 21 21 80

+
+
+
+ + + + 69.38581 96.17591 124.763 66.0162 97.3693 124.383 61.3666 98.635 124.004 55.4372 99.97301 123.625 48.228 101.383 123.246 44.0404 102.053 123.069 39.3268 102.615 122.915 34.0872 103.069 122.785 28.3217 103.415 122.678 15.2128 103.786 122.537 0 103.726 122.489 69.292 95.7297 124.906 65.3148 96.9924 124.407 60.1909 98.2807 123.928 53.9203 99.5945 123.47 46.5029 100.934 123.032 42.2804 101.562 122.831 37.6034 102.094 122.654 32.4721 102.531 122.501 26.8865 102.871 122.372 14.352 103.264 122.189 0 103.273 122.102 69.2208 95.2765 125.046 64.63101 96.6094 124.427 59.0282 97.92102 123.849 52.4122 99.21131 123.312 44.7832 100.48 122.816 40.5242 101.067 122.59 35.8826 101.57 122.39 30.8585 101.989 122.215 25.4519 102.323 122.064 13.491 102.739 121.839 0 102.819 121.713 61.9562 97.2679 124.133 55.8468 98.5688 123.575 48.7244 99.8484 123.059 28.203 102.166 122.136 22.6051 102.459 121.999 19.6627 102.573 121.939 16.6247 102.667 121.886 10.2617 102.791 121.798 6.93677 102.821 121.764 3.5162 102.83 121.735 69.2208 95.2765 125.046 64.63101 96.6094 124.427 59.0282 97.92102 123.849 52.4122 99.21131 123.312 44.7832 100.48 122.816 35.8826 101.57 122.39 25.4519 102.323 122.064 13.491 102.739 121.839 0 102.819 121.713 69.2208 96.2359 123.278 62.541 97.6856 122.554 55.2976 98.9563 121.939 47.4905 100.048 121.432 39.1197 100.96 121.036 30.1853 101.693 120.748 20.6872 102.248 120.57 10.6254 102.623 120.5 0 102.819 120.541 3.5162 102.83 121.735 6.93677 102.821 121.764 10.2617 102.791 121.798 16.6247 102.667 121.886 19.6627 102.573 121.939 22.6051 102.459 121.999 28.203 102.166 122.136 30.8585 101.989 122.215 40.5242 101.067 122.59 48.7244 99.8484 123.059 55.8468 98.5688 123.575 61.9562 97.2679 124.133 + + + + + + + + + + 0.06198477 -0.1740518 -0.9827837 0.05395817 -0.157083 -0.9861103 0.02383571 -0.2972604 -0.954499 0.02316403 -0.3033604 -0.9525943 0.07611453 -0.03518843 -0.996478 0.07300227 -0.02426284 -0.9970366 0.08197307 0.08157634 -0.9932904 0.08099716 0.08426266 -0.9931463 0.07904565 0.1658738 -0.9829739 0.08087641 0.1592807 -0.983915 0.0709272 0.2181836 -0.9733269 0.07293951 0.2121045 -0.9745212 0.06109839 0.278361 -0.9585313 0.06235033 0.2756173 -0.9592433 0.05127233 0.3412054 -0.9385895 0.05133277 0.3424832 -0.9381207 0.03692805 0.4149987 -0.9090723 0.03921771 0.4105806 -0.9109805 0.01644992 0.5375077 -0.8430985 0.0202341 0.532527 -0.8461712 0.001525938 0.6494098 -0.7604372 -1.52593e-4 0.649559 -0.7603111 0.02975618 -0.2885895 -0.9569905 0.06903386 -0.1745684 -0.9822221 0.07580989 -0.07349044 -0.9944105 0.07956391 -0.03839331 -0.9960902 0.08469051 0.05380517 -0.9949536 0.08505702 0.1472551 -0.9854346 0.06659173 0.2380458 -0.9689685 0.0564596 0.2973439 -0.9530997 0.07596242 0.1812844 -0.9804926 0.04556548 0.3896723 -0.9198257 0.005310237 0.6458703 -0.7634288 0.02923756 0.5276501 -0.8489585 0.05200523 0.3405675 -0.9387809 0.0833792 0.08130389 -0.9931957 0.04117071 0.4054203 -0.9132028 0.03564661 0.4411581 -0.8967213 0.03088533 0.5433932 -0.8389101 0.02041727 0.5311553 -0.8470285 0.01379448 0.5633779 -0.8260842 0.007721245 0.673676 -0.7389866 0.002716124 0.6506583 -0.7593658 0.1719445 0.9172208 0.3593623 0.1875112 0.8633331 0.4685035 0.1825029 0.8772959 0.4438972 0.1641032 0.9342014 0.3167617 0.1683118 0.9399524 0.2969186 0.1433483 0.9713021 0.1897985 0.1651377 0.9727588 0.1626961 0.2015773 0.9705008 0.1322689 0.121895 0.9918236 0.03778314 0.156565 0.9876109 -0.01059025 0.1861072 0.9812288 -0.05054008 0.09967637 0.9837319 -0.1494535 0.1305282 0.9726292 -0.1922369 0.1667847 0.946751 -0.2754007 0.07196331 0.9710469 -0.2277922 0.07935076 0.968751 -0.2350004 0.1136213 0.9392454 -0.3238956 0.04379439 0.9773327 -0.2071308 0.0607016 0.9683266 -0.2421961 0.07165819 0.9530722 -0.2941403 0.03891229 0.9786671 -0.2017335 0.04956269 0.9762996 -0.2106719 0.01718217 0.9915943 -0.128241 0.02383536 0.9903138 -0.1367865 0.03289937 0.9842358 -0.1737748 0.01629692 0.9947234 -0.1012912 0.01327568 0.9921095 -0.1246698 0.002166867 0.9998762 -0.01559537 -1.52593e-4 0.9999095 -0.01345866 -0.003112912 0.9999952 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

12 0 0 1 1 1 0 2 2 12 0 3 0 2 4 11 3 5 13 4 6 2 5 7 1 1 8 13 4 9 1 1 10 12 0 11 14 6 12 3 7 13 2 5 14 14 6 15 2 5 16 13 4 17 15 8 18 4 9 19 3 7 20 15 8 21 3 7 22 14 6 23 16 10 24 5 11 25 4 9 26 16 10 27 4 9 28 15 8 29 17 12 30 6 13 31 5 11 32 17 12 33 5 11 34 16 10 35 18 14 36 7 15 37 6 13 38 18 14 39 6 13 40 17 12 41 19 16 42 8 17 43 7 15 44 19 16 45 7 15 46 18 14 47 20 18 48 9 19 49 8 17 50 20 18 51 8 17 52 19 16 53 21 20 54 10 21 55 9 19 56 21 20 57 9 19 58 20 18 59 12 0 60 11 3 61 22 22 62 12 0 63 22 22 64 23 23 65 12 0 66 33 24 67 13 4 68 12 0 69 23 23 70 33 24 71 13 4 72 24 25 73 34 26 74 13 4 75 33 24 76 24 25 77 14 6 78 13 4 79 34 26 80 14 6 81 35 27 82 15 8 83 17 12 84 16 10 85 27 28 86 17 12 87 27 28 88 28 29 89 16 10 90 15 8 91 26 30 92 16 10 93 26 30 94 27 28 95 18 14 96 36 31 97 19 16 98 20 18 99 41 32 100 21 20 101 38 33 102 20 18 103 19 16 104 18 14 105 17 12 106 28 29 107 18 14 108 28 29 109 29 34 110 25 35 111 14 6 112 34 26 113 14 6 114 25 35 115 35 27 116 15 8 117 35 27 118 26 30 119 19 16 120 36 31 121 30 36 122 18 14 123 29 34 124 36 31 125 19 16 126 37 37 127 38 33 128 20 18 129 39 38 130 31 39 131 20 18 132 38 33 133 39 38 134 20 18 135 40 40 136 41 32 137 21 20 138 42 41 139 32 42 140 21 20 141 41 32 142 42 41 143 20 18 144 31 39 145 40 40 146 19 16 147 30 36 148 37 37 149 44 43 150 43 44 151 52 45 152 44 43 153 52 45 154 53 46 155 53 46 156 72 47 157 44 43 158 54 48 159 71 49 160 45 50 161 55 51 162 70 52 163 46 53 164 46 53 165 71 49 166 55 51 167 45 50 168 72 47 169 54 48 170 56 54 171 69 55 172 47 56 173 57 57 174 68 58 175 48 59 176 48 59 177 69 55 178 57 57 179 58 60 180 49 61 181 67 62 182 58 60 183 65 63 184 66 64 185 66 64 186 49 61 187 58 60 188 67 62 189 68 58 190 58 60 191 47 56 192 70 52 193 56 54 194 53 46 195 54 48 196 72 47 197 54 48 198 55 51 199 71 49 200 56 54 201 57 57 202 69 55 203 58 60 204 59 65 205 65 63 206 57 57 207 58 60 208 68 58 209 55 51 210 56 54 211 70 52 212 59 65 213 50 66 214 64 67 215 59 65 216 62 68 217 63 69 218 63 69 219 50 66 220 59 65 221 61 70 222 62 68 223 60 71 224 59 65 225 60 71 226 62 68 227 61 70 228 60 71 229 51 72 230 64 67 231 65 63 232 59 65 233

+
+
+
+ + + + -69.38581 96.17591 124.763 -66.0162 97.3693 124.383 -61.3666 98.635 124.004 -55.4372 99.97301 123.625 -48.228 101.383 123.246 -44.0404 102.053 123.069 -39.3268 102.615 122.915 -34.0872 103.069 122.785 -28.3217 103.415 122.678 -15.2128 103.786 122.537 0 103.726 122.489 -69.292 95.7297 124.906 -65.3148 96.9924 124.407 -60.1909 98.2807 123.928 -53.9203 99.5945 123.47 -46.5029 100.934 123.032 -42.2804 101.562 122.831 -37.6034 102.094 122.654 -32.4721 102.531 122.501 -26.8865 102.871 122.372 -14.352 103.264 122.189 0 103.273 122.102 -69.2208 95.2765 125.046 -64.63101 96.6094 124.427 -59.0282 97.92102 123.849 -52.4122 99.21131 123.312 -44.7832 100.48 122.816 -40.5242 101.067 122.59 -35.8826 101.57 122.39 -30.8585 101.989 122.215 -25.4519 102.323 122.064 -13.491 102.739 121.839 0 102.819 121.713 -61.9562 97.2679 124.133 -55.8468 98.5688 123.575 -48.7244 99.8484 123.059 -28.203 102.166 122.136 -22.6051 102.459 121.999 -19.6627 102.573 121.939 -16.6247 102.667 121.886 -10.2617 102.791 121.798 -6.93677 102.821 121.764 -3.5162 102.83 121.735 -69.2208 95.2765 125.046 -64.63101 96.6094 124.427 -59.0282 97.92102 123.849 -52.4122 99.21131 123.312 -44.7832 100.48 122.816 -35.8826 101.57 122.39 -25.4519 102.323 122.064 -13.491 102.739 121.839 0 102.819 121.713 -69.2208 96.2359 123.278 -62.541 97.6856 122.554 -55.2976 98.9563 121.939 -47.4905 100.048 121.432 -39.1197 100.96 121.036 -30.1853 101.693 120.748 -20.6872 102.248 120.57 -10.6254 102.623 120.5 0 102.819 120.541 -3.5162 102.83 121.735 -6.93677 102.821 121.764 -10.2617 102.791 121.798 -16.6247 102.667 121.886 -19.6627 102.573 121.939 -22.6051 102.459 121.999 -28.203 102.166 122.136 -30.8585 101.989 122.215 -40.5242 101.067 122.59 -48.7244 99.8484 123.059 -55.8468 98.5688 123.575 -61.9562 97.2679 124.133 + + + + + + + + + + -0.06198477 -0.1740518 -0.9827837 -0.02316403 -0.3033604 -0.9525943 -0.02383571 -0.2972604 -0.954499 -0.05395817 -0.157083 -0.9861103 -0.07611453 -0.03518843 -0.996478 -0.07300227 -0.02426284 -0.9970366 -0.08197307 0.08157634 -0.9932904 -0.08099716 0.08426266 -0.9931463 -0.07904565 0.1658738 -0.9829739 -0.08087641 0.1592807 -0.983915 -0.0709272 0.2181836 -0.9733269 -0.07293951 0.2121045 -0.9745212 -0.06109839 0.278361 -0.9585313 -0.06235033 0.2756173 -0.9592433 -0.05127233 0.3412054 -0.9385895 -0.05133277 0.3424832 -0.9381207 -0.03692805 0.4149987 -0.9090723 -0.03921771 0.4105806 -0.9109805 -0.01644992 0.5375077 -0.8430985 -0.0202341 0.532527 -0.8461712 -0.001525938 0.6494098 -0.7604372 1.52593e-4 0.649559 -0.7603111 -0.06903386 -0.1745684 -0.9822221 -0.02975618 -0.2885895 -0.9569905 -0.07580989 -0.07349044 -0.9944105 -0.08469051 0.05380517 -0.9949536 -0.07956391 -0.03839331 -0.9960902 -0.08505702 0.1472551 -0.9854346 -0.0564596 0.2973439 -0.9530997 -0.06659173 0.2380458 -0.9689685 -0.07596242 0.1812844 -0.9804926 -0.04556548 0.3896723 -0.9198257 -0.005310237 0.6458703 -0.7634288 -0.02923756 0.5276501 -0.8489585 -0.05200523 0.3405675 -0.9387809 -0.0833792 0.08130389 -0.9931957 -0.04117071 0.4054203 -0.9132028 -0.03564661 0.4411581 -0.8967213 -0.02041727 0.5311553 -0.8470285 -0.03088533 0.5433932 -0.8389101 -0.01379448 0.5633779 -0.8260842 -0.002716124 0.6506583 -0.7593658 -0.007721245 0.673676 -0.7389866 -0.1719445 0.9172208 0.3593623 -0.1641032 0.9342014 0.3167617 -0.1825029 0.8772959 0.4438972 -0.1875112 0.8633331 0.4685035 -0.1683118 0.9399524 0.2969186 -0.1433483 0.9713021 0.1897985 -0.2015773 0.9705008 0.1322689 -0.1651377 0.9727588 0.1626961 -0.121895 0.9918236 0.03778314 -0.1861072 0.9812288 -0.05054008 -0.156565 0.9876109 -0.01059025 -0.09967637 0.9837319 -0.1494535 -0.1667847 0.946751 -0.2754007 -0.1305282 0.9726292 -0.1922369 -0.07196331 0.9710469 -0.2277922 -0.1136213 0.9392454 -0.3238956 -0.07935076 0.968751 -0.2350004 -0.04379439 0.9773327 -0.2071308 -0.07165819 0.9530722 -0.2941403 -0.0607016 0.9683266 -0.2421961 -0.04956269 0.9762996 -0.2106719 -0.03891229 0.9786671 -0.2017335 -0.01718217 0.9915943 -0.128241 -0.03289937 0.9842358 -0.1737748 -0.02383536 0.9903138 -0.1367865 -0.01327568 0.9921095 -0.1246698 -0.01629692 0.9947234 -0.1012912 -0.002166867 0.9998762 -0.01559537 1.52593e-4 0.9999095 -0.01345866 0.003112912 0.9999952 0 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

12 0 0 11 1 1 0 2 2 12 0 3 0 2 4 1 3 5 13 4 6 12 0 7 1 3 8 13 4 9 1 3 10 2 5 11 14 6 12 13 4 13 2 5 14 14 6 15 2 5 16 3 7 17 15 8 18 14 6 19 3 7 20 15 8 21 3 7 22 4 9 23 16 10 24 15 8 25 4 9 26 16 10 27 4 9 28 5 11 29 17 12 30 16 10 31 5 11 32 17 12 33 5 11 34 6 13 35 18 14 36 17 12 37 6 13 38 18 14 39 6 13 40 7 15 41 19 16 42 18 14 43 7 15 44 19 16 45 7 15 46 8 17 47 20 18 48 19 16 49 8 17 50 20 18 51 8 17 52 9 19 53 21 20 54 20 18 55 9 19 56 21 20 57 9 19 58 10 21 59 12 0 60 23 22 61 22 23 62 12 0 63 22 23 64 11 1 65 12 0 66 13 4 67 33 24 68 12 0 69 33 24 70 23 22 71 13 4 72 34 25 73 24 26 74 13 4 75 24 26 76 33 24 77 14 6 78 34 25 79 13 4 80 14 6 81 15 8 82 35 27 83 17 12 84 28 28 85 27 29 86 17 12 87 27 29 88 16 10 89 16 10 90 27 29 91 26 30 92 16 10 93 26 30 94 15 8 95 18 14 96 19 16 97 36 31 98 20 18 99 21 20 100 41 32 101 38 33 102 19 16 103 20 18 104 18 14 105 29 34 106 28 28 107 18 14 108 28 28 109 17 12 110 25 35 111 34 25 112 14 6 113 14 6 114 35 27 115 25 35 116 15 8 117 26 30 118 35 27 119 19 16 120 30 36 121 36 31 122 18 14 123 36 31 124 29 34 125 19 16 126 38 33 127 37 37 128 20 18 129 31 38 130 39 39 131 20 18 132 39 39 133 38 33 134 20 18 135 41 32 136 40 40 137 21 20 138 32 41 139 42 42 140 21 20 141 42 42 142 41 32 143 20 18 144 40 40 145 31 38 146 19 16 147 37 37 148 30 36 149 44 43 150 53 44 151 52 45 152 44 43 153 52 45 154 43 46 155 53 44 156 44 43 157 72 47 158 54 48 159 45 49 160 71 50 161 55 51 162 46 52 163 70 53 164 46 52 165 55 51 166 71 50 167 45 49 168 54 48 169 72 47 170 56 54 171 47 55 172 69 56 173 57 57 174 48 58 175 68 59 176 48 58 177 57 57 178 69 56 179 58 60 180 67 61 181 49 62 182 58 60 183 66 63 184 65 64 185 66 63 186 58 60 187 49 62 188 67 61 189 58 60 190 68 59 191 47 55 192 56 54 193 70 53 194 53 44 195 72 47 196 54 48 197 54 48 198 71 50 199 55 51 200 56 54 201 69 56 202 57 57 203 58 60 204 65 64 205 59 65 206 57 57 207 68 59 208 58 60 209 55 51 210 70 53 211 56 54 212 59 65 213 64 66 214 50 67 215 59 65 216 63 68 217 62 69 218 63 68 219 59 65 220 50 67 221 61 70 222 60 71 223 62 69 224 59 65 225 62 69 226 60 71 227 61 70 228 51 72 229 60 71 230 64 66 231 59 65 232 65 64 233

+
+
+
+ + + + 77.5224 111.53 83.54341 77.8199 114.67 74.1567 77.8141 109.951 84.3971 78.1154 112.309 75.3104 78.1054 108.171 85.4392 78.4089 109.748 76.65081 78.3965 106.19 86.6697 78.7005 106.988 78.178 78.68721 104.006 88.0886 78.9901 104.028 79.8919 78.9777 101.621 89.6958 79.2778 100.87 81.79251 79.2678 99.03411 91.4914 79.8473 94.6527 76.6603 79.8473 93.9538 86.1541 79.8473 93.2549 95.64791 77.5224 118.107 70.6113 78.12091 113.688 71.75101 78.7099 108.415 73.1109 79.2871 102.114 74.736 + + + + + + + + + + 0.9771338 0.1958418 0.0827986 0.9869651 0.1493312 0.06000101 0.9832153 0.1659954 0.07571882 0.9695778 0.2221148 0.1028783 0.982749 0.1733491 0.06445652 0.9901981 0.1323316 0.04468017 0.9868767 0.153818 0.04913628 0.9918237 0.1222574 0.03659176 0.9899677 0.1365714 0.03622573 0.9938493 0.1078844 0.02499496 0.9926425 0.1185067 0.02484273 0.9949639 0.09854722 0.01831161 0.9947403 0.101354 0.01480174 0.9963341 0.08520996 0.007599294 0.9879571 0.143988 0.056643 0.9844554 0.1599812 0.07248288 0.9660385 0.2342919 0.1089822 0.9927069 0.1156688 0.03396815 0.9970693 0.07629853 0.005615532 0.9955583 0.09259444 0.01702952 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

4 0 0 3 1 1 1 2 2 4 0 3 1 2 4 2 3 5 6 4 6 5 5 7 3 1 8 6 4 9 3 1 10 4 0 11 8 6 12 7 7 13 5 5 14 8 6 15 5 5 16 6 4 17 10 8 18 9 9 19 7 7 20 10 8 21 7 7 22 8 6 23 12 10 24 11 11 25 9 9 26 12 10 27 9 9 28 10 8 29 15 12 30 14 13 31 11 11 32 15 12 33 11 11 34 12 10 35 1 2 36 17 14 37 16 15 38 3 1 39 17 14 40 1 2 41 0 16 42 2 3 43 1 2 44 0 16 45 1 2 46 16 15 47 17 14 48 3 1 49 5 5 50 5 5 51 18 17 52 17 14 53 14 13 54 13 18 55 19 19 56 9 9 57 19 19 58 18 17 59 18 17 60 7 7 61 9 9 62 19 19 63 11 11 64 14 13 65 11 11 66 19 19 67 9 9 68 5 5 69 7 7 70 18 17 71

+
+
+
+ + + + 76.802 145.137 -34.9224 79.8473 102.837 -34.5142 79.8473 102.394 -28.4892 79.8473 102.079 -24.2076 79.8277 102.48 -24.2477 79.6947 105.139 -24.56 79.5558 107.803 -24.8791 79.4108 110.468 -25.2048 79.2596 113.133 -25.5369 79.1019 115.797 -25.8752 78.9376 118.459 -26.2195 78.7666 121.116 -26.5697 78.5885 123.768 -26.9254 78.4032 126.412 -27.2865 78.2092 129.065 -27.655 78.00601 131.722 -28.0306 77.79341 134.381 -28.4128 77.57101 137.039 -28.8009 77.3384 139.691 -29.1945 77.0952 142.336 -29.5931 76.84111 144.968 -29.9963 76.7828 145.195 -37.7937 77.0175 142.846 -37.6118 77.2461 140.454 -37.4266 77.46881 138.022 -37.2383 77.6856 135.549 -37.0468 77.8967 133.034 -36.8521 78.1021 130.479 -36.6543 78.30191 127.883 -36.4534 78.4962 125.247 -36.2493 78.6848 122.573 -36.0422 78.8679 119.862 -35.8323 79.04531 117.113 -35.6195 79.21701 114.328 -35.4039 79.38311 111.508 -35.1855 79.54351 108.652 -34.9644 79.69831 105.762 -34.7407 78.10881 130.386 -33.7626 77.6952 135.474 -34.3162 78.5004 125.129 -33.042 78.8701 119.701 -32.1543 79.2178 114.102 -31.0996 79.54351 108.333 -29.8779 + + + + + + + + + + 0.9950705 0.09906119 -0.004652559 0.9954842 0.09485924 -0.003612518 0.9952148 0.09765082 -0.003433108 0.9958491 0.09097981 -0.002732992 0.9970507 0.07674586 1.56109e-4 0.9965031 0.08354854 -0.00120753 0.9961862 0.0872457 -0.001105904 0.996782 0.08016133 2.66741e-4 0.9972856 0.07361787 0.001404285 0.995429 0.09539234 -0.004628837 0.9960238 0.08905494 -0.002411007 0.9964663 0.08398747 -0.001068115 0.9960547 0.08871924 -0.002044737 0.9958335 0.09115034 -0.00271666 0.9962022 0.08704131 -0.002266228 0.9965314 0.08320903 -0.001171648 0.9969311 0.07828104 -7.01935e-4 0.9967205 0.08090591 -0.001586973 0.996979 0.077672 2.74675e-4 0.9972125 0.07458329 0.002186655 0.9974524 0.07132285 0.00137335 0.9974138 0.07187163 4.57781e-4 0.9970878 0.07626271 1.05174e-4 0.9972463 0.0741617 -3.35711e-4 0.9975407 0.07007992 0.001224637 0.9966695 0.08154761 2.44155e-4 0.9975143 0.07045429 0.001287221 0.9979107 0.06456959 0.002228856 0.9977115 0.06757354 0.002359807 0.9982089 0.0597558 0.002899229 0.9980096 0.06299167 0.003021359 0.9978584 0.06537228 0.002258419 0.9980532 0.06233942 0.001915454 0.9978078 0.06616443 0.001434326 0.998085 0.06178098 0.003061532 0.9986342 0.05207586 0.004256308 0.998549 0.05374521 0.003370761 0.9985113 0.05444538 0.003326535 0.9983361 0.05755871 0.003479123 0.9984049 0.05634939 0.003533661 0.9982529 0.05901443 0.002916276 0.9986833 0.05116212 0.003761649 0.9983791 0.05686599 0.002370059 0.9982272 0.05944937 0.0028553 0.9979147 0.06451135 0.002149999 0.9980872 0.06180286 0.001583039 0.9977475 0.06708091 5.5409e-4 0.9987816 0.04921799 0.00361824 0.9987238 0.05037802 0.003593385 0.9984952 0.05473887 0.003346979 0.9986194 0.05243635 0.003103137 0.9983741 0.0569517 0.002416968 0.9986589 0.051705 0.002661466 0.9976505 0.06844395 0.003009855 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 79.7669 111.095 -122.022 79.8473 109.365 -123.175 79.8473 109.29 -122.165 79.8473 109.216 -121.158 79.8081 110.23 -122.598 79.8085 110.161 -121.595 76.9757 140.074 -97.34671 79.8473 109.216 -121.158 79.8473 108.647 -113.427 77.0577 138.876 -103.521 77.5059 135.425 -105.819 77.9285 131.945 -108.137 78.3219 128.462 -110.457 78.68241 125.004 -112.759 79.0097 121.56 -115.053 79.3071 118.054 -117.388 79.5633 114.546 -119.724 79.7669 111.095 -122.022 79.8085 110.161 -121.595 79.8473 108.223 -107.664 79.5887 113.123 -107.455 79.26361 117.998 -107.247 78.8758 122.806 -107.043 78.4283 127.506 -106.843 78.1011 130.595 -104.508 77.7492 133.728 -102.141 77.3736 136.892 -99.7507 79.44561 116.066 -116.321 + + + + + + + + + + 0.9989487 0.04576182 0.002745628 0.9991077 0.04216295 0.002498328 0.9990638 0.04314321 0.003203511 0.9990648 0.04312241 0.003168106 0.9942439 0.1071212 -0.002075254 0.9930706 0.1174081 -0.005127251 0.9935445 0.1133779 -0.003845334 0.9961057 0.088108 0.003234982 0.9954112 0.09567737 0.001586973 0.9947379 0.1024524 -6.10381e-5 0.9964334 0.08429247 0.003936886 0.9909594 0.1335552 -0.01275151 0.9917643 0.1277815 -0.008697807 0.9907197 0.1354144 -0.0117194 0.9911721 0.1320871 -0.01144468 0.9924289 0.1225963 -0.007416188 0.9982511 0.05890196 0.005035638 0.9972063 0.07458829 0.004028499 0.9976353 0.06857615 0.004608333 0.9986266 0.05221873 0.004272699 0.998671 0.05127179 0.005249202 0.9989771 0.04507648 0.003601193 0.9990938 0.04245162 0.003112912 0.9972496 0.07394832 0.005005121 0.9982486 0.05896282 0.004821956 0.9986124 0.05252319 0.003845393 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

5 0 0 4 0 1 0 0 2 3 1 3 4 1 4 5 1 5 4 2 6 2 2 7 1 2 8 4 3 9 3 3 10 2 3 11 12 4 12 11 5 13 24 6 14 22 7 15 13 8 16 23 9 17 12 4 18 23 9 19 13 8 20 14 10 21 13 8 22 22 7 23 23 9 24 12 4 25 24 6 26 6 11 27 26 11 28 9 11 29 10 12 30 9 13 31 26 14 32 10 12 33 25 15 34 11 5 35 24 6 36 11 5 37 25 15 38 26 14 39 25 15 40 10 12 41 16 16 42 15 17 43 27 18 44 8 19 45 17 20 46 16 16 47 18 21 48 17 20 49 8 19 50 18 21 51 8 19 52 7 22 53 14 10 54 21 23 55 15 17 56 27 18 57 15 17 58 21 23 59 20 24 60 27 18 61 21 23 62 22 7 63 21 23 64 14 10 65 19 25 66 8 19 67 20 24 68 16 16 69 27 18 70 20 24 71 20 24 72 8 19 73 16 16 74

+
+
+
+ + + + 77.5224 118.107 70.6113 79.8473 95.05471 71.20111 79.8473 94.6527 76.6603 79.56961 98.53601 75.6588 79.2871 102.114 74.736 79.0002 105.402 73.888 78.7099 108.415 73.1109 78.41661 111.17 72.4003 78.12091 113.688 71.75101 77.5224 120.407 65.8496 78.1262 115.536 66.8779 78.4235 112.784 67.4587 78.7173 109.792 68.0904 79.0074 106.537 68.7773 79.2929 103.006 69.5227 79.5731 99.1832 70.3297 78.7126 109.497 69.2896 79.28691 102.439 73.0067 + + + + + + + + + + 0.9929107 0.1129514 0.03701972 0.9904244 0.1291552 0.04876893 0.9920893 0.1185062 0.04141461 0.9954307 0.09326535 0.02047806 0.9946091 0.09979659 0.02816885 0.9938338 0.106177 0.03195381 0.9945323 0.100439 0.02859658 0.9896018 0.133367 0.05386561 0.9879682 0.1419448 0.06140464 0.9855599 0.1524744 0.07364308 0.995419 0.09253466 0.02404922 0.9961304 0.08630686 0.01660215 0.9965686 0.08157736 0.01400822 0.9977197 0.06731289 0.004956483 0.9970539 0.07593113 0.01086473 0.9972903 0.07306176 0.008606255 0.9961878 0.08575719 0.01599174 0.9974531 0.07092618 0.007538139 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

11 0 0 10 1 1 7 2 2 5 3 3 16 4 4 6 5 5 11 0 6 16 4 7 12 6 8 16 4 9 11 0 10 6 5 11 8 7 12 9 8 13 0 9 14 9 8 15 8 7 16 10 1 17 8 7 18 7 2 19 10 1 20 7 2 21 6 5 22 11 0 23 13 10 24 12 6 25 16 4 26 17 11 27 14 12 28 13 10 29 2 13 30 1 13 31 15 13 32 3 14 33 15 15 34 14 12 35 4 16 36 17 11 37 5 3 38 17 11 39 16 4 40 5 3 41 4 16 42 3 14 43 17 11 44 3 14 45 14 12 46 17 11 47 3 14 48 2 17 49 15 15 50 13 10 51 16 4 52 17 11 53

+
+
+
+ + + + 77.52 127.431 -147.124 77.5223 129.977 -138.29 77.5224 132.557 -129.407 77.9534 125.791 -146.232 77.9506 127.953 -137.51 78.3461 124.008 -145.191 78.3395 125.783 -136.58 78.6981 122.081 -144.002 78.6891 123.467 -135.5 79.0094 120.011 -142.664 78.9994 121.006 -134.271 79.50981 115.44 -139.543 79.50201 115.648 -131.361 79.8473 110.296 -135.827 79.8473 109.709 -127.852 79.7669 111.095 -122.022 79.6024 114.225 -123.405 79.4047 117.228 -124.656 79.1739 120.102 -125.776 78.9099 122.849 -126.765 78.6128 125.468 -127.623 78.2825 127.959 -128.349 77.91901 130.322 -128.944 79.8473 109.365 -123.175 77.5224 132.557 -129.407 77.3875 134.34 -122.903 77.2651 135.987 -116.421 77.1552 137.499 -109.96 77.0577 138.876 -103.521 77.8517 131.484 -122.403 77.7415 132.857 -115.958 77.6422 134.113 -109.532 78.2648 128.53 -121.748 78.1679 129.633 -115.338 78.6186 125.588 -120.977 78.5353 126.434 -114.599 79.7669 111.095 -122.022 77.91901 130.322 -128.944 78.2825 127.959 -128.349 78.6128 125.468 -127.623 78.9099 122.849 -126.765 79.1739 120.102 -125.776 79.4047 117.228 -124.656 79.6024 114.225 -123.405 79.5633 114.546 -119.724 79.3071 118.054 -117.388 79.0097 121.56 -115.053 78.68241 125.004 -112.759 78.3219 128.462 -110.457 77.9285 131.945 -108.137 77.5059 135.425 -105.819 79.1833 119.707 -119.141 + + + + + + + + + + 0.9836414 0.1745712 -0.04443627 0.9764518 0.2101225 -0.04889124 0.9739559 0.219829 -0.05554473 0.9812413 0.1857986 -0.0514242 0.9882972 0.1491769 -0.03186184 0.9831756 0.1794833 -0.03393733 0.9916589 0.1270512 -0.02169907 0.9879999 0.1528709 -0.0220654 0.9946444 0.1025438 -0.01294004 0.9920867 0.1250065 -0.01171934 0.9972608 0.07388585 -0.003479123 0.9955867 0.09384548 -4.88302e-4 0.9983188 0.05795621 8.24023e-4 0.9975951 0.06912481 0.005066096 0.9851484 0.1648933 -0.04788404 0.9868467 0.1560765 -0.04211682 0.9903622 0.1350147 -0.03088492 0.9929617 0.11646 -0.0215463 0.9948964 0.09995043 -0.01382517 0.9966366 0.08108961 -0.01184141 0.9973506 0.07257342 -0.005005061 0.9984562 0.05548334 -0.002655088 0.9987051 0.05087524 0 0.9990152 0.04425281 0.003234982 0.9901812 0.139196 -0.01287889 0.989074 0.1466153 -0.01538175 0.987621 0.1556156 -0.01971518 0.9890295 0.1467964 -0.01648026 0.9910253 0.1331865 -0.01141422 0.990037 0.1400212 -0.01486271 0.9925697 0.1214962 -0.00665313 0.9918518 0.127144 -0.008026599 0.9942081 0.1074563 -0.001861631 0.9940758 0.1086793 -0.001525938 0.9857435 0.1669712 -0.02075308 0.9872338 0.158486 -0.01586991 0.9902051 0.1394087 -0.007690668 0.9924218 0.1228396 -0.003082394 0.9902788 0.1383302 -0.0145874 0.9905757 0.1363575 -0.01290935 0.9922846 0.1237533 -0.007507562 0.9936548 0.1124305 -0.003112852 0.9945918 0.103857 9.76616e-4 0.9958058 0.09140449 0.004028499 0.9962208 0.08679509 0.003295958 0.9978801 0.06485289 0.005432367 0.998026 0.06259405 0.005127131 0.9971158 0.0757786 0.004211604 0.9984681 0.05502617 0.005798637 0.9970077 0.0771225 0.005279839 0.9949647 0.1002259 -6.10389e-5 0.9956952 0.09268736 2.13636e-4 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -77.5224 111.53 83.54341 -77.8199 114.67 74.1567 -77.8141 109.951 84.3971 -78.1154 112.309 75.3104 -78.1054 108.171 85.4392 -78.4089 109.748 76.65081 -78.3965 106.19 86.6697 -78.7005 106.988 78.178 -78.68721 104.006 88.0886 -78.9901 104.028 79.8919 -78.9777 101.621 89.6958 -79.2778 100.87 81.79251 -79.2678 99.03411 91.4914 -79.8473 94.6527 76.6603 -79.8473 93.9538 86.1541 -79.8473 93.2549 95.64791 -77.5224 118.107 70.6113 -78.12091 113.688 71.75101 -78.7099 108.415 73.1109 -79.2871 102.114 74.736 + + + + + + + + + + -0.9771338 0.1958418 0.0827986 -0.9695778 0.2221148 0.1028783 -0.9832153 0.1659954 0.07571882 -0.9869651 0.1493312 0.06000101 -0.982749 0.1733491 0.06445652 -0.9901981 0.1323316 0.04468017 -0.9868767 0.153818 0.04913628 -0.9918237 0.1222574 0.03659176 -0.9899677 0.1365714 0.03622573 -0.9938493 0.1078844 0.02499496 -0.9926425 0.1185067 0.02484273 -0.9949639 0.09854722 0.01831161 -0.9947403 0.101354 0.01480174 -0.9963341 0.08520996 0.007599294 -0.9844554 0.1599812 0.07248288 -0.9879571 0.143988 0.056643 -0.9660385 0.2342919 0.1089822 -0.9927069 0.1156688 0.03396815 -0.9955583 0.09259444 0.01702952 -0.9970693 0.07629853 0.005615532 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

4 0 0 2 1 1 1 2 2 4 0 3 1 2 4 3 3 5 6 4 6 4 0 7 3 3 8 6 4 9 3 3 10 5 5 11 8 6 12 6 4 13 5 5 14 8 6 15 5 5 16 7 7 17 10 8 18 8 6 19 7 7 20 10 8 21 7 7 22 9 9 23 12 10 24 10 8 25 9 9 26 12 10 27 9 9 28 11 11 29 15 12 30 12 10 31 11 11 32 15 12 33 11 11 34 14 13 35 1 2 36 16 14 37 17 15 38 3 3 39 1 2 40 17 15 41 0 16 42 16 14 43 1 2 44 0 16 45 1 2 46 2 1 47 17 15 48 5 5 49 3 3 50 5 5 51 17 15 52 18 17 53 14 13 54 19 18 55 13 19 56 9 9 57 18 17 58 19 18 59 18 17 60 9 9 61 7 7 62 19 18 63 14 13 64 11 11 65 11 11 66 9 9 67 19 18 68 5 5 69 18 17 70 7 7 71

+
+
+
+ + + + -77.52 127.431 -147.124 -77.5223 129.977 -138.29 -77.5224 132.557 -129.407 -77.9534 125.791 -146.232 -77.9506 127.953 -137.51 -78.3461 124.008 -145.191 -78.3395 125.783 -136.58 -78.6981 122.081 -144.002 -78.6891 123.467 -135.5 -79.0094 120.011 -142.664 -78.9994 121.006 -134.271 -79.50981 115.44 -139.543 -79.50201 115.648 -131.361 -79.8473 110.296 -135.827 -79.8473 109.709 -127.852 -79.7669 111.095 -122.022 -79.6024 114.225 -123.405 -79.4047 117.228 -124.656 -79.1739 120.102 -125.776 -78.9099 122.849 -126.765 -78.6128 125.468 -127.623 -78.2825 127.959 -128.349 -77.91901 130.322 -128.944 -79.8473 109.365 -123.175 -77.5224 132.557 -129.407 -77.3875 134.34 -122.903 -77.2651 135.987 -116.421 -77.1552 137.499 -109.96 -77.0577 138.876 -103.521 -77.8517 131.484 -122.403 -77.7415 132.857 -115.958 -77.6422 134.113 -109.532 -78.2648 128.53 -121.748 -78.1679 129.633 -115.338 -78.6186 125.588 -120.977 -78.5353 126.434 -114.599 -79.7669 111.095 -122.022 -77.91901 130.322 -128.944 -78.2825 127.959 -128.349 -78.6128 125.468 -127.623 -78.9099 122.849 -126.765 -79.1739 120.102 -125.776 -79.4047 117.228 -124.656 -79.6024 114.225 -123.405 -79.5633 114.546 -119.724 -79.3071 118.054 -117.388 -79.0097 121.56 -115.053 -78.68241 125.004 -112.759 -78.3219 128.462 -110.457 -77.9285 131.945 -108.137 -77.5059 135.425 -105.819 -79.1833 119.707 -119.141 + + + + + + + + + + -0.9836414 0.1745712 -0.04443627 -0.9812413 0.1857986 -0.0514242 -0.9739559 0.219829 -0.05554473 -0.9764518 0.2101225 -0.04889124 -0.9882972 0.1491769 -0.03186184 -0.9831756 0.1794833 -0.03393733 -0.9916589 0.1270512 -0.02169907 -0.9879999 0.1528709 -0.0220654 -0.9946444 0.1025438 -0.01294004 -0.9920867 0.1250065 -0.01171934 -0.9972608 0.07388585 -0.003479123 -0.9955867 0.09384548 -4.88302e-4 -0.9983188 0.05795621 8.24023e-4 -0.9975951 0.06912481 0.005066096 -0.9868467 0.1560765 -0.04211682 -0.9851484 0.1648933 -0.04788404 -0.9929617 0.11646 -0.0215463 -0.9903622 0.1350147 -0.03088492 -0.9948964 0.09995043 -0.01382517 -0.9973506 0.07257342 -0.005005061 -0.9966366 0.08108961 -0.01184141 -0.9987051 0.05087524 0 -0.9984562 0.05548334 -0.002655088 -0.9990152 0.04425281 0.003234982 -0.9901812 0.139196 -0.01287889 -0.9890295 0.1467964 -0.01648026 -0.987621 0.1556156 -0.01971518 -0.989074 0.1466153 -0.01538175 -0.9910253 0.1331865 -0.01141422 -0.990037 0.1400212 -0.01486271 -0.9925697 0.1214962 -0.00665313 -0.9918518 0.127144 -0.008026599 -0.9942081 0.1074563 -0.001861631 -0.9940758 0.1086793 -0.001525938 -0.9857435 0.1669712 -0.02075308 -0.9872338 0.158486 -0.01586991 -0.9902046 0.1394129 -0.007690906 -0.9924218 0.1228396 -0.003082394 -0.9902788 0.1383302 -0.0145874 -0.9905757 0.1363575 -0.01290935 -0.9922846 0.1237533 -0.007507562 -0.9936548 0.1124305 -0.003112852 -0.9945918 0.103857 9.76616e-4 -0.9958058 0.09140449 0.004028499 -0.9962208 0.08679509 0.003295958 -0.9978801 0.06485289 0.005432367 -0.9971158 0.0757786 0.004211604 -0.998026 0.06259405 0.005127131 -0.9984681 0.05502617 0.005798637 -0.9970077 0.0771225 0.005279839 -0.9949647 0.1002259 -6.10389e-5 -0.9956952 0.09268736 2.13636e-4 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -77.5224 118.107 70.6113 -79.8473 95.05471 71.20111 -79.8473 94.6527 76.6603 -79.56961 98.53601 75.6588 -79.2871 102.114 74.736 -79.0002 105.402 73.888 -78.7099 108.415 73.1109 -78.41661 111.17 72.4003 -78.12091 113.688 71.75101 -77.5224 120.407 65.8496 -78.1262 115.536 66.8779 -78.4235 112.784 67.4587 -78.7173 109.792 68.0904 -79.0074 106.537 68.7773 -79.2929 103.006 69.5227 -79.5731 99.1832 70.3297 -78.7126 109.497 69.2896 -79.28691 102.439 73.0067 + + + + + + + + + + -0.9929107 0.1129514 0.03701972 -0.9920893 0.1185062 0.04141461 -0.9904244 0.1291552 0.04876893 -0.9954307 0.09326535 0.02047806 -0.9938338 0.106177 0.03195381 -0.9946091 0.09979659 0.02816885 -0.9945323 0.100439 0.02859658 -0.9896018 0.133367 0.05386561 -0.9855599 0.1524744 0.07364308 -0.9879682 0.1419448 0.06140464 -0.995419 0.09253466 0.02404922 -0.9961304 0.08630686 0.01660215 -0.9965686 0.08157736 0.01400822 -0.9977197 0.06731289 0.004956483 -0.9970539 0.07593113 0.01086473 -0.9972903 0.07306176 0.008606255 -0.9961878 0.08575719 0.01599174 -0.9974531 0.07092618 0.007538139 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

11 0 0 7 1 1 10 2 2 5 3 3 6 4 4 16 5 5 11 0 6 12 6 7 16 5 8 16 5 9 6 4 10 11 0 11 8 7 12 0 8 13 9 9 14 9 9 15 10 2 16 8 7 17 8 7 18 10 2 19 7 1 20 7 1 21 11 0 22 6 4 23 13 10 24 16 5 25 12 6 26 17 11 27 13 10 28 14 12 29 2 13 30 15 13 31 1 13 32 3 14 33 14 12 34 15 15 35 4 16 36 5 3 37 17 11 38 17 11 39 5 3 40 16 5 41 4 16 42 17 11 43 3 14 44 3 14 45 17 11 46 14 12 47 3 14 48 15 15 49 2 17 50 13 10 51 17 11 52 16 5 53

+
+
+
+ + + + -79.7669 111.095 -122.022 -79.8473 109.365 -123.175 -79.8473 109.29 -122.165 -79.8473 109.216 -121.158 -79.8081 110.23 -122.598 -79.8085 110.161 -121.595 -76.9757 140.074 -97.34671 -79.8473 109.216 -121.158 -79.8473 108.647 -113.427 -77.0577 138.876 -103.521 -77.5059 135.425 -105.819 -77.9285 131.945 -108.137 -78.3219 128.462 -110.457 -78.68241 125.004 -112.759 -79.0097 121.56 -115.053 -79.3071 118.054 -117.388 -79.5633 114.546 -119.724 -79.7669 111.095 -122.022 -79.8085 110.161 -121.595 -79.8473 108.223 -107.664 -79.5887 113.123 -107.455 -79.26361 117.998 -107.247 -78.8758 122.806 -107.043 -78.4283 127.506 -106.843 -78.1011 130.595 -104.508 -77.7492 133.728 -102.141 -77.3736 136.892 -99.7507 -79.44561 116.066 -116.321 + + + + + + + + + + -0.9989487 0.04576182 0.002745628 -0.9991077 0.04216295 0.002498328 -0.9990638 0.04314321 0.003203511 -0.9990648 0.04312241 0.003168106 -0.9942439 0.1071212 -0.002075254 -0.9935445 0.1133779 -0.003845334 -0.9930706 0.1174081 -0.005127251 -0.9961057 0.088108 0.003234982 -0.9947379 0.1024524 -6.10381e-5 -0.9954112 0.09567737 0.001586973 -0.9964334 0.08429247 0.003936886 -0.9909594 0.1335552 -0.01275151 -0.9917643 0.1277815 -0.008697807 -0.9911721 0.1320871 -0.01144468 -0.9907197 0.1354144 -0.0117194 -0.9924289 0.1225963 -0.007416188 -0.9982511 0.05890196 0.005035638 -0.9976353 0.06857615 0.004608333 -0.9972063 0.07458829 0.004028499 -0.9986266 0.05221873 0.004272699 -0.998671 0.05127179 0.005249202 -0.9989771 0.04507648 0.003601193 -0.9990938 0.04245162 0.003112912 -0.9972496 0.07394832 0.005005121 -0.9982486 0.05896282 0.004821956 -0.9986124 0.05252319 0.003845393 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

5 0 0 0 0 1 4 0 2 3 1 3 5 1 4 4 1 5 4 2 6 1 2 7 2 2 8 4 3 9 2 3 10 3 3 11 12 4 12 24 5 13 11 6 14 22 7 15 23 8 16 13 9 17 12 4 18 13 9 19 23 8 20 14 10 21 22 7 22 13 9 23 23 8 24 24 5 25 12 4 26 6 11 27 9 11 28 26 11 29 10 12 30 26 13 31 9 14 32 10 12 33 11 6 34 25 15 35 24 5 36 25 15 37 11 6 38 26 13 39 10 12 40 25 15 41 16 16 42 27 17 43 15 18 44 8 19 45 16 16 46 17 20 47 18 21 48 8 19 49 17 20 50 18 21 51 7 22 52 8 19 53 14 10 54 15 18 55 21 23 56 27 17 57 21 23 58 15 18 59 20 24 60 21 23 61 27 17 62 22 7 63 14 10 64 21 23 65 19 25 66 20 24 67 8 19 68 16 16 69 20 24 70 27 17 71 20 24 72 16 16 73 8 19 74

+
+
+
+ + + + -76.802 145.137 -34.9224 -79.8473 102.837 -34.5142 -79.8473 102.394 -28.4892 -79.8473 102.079 -24.2076 -79.8277 102.48 -24.2477 -79.6947 105.139 -24.56 -79.5558 107.803 -24.8791 -79.4108 110.468 -25.2048 -79.2596 113.133 -25.5369 -79.1019 115.797 -25.8752 -78.9376 118.459 -26.2195 -78.7666 121.116 -26.5697 -78.5885 123.768 -26.9254 -78.4032 126.412 -27.2865 -78.2092 129.065 -27.655 -78.00601 131.722 -28.0306 -77.79341 134.381 -28.4128 -77.57101 137.039 -28.8009 -77.3384 139.691 -29.1945 -77.0952 142.336 -29.5931 -76.84111 144.968 -29.9963 -76.7828 145.195 -37.7937 -77.0175 142.846 -37.6118 -77.2461 140.454 -37.4266 -77.46881 138.022 -37.2383 -77.6856 135.549 -37.0468 -77.8967 133.034 -36.8521 -78.1021 130.479 -36.6543 -78.30191 127.883 -36.4534 -78.4962 125.247 -36.2493 -78.6848 122.573 -36.0422 -78.8679 119.862 -35.8323 -79.04531 117.113 -35.6195 -79.21701 114.328 -35.4039 -79.38311 111.508 -35.1855 -79.54351 108.652 -34.9644 -79.69831 105.762 -34.7407 -78.10881 130.386 -33.7626 -77.6952 135.474 -34.3162 -78.5004 125.129 -33.042 -78.8701 119.701 -32.1543 -79.2178 114.102 -31.0996 -79.54351 108.333 -29.8779 + + + + + + + + + + -0.9950705 0.09906119 -0.004652559 -0.9954842 0.09485924 -0.003612518 -0.9952148 0.09765082 -0.003433108 -0.9958491 0.09097981 -0.002732992 -0.9970507 0.07674586 1.56109e-4 -0.9965031 0.08354854 -0.00120753 -0.9961862 0.0872457 -0.001105904 -0.996782 0.08016133 2.66741e-4 -0.9972856 0.07361787 0.001404285 -0.995429 0.09539234 -0.004628837 -0.9960238 0.08905494 -0.002411007 -0.9960547 0.08871924 -0.002044737 -0.9964663 0.08398747 -0.001068115 -0.9958335 0.09115034 -0.00271666 -0.9962022 0.08704131 -0.002266228 -0.9965314 0.08320903 -0.001171648 -0.9969311 0.07828104 -7.01935e-4 -0.9967205 0.08090591 -0.001586973 -0.996979 0.077672 2.74675e-4 -0.9972125 0.07458329 0.002186655 -0.9974524 0.07132285 0.00137335 -0.9974138 0.07187163 4.57781e-4 -0.9970878 0.07626271 1.05174e-4 -0.9972463 0.0741617 -3.35711e-4 -0.9975407 0.07007992 0.001224637 -0.9966695 0.08154761 2.44155e-4 -0.9975143 0.07045429 0.001287221 -0.9979107 0.06456959 0.002228856 -0.9977115 0.06757354 0.002359807 -0.9982089 0.0597558 0.002899229 -0.9978584 0.06537228 0.002258419 -0.9980096 0.06299167 0.003021359 -0.9980532 0.06233942 0.001915454 -0.9978078 0.06616443 0.001434326 -0.998085 0.06178098 0.003061532 -0.9986342 0.05207586 0.004256308 -0.998549 0.05374521 0.003370761 -0.9983361 0.05755871 0.003479123 -0.9985113 0.05444538 0.003326535 -0.9984049 0.05634939 0.003533661 -0.9982529 0.05901443 0.002916276 -0.9986833 0.05116212 0.003761649 -0.9983791 0.05686599 0.002370059 -0.9982272 0.05944937 0.0028553 -0.9979147 0.06451135 0.002149999 -0.9980872 0.06180286 0.001583039 -0.9977475 0.06708091 5.5409e-4 -0.9987816 0.04921799 0.00361824 -0.9987238 0.05037802 0.003593385 -0.9984952 0.05473887 0.003346979 -0.9986194 0.05243635 0.003103137 -0.9983741 0.0569517 0.002416968 -0.9986589 0.051705 0.002661466 -0.9976505 0.06844395 0.003009855 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + 89.31681 33.9638 207.071 89.374 32.6248 206.572 89.4308 31.2978 206.036 89.4859 29.9732 205.497 88.9806 33.9566 208.366 89.0501 32.6158 207.861 89.1192 31.2869 207.32 89.1863 29.9603 206.775 89.2388 28.565 206.474 89.2923 27.1717 206.122 89.3456 25.8118 205.729 89.3997 24.4557 205.288 89.4547 23.1033 204.797 89.5107 21.7564 204.255 88.6109 33.959 209.597 88.6925 32.6172 209.09 88.7737 31.2871 208.547 88.8526 29.9591 207.998 88.9153 28.5634 207.687 88.97911 27.1705 207.326 89.04251 25.8116 206.924 89.1068 24.4573 206.474 89.17221 23.1074 205.975 89.2386 21.7638 205.427 88.1828 33.9727 210.831 88.27661 32.6308 210.326 88.37001 31.3003 209.783 88.4609 29.9716 209.235 88.53401 28.5765 208.913 88.6081 27.1851 208.542 88.6818 25.8284 208.132 88.7565 24.4771 207.674 88.8323 23.131 207.168 88.9093 21.7918 206.613 87.6884 34.0006 212.059 87.7939 32.6596 211.559 87.899 31.3298 211.021 88.00151 30.0017 210.476 88.0846 28.6085 210.144 88.1688 27.22 209.764 88.25241 25.867 209.346 88.3371 24.5202 208.881 88.42301 23.1793 208.368 88.5101 21.8461 207.808 87.1238 34.0455 213.26 87.2398 32.707 212.768 87.3553 31.3794 212.239 87.4682 30.0532 211.701 87.56031 28.6638 211.359 87.65361 27.2798 210.971 87.746 25.9324 210.545 87.8396 24.5919 210.073 87.9345 23.2581 209.555 88.0306 21.9329 208.99 86.4796 34.1111 214.422 86.6037 32.7771 213.943 86.7274 31.4535 213.427 86.84851 30.1313 212.9 86.9478 28.7477 212.55 87.0483 27.3707 212.153 87.1478 26.0309 211.72 87.2484 24.6991 211.242 87.35031 23.3748 210.719 87.4534 22.0599 210.15 86.3182 27.5033 213.324 86.4219 26.1743 212.884 86.52661 24.8543 212.401 86.6325 23.5428 211.874 86.7396 22.2414 211.302 86.0317 21.2002 211.73 86.6859 22.8907 211.593 87.10871 22.1447 210.739 87.40171 22.7161 210.44 87.0031 23.4532 211.31 87.0557 22.7976 211.03 86.7936 21.5951 211 87.5054 21.4065 209.848 87.16201 21.4947 210.437 86.36991 26.8381 213.11 86.1313 24.9482 212.939 86.4741 25.5133 212.648 86.2377 23.644 212.41 86.5794 24.1973 212.143 86.18441 24.2949 212.68 86.3451 22.3505 211.838 86.2913 22.9959 212.129 86.3993 21.7083 211.535 86.6951 21.2003 210.981 87.2713 21.2003 210.165 87.7689 21.2004 209.301 88.1967 21.2003 208.404 88.41381 21.2002 207.881 88.6131 21.2003 207.353 88.7964 21.2003 206.819 88.9656 21.2003 206.279 89.1354 21.2003 205.685 89.2904 21.2003 205.087 89.4322 21.2003 204.486 89.56201 21.2002 203.882 89.56201 22.2409 204.115 89.56201 23.285 204.326 89.56201 24.3334 204.514 89.56201 25.3868 204.68 89.56201 25.977 204.764 89.56201 26.5676 204.84 89.56201 27.1585 204.909 89.56201 27.7501 204.97 89.56201 28.3423 205.025 89.56201 28.9354 205.073 89.56201 29.5295 205.113 89.56201 30.1246 205.146 89.56201 30.1655 205.156 89.56201 30.2031 205.166 89.56201 30.2784 205.184 89.56201 30.4296 205.222 89.56201 30.734 205.296 89.56201 31.3548 205.442 89.56201 31.9917 205.585 89.56201 32.6301 205.722 89.56201 33.2893 205.856 89.56201 33.9499 205.982 89.56201 34.6311 206.104 89.56201 35.3137 206.218 89.41701 35.3137 206.872 89.26081 35.3136 207.526 89.0927 35.3136 208.179 88.9124 35.3136 208.828 88.7191 35.3136 209.475 88.5125 35.3136 210.116 88.2918 35.3136 210.751 88.05661 35.3137 211.38 87.8505 35.3137 211.894 87.63211 35.3137 212.406 87.40071 35.3137 212.913 87.1559 35.3137 213.414 86.8972 35.3137 213.909 86.6239 35.3137 214.395 86.3356 35.3137 214.872 86.0317 35.3137 215.337 86.0317 34.6939 215.226 86.0317 34.0759 215.106 86.0317 33.4595 214.979 86.0317 32.8445 214.843 86.0317 32.2312 214.7 86.0317 31.6198 214.548 86.0317 31.0095 214.389 86.0317 30.7048 214.306 86.0317 30.5525 214.264 86.0317 30.4764 214.242 86.0317 30.4384 214.232 86.0317 30.4194 214.226 86.0317 30.4004 214.221 86.0317 29.8085 214.136 86.0317 29.2183 214.041 86.0317 28.6299 213.937 86.0317 28.0435 213.823 86.0317 27.4591 213.701 86.0317 26.8768 213.568 86.0317 26.2969 213.427 86.0317 25.7194 213.276 86.0317 25.1444 213.116 86.0317 24.572 212.946 86.0317 24.0024 212.767 86.0317 23.4357 212.578 86.0317 22.8721 212.38 86.0317 22.3115 212.173 86.0317 21.7542 211.956 89.5282 28.5792 205.207 86.2134 28.8703 213.729 + + + + + + + + + + 0.9638875 -0.05215728 0.2611526 0.9723478 -0.0466336 0.2288343 0.9710193 -0.0429095 0.2351174 0.961852 -0.0481292 0.2693039 0.9659687 -0.05392771 0.2529751 0.973815 -0.04886162 0.222029 0.9690832 -0.03473109 0.2442774 0.9762014 -0.02926743 0.2148821 0.9523594 -0.05948239 0.2991211 0.9499037 -0.05450689 0.3077535 0.9548678 -0.06176972 0.2905377 0.9585911 -0.04000991 0.2819619 0.9603943 -0.02340787 0.2776595 0.9708419 -0.01864713 0.2389947 0.9617651 -0.03109848 0.2721044 0.9718448 -0.02526962 0.2342633 0.9631248 -0.0383321 0.2663105 0.9727414 -0.03167897 0.2297187 0.964457 -0.04513734 0.2603564 0.9736941 -0.03772205 0.2247151 0.9657906 -0.0516085 0.2541362 0.9746119 -0.04315328 0.2197034 0.9675996 -0.05383521 0.2466837 0.9759382 -0.04654151 0.2130229 0.9371197 -0.06854587 0.3422107 0.9343049 -0.06259417 0.3509365 0.9400773 -0.07159757 0.3333593 0.9446852 -0.04779273 0.324478 0.9467245 -0.02981686 0.3206613 0.9479911 -0.03894263 0.3159055 0.9492627 -0.04776221 0.3108359 0.9505172 -0.05630773 0.3055267 0.9517555 -0.06451648 0.2999986 0.9536784 -0.0674768 0.2931625 0.916565 -0.08001977 0.3917977 0.9133737 -0.07345926 0.4004402 0.9199721 -0.08420258 0.3828334 0.9256122 -0.05853551 0.3739194 0.9277791 -0.039339 0.3710506 0.9287348 -0.05041795 0.3673006 0.9295745 -0.06125134 0.3635103 0.9304051 -0.07199454 0.3593928 0.9312151 -0.08252507 0.3550044 0.9328697 -0.08707028 0.3495324 0.8887312 -0.09467184 0.4485468 0.885053 -0.08694881 0.4572978 0.8924719 -0.1001639 0.4398422 0.8993314 -0.07312333 0.4311102 0.9015015 -0.05319464 0.4294943 0.9015172 -0.06665468 0.427579 0.9014325 -0.08017271 0.4254314 0.9012104 -0.09360331 0.4231529 0.9011131 -0.1068176 0.4202204 0.9020252 -0.1156067 0.4159155 0.8530684 -0.1125542 0.5095155 0.851173 -0.1013534 0.515007 0.8543147 -0.122106 0.5052094 0.8611643 -0.0929619 0.4997543 0.8640864 -0.07245224 0.4981017 0.8629034 -0.08868914 0.497526 0.8610741 -0.1056886 0.4973745 0.8596979 -0.1195746 0.4966099 0.8638479 -0.1324841 0.4860194 0.8626287 -0.142922 0.4852268 0.8608865 -0.149941 0.4862018 0.8194071 -0.1112421 0.5623143 0.8154389 -0.1241821 0.5653657 0.8114306 -0.1355945 0.568502 0.8088348 -0.1445721 0.5699871 0.8064827 -0.1548264 0.5706266 0.8023223 -0.1633698 0.5740988 0.7919434 -0.1811621 0.5831004 0.8282185 -0.1543945 0.5387175 0.7856199 -0.2027071 0.5845608 0.8234301 -0.1781693 0.5387194 0.8256014 -0.1684957 0.5385087 0.78893 -0.1918153 0.5837777 0.8179436 -0.1946206 0.541379 0.8532247 -0.1777437 0.4903211 0.7852002 -0.2128415 0.5815145 0.7566648 -0.2016714 0.6219221 0.7622581 -0.1889165 0.6190906 0.767615 -0.1764305 0.616149 0.7450942 -0.2270929 0.6271073 0.7510741 -0.2140912 0.6245421 0.7367908 -0.2464413 0.6296079 0.9746494 -0.04083418 0.2199797 0.9749484 -0.03891122 0.2190017 0.9756543 -0.03613418 0.2163169 0.9737338 -0.03817903 0.224466 0.9750348 -0.04175055 0.2180919 0.9754686 -0.0451371 0.2154619 0.9757676 -0.04590123 0.2139412 0.9762822 -0.04858672 0.2109799 0.9759303 -0.05108845 0.2120141 0.978559 -0.04483228 0.2010282 0.9802361 -0.04745686 0.1920553 0.9801991 -0.04785329 0.1921456 0.9803337 -0.04898309 0.1911715 0.9795836 -0.03222852 0.1984376 0.9693006 -0.04147601 0.2423557 0.9652023 -0.04370355 0.2578268 0.9592722 -0.04663294 0.2786076 0.9539776 -0.04913634 0.2958252 0.9394044 -0.05615484 0.3381807 0.9460303 -0.05371356 0.3195958 0.9296549 -0.06125265 0.3633043 0.9222257 -0.06515824 0.3811223 0.9119212 -0.06784468 0.4047184 0.9010177 -0.07541286 0.4271769 0.9757321 -0.02243167 0.2178161 0.977858 -0.01431334 0.2087802 0.9763023 -0.02118015 0.2153725 0.9777181 -0.01355057 0.2094848 0.9755227 -0.02044796 0.2189463 0.9758243 -0.02398812 0.2172364 0.9760246 -0.02572739 0.2161347 0.976404 -0.02896279 0.2140013 0.9765716 -0.03112918 0.2129297 0.9773265 -0.03885132 0.2081431 0.9769224 -0.03592115 0.2105525 0.9773521 -0.04333746 0.2071349 0.9769608 -0.0491364 0.2076854 0.9630297 -0.05829143 0.2630134 0.9742039 -0.04703009 0.2207149 0.970226 -0.0533775 0.2362467 0.9568876 -0.06836217 0.2822992 0.9394794 -0.08414202 0.3321123 0.9472427 -0.07406914 0.3118411 0.9249581 -0.09686923 0.3675172 0.8894194 -0.0772134 0.4505236 0.8732841 -0.08905577 0.4790031 0.8414787 -0.09625792 0.5316466 0.8607427 -0.09241312 0.5005815 0.8330935 -0.09751009 0.5444697 0.8347828 -0.1015668 0.5411302 0.8333909 -0.1295239 0.5372925 0.8346339 -0.1150261 0.5386606 0.8307702 -0.1414882 0.5383328 0.8387514 -0.07626676 0.5391472 0.8335251 -0.1218914 0.5388677 0.8342541 -0.1079174 0.5407163 0.8326227 -0.1359627 0.5368924 0.8277447 -0.1480186 0.5412294 0.8266065 -0.1518929 0.541895 0.8265556 -0.1517117 0.5420237 0.8263223 -0.1528429 0.5420614 0.8242949 -0.1605923 0.5429072 0.8339505 -0.1167683 0.5393439 0.8261018 -0.09042924 0.5562179 0.8040769 -0.1135601 0.5835791 0.8105335 -0.09494572 0.5779454 0.8077828 -0.1093198 0.5792549 0.7958182 -0.127265 0.5920111 0.7904751 -0.1390755 0.5964957 0.7820578 -0.1583343 0.6027568 0.8813284 -0.1416693 0.450766 0.9124997 -0.108588 0.3944023 0.8314412 -0.18684 0.5232558 0.7692009 -0.2353625 0.5940828 0.7865836 -0.1497905 0.5990402 0.7449771 -0.2034114 0.6353211 0.7524839 -0.1901658 0.6305593 0.7619453 -0.1755776 0.6233876 0.7369776 -0.2168999 0.6401707 0.7292913 -0.2296584 0.6445085 0.7211171 -0.2433633 0.6486636 0.7135744 -0.2582247 0.6512538 0.7157066 -0.2707056 0.6438034 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

5 0 0 1 1 1 0 2 2 5 0 3 0 2 4 4 3 5 6 4 6 2 5 7 1 1 8 6 4 9 1 1 10 5 0 11 7 6 12 3 7 13 2 5 14 7 6 15 2 5 16 6 4 17 15 8 18 5 0 19 4 3 20 15 8 21 4 3 22 14 9 23 16 10 24 6 4 25 5 0 26 16 10 27 5 0 28 15 8 29 17 11 30 7 6 31 6 4 32 17 11 33 6 4 34 16 10 35 18 12 36 8 13 37 7 6 38 18 12 39 7 6 40 17 11 41 19 14 42 9 15 43 8 13 44 19 14 45 8 13 46 18 12 47 20 16 48 10 17 49 9 15 50 20 16 51 9 15 52 19 14 53 21 18 54 11 19 55 10 17 56 21 18 57 10 17 58 20 16 59 22 20 60 12 21 61 11 19 62 22 20 63 11 19 64 21 18 65 23 22 66 13 23 67 12 21 68 23 22 69 12 21 70 22 20 71 25 24 72 15 8 73 14 9 74 25 24 75 14 9 76 24 25 77 26 26 78 16 10 79 15 8 80 26 26 81 15 8 82 25 24 83 27 27 84 17 11 85 16 10 86 27 27 87 16 10 88 26 26 89 28 28 90 18 12 91 17 11 92 28 28 93 17 11 94 27 27 95 29 29 96 19 14 97 18 12 98 29 29 99 18 12 100 28 28 101 30 30 102 20 16 103 19 14 104 30 30 105 19 14 106 29 29 107 31 31 108 21 18 109 20 16 110 31 31 111 20 16 112 30 30 113 32 32 114 22 20 115 21 18 116 32 32 117 21 18 118 31 31 119 33 33 120 23 22 121 22 20 122 33 33 123 22 20 124 32 32 125 35 34 126 25 24 127 24 25 128 35 34 129 24 25 130 34 35 131 36 36 132 26 26 133 25 24 134 36 36 135 25 24 136 35 34 137 37 37 138 27 27 139 26 26 140 37 37 141 26 26 142 36 36 143 38 38 144 28 28 145 27 27 146 38 38 147 27 27 148 37 37 149 39 39 150 29 29 151 28 28 152 39 39 153 28 28 154 38 38 155 40 40 156 30 30 157 29 29 158 40 40 159 29 29 160 39 39 161 41 41 162 31 31 163 30 30 164 41 41 165 30 30 166 40 40 167 42 42 168 32 32 169 31 31 170 42 42 171 31 31 172 41 41 173 43 43 174 33 33 175 32 32 176 43 43 177 32 32 178 42 42 179 45 44 180 35 34 181 34 35 182 45 44 183 34 35 184 44 45 185 46 46 186 36 36 187 35 34 188 46 46 189 35 34 190 45 44 191 47 47 192 37 37 193 36 36 194 47 47 195 36 36 196 46 46 197 48 48 198 38 38 199 37 37 200 48 48 201 37 37 202 47 47 203 49 49 204 39 39 205 38 38 206 49 49 207 38 38 208 48 48 209 50 50 210 40 40 211 39 39 212 50 50 213 39 39 214 49 49 215 51 51 216 41 41 217 40 40 218 51 51 219 40 40 220 50 50 221 52 52 222 42 42 223 41 41 224 52 52 225 41 41 226 51 51 227 53 53 228 43 43 229 42 42 230 53 53 231 42 42 232 52 52 233 55 54 234 45 44 235 44 45 236 55 54 237 44 45 238 54 55 239 56 56 240 46 46 241 45 44 242 56 56 243 45 44 244 55 54 245 57 57 246 47 47 247 46 46 248 57 57 249 46 46 250 56 56 251 58 58 252 48 48 253 47 47 254 58 58 255 47 47 256 57 57 257 59 59 258 49 49 259 48 48 260 59 59 261 48 48 262 58 58 263 60 60 264 50 50 265 49 49 266 60 60 267 49 49 268 59 59 269 61 61 270 51 51 271 50 50 272 61 61 273 50 50 274 60 60 275 62 62 276 52 52 277 51 51 278 62 62 279 51 51 280 61 61 281 72 63 282 63 64 283 53 53 284 52 52 285 62 62 286 72 63 287 53 53 288 52 52 289 72 63 290 64 65 291 59 59 292 58 58 293 78 66 294 65 67 295 60 60 296 59 59 297 64 65 298 78 66 299 60 60 300 59 59 301 78 66 302 80 68 303 66 69 304 61 61 305 60 60 306 65 67 307 80 68 308 61 61 309 60 60 310 80 68 311 82 70 312 67 71 313 73 72 314 73 72 315 62 62 316 61 61 317 61 61 318 66 69 319 82 70 320 82 70 321 73 72 322 61 61 323 68 73 324 71 74 325 74 75 326 68 73 327 74 75 328 70 76 329 71 74 330 63 64 331 72 63 332 71 74 333 72 63 334 74 75 335 74 75 336 72 63 337 62 62 338 74 75 339 62 62 340 73 72 341 70 76 342 74 75 343 73 72 344 70 76 345 73 72 346 67 71 347 77 77 348 76 78 349 63 64 350 77 77 351 63 64 352 71 74 353 75 79 354 77 77 355 71 74 356 75 79 357 71 74 358 68 73 359 81 80 360 67 71 361 82 70 362 81 80 363 82 70 364 83 81 365 83 81 366 82 70 367 66 69 368 83 81 369 66 69 370 79 82 371 84 83 372 68 73 373 70 76 374 84 83 375 70 76 376 85 84 377 85 84 378 70 76 379 67 71 380 85 84 381 67 71 382 81 80 383 86 85 384 75 79 385 68 73 386 86 85 387 68 73 388 84 83 389 0 2 390 120 86 391 121 87 392 122 88 393 123 89 394 121 87 395 119 90 396 120 86 397 0 2 398 119 90 399 1 1 400 118 91 401 117 92 402 118 91 403 1 1 404 121 87 405 123 89 406 0 2 407 116 93 408 2 5 409 115 94 410 115 94 411 2 5 412 114 95 413 2 5 414 116 93 415 117 92 416 113 96 417 3 7 418 112 97 419 111 98 420 112 97 421 3 7 422 114 95 423 3 7 424 113 96 425 111 98 426 3 7 427 110 99 428 123 89 429 124 100 430 0 2 431 125 101 432 126 102 433 4 3 434 126 102 435 127 103 436 4 3 437 129 104 438 14 9 439 128 105 440 24 25 441 129 104 442 130 106 443 14 9 444 127 103 445 128 105 446 130 106 447 131 107 448 24 25 449 4 3 450 0 2 451 125 101 452 117 92 453 1 1 454 2 5 455 119 90 456 0 2 457 1 1 458 14 9 459 129 104 460 24 25 461 127 103 462 14 9 463 4 3 464 34 35 465 24 25 466 131 107 467 34 35 468 132 108 469 133 109 470 34 35 471 131 107 472 132 108 473 3 7 474 114 95 475 2 5 476 124 100 477 125 101 478 0 2 479 107 110 480 108 111 481 167 112 482 109 113 483 3 7 484 108 111 485 108 111 486 3 7 487 167 112 488 107 110 489 167 112 490 8 13 491 107 110 492 8 13 493 106 114 494 105 115 495 106 114 496 9 15 497 7 6 498 8 13 499 167 112 500 7 6 501 167 112 502 3 7 503 3 7 504 109 113 505 110 99 506 104 116 507 10 17 508 103 117 509 103 117 510 10 17 511 102 118 512 9 15 513 104 116 514 105 115 515 11 19 516 100 119 517 101 120 518 100 119 519 12 21 520 99 121 521 11 19 522 101 120 523 102 118 524 13 23 525 98 122 526 99 121 527 106 114 528 8 13 529 9 15 530 102 118 531 10 17 532 11 19 533 104 116 534 9 15 535 10 17 536 99 121 537 12 21 538 13 23 539 95 123 540 23 22 541 33 33 542 97 124 543 13 23 544 23 22 545 100 119 546 11 19 547 12 21 548 96 125 549 97 124 550 23 22 551 94 126 552 95 123 553 33 33 554 96 125 555 23 22 556 95 123 557 92 127 558 93 128 559 43 43 560 33 33 561 93 128 562 94 126 563 43 43 564 91 129 565 92 127 566 93 128 567 33 33 568 43 43 569 98 122 570 13 23 571 97 124 572 91 129 573 43 43 574 53 53 575 133 109 576 134 130 577 44 45 578 134 130 579 135 131 580 44 45 581 137 132 582 54 55 583 136 133 584 137 132 585 138 134 586 139 135 587 44 45 588 135 131 589 136 133 590 139 135 591 54 55 592 137 132 593 136 133 594 54 55 595 44 45 596 55 54 597 143 136 598 56 56 599 55 54 600 54 55 601 141 137 602 57 57 603 56 56 604 145 138 605 57 57 606 152 139 607 58 58 608 55 54 609 141 137 610 142 140 611 140 141 612 141 137 613 54 55 614 140 141 615 54 55 616 139 135 617 144 142 618 56 56 619 143 136 620 56 56 621 144 142 622 145 138 623 145 138 624 146 143 625 57 57 626 57 57 627 147 144 628 148 145 629 148 145 630 149 146 631 57 57 632 146 143 633 147 144 634 57 57 635 149 146 636 150 147 637 57 57 638 151 148 639 152 139 640 57 57 641 168 149 642 64 65 643 58 58 644 168 149 645 155 150 646 64 65 647 168 149 648 58 58 649 152 139 650 151 148 651 57 57 652 150 147 653 168 149 654 152 139 655 153 151 656 168 149 657 154 152 658 155 150 659 168 149 660 153 151 661 154 152 662 156 153 663 64 65 664 155 150 665 143 136 666 55 54 667 142 140 668 157 154 669 65 67 670 78 66 671 80 68 672 65 67 673 159 155 674 80 68 675 79 82 676 66 69 677 156 153 678 157 154 679 78 66 680 156 153 681 78 66 682 64 65 683 89 156 684 63 64 685 76 78 686 89 156 687 90 157 688 53 53 689 89 156 690 76 78 691 88 158 692 63 64 693 89 156 694 53 53 695 88 158 696 77 77 697 75 79 698 75 79 699 87 159 700 88 158 701 86 85 702 87 159 703 75 79 704 76 78 705 77 77 706 88 158 707 65 67 708 157 154 709 158 160 710 53 53 711 90 157 712 91 129 713 79 82 714 80 68 715 159 155 716 162 161 717 81 80 718 83 81 719 83 81 720 79 82 721 161 162 722 160 163 723 161 162 724 79 82 725 161 162 726 162 161 727 83 81 728 159 155 729 160 163 730 79 82 731 163 164 732 81 80 733 162 161 734 164 165 735 84 83 736 85 84 737 81 80 738 163 164 739 85 84 740 84 83 741 165 166 742 86 85 743 163 164 744 164 165 745 85 84 746 165 166 747 166 167 748 86 85 749 166 167 750 69 168 751 86 85 752 164 165 753 165 166 754 84 83 755 87 159 756 86 85 757 69 168 758 65 67 759 158 160 760 159 155 761 34 35 762 133 109 763 44 45 764

+
+
+
+ + + + -89.31681 33.9638 207.071 -89.374 32.6248 206.572 -89.4308 31.2978 206.036 -89.4859 29.9732 205.497 -88.9806 33.9566 208.366 -89.0501 32.6158 207.861 -89.1192 31.2869 207.32 -89.1863 29.9603 206.775 -89.2388 28.565 206.474 -89.2923 27.1717 206.122 -89.3456 25.8118 205.729 -89.3997 24.4557 205.288 -89.4547 23.1033 204.797 -89.5107 21.7564 204.255 -88.6109 33.959 209.597 -88.6925 32.6172 209.09 -88.7737 31.2871 208.547 -88.8526 29.9591 207.998 -88.9153 28.5634 207.687 -88.97911 27.1705 207.326 -89.04251 25.8116 206.924 -89.1068 24.4573 206.474 -89.17221 23.1074 205.975 -89.2386 21.7638 205.427 -88.1828 33.9727 210.831 -88.27661 32.6308 210.326 -88.37001 31.3003 209.783 -88.4609 29.9716 209.235 -88.53401 28.5765 208.913 -88.6081 27.1851 208.542 -88.6818 25.8284 208.132 -88.7565 24.4771 207.674 -88.8323 23.131 207.168 -88.9093 21.7918 206.613 -87.6884 34.0006 212.059 -87.7939 32.6596 211.559 -87.899 31.3298 211.021 -88.00151 30.0017 210.476 -88.0846 28.6085 210.144 -88.1688 27.22 209.764 -88.25241 25.867 209.346 -88.3371 24.5202 208.881 -88.42301 23.1793 208.368 -88.5101 21.8461 207.808 -87.1238 34.0455 213.26 -87.2398 32.707 212.768 -87.3553 31.3794 212.239 -87.4682 30.0532 211.701 -87.56031 28.6638 211.359 -87.65361 27.2798 210.971 -87.746 25.9324 210.545 -87.8396 24.5919 210.073 -87.9345 23.2581 209.555 -88.0306 21.9329 208.99 -86.4796 34.1111 214.422 -86.6037 32.7771 213.943 -86.7274 31.4535 213.427 -86.84851 30.1313 212.9 -86.9478 28.7477 212.55 -87.0483 27.3707 212.153 -87.1478 26.0309 211.72 -87.2484 24.6991 211.242 -87.35031 23.3748 210.719 -87.4534 22.0599 210.15 -86.3182 27.5033 213.324 -86.4219 26.1743 212.884 -86.52661 24.8543 212.401 -86.6325 23.5428 211.874 -86.7396 22.2414 211.302 -86.0317 21.2002 211.73 -86.6859 22.8907 211.593 -87.10871 22.1447 210.739 -87.40171 22.7161 210.44 -87.0031 23.4532 211.31 -87.0557 22.7976 211.03 -86.7936 21.5951 211 -87.5054 21.4065 209.848 -87.16201 21.4947 210.437 -86.36991 26.8381 213.11 -86.1313 24.9482 212.939 -86.4741 25.5133 212.648 -86.2377 23.644 212.41 -86.5794 24.1973 212.143 -86.18441 24.2949 212.68 -86.3451 22.3505 211.838 -86.2913 22.9959 212.129 -86.3993 21.7083 211.535 -86.6951 21.2003 210.981 -87.2713 21.2003 210.165 -87.7689 21.2004 209.301 -88.1967 21.2003 208.404 -88.41381 21.2002 207.881 -88.6131 21.2003 207.353 -88.7964 21.2003 206.819 -88.9656 21.2003 206.279 -89.1354 21.2003 205.685 -89.2904 21.2003 205.087 -89.4322 21.2003 204.486 -89.56201 21.2002 203.882 -89.56201 22.2409 204.115 -89.56201 23.285 204.326 -89.56201 24.3334 204.514 -89.56201 25.3868 204.68 -89.56201 25.977 204.764 -89.56201 26.5676 204.84 -89.56201 27.1585 204.909 -89.56201 27.7501 204.97 -89.56201 28.3423 205.025 -89.56201 28.9354 205.073 -89.56201 29.5295 205.113 -89.56201 30.1246 205.146 -89.56201 30.1655 205.156 -89.56201 30.2031 205.166 -89.56201 30.2784 205.184 -89.56201 30.4296 205.222 -89.56201 30.734 205.296 -89.56201 31.3548 205.442 -89.56201 31.9917 205.585 -89.56201 32.6301 205.722 -89.56201 33.2893 205.856 -89.56201 33.9499 205.982 -89.56201 34.6311 206.104 -89.56201 35.3137 206.218 -89.41701 35.3137 206.872 -89.26081 35.3136 207.526 -89.0927 35.3136 208.179 -88.9124 35.3136 208.828 -88.7191 35.3136 209.475 -88.5125 35.3136 210.116 -88.2918 35.3136 210.751 -88.05661 35.3137 211.38 -87.8505 35.3137 211.894 -87.63211 35.3137 212.406 -87.40071 35.3137 212.913 -87.1559 35.3137 213.414 -86.8972 35.3137 213.909 -86.6239 35.3137 214.395 -86.3356 35.3137 214.872 -86.0317 35.3137 215.337 -86.0317 34.6939 215.226 -86.0317 34.0759 215.106 -86.0317 33.4595 214.979 -86.0317 32.8445 214.843 -86.0317 32.2312 214.7 -86.0317 31.6198 214.548 -86.0317 31.0095 214.389 -86.0317 30.7048 214.306 -86.0317 30.5525 214.264 -86.0317 30.4764 214.242 -86.0317 30.4384 214.232 -86.0317 30.4194 214.226 -86.0317 30.4004 214.221 -86.0317 29.8085 214.136 -86.0317 29.2183 214.041 -86.0317 28.6299 213.937 -86.0317 28.0435 213.823 -86.0317 27.4591 213.701 -86.0317 26.8768 213.568 -86.0317 26.2969 213.427 -86.0317 25.7194 213.276 -86.0317 25.1444 213.116 -86.0317 24.572 212.946 -86.0317 24.0024 212.767 -86.0317 23.4357 212.578 -86.0317 22.8721 212.38 -86.0317 22.3115 212.173 -86.0317 21.7542 211.956 -89.5282 28.5792 205.207 -86.2134 28.8703 213.729 + + + + + + + + + + -0.9638875 -0.05215728 0.2611526 -0.961852 -0.0481292 0.2693039 -0.9710193 -0.0429095 0.2351174 -0.9723478 -0.0466336 0.2288343 -0.9659687 -0.05392771 0.2529751 -0.973815 -0.04886162 0.222029 -0.9690832 -0.03473109 0.2442774 -0.9762014 -0.02926743 0.2148821 -0.9523594 -0.05948239 0.2991211 -0.9499037 -0.05450689 0.3077535 -0.9548678 -0.06176972 0.2905377 -0.9585911 -0.04000991 0.2819619 -0.9603943 -0.02340787 0.2776595 -0.9708419 -0.01864713 0.2389947 -0.9617651 -0.03109848 0.2721044 -0.9718448 -0.02526962 0.2342633 -0.9631248 -0.0383321 0.2663105 -0.9727414 -0.03167897 0.2297187 -0.964457 -0.04513734 0.2603564 -0.9736941 -0.03772205 0.2247151 -0.9657906 -0.0516085 0.2541362 -0.9746119 -0.04315328 0.2197034 -0.9675996 -0.05383521 0.2466837 -0.9759382 -0.04654151 0.2130229 -0.9371197 -0.06854587 0.3422107 -0.9343049 -0.06259417 0.3509365 -0.9400773 -0.07159757 0.3333593 -0.9446852 -0.04779273 0.324478 -0.9467245 -0.02981686 0.3206613 -0.9479911 -0.03894263 0.3159055 -0.9492627 -0.04776221 0.3108359 -0.9505172 -0.05630773 0.3055267 -0.9517555 -0.06451648 0.2999986 -0.9536784 -0.0674768 0.2931625 -0.916565 -0.08001977 0.3917977 -0.9133737 -0.07345926 0.4004402 -0.9199721 -0.08420258 0.3828334 -0.9256122 -0.05853551 0.3739194 -0.9277791 -0.039339 0.3710506 -0.9287348 -0.05041795 0.3673006 -0.9295745 -0.06125134 0.3635103 -0.9304051 -0.07199454 0.3593928 -0.9312151 -0.08252507 0.3550044 -0.9328697 -0.08707028 0.3495324 -0.8887312 -0.09467184 0.4485468 -0.885053 -0.08694881 0.4572978 -0.8924719 -0.1001639 0.4398422 -0.8993314 -0.07312333 0.4311102 -0.9015015 -0.05319464 0.4294943 -0.9015172 -0.06665468 0.427579 -0.9014325 -0.08017271 0.4254314 -0.9012104 -0.09360331 0.4231529 -0.9011131 -0.1068176 0.4202204 -0.9020252 -0.1156067 0.4159155 -0.8530684 -0.1125542 0.5095155 -0.851173 -0.1013534 0.515007 -0.8543147 -0.122106 0.5052094 -0.8611643 -0.0929619 0.4997543 -0.8640864 -0.07245224 0.4981017 -0.8629034 -0.08868914 0.497526 -0.8610741 -0.1056886 0.4973745 -0.8596979 -0.1195746 0.4966099 -0.8638479 -0.1324841 0.4860194 -0.8626287 -0.142922 0.4852268 -0.8608865 -0.149941 0.4862018 -0.8194071 -0.1112421 0.5623143 -0.8154389 -0.1241821 0.5653657 -0.8114306 -0.1355945 0.568502 -0.8088348 -0.1445721 0.5699871 -0.8064827 -0.1548264 0.5706266 -0.8023223 -0.1633698 0.5740988 -0.8282185 -0.1543945 0.5387175 -0.7919434 -0.1811621 0.5831004 -0.7856199 -0.2027071 0.5845608 -0.78893 -0.1918153 0.5837777 -0.8256014 -0.1684957 0.5385087 -0.8234301 -0.1781693 0.5387194 -0.8179436 -0.1946206 0.541379 -0.8532247 -0.1777437 0.4903211 -0.7852002 -0.2128415 0.5815145 -0.7566648 -0.2016714 0.6219221 -0.7622581 -0.1889165 0.6190906 -0.767615 -0.1764305 0.616149 -0.7450942 -0.2270929 0.6271073 -0.7510741 -0.2140912 0.6245421 -0.7367908 -0.2464413 0.6296079 -0.9749484 -0.03891122 0.2190017 -0.9746494 -0.04083418 0.2199797 -0.9756543 -0.03613418 0.2163169 -0.9737338 -0.03817903 0.224466 -0.9750348 -0.04175055 0.2180919 -0.9754686 -0.0451371 0.2154619 -0.9757676 -0.04590123 0.2139412 -0.9762822 -0.04858672 0.2109799 -0.9759303 -0.05108845 0.2120141 -0.978559 -0.04483228 0.2010282 -0.9802361 -0.04745686 0.1920553 -0.9801991 -0.04785329 0.1921456 -0.9803337 -0.04898309 0.1911715 -0.9795836 -0.03222852 0.1984376 -0.9693006 -0.04147601 0.2423557 -0.9652023 -0.04370355 0.2578268 -0.9592722 -0.04663294 0.2786076 -0.9539776 -0.04913634 0.2958252 -0.9394044 -0.05615484 0.3381807 -0.9460303 -0.05371356 0.3195958 -0.9296549 -0.06125265 0.3633043 -0.9222257 -0.06515824 0.3811223 -0.9010177 -0.07541286 0.4271769 -0.9119212 -0.06784468 0.4047184 -0.9757321 -0.02243167 0.2178161 -0.9763023 -0.02118015 0.2153725 -0.977858 -0.01431334 0.2087802 -0.9777181 -0.01355057 0.2094848 -0.9755227 -0.02044796 0.2189463 -0.9758243 -0.02398812 0.2172364 -0.9760246 -0.02572739 0.2161347 -0.976404 -0.02896279 0.2140013 -0.9765716 -0.03112918 0.2129297 -0.9769224 -0.03592115 0.2105525 -0.9773265 -0.03885132 0.2081431 -0.9773521 -0.04333746 0.2071349 -0.9769608 -0.0491364 0.2076854 -0.9630297 -0.05829143 0.2630134 -0.9742039 -0.04703009 0.2207149 -0.970226 -0.0533775 0.2362467 -0.9568876 -0.06836217 0.2822992 -0.9394794 -0.08414202 0.3321123 -0.9472427 -0.07406914 0.3118411 -0.9249581 -0.09686923 0.3675172 -0.8894194 -0.0772134 0.4505236 -0.8732841 -0.08905577 0.4790031 -0.8414787 -0.09625792 0.5316466 -0.8607427 -0.09241312 0.5005815 -0.8347828 -0.1015668 0.5411302 -0.8330935 -0.09751009 0.5444697 -0.8333909 -0.1295239 0.5372925 -0.8346339 -0.1150261 0.5386606 -0.8307702 -0.1414882 0.5383328 -0.8387514 -0.07626676 0.5391472 -0.8335251 -0.1218914 0.5388677 -0.8342541 -0.1079174 0.5407163 -0.8326227 -0.1359627 0.5368924 -0.8277447 -0.1480186 0.5412294 -0.8265556 -0.1517117 0.5420237 -0.8266065 -0.1518929 0.541895 -0.8263223 -0.1528429 0.5420614 -0.8242949 -0.1605923 0.5429072 -0.8339505 -0.1167683 0.5393439 -0.8261018 -0.09042924 0.5562179 -0.8040769 -0.1135601 0.5835791 -0.8105335 -0.09494572 0.5779454 -0.8077828 -0.1093198 0.5792549 -0.7958182 -0.127265 0.5920111 -0.7904751 -0.1390755 0.5964957 -0.7820578 -0.1583343 0.6027568 -0.8813284 -0.1416693 0.450766 -0.9124997 -0.108588 0.3944023 -0.8314412 -0.18684 0.5232558 -0.7692009 -0.2353625 0.5940828 -0.7865836 -0.1497905 0.5990402 -0.7449771 -0.2034114 0.6353211 -0.7524839 -0.1901658 0.6305593 -0.7619453 -0.1755776 0.6233876 -0.7369776 -0.2168999 0.6401707 -0.7292913 -0.2296584 0.6445085 -0.7211171 -0.2433633 0.6486636 -0.7135744 -0.2582247 0.6512538 -0.7157066 -0.2707056 0.6438034 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

5 0 0 4 1 1 0 2 2 5 0 3 0 2 4 1 3 5 6 4 6 5 0 7 1 3 8 6 4 9 1 3 10 2 5 11 7 6 12 6 4 13 2 5 14 7 6 15 2 5 16 3 7 17 15 8 18 14 9 19 4 1 20 15 8 21 4 1 22 5 0 23 16 10 24 15 8 25 5 0 26 16 10 27 5 0 28 6 4 29 17 11 30 16 10 31 6 4 32 17 11 33 6 4 34 7 6 35 18 12 36 17 11 37 7 6 38 18 12 39 7 6 40 8 13 41 19 14 42 18 12 43 8 13 44 19 14 45 8 13 46 9 15 47 20 16 48 19 14 49 9 15 50 20 16 51 9 15 52 10 17 53 21 18 54 20 16 55 10 17 56 21 18 57 10 17 58 11 19 59 22 20 60 21 18 61 11 19 62 22 20 63 11 19 64 12 21 65 23 22 66 22 20 67 12 21 68 23 22 69 12 21 70 13 23 71 25 24 72 24 25 73 14 9 74 25 24 75 14 9 76 15 8 77 26 26 78 25 24 79 15 8 80 26 26 81 15 8 82 16 10 83 27 27 84 26 26 85 16 10 86 27 27 87 16 10 88 17 11 89 28 28 90 27 27 91 17 11 92 28 28 93 17 11 94 18 12 95 29 29 96 28 28 97 18 12 98 29 29 99 18 12 100 19 14 101 30 30 102 29 29 103 19 14 104 30 30 105 19 14 106 20 16 107 31 31 108 30 30 109 20 16 110 31 31 111 20 16 112 21 18 113 32 32 114 31 31 115 21 18 116 32 32 117 21 18 118 22 20 119 33 33 120 32 32 121 22 20 122 33 33 123 22 20 124 23 22 125 35 34 126 34 35 127 24 25 128 35 34 129 24 25 130 25 24 131 36 36 132 35 34 133 25 24 134 36 36 135 25 24 136 26 26 137 37 37 138 36 36 139 26 26 140 37 37 141 26 26 142 27 27 143 38 38 144 37 37 145 27 27 146 38 38 147 27 27 148 28 28 149 39 39 150 38 38 151 28 28 152 39 39 153 28 28 154 29 29 155 40 40 156 39 39 157 29 29 158 40 40 159 29 29 160 30 30 161 41 41 162 40 40 163 30 30 164 41 41 165 30 30 166 31 31 167 42 42 168 41 41 169 31 31 170 42 42 171 31 31 172 32 32 173 43 43 174 42 42 175 32 32 176 43 43 177 32 32 178 33 33 179 45 44 180 44 45 181 34 35 182 45 44 183 34 35 184 35 34 185 46 46 186 45 44 187 35 34 188 46 46 189 35 34 190 36 36 191 47 47 192 46 46 193 36 36 194 47 47 195 36 36 196 37 37 197 48 48 198 47 47 199 37 37 200 48 48 201 37 37 202 38 38 203 49 49 204 48 48 205 38 38 206 49 49 207 38 38 208 39 39 209 50 50 210 49 49 211 39 39 212 50 50 213 39 39 214 40 40 215 51 51 216 50 50 217 40 40 218 51 51 219 40 40 220 41 41 221 52 52 222 51 51 223 41 41 224 52 52 225 41 41 226 42 42 227 53 53 228 52 52 229 42 42 230 53 53 231 42 42 232 43 43 233 55 54 234 54 55 235 44 45 236 55 54 237 44 45 238 45 44 239 56 56 240 55 54 241 45 44 242 56 56 243 45 44 244 46 46 245 57 57 246 56 56 247 46 46 248 57 57 249 46 46 250 47 47 251 58 58 252 57 57 253 47 47 254 58 58 255 47 47 256 48 48 257 59 59 258 58 58 259 48 48 260 59 59 261 48 48 262 49 49 263 60 60 264 59 59 265 49 49 266 60 60 267 49 49 268 50 50 269 61 61 270 60 60 271 50 50 272 61 61 273 50 50 274 51 51 275 62 62 276 61 61 277 51 51 278 62 62 279 51 51 280 52 52 281 72 63 282 53 53 283 63 64 284 52 52 285 72 63 286 62 62 287 53 53 288 72 63 289 52 52 290 64 65 291 58 58 292 59 59 293 78 66 294 60 60 295 65 67 296 59 59 297 78 66 298 64 65 299 60 60 300 78 66 301 59 59 302 80 68 303 61 61 304 66 69 305 60 60 306 80 68 307 65 67 308 61 61 309 80 68 310 60 60 311 82 70 312 73 71 313 67 72 314 73 71 315 61 61 316 62 62 317 61 61 318 82 70 319 66 69 320 82 70 321 61 61 322 73 71 323 68 73 324 70 74 325 74 75 326 68 73 327 74 75 328 71 76 329 71 76 330 74 75 331 72 63 332 71 76 333 72 63 334 63 64 335 74 75 336 73 71 337 62 62 338 74 75 339 62 62 340 72 63 341 70 74 342 67 72 343 73 71 344 70 74 345 73 71 346 74 75 347 77 77 348 71 76 349 63 64 350 77 77 351 63 64 352 76 78 353 75 79 354 68 73 355 71 76 356 75 79 357 71 76 358 77 77 359 81 80 360 83 81 361 82 70 362 81 80 363 82 70 364 67 72 365 83 81 366 79 82 367 66 69 368 83 81 369 66 69 370 82 70 371 84 83 372 85 84 373 70 74 374 84 83 375 70 74 376 68 73 377 85 84 378 81 80 379 67 72 380 85 84 381 67 72 382 70 74 383 86 85 384 84 83 385 68 73 386 86 85 387 68 73 388 75 79 389 0 2 390 121 86 391 120 87 392 122 88 393 121 86 394 123 89 395 119 90 396 0 2 397 120 87 398 119 90 399 118 91 400 1 3 401 117 92 402 1 3 403 118 91 404 121 86 405 0 2 406 123 89 407 116 93 408 115 94 409 2 5 410 115 94 411 114 95 412 2 5 413 2 5 414 117 92 415 116 93 416 113 96 417 112 97 418 3 7 419 111 98 420 3 7 421 112 97 422 114 95 423 113 96 424 3 7 425 111 98 426 110 99 427 3 7 428 123 89 429 0 2 430 124 100 431 125 101 432 4 1 433 126 102 434 126 102 435 4 1 436 127 103 437 129 104 438 128 105 439 14 9 440 24 25 441 130 106 442 129 104 443 14 9 444 128 105 445 127 103 446 130 106 447 24 25 448 131 107 449 4 1 450 125 101 451 0 2 452 117 92 453 2 5 454 1 3 455 119 90 456 1 3 457 0 2 458 14 9 459 24 25 460 129 104 461 127 103 462 4 1 463 14 9 464 34 35 465 131 107 466 24 25 467 34 35 468 133 108 469 132 109 470 34 35 471 132 109 472 131 107 473 3 7 474 2 5 475 114 95 476 124 100 477 0 2 478 125 101 479 107 110 480 167 111 481 108 112 482 109 113 483 108 112 484 3 7 485 108 112 486 167 111 487 3 7 488 107 110 489 8 13 490 167 111 491 107 110 492 106 114 493 8 13 494 105 115 495 9 15 496 106 114 497 7 6 498 3 7 499 167 111 500 7 6 501 167 111 502 8 13 503 3 7 504 110 99 505 109 113 506 104 116 507 103 117 508 10 17 509 103 117 510 102 118 511 10 17 512 9 15 513 105 115 514 104 116 515 11 19 516 101 119 517 100 120 518 100 120 519 99 121 520 12 21 521 11 19 522 102 118 523 101 119 524 13 23 525 99 121 526 98 122 527 106 114 528 9 15 529 8 13 530 102 118 531 11 19 532 10 17 533 104 116 534 10 17 535 9 15 536 99 121 537 13 23 538 12 21 539 95 123 540 33 33 541 23 22 542 97 124 543 23 22 544 13 23 545 100 120 546 12 21 547 11 19 548 96 125 549 23 22 550 97 124 551 94 126 552 33 33 553 95 123 554 96 125 555 95 123 556 23 22 557 92 127 558 43 43 559 93 128 560 33 33 561 94 126 562 93 128 563 43 43 564 92 127 565 91 129 566 93 128 567 43 43 568 33 33 569 98 122 570 97 124 571 13 23 572 91 129 573 53 53 574 43 43 575 133 108 576 44 45 577 134 130 578 134 130 579 44 45 580 135 131 581 137 132 582 136 133 583 54 55 584 137 132 585 139 134 586 138 135 587 44 45 588 136 133 589 135 131 590 139 134 591 137 132 592 54 55 593 136 133 594 44 45 595 54 55 596 55 54 597 56 56 598 143 136 599 55 54 600 141 137 601 54 55 602 57 57 603 145 138 604 56 56 605 57 57 606 58 58 607 152 139 608 55 54 609 142 140 610 141 137 611 140 141 612 54 55 613 141 137 614 140 141 615 139 134 616 54 55 617 144 142 618 143 136 619 56 56 620 56 56 621 145 138 622 144 142 623 145 138 624 57 57 625 146 143 626 57 57 627 148 144 628 147 145 629 148 144 630 57 57 631 149 146 632 146 143 633 57 57 634 147 145 635 149 146 636 57 57 637 150 147 638 151 148 639 57 57 640 152 139 641 168 149 642 58 58 643 64 65 644 168 149 645 64 65 646 155 150 647 168 149 648 152 139 649 58 58 650 151 148 651 150 147 652 57 57 653 168 149 654 153 151 655 152 139 656 168 149 657 155 150 658 154 152 659 168 149 660 154 152 661 153 151 662 156 153 663 155 150 664 64 65 665 143 136 666 142 140 667 55 54 668 157 154 669 78 66 670 65 67 671 80 68 672 159 155 673 65 67 674 80 68 675 66 69 676 79 82 677 156 153 678 78 66 679 157 154 680 156 153 681 64 65 682 78 66 683 89 156 684 76 78 685 63 64 686 89 156 687 53 53 688 90 157 689 89 156 690 88 158 691 76 78 692 63 64 693 53 53 694 89 156 695 88 158 696 75 79 697 77 77 698 75 79 699 88 158 700 87 159 701 86 85 702 75 79 703 87 159 704 76 78 705 88 158 706 77 77 707 65 67 708 158 160 709 157 154 710 53 53 711 91 129 712 90 157 713 79 82 714 159 155 715 80 68 716 162 161 717 83 81 718 81 80 719 83 81 720 161 162 721 79 82 722 160 163 723 79 82 724 161 162 725 161 162 726 83 81 727 162 161 728 159 155 729 79 82 730 160 163 731 163 164 732 162 161 733 81 80 734 164 165 735 85 84 736 84 83 737 81 80 738 85 84 739 163 164 740 84 83 741 86 85 742 165 166 743 163 164 744 85 84 745 164 165 746 165 166 747 86 85 748 166 167 749 166 167 750 86 85 751 69 168 752 164 165 753 84 83 754 165 166 755 87 159 756 69 168 757 86 85 758 65 67 759 159 155 760 158 160 761 34 35 762 44 45 763 133 108 764

+
+
+
+ + + + 69.29701 113.429 -209.163 63.159 95.3533 -209.318 72.4295 94.5822 -206.698 75.56211 75.73571 -204.233 63.1612 113.429 -209.329 63.1569 78.1318 -209.308 + + + + + + + + + + 0.2459865 -0.05966544 -0.9674352 0.2906644 -0.02371335 -0.9565312 0.100621 -0.08884066 -0.9909505 0.02682584 -0.1252483 -0.9917628 0.3410537 -0.02789467 -0.9396299 0.3785306 -5.79866e-4 -0.9255887 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

2 0 0 1 1 1 4 2 2 2 0 3 4 2 4 0 3 5 3 4 6 5 5 7 1 1 8 3 4 9 1 1 10 2 0 11

+
+
+
+ + + + -69.29701 113.429 -209.163 -63.159 95.3533 -209.318 -72.4295 94.5822 -206.698 -75.56211 75.73571 -204.233 -63.1612 113.429 -209.329 -63.1569 78.1318 -209.308 + + + + + + + + + + -0.2459865 -0.05966544 -0.9674352 -0.02682584 -0.1252483 -0.9917628 -0.100621 -0.08884066 -0.9909505 -0.2906644 -0.02371335 -0.9565312 -0.3410537 -0.02789467 -0.9396299 -0.3785306 -5.79866e-4 -0.9255887 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

2 0 0 0 1 1 4 2 2 2 0 3 4 2 4 1 3 5 3 4 6 2 0 7 1 3 8 3 4 9 1 3 10 5 5 11

+
+
+
+ + + + 92.5784 16.1015 171.121 92.5784 20.9621 172.869 92.5784 26.0571 173.929 92.5784 31.2746 174.274 92.5784 33.8943 174.17 92.5784 36.5027 173.877 92.5784 39.0859 173.394 92.5784 41.6307 172.725 92.5784 46.5536 170.852 92.5784 51.1674 168.309 92.5784 53.326 166.801 92.5784 55.3684 165.143 92.5784 57.2827 163.343 92.5784 59.0611 161.41 92.5784 62.1835 157.195 92.5784 64.6818 152.588 92.5784 66.5023 147.68 92.5784 67.6 142.566 92.5784 67.9655 137.347 92.5784 67.5981 132.129 92.5784 67.1393 129.553 92.5784 66.4971 127.017 92.5784 64.6717 122.112 92.5784 62.17 117.509 92.5784 59.0497 113.299 92.5784 55.3688 109.572 92.5784 53.3369 107.917 92.5784 51.1912 106.412 92.5784 46.6054 103.874 92.5784 41.7062 102.004 92.5784 39.1686 101.335 92.5784 36.5881 100.85 92.5784 33.9772 100.555 92.5784 31.3503 100.448 92.5784 26.1093 100.786 92.5784 20.9861 101.842 92.5784 16.1015 103.594 66.3147 16.1015 171.121 66.3147 20.9621 172.869 66.3147 26.0571 173.929 66.3147 31.2746 174.274 66.3147 33.8943 174.17 66.3147 36.5027 173.877 66.3147 39.0859 173.394 66.3147 41.6307 172.725 66.3147 46.5536 170.852 66.3147 51.1674 168.309 66.3147 53.326 166.801 66.3147 55.3684 165.143 66.3147 57.2827 163.343 66.3147 59.0611 161.41 66.3147 62.1835 157.195 66.3147 64.6818 152.588 66.3147 66.5023 147.68 66.3147 67.6 142.566 66.3147 67.9655 137.347 66.3147 67.5981 132.129 66.3147 67.1393 129.553 66.3147 66.4971 127.017 66.3147 64.6717 122.112 66.3147 62.17 117.509 66.3147 59.0497 113.299 66.3147 55.3688 109.572 66.3147 53.3369 107.917 66.3147 51.1912 106.412 66.3147 46.6054 103.874 66.3147 41.7062 102.004 66.3147 39.1686 101.335 66.3147 36.5881 100.85 66.3147 33.9772 100.555 66.3147 31.3503 100.448 66.3147 26.1093 100.786 66.3147 20.9861 101.842 66.3147 16.1015 103.594 + + + + + + + + + + 0 0.2717088 -0.9623795 0 0.3383985 -0.9410029 0 0.1351377 -0.9908269 0 0.01315349 -0.9999136 0 -0.07568824 -0.9971316 0 -0.1478017 -0.9890171 0 -0.2191563 -0.9756898 0 -0.3053482 -0.9522408 0 -0.4201803 -0.9074406 0 -0.5284344 -0.8489741 0 -0.6018686 -0.7985952 0 -0.6580876 -0.7529415 0 -0.7109417 -0.703251 0 -0.7708191 -0.6370542 0 -0.8433975 -0.5372902 0 -0.9106109 -0.4132648 0 -0.960138 -0.2795265 0 -0.9901227 -0.1402035 0 -1 1.83117e-4 0 -1 1.83111e-4 0 -0.9924117 0.1229604 0 -0.9775831 0.2105502 0 -0.9547024 0.2975624 0 -0.9101982 0.4141731 0 -0.8430653 0.5378112 0 -0.7593407 0.6506934 0 -0.6724981 0.7400989 0 -0.6032764 0.7975322 0 -0.5299715 0.8480155 0 -0.4214681 0.9068432 0 -0.306194 0.9519692 0 -0.2199508 0.9755111 0 -0.1485658 0.9889026 0 -0.07651209 0.9970687 0 0.01184141 0.9999299 0 0.133431 0.9910581 0 0.2703973 0.9627488 0 0.3375986 0.9412903 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

38 0 0 1 0 1 0 1 2 38 0 3 0 1 4 37 1 5 39 2 6 2 2 7 1 0 8 39 2 9 1 0 10 38 0 11 40 3 12 3 3 13 2 2 14 40 3 15 2 2 16 39 2 17 41 4 18 4 4 19 3 3 20 41 4 21 3 3 22 40 3 23 42 5 24 5 5 25 4 4 26 42 5 27 4 4 28 41 4 29 43 6 30 6 6 31 5 5 32 43 6 33 5 5 34 42 5 35 44 7 36 7 7 37 6 6 38 44 7 39 6 6 40 43 6 41 45 8 42 8 8 43 7 7 44 45 8 45 7 7 46 44 7 47 46 9 48 9 9 49 8 8 50 46 9 51 8 8 52 45 8 53 47 10 54 10 10 55 9 9 56 47 10 57 9 9 58 46 9 59 48 11 60 11 11 61 10 10 62 48 11 63 10 10 64 47 10 65 49 12 66 12 12 67 11 11 68 49 12 69 11 11 70 48 11 71 50 13 72 13 13 73 12 12 74 50 13 75 12 12 76 49 12 77 51 14 78 14 14 79 13 13 80 51 14 81 13 13 82 50 13 83 52 15 84 15 15 85 14 14 86 52 15 87 14 14 88 51 14 89 53 16 90 16 16 91 15 15 92 53 16 93 15 15 94 52 15 95 54 17 96 17 17 97 16 16 98 54 17 99 16 16 100 53 16 101 55 18 102 18 19 103 17 17 104 55 18 105 17 17 106 54 17 107 56 20 108 19 20 109 18 19 110 56 20 111 18 19 112 55 18 113 57 21 114 20 21 115 19 20 116 57 21 117 19 20 118 56 20 119 58 22 120 21 22 121 20 21 122 58 22 123 20 21 124 57 21 125 59 23 126 22 23 127 21 22 128 59 23 129 21 22 130 58 22 131 60 24 132 23 24 133 22 23 134 60 24 135 22 23 136 59 23 137 61 25 138 24 25 139 23 24 140 61 25 141 23 24 142 60 24 143 62 26 144 25 26 145 24 25 146 62 26 147 24 25 148 61 25 149 63 27 150 26 27 151 25 26 152 63 27 153 25 26 154 62 26 155 64 28 156 27 28 157 26 27 158 64 28 159 26 27 160 63 27 161 65 29 162 28 29 163 27 28 164 65 29 165 27 28 166 64 28 167 66 30 168 29 30 169 28 29 170 66 30 171 28 29 172 65 29 173 67 31 174 30 31 175 29 30 176 67 31 177 29 30 178 66 30 179 68 32 180 31 32 181 30 31 182 68 32 183 30 31 184 67 31 185 69 33 186 32 33 187 31 32 188 69 33 189 31 32 190 68 32 191 70 34 192 33 34 193 32 33 194 70 34 195 32 33 196 69 33 197 71 35 198 34 35 199 33 34 200 71 35 201 33 34 202 70 34 203 72 36 204 35 36 205 34 35 206 72 36 207 34 35 208 71 35 209 73 37 210 36 37 211 35 36 212 73 37 213 35 36 214 72 36 215

+
+
+
+ + + + 92.5784 16.1015 -112.72 92.5784 20.755 -111.031 92.5784 25.6267 -109.973 92.5784 30.6166 -109.57 92.5784 35.6248 -109.844 92.5784 40.553 -110.808 92.5784 45.3101 -112.435 92.5784 49.8064 -114.685 92.5784 53.9523 -117.52 92.5784 57.6643 -120.896 92.5784 60.8833 -124.741 92.5784 63.5562 -128.98 92.5784 65.63 -133.536 92.5784 67.0591 -138.329 92.5784 67.8278 -143.272 92.5784 67.928 -148.272 92.5784 67.35131 -153.24 92.5784 66.0979 -158.084 92.5784 64.2005 -162.72 92.5784 61.7001 -167.062 92.5784 58.638 -171.026 92.5784 55.0609 -174.533 92.5784 51.0396 -177.525 92.5784 46.6506 -179.951 92.5784 41.9705 -181.757 92.5784 37.081 -182.901 92.5784 32.084 -183.377 92.5784 27.0867 -183.186 92.5784 22.1963 -182.331 66.3147 16.1015 -112.72 66.3147 20.755 -111.031 66.3147 25.6267 -109.973 66.3147 30.6166 -109.57 66.3147 35.6248 -109.844 66.3147 40.553 -110.808 66.3147 45.3101 -112.435 66.3147 49.8064 -114.685 66.3147 53.9523 -117.52 66.3147 57.6643 -120.896 66.3147 60.8833 -124.741 66.3147 63.5562 -128.98 66.3147 65.63 -133.536 66.3147 67.0591 -138.329 66.3147 67.8278 -143.272 66.3147 67.928 -148.272 66.3147 67.35131 -153.24 66.3147 66.0979 -158.084 66.3147 64.2005 -162.72 66.3147 61.7001 -167.062 66.3147 58.638 -171.026 66.3147 55.0609 -174.533 66.3147 51.0396 -177.525 66.3147 46.6506 -179.951 66.3147 41.9705 -181.757 66.3147 37.081 -182.901 66.3147 32.084 -183.377 66.3147 27.0867 -183.186 66.3147 22.1963 -182.331 + + + + + + + + + + 0 0.2773281 -0.9607753 0 0.3411769 -0.9399991 0 0.1466747 -0.9891848 0 0.01293992 -0.9999163 0 -0.1235727 -0.9923356 0 -0.258373 -0.9660453 0 -0.3864328 -0.9223176 0 -0.5071389 -0.8618644 0 -0.6201251 -0.784503 0 -0.7214697 -0.6924461 0 -0.8081431 -0.5889862 0 -0.8800386 -0.4749022 0 -0.8800318 -0.474915 0 -0.9364445 -0.3508157 0 -0.9754556 -0.2201962 0 -0.9962048 -0.08704048 0 -0.9988602 0.04773187 0 -0.9830517 0.1833284 0 -0.9489729 0.3153578 0 -0.8980595 0.4398739 0 -0.8980475 0.4398986 0 -0.8308794 0.5564527 0 -0.7474935 0.6642691 0 -0.6500019 0.7599327 0 -0.5415672 0.8406575 0 -0.4228671 0.9061917 0 -0.2946026 0.9556198 0 -0.1616912 0.9868414 0 -0.02835237 0.999598 0 0.1054425 0.9944254 0 0.1722182 0.9850589 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -92.5784 16.1015 -112.72 -92.5784 20.755 -111.031 -92.5784 25.6267 -109.973 -92.5784 30.6166 -109.57 -92.5784 35.6248 -109.844 -92.5784 40.553 -110.808 -92.5784 45.3101 -112.435 -92.5784 49.8064 -114.685 -92.5784 53.9523 -117.52 -92.5784 57.6643 -120.896 -92.5784 60.8833 -124.741 -92.5784 63.5562 -128.98 -92.5784 65.63 -133.536 -92.5784 67.0591 -138.329 -92.5784 67.8278 -143.272 -92.5784 67.928 -148.272 -92.5784 67.35131 -153.24 -92.5784 66.0979 -158.084 -92.5784 64.2005 -162.72 -92.5784 61.7001 -167.062 -92.5784 58.638 -171.026 -92.5784 55.0609 -174.533 -92.5784 51.0396 -177.525 -92.5784 46.6506 -179.951 -92.5784 41.9705 -181.757 -92.5784 37.081 -182.901 -92.5784 32.084 -183.377 -92.5784 27.0867 -183.186 -92.5784 22.1963 -182.331 -66.3147 16.1015 -112.72 -66.3147 20.755 -111.031 -66.3147 25.6267 -109.973 -66.3147 30.6166 -109.57 -66.3147 35.6248 -109.844 -66.3147 40.553 -110.808 -66.3147 45.3101 -112.435 -66.3147 49.8064 -114.685 -66.3147 53.9523 -117.52 -66.3147 57.6643 -120.896 -66.3147 60.8833 -124.741 -66.3147 63.5562 -128.98 -66.3147 65.63 -133.536 -66.3147 67.0591 -138.329 -66.3147 67.8278 -143.272 -66.3147 67.928 -148.272 -66.3147 67.35131 -153.24 -66.3147 66.0979 -158.084 -66.3147 64.2005 -162.72 -66.3147 61.7001 -167.062 -66.3147 58.638 -171.026 -66.3147 55.0609 -174.533 -66.3147 51.0396 -177.525 -66.3147 46.6506 -179.951 -66.3147 41.9705 -181.757 -66.3147 37.081 -182.901 -66.3147 32.084 -183.377 -66.3147 27.0867 -183.186 -66.3147 22.1963 -182.331 + + + + + + + + + + 0 0.2773281 -0.9607753 0 0.3411769 -0.9399991 0 0.1466747 -0.9891848 0 0.01293992 -0.9999163 0 -0.1235727 -0.9923356 0 -0.258373 -0.9660453 0 -0.3864328 -0.9223176 0 -0.5071389 -0.8618644 0 -0.6201251 -0.784503 0 -0.7214697 -0.6924461 0 -0.8081431 -0.5889862 0 -0.8800386 -0.4749022 0 -0.8800318 -0.474915 0 -0.9364445 -0.3508157 0 -0.9754556 -0.2201962 0 -0.9962048 -0.08704048 0 -0.9988602 0.04773187 0 -0.9830517 0.1833284 0 -0.9489729 0.3153578 0 -0.8980595 0.4398739 0 -0.8980475 0.4398986 0 -0.8308794 0.5564527 0 -0.7474935 0.6642691 0 -0.6500019 0.7599327 0 -0.5415672 0.8406575 0 -0.4228671 0.9061917 0 -0.2946026 0.9556198 0 -0.1616912 0.9868414 0 -0.02835237 0.999598 0 0.1054425 0.9944254 0 0.1722182 0.9850589 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

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

+
+
+
+ + + + -92.5784 16.1015 171.121 -92.5784 20.9621 172.869 -92.5784 26.0571 173.929 -92.5784 31.2746 174.274 -92.5784 33.8943 174.17 -92.5784 36.5027 173.877 -92.5784 39.0859 173.394 -92.5784 41.6307 172.725 -92.5784 46.5536 170.852 -92.5784 51.1674 168.309 -92.5784 53.326 166.801 -92.5784 55.3684 165.143 -92.5784 57.2827 163.343 -92.5784 59.0611 161.41 -92.5784 62.1835 157.195 -92.5784 64.6818 152.588 -92.5784 66.5023 147.68 -92.5784 67.6 142.566 -92.5784 67.9655 137.347 -92.5784 67.5981 132.129 -92.5784 67.1393 129.553 -92.5784 66.4971 127.017 -92.5784 64.6717 122.112 -92.5784 62.17 117.509 -92.5784 59.0497 113.299 -92.5784 55.3688 109.572 -92.5784 53.3369 107.917 -92.5784 51.1912 106.412 -92.5784 46.6054 103.874 -92.5784 41.7062 102.004 -92.5784 39.1686 101.335 -92.5784 36.5881 100.85 -92.5784 33.9772 100.555 -92.5784 31.3503 100.448 -92.5784 26.1093 100.786 -92.5784 20.9861 101.842 -92.5784 16.1015 103.594 -66.3147 16.1015 171.121 -66.3147 20.9621 172.869 -66.3147 26.0571 173.929 -66.3147 31.2746 174.274 -66.3147 33.8943 174.17 -66.3147 36.5027 173.877 -66.3147 39.0859 173.394 -66.3147 41.6307 172.725 -66.3147 46.5536 170.852 -66.3147 51.1674 168.309 -66.3147 53.326 166.801 -66.3147 55.3684 165.143 -66.3147 57.2827 163.343 -66.3147 59.0611 161.41 -66.3147 62.1835 157.195 -66.3147 64.6818 152.588 -66.3147 66.5023 147.68 -66.3147 67.6 142.566 -66.3147 67.9655 137.347 -66.3147 67.5981 132.129 -66.3147 67.1393 129.553 -66.3147 66.4971 127.017 -66.3147 64.6717 122.112 -66.3147 62.17 117.509 -66.3147 59.0497 113.299 -66.3147 55.3688 109.572 -66.3147 53.3369 107.917 -66.3147 51.1912 106.412 -66.3147 46.6054 103.874 -66.3147 41.7062 102.004 -66.3147 39.1686 101.335 -66.3147 36.5881 100.85 -66.3147 33.9772 100.555 -66.3147 31.3503 100.448 -66.3147 26.1093 100.786 -66.3147 20.9861 101.842 -66.3147 16.1015 103.594 + + + + + + + + + + 0 0.2717088 -0.9623795 0 0.3383985 -0.9410029 0 0.1351377 -0.9908269 0 0.01315349 -0.9999136 0 -0.07568824 -0.9971316 0 -0.1478017 -0.9890171 0 -0.2191563 -0.9756898 0 -0.3053482 -0.9522408 0 -0.4201803 -0.9074406 0 -0.5284344 -0.8489741 0 -0.6018686 -0.7985952 0 -0.6580876 -0.7529415 0 -0.7109417 -0.703251 0 -0.7708191 -0.6370542 0 -0.8433975 -0.5372902 0 -0.9106109 -0.4132648 0 -0.960138 -0.2795265 0 -0.9901227 -0.1402035 0 -1 1.83117e-4 0 -1 1.83111e-4 0 -0.9924117 0.1229604 0 -0.9775831 0.2105502 0 -0.9547024 0.2975624 0 -0.9101982 0.4141731 0 -0.8430653 0.5378112 0 -0.7593407 0.6506934 0 -0.6724981 0.7400989 0 -0.6032764 0.7975322 0 -0.5299715 0.8480155 0 -0.4214681 0.9068432 0 -0.306194 0.9519692 0 -0.2199508 0.9755111 0 -0.1485658 0.9889026 0 -0.07651209 0.9970687 0 0.01184141 0.9999299 0 0.133431 0.9910581 0 0.2703973 0.9627488 0 0.3375986 0.9412903 + + + + + + + + + + 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 + + + + + + + + + + + + + + +

38 0 0 37 1 1 0 1 2 38 0 3 0 1 4 1 0 5 39 2 6 38 0 7 1 0 8 39 2 9 1 0 10 2 2 11 40 3 12 39 2 13 2 2 14 40 3 15 2 2 16 3 3 17 41 4 18 40 3 19 3 3 20 41 4 21 3 3 22 4 4 23 42 5 24 41 4 25 4 4 26 42 5 27 4 4 28 5 5 29 43 6 30 42 5 31 5 5 32 43 6 33 5 5 34 6 6 35 44 7 36 43 6 37 6 6 38 44 7 39 6 6 40 7 7 41 45 8 42 44 7 43 7 7 44 45 8 45 7 7 46 8 8 47 46 9 48 45 8 49 8 8 50 46 9 51 8 8 52 9 9 53 47 10 54 46 9 55 9 9 56 47 10 57 9 9 58 10 10 59 48 11 60 47 10 61 10 10 62 48 11 63 10 10 64 11 11 65 49 12 66 48 11 67 11 11 68 49 12 69 11 11 70 12 12 71 50 13 72 49 12 73 12 12 74 50 13 75 12 12 76 13 13 77 51 14 78 50 13 79 13 13 80 51 14 81 13 13 82 14 14 83 52 15 84 51 14 85 14 14 86 52 15 87 14 14 88 15 15 89 53 16 90 52 15 91 15 15 92 53 16 93 15 15 94 16 16 95 54 17 96 53 16 97 16 16 98 54 17 99 16 16 100 17 17 101 55 18 102 54 17 103 17 17 104 55 18 105 17 17 106 18 19 107 56 20 108 55 18 109 18 19 110 56 20 111 18 19 112 19 20 113 57 21 114 56 20 115 19 20 116 57 21 117 19 20 118 20 21 119 58 22 120 57 21 121 20 21 122 58 22 123 20 21 124 21 22 125 59 23 126 58 22 127 21 22 128 59 23 129 21 22 130 22 23 131 60 24 132 59 23 133 22 23 134 60 24 135 22 23 136 23 24 137 61 25 138 60 24 139 23 24 140 61 25 141 23 24 142 24 25 143 62 26 144 61 25 145 24 25 146 62 26 147 24 25 148 25 26 149 63 27 150 62 26 151 25 26 152 63 27 153 25 26 154 26 27 155 64 28 156 63 27 157 26 27 158 64 28 159 26 27 160 27 28 161 65 29 162 64 28 163 27 28 164 65 29 165 27 28 166 28 29 167 66 30 168 65 29 169 28 29 170 66 30 171 28 29 172 29 30 173 67 31 174 66 30 175 29 30 176 67 31 177 29 30 178 30 31 179 68 32 180 67 31 181 30 31 182 68 32 183 30 31 184 31 32 185 69 33 186 68 32 187 31 32 188 69 33 189 31 32 190 32 33 191 70 34 192 69 33 193 32 33 194 70 34 195 32 33 196 33 34 197 71 35 198 70 34 199 33 34 200 71 35 201 33 34 202 34 35 203 72 36 204 71 35 205 34 35 206 72 36 207 34 35 208 35 36 209 73 37 210 72 36 211 35 36 212 73 37 213 35 36 214 36 37 215

+
+
+
+
+ + + + + 0.6859207 -0.3240135 0.6515582 7.481132 0.7276763 0.3054208 -0.6141704 -6.50764 0 0.8953956 0.4452714 5.343665 0 0 0 1 + + + + -0.2908646 -0.7711008 0.5663932 4.076245 0.9551712 -0.1998834 0.2183912 1.005454 -0.05518906 0.6045247 0.7946723 5.903862 0 0 0 1 + + + + 0.6858805 -0.3173701 0.6548619 7.481132 0.7276337 0.3124686 -0.6106656 -6.50764 -0.01081678 0.8953431 0.4452454 5.343665 0 0 0 1 + + + + -0.2908646 -0.7711008 0.5663933 4.076245 0.9551712 -0.1998833 0.2183912 1.005454 -0.05518906 0.6045247 0.7946723 5.903862 0 0 0 1 + + + + -4.37114e-10 4.37114e-10 0.01 1.460178 0.01 2.98023e-10 4.37114e-10 0.02998718 -2.98023e-10 0.01 -4.37114e-10 -0.2767959 0 0 0 1 + + 1 0 -3.5743e-9 20.0715 1.77636e-15 1 1.07269e-8 15.601 1.98616e-9 -1.62913e-8 1 3.108276 0 0 0 1 + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + 1 -7.6294e-8 1.86794e-8 -23.0503 7.6294e-8 1 -2.06656e-8 -17.9163 -1.51011e-8 2.18557e-8 1 -3.569565 0 0 0 1 + + + + + 1 0 -3.5743e-9 -2.9788 1.77636e-15 1 1.07269e-8 -2.31534 1.98616e-9 -1.62913e-8 1 -0.4613037 0 0 0 1 + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + + 1 0 -3.5743e-9 12.6954 1.77636e-15 1 1.07269e-8 9.867769 1.98616e-9 -1.62913e-8 1 1.966019 0 0 0 1 + + + 1 0 -3.5743e-9 -2.9788 1.77636e-15 1 1.07269e-8 -2.31534 1.98616e-9 -1.62913e-8 1 -0.4613037 0 0 0 1 + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + + 1 0 -3.5743e-9 -2.9788 1.77636e-15 1 1.07269e-8 -2.31534 1.98616e-9 -1.62913e-8 1 -0.4613037 0 0 0 1 + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + + 1 0 -3.5743e-9 -2.9788 1.77636e-15 1 1.07269e-8 -2.31534 1.98616e-9 -1.62913e-8 1 -0.4613037 0 0 0 1 + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + + 1 0 -3.5743e-9 -2.9788 1.77636e-15 1 1.07269e-8 -2.31534 1.98616e-9 -1.62913e-8 1 -0.4613037 0 0 0 1 + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + + 1 0 -3.5743e-9 -2.9788 1.77636e-15 1 1.07269e-8 -2.31534 1.98616e-9 -1.62913e-8 1 -0.4613037 0 0 0 1 + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + + 1 0 -3.5743e-9 -2.9788 1.77636e-15 1 1.07269e-8 -2.31534 1.98616e-9 -1.62913e-8 1 -0.4613037 0 0 0 1 + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + + 1 0 -3.5743e-9 -2.9788 1.77636e-15 1 1.07269e-8 -2.31534 1.98616e-9 -1.62913e-8 1 -0.4613037 0 0 0 1 + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + + 1 0 -3.5743e-9 -2.9788 1.77636e-15 1 1.07269e-8 -2.31534 1.98616e-9 -1.62913e-8 1 -0.4613037 0 0 0 1 + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + + 1 0 -3.5743e-9 -2.9788 1.77636e-15 1 1.07269e-8 -2.31534 1.98616e-9 -1.62913e-8 1 -0.4613037 0 0 0 1 + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + 1 -1.77636e-15 5.57569e-9 0 1.77636e-15 1 1.07269e-8 0 -5.5644e-9 -1.77636e-15 1 0 0 0 0 1 + + + + + 1 0 -3.5743e-9 -2.9788 1.77636e-15 1 1.07269e-8 -2.31534 1.98616e-9 -1.62913e-8 1 -0.4613037 0 0 0 1 + + + + + + + +
\ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/wheel.dae b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/wheel.dae new file mode 100644 index 00000000000..8e2e37f8e04 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/mesh/wheel.dae @@ -0,0 +1,679 @@ + + + + + Blender User + Blender 2.79.0 commit date:2018-03-22, commit time:14:10, hash:f4dc9f9d68b + + 2019-01-08T15:49:56 + 2019-01-08T15:49:56 + + Z_UP + + + + + + + 49.13434 + 1.777778 + 0.1 + 100 + + + + + + 0 + 0 + 0 + + + + + + + + 39.59775 + 1.777778 + 0.09999996 + 1000 + + + + + + 0 + 0 + 0 + + + + + + + + + 1 1 1 + 1 + 0 + 0.00111109 + + + + + 0 + 0 + 8192 + 1 + 1 + 1 + 1 + 0 + 0 + 0 + 1 + 29.99998 + 75 + 0.15 + 1 + 0 + 1 + 2 + 1.000799 + 30.002 + 1 + 3 + 0.04999995 + 2880 + 3 + 1 + 0 + 0 + 2 + 1 + 1 + 1 + 0 + 1 + 0.1 + 0.1 + 1 + 0.000999987 + 1 + 0 + 0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 2 + 1 + 1 + 1 + 1 + 0 + + + + + + + 1 1 1 + + + + + 1 + 0 + 4097 + 1 + 1 + 1 + 1 + 0 + 0 + 0 + 1 + 2500 + 45 + 0.15 + 1 + 0 + 1 + 2 + 0.5 + 40 + 1 + 3 + 0.04999995 + 512 + 3 + 1 + 0 + 0 + 2 + 1 + 1 + 1 + 0 + 0 + 0.1 + 0.1 + 0.1 + 0.000999987 + 1 + 0 + 0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 2 + 1 + 1 + 1 + 1 + 2 + + + + + + + _51225ex1diffuse.jpeg + + + _51225ex2diffuse.jpeg + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.03529412 0.03921568 0.03921568 1 + + + 0 0 0 1 + + + 6 + + + 1 1 1 1 + + + 1 + + + + + + + + + + _51225ex1diffuse_jpeg + + + + + _51225ex1diffuse_jpeg-surface + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + + + + 0 0 0 1 + + + 6 + + + 1 1 1 1 + + + 1 + + + + + + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + 0.4226771 0.4310498 0.44 1 + + + 0 0 0 1 + + + 6 + + + 1 1 1 1 + + + 1 + + + + + + + + + + _51225ex2diffuse_jpeg + + + + + _51225ex2diffuse_jpeg-surface + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + + + + 0 0 0 1 + + + 6 + + + 1 1 1 1 + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + 78.56922 -119.479 6.019912 78.56451 -121.2785 8.983483 77.62551 -118.6639 6.461929 77.62551 -120.5976 9.55653 77.74232 -127.2833 8.496582 77.31956 -125.6438 11.14162 77.27555 -125.4367 3.15863 76.42892 -127.7599 10.84297 77.31214 -127.8449 6.404446 77.27267 -127.8971 8.862729 78.23669 -123.0645 7.622222 78.24079 -121.5103 5.062614 78.10501 -125.2726 9.776528 78.04185 -124.7458 8.145352 77.74123 -124.2859 3.659004 78.45951 -123.1926 11.02066 77.20745 -123.5527 11.25254 76.92597 -124.4678 10.70258 77.90165 -126.4598 9.065197 76.91387 -126.6142 9.420617 76.91386 -127.3827 8.498906 77.61933 -122.469 11.47433 76.91387 -125.5888 10.03611 78.12713 -123.504 7.287296 76.91387 -123.5898 7.22332 76.91387 -123.1012 5.944374 78.08686 -122.9892 5.88594 76.91387 -124.6971 7.961158 76.91387 -123.3785 4.628994 77.9491 -123.2954 4.56837 76.91386 -124.3405 3.668007 76.91386 -126.8386 7.487522 76.91386 -125.9564 8.026375 77.87255 -126.0159 8.124798 77.68674 -127.0222 7.535598 77.28096 -126.9672 10.1943 77.27555 -126.5356 4.917266 77.27267 -126.4626 9.872128 77.27267 -124.7203 3.507999 77.27267 -125.9076 5.407859 77.27267 -127.3106 6.994675 76.17153 -123.8837 11.45155 77.14054 -124.577 11.85064 77.04461 -124.0107 11.36673 77.19646 -126.4008 11.71054 75.64236 -125.4879 3.133629 77.02148 -125.3237 12.35995 77.27279 -124.9964 10.78868 76.19987 -125.2708 12.42442 77.28335 -128.69 8.927453 76.54943 -127.1301 10.2866 76.44413 -128.8071 8.84879 76.91387 -127.1096 7.464077 75.44276 -126.0797 11.96827 74.05169 -124.5914 10.98078 75.71706 -126.6454 11.62952 75.64521 -126.3392 9.89737 75.64521 -124.6691 3.533001 75.6448 -128.8304 8.830854 75.64521 -125.8627 5.442951 75.64236 -126.5805 4.88216 75.64521 -127.2702 7.038025 75.64614 -125.1626 10.62825 75.65195 -127.8116 10.87703 75.64223 -128.0176 6.502895 75.39659 -124.6611 10.95073 75.64521 -127.8421 8.853222 75.57711 -124.4485 11.0447 76.87998 -127.0751 7.193333 76.89442 -124.3472 5.074176 76.87998 -125.0694 4.595993 76.88481 -127.5102 8.628643 76.89443 -126.4136 7.731235 76.89442 -121.9338 5.931003 76.89443 -124.0002 8.588063 76.8836 -124.7056 10.49683 76.88111 -126.9591 9.227871 76.49028 -127.1385 7.141777 76.49028 -125.1383 4.550407 76.49028 -127.0215 9.272801 76.49028 -127.5628 8.736432 76.49028 -124.7221 10.56482 69.53414 -119.479 6.019912 69.53887 -121.2785 8.983487 69.64389 -123.1926 11.02066 70.47787 -120.5976 9.55653 70.47787 -118.6639 6.461933 70.48405 -122.469 11.47433 69.8626 -121.5103 5.062614 69.86668 -123.0645 7.622222 71.17739 -124.4678 10.70258 70.89595 -123.5527 11.25254 69.99837 -125.2726 9.776528 71.18951 -125.5888 10.03611 70.89064 -126.3943 11.70653 71.49271 -125.2973 12.39219 71.66188 -127.7053 10.91051 70.83059 -124.9964 10.78868 71.45089 -123.9679 11.41067 72.70679 -124.6611 10.95073 72.44873 -127.7567 10.94804 72.45727 -125.1626 10.62825 70.89936 -126.3358 9.919915 72.45817 -126.266 9.942894 72.66067 -126.0797 11.96827 72.3863 -126.6454 11.62953 72.52627 -124.4485 11.0447 78.56922 -118.5608 3.640331 78.56451 -117.9032 0.2361595 77.62551 -117.0138 0.2689812 77.62551 -117.66 3.860393 77.02148 -118.6319 -4.982453 77.14054 -118.4208 -4.10356 77.31956 -119.6873 -4.294875 77.19646 -119.866 -5.224843 77.27267 -123.7343 -0.2245335 77.27267 -124.1309 1.98043 77.27555 -124.8962 1.758083 77.27555 -124.529 -0.2828984 76.44413 -123.5709 -4.72123 76.42892 -121.4556 -5.495114 76.54943 -121.3627 -4.659897 77.31214 -124.5 -2.264088 77.28335 -123.4313 -4.700814 77.27267 -122.8874 -4.120293 77.27267 -123.7077 -2.342455 78.45951 -117.9527 -2.558753 77.61933 -117.112 -2.40883 77.27267 -121.1467 -3.904444 77.28096 -121.3041 -4.482066 77.27279 -119.4448 -3.598584 78.24079 -120.7086 2.985019 78.23669 -120.1406 0.04486393 78.10501 -120.3293 -3.034283 76.92597 -119.111 -3.179694 77.20745 -118.0638 -2.972472 77.90165 -121.6866 -3.304795 77.74232 -122.6786 -3.436739 76.91386 -122.7507 -3.50519 76.91387 -121.5623 -3.671809 76.91387 -120.3892 -3.438948 78.12713 -120.6912 -0.00222826 78.08686 -121.2512 1.381668 76.91387 -121.2949 1.263168 76.91387 -120.7977 -0.0124669 78.04185 -121.0348 -1.472065 76.91387 -121.1224 -1.302876 77.9491 -122.363 2.15208 76.91387 -122.3839 2.051319 76.91386 -123.027 -2.390521 77.68674 -123.1307 -2.549448 77.87255 -121.9895 -2.309971 76.91386 -122.0115 -2.197075 75.64614 -119.6757 -3.591322 75.64521 -121.0383 -3.840271 75.64521 -123.6775 -0.2203602 75.64521 -124.0761 1.996341 75.64521 -122.853 -4.076241 75.64521 -123.6486 -2.347399 76.19987 -118.5493 -4.994645 76.17153 -118.1753 -3.34223 77.04461 -118.3263 -3.364657 75.64236 -124.5859 -0.2870717 75.64236 -124.951 1.742172 75.64223 -124.5618 -2.453013 75.6448 -123.6002 -4.723567 75.65195 -121.471 -5.555037 75.71706 -120.1016 -5.329142 75.39659 -119.0876 -3.493407 75.44276 -119.455 -5.200085 75.57711 -118.867 -3.42022 74.05169 -119.0158 -3.468806 76.91387 -123.2435 -2.555142 77.74123 -123.7077 2.160358 76.91386 -123.742 2.117073 76.87998 -123.6587 0.9399562 76.87998 -123.3998 -2.331406 76.89443 -122.5484 -2.285536 76.89442 -122.8024 1.070854 76.89443 -120.185 -1.299172 76.89442 -120.4391 2.057213 76.8836 -119.4254 -3.187008 76.88111 -121.9472 -3.760699 76.88481 -122.758 -3.686955 76.49028 -123.7403 0.9274745 76.49028 -123.4814 -2.335803 76.49028 -122.7245 -3.802149 76.49028 -121.9633 -3.835915 76.49028 -119.392 -3.248507 69.53414 -118.5608 3.640334 69.53887 -117.9032 0.2361595 70.47787 -117.66 3.860393 70.47787 -117.0138 0.2689812 71.49271 -118.5906 -4.988547 70.89064 -119.8639 -5.217534 70.83059 -119.4448 -3.598584 71.45089 -118.2651 -3.368483 69.64389 -117.9527 -2.558753 70.48405 -117.112 -2.408828 71.66188 -121.3698 -5.508473 70.89936 -121.0206 -3.854666 69.86668 -120.1406 0.04486775 69.8626 -120.7086 2.985019 69.99837 -120.3293 -3.034281 70.89595 -118.0638 -2.97247 71.17739 -119.111 -3.179694 71.18951 -120.3892 -3.438948 72.45817 -120.9535 -3.824822 72.45727 -119.6757 -3.591322 72.66067 -119.455 -5.200085 72.70679 -119.0876 -3.493407 72.44873 -121.3826 -5.570788 72.3863 -120.1016 -5.329142 72.52627 -118.867 -3.42022 + + + + + + + + + + 0.9883645 -0.1376721 -0.0646702 0.939456 0.3066515 0.152929 0.9362116 0.2708897 0.2238899 0.9863865 -0.1407554 -0.08502697 0.3706903 0.8305891 0.4155845 0.3630642 0.7331174 0.5750855 0.5325635 0.006683707 0.8463638 0.7350886 -0.4799775 0.4788178 0.9953759 -0.05957299 0.07535129 0.709849 0.433466 0.5551771 0.7374797 -0.5370259 -0.4095448 0.7421941 -0.5995172 -0.299545 0.6977302 0.6408119 0.3202075 0.6982897 0.5762721 0.4246199 0.5719317 -0.6667552 0.4778407 0.1378853 -0.9809147 0.1370918 0.7696654 -0.5149821 0.3773707 0.7504596 0.573511 0.3284748 0.8682754 0.4697232 -0.1595551 0.643587 -0.7247983 0.2458925 0.7060395 -0.6060269 -0.3663873 0.3177947 0.2993307 0.8996708 0.7981677 -0.1104488 0.5922243 0.7859643 -0.3689482 0.4961223 0.7128307 0.3809373 -0.5888628 0.7327395 0.4356334 -0.5227968 0.8014752 -0.3928483 0.4508966 0.1793609 -0.5257835 0.8314936 0.3076935 -0.4892211 0.8160806 0.1403891 -0.404748 0.9035873 0.6257939 -0.7604747 0.173379 0.8121803 -0.4133843 0.4116752 0.2941128 -0.5863639 0.7547684 0.1213117 -0.9711648 0.2052379 0.09103935 -0.9924297 -0.08243286 0.7493702 -0.6547909 -0.09845513 0.73821 -0.5402899 -0.4038974 0.09393805 -0.7815964 -0.6166707 0.7777754 -0.2582818 -0.5730237 0.1275719 -0.3143214 -0.9407058 0.770737 -0.5988212 0.2176644 0.09015476 -0.8724325 0.4803475 0.1239989 0.2258715 -0.9662331 0.7800974 0.03244173 -0.6248165 0.5848689 -0.32451 -0.7433853 0.1377326 0.3358014 -0.9318086 -0.7154343 -0.5596026 -0.4183286 -0.7182627 -0.6224028 -0.3109877 -0.6465308 -0.6609666 -0.3809477 -0.6191996 -0.7839106 0.04556483 -0.7111302 0.3936074 -0.5825524 -0.5990031 0.2788552 -0.7506231 -0.6724586 0.6620821 0.3308274 -0.675144 0.5912165 0.4411844 -0.8601543 0.4830891 -0.1635831 -0.7445996 0.5815984 0.3275896 0.5325047 0.8374254 -0.1231157 0.0617097 0.9980677 -0.007263541 0.03717184 0.04944032 0.9980852 -0.633062 -0.4807096 0.6067544 -0.6279033 -0.5686959 0.5313404 -0.2551406 0.1118834 -0.960409 -0.4091432 -0.8067196 0.4263867 0.02118009 0.5228198 -0.8521801 -0.006195366 -0.01040697 -0.9999267 0.1399294 -0.5816608 -0.8013057 0.5700359 -0.8074746 0.151802 0.06662362 -0.9763125 0.2058527 0.8003295 -0.5220881 -0.2947828 0.9999715 -0.006561458 -0.003753781 0.9999706 -0.007507503 -0.001617431 0.7314779 -0.6118437 -0.3009778 1 0 0 0.9999958 -0.001464903 0.00250256 0.7247074 -0.3387014 0.6000672 0.7368275 -0.4155508 0.5332943 0.6698879 -0.7326956 0.1200305 0.2006006 -0.8759531 -0.438709 0.2068303 -0.8532017 -0.4788196 0.2191566 -0.9268914 0.3047013 0.1694142 -0.4836134 0.8587298 0.1992878 -0.6065616 0.7696541 -0.9894739 -0.1301047 -0.06335854 -0.9893704 -0.1263799 -0.07193368 -0.9362116 0.2708897 0.2238899 -0.9394648 0.3066239 0.1529304 -0.3630642 0.7331174 0.5750855 -0.3706903 0.8305891 0.4155845 -0.414059 0.09622818 0.9051494 -0.4371811 0.8993264 0.009216606 -0.7819331 0.492855 -0.3816735 -0.7400634 -0.3596398 0.5683006 -0.7981677 -0.1104488 0.5922243 -0.3177947 0.2993307 0.8996708 -0.808732 0.1347123 -0.5725428 -0.4006823 -0.6268883 0.6681803 -0.7184295 -0.4311798 0.5458416 -0.1793609 -0.5257835 0.8314936 -0.1403891 -0.404748 0.9035873 -0.307632 -0.4887015 0.8164151 0.7855594 0.3441629 -0.5142454 0.5994345 0.2765071 -0.7511472 0.4094182 -0.8030273 0.4330402 0.2551406 0.1118834 -0.960409 0.6351649 -0.4721009 0.6112989 0.5611563 -0.4095675 0.7192762 0.006866872 0.5558839 -0.8312317 -0.672434 0.7127197 0.1996579 0.6977421 0.689807 0.1931899 0.7421996 -0.6453313 -0.1807965 -0.7182503 -0.6699987 -0.1876655 0.8002826 -0.5848454 -0.1323021 0.9999715 -0.007385492 -0.001617431 0.2066757 -0.9537237 -0.2183951 -0.3706893 0.8944643 0.2500459 -0.9394624 0.3298785 0.09268581 0.3707157 0.8944542 0.2500431 0.9394624 0.3298785 0.09268581 0.9883611 -0.145454 -0.04455786 0.9863876 -0.1613867 -0.0315265 0.9362131 0.3510646 0.01608371 0.3630824 0.9293896 0.06637841 0.5325651 0.5734307 -0.6225365 0.7098492 0.6940402 -0.1200935 0.9953768 0.006470024 -0.0958296 0.735083 -0.03393721 -0.6771273 0.7374948 -0.6729164 -0.05731493 0.6982833 0.7121391 0.07251399 0.7696891 -0.1279966 -0.6254563 0.1378864 -0.6345886 -0.7604504 0.5719304 -0.1729524 -0.8018623 0.7504608 0.6455062 0.1418825 0.7060299 -0.6950736 -0.135627 0.6436119 -0.37175 -0.6690036 0.8682796 0.2407988 0.4337125 0.7981691 0.315996 -0.512906 0.3177983 0.8260679 -0.4654205 0.7859914 0.05990916 -0.6153281 0.7128069 -0.1133179 0.6921454 0.7327422 -0.02841359 0.679913 0.8014613 0.01184135 -0.5979296 0.1793602 0.1689838 -0.9691617 0.1404179 0.3070821 -0.9412669 0.307693 0.1857389 -0.9331807 0.6257899 -0.4468882 -0.6392793 0.1212818 -0.5815975 -0.804385 0.2941102 0.07257378 -0.9530122 0.8121694 -0.02966433 -0.5826672 0.09103906 -0.7905721 -0.605564 0.09390723 -0.9932438 -0.0681796 0.7382097 -0.6715548 -0.06372505 0.7493427 -0.5512413 -0.3669041 0.1275681 -0.8647471 0.4857354 0.7777817 -0.576233 0.2510204 0.770757 -0.297377 -0.563472 0.09018462 -0.3235965 -0.9418876 0.1239998 -0.4817161 0.8675101 0.1377025 -0.377095 0.9158807 0.5848721 -0.7397577 0.332691 0.7801098 -0.3956552 0.4846502 -0.7154299 -0.695562 -0.0659824 -0.646548 -0.7455216 -0.1617819 -0.6192317 -0.5501061 -0.5602994 -0.7111566 -0.09970593 0.6959276 -0.5990044 -0.2975947 0.7433917 -0.6751488 0.7343257 0.07028603 -0.8601521 0.2479682 0.4457018 -0.7445797 0.6509159 0.1480187 0.06171011 0.7344786 0.6758204 0.5324715 0.5376598 0.6537555 0.03720241 0.7070902 -0.7061441 -0.6330512 0.05142414 -0.7724 -0.6279063 -0.06439596 -0.7756204 -0.2551426 -0.5622293 0.7866388 -0.4091475 -0.3112097 -0.857757 0.02114963 -0.1850672 0.9824983 -0.006195425 -0.6793615 0.7337777 0.9874349 -0.156983 -0.01812738 0.1399307 -0.9691386 0.2029529 0.5699797 -0.4962754 -0.6548541 0.06653165 -0.5849597 -0.8083291 0.7314836 -0.6554299 -0.1879981 0.9999706 -0.00665301 -0.003845334 0.9999957 5.79867e-4 -0.002868771 0.736828 0.05035686 -0.6742023 0.9999842 2.9363e-4 -0.005620956 0.6698586 -0.4622082 -0.5810793 0.2006033 -0.9435956 -0.2634121 0.219156 -0.4819234 -0.8483634 0.1993226 0.0676006 -0.9775995 0.1695041 0.2185487 -0.9609916 0.7247611 0.1521363 -0.671994 -0.9894727 -0.1389552 -0.04043829 -0.9362131 0.3510646 0.01608371 -0.9893663 -0.1419746 -0.03158718 -0.3630824 0.9293896 0.06637841 -0.4140625 0.6793102 -0.6058795 -0.7400658 0.1153024 -0.6625769 -0.7819606 0.1087396 0.6137698 -0.4371923 0.6724368 0.5972368 -0.3177983 0.8260679 -0.4654205 -0.7981691 0.315996 -0.512906 -0.4006824 -0.0155341 -0.9160854 -0.8087292 -0.284775 0.5146458 -0.9892637 -0.1419737 -0.03465449 -0.9894572 -0.1408533 -0.03368693 -0.1793602 0.1689838 -0.9691617 -0.3076308 0.186318 -0.9330857 -0.7184205 0.04721307 -0.6940051 -0.1404179 0.3070821 -0.9412669 0.7855538 -0.09045767 0.612146 0.599398 -0.299699 0.7422281 0.2551426 -0.5622293 0.7866388 0.4094138 -0.3040008 -0.8602115 0.6351686 0.06085556 -0.7699725 0.5611516 0.1797565 -0.8079582 0.006866753 -0.1465518 0.9891793 0.05740958 -0.9314087 -0.3594192 0.05756121 -0.931423 -0.359358 + + + + + + + + + + + + + + +

11 0 0 1 1 2 1 2 10 3 11 0 0 1 2 4 3 5 3 5 1 2 0 1 46 6 44 7 5 8 5 8 42 9 46 6 36 10 6 11 38 12 38 12 39 13 36 10 7 14 51 15 50 16 40 17 9 18 49 19 49 19 8 20 40 17 1 2 3 5 21 21 21 21 15 22 1 2 35 23 49 19 9 18 9 18 37 24 35 23 5 8 35 23 37 24 37 24 47 25 5 8 10 3 1 2 15 22 15 22 12 26 10 3 17 27 22 28 12 26 17 27 12 26 15 22 17 27 15 22 16 29 4 30 18 31 19 32 19 32 20 33 4 30 15 22 21 21 16 29 25 34 26 35 23 36 23 36 24 37 25 34 19 32 18 31 12 26 12 26 22 28 19 32 24 37 23 36 13 38 13 38 27 39 24 37 29 40 26 35 25 34 25 34 28 41 29 40 32 42 33 43 34 44 34 44 31 45 32 42 27 39 13 38 33 43 33 43 32 42 27 39 50 16 5 8 44 7 44 7 7 14 50 16 50 16 51 15 49 19 49 19 35 23 50 16 6 11 36 10 60 46 60 46 45 47 6 11 36 10 8 20 64 48 64 48 60 46 36 10 51 15 58 49 64 48 51 15 64 48 8 20 51 15 8 20 49 19 56 50 62 51 47 25 47 25 37 24 56 50 57 52 59 53 39 13 39 13 38 12 57 52 66 54 56 50 37 24 37 24 9 18 66 54 61 55 66 54 9 18 9 18 40 17 61 55 42 9 43 56 41 57 42 9 41 57 48 58 42 9 48 58 46 6 43 56 42 9 5 8 5 8 47 25 43 56 5 8 50 16 35 23 55 59 62 51 56 50 56 50 63 60 55 59 66 54 58 49 63 60 63 60 56 50 66 54 65 61 62 51 55 59 55 59 53 62 65 61 45 47 60 46 59 53 59 53 57 52 45 47 64 48 61 55 59 53 59 53 60 46 64 48 58 49 66 54 61 55 61 55 64 48 58 49 39 13 40 17 8 20 8 20 36 10 39 13 59 53 61 55 40 17 40 17 39 13 59 53 48 58 53 62 55 59 48 58 55 59 44 7 48 58 44 7 46 6 55 59 63 60 7 14 7 14 44 7 55 59 63 60 58 49 51 15 51 15 7 14 63 60 62 51 67 63 41 57 41 57 43 56 47 25 62 51 41 57 47 25 65 61 67 63 62 51 54 64 67 63 65 61 10 3 23 36 26 35 26 35 29 40 11 0 10 3 26 35 11 0 10 3 12 26 13 38 13 38 23 36 10 3 13 38 12 26 18 31 18 31 33 43 13 38 33 43 18 31 4 30 4 30 34 44 33 43 34 44 4 30 20 33 20 33 52 65 34 44 14 66 29 40 28 41 28 41 30 67 14 66 52 65 31 45 34 44 70 68 69 69 72 70 72 70 68 71 70 68 72 70 69 69 73 72 73 72 74 73 72 70 74 73 75 74 76 75 76 75 72 70 74 73 72 70 76 75 71 76 71 76 68 71 72 70 70 68 68 71 77 77 77 77 78 78 70 68 68 71 71 76 80 79 80 79 77 77 68 71 76 75 75 74 81 80 81 80 79 81 76 75 71 76 76 75 79 81 79 81 80 79 71 76 88 82 89 83 83 84 83 84 82 85 88 82 82 85 83 84 85 86 85 86 86 87 82 85 95 88 98 89 97 90 97 90 94 91 95 88 83 84 84 92 87 93 87 93 85 86 83 84 94 91 97 90 102 94 102 94 96 95 94 91 84 92 83 84 89 83 89 83 92 96 84 92 85 86 3 5 2 4 2 4 86 87 85 86 87 93 21 21 3 5 3 5 85 86 87 93 90 97 91 98 84 92 90 97 84 92 92 96 90 97 92 96 93 99 91 98 87 93 84 92 21 21 87 93 91 98 91 98 16 29 21 21 103 100 102 94 97 90 97 90 101 101 103 100 95 88 48 58 41 57 41 57 98 89 95 88 90 97 17 27 16 29 16 29 91 98 90 97 54 64 65 61 53 62 54 64 53 62 104 102 54 64 104 102 99 103 105 104 100 105 103 100 103 100 101 101 105 104 99 103 104 102 105 104 105 104 101 101 99 103 53 62 48 58 95 88 95 88 104 102 53 62 95 88 94 91 105 104 105 104 104 102 95 88 105 104 94 91 96 95 96 95 100 105 105 104 98 89 106 106 101 101 101 101 97 90 98 89 54 64 106 106 98 89 98 89 41 57 67 63 54 64 98 89 67 63 99 103 101 101 106 106 99 103 106 106 54 64 156 107 57 52 38 12 38 12 116 108 156 107 116 108 38 12 6 11 6 11 117 109 116 108 45 47 163 110 117 109 117 109 6 11 45 47 45 47 57 52 156 107 156 107 163 110 45 47 70 68 175 111 178 112 178 112 69 69 70 68 78 78 184 113 175 111 175 111 70 68 78 78 82 85 86 87 191 114 191 114 189 115 82 85 2 4 110 116 191 114 191 114 86 87 2 4 0 1 107 117 110 116 110 116 2 4 0 1 107 117 0 1 11 0 11 0 131 118 107 117 131 118 132 119 108 120 108 120 107 117 131 118 107 117 108 120 109 121 109 121 110 116 107 117 111 122 112 123 113 124 113 124 114 125 111 122 118 126 115 127 116 108 116 108 117 109 118 126 121 128 119 129 120 130 125 131 122 132 123 133 123 133 124 134 125 131 108 120 126 135 127 136 127 136 109 121 108 120 129 137 128 138 124 134 124 134 123 133 129 137 113 124 130 139 128 138 128 138 129 137 113 124 126 135 108 120 132 119 132 119 133 140 126 135 134 141 135 142 126 135 134 141 126 135 133 140 134 141 133 140 140 143 137 144 138 145 139 146 139 146 136 147 137 144 135 142 127 136 126 135 143 148 144 149 141 150 141 150 142 151 143 148 139 146 140 143 133 140 133 140 136 147 139 146 144 149 146 152 145 153 145 153 141 150 144 149 147 154 148 155 143 148 143 148 142 151 147 154 152 156 149 157 150 158 150 158 151 159 152 156 146 152 152 156 151 159 151 159 145 153 146 152 121 128 120 130 114 125 114 125 113 124 121 128 121 128 129 137 123 133 123 133 119 129 121 128 162 160 118 126 117 109 117 109 163 110 162 160 164 161 122 132 118 126 118 126 162 160 164 161 119 129 123 133 122 132 119 129 122 132 164 161 119 129 164 161 165 162 154 163 128 138 130 139 130 139 153 164 154 163 156 107 116 108 115 127 115 127 155 165 156 107 157 166 124 134 128 138 128 138 154 163 157 166 158 167 125 131 124 134 124 134 157 166 158 167 160 168 161 169 112 123 112 123 111 122 159 170 160 168 112 123 159 170 161 169 130 139 113 124 113 124 112 123 161 169 129 137 121 128 113 124 167 171 166 172 154 163 154 163 153 164 167 171 157 166 154 163 166 172 166 172 165 162 157 166 168 173 169 174 167 171 167 171 153 164 168 173 163 110 156 107 155 165 155 165 162 160 163 110 164 161 162 160 155 165 155 165 158 167 164 161 165 162 164 161 158 167 158 167 157 166 165 162 115 127 118 126 122 132 122 132 125 131 115 127 155 165 115 127 125 131 125 131 158 167 155 165 167 171 169 174 159 170 159 170 111 122 114 125 167 171 159 170 114 125 167 171 114 125 120 130 120 130 166 172 167 171 166 172 120 130 119 129 119 129 165 162 166 172 160 168 170 175 153 164 160 168 153 164 130 139 160 168 130 139 161 169 153 164 170 175 168 173 168 173 170 175 171 176 142 151 141 150 132 119 142 151 132 119 131 118 142 151 131 118 147 154 132 119 141 150 145 153 145 153 133 140 132 119 145 153 151 159 136 147 136 147 133 140 145 153 151 177 150 177 137 177 137 144 136 147 151 159 150 158 172 178 138 145 138 145 137 144 150 158 173 179 174 180 148 155 148 155 147 154 173 179 150 158 149 157 172 178 175 111 176 181 177 182 177 182 178 112 175 111 177 182 179 183 180 72 180 72 178 112 177 182 179 183 177 182 182 184 182 185 181 185 179 185 177 182 176 181 183 186 183 186 182 184 177 182 175 111 184 113 185 187 185 187 176 181 175 111 176 181 185 187 186 188 186 188 183 186 176 181 182 184 187 189 188 190 188 190 181 191 182 184 183 186 186 188 187 189 187 189 182 184 183 186 202 192 189 115 190 193 190 193 201 194 202 192 189 115 191 114 192 195 192 195 190 193 189 115 193 196 194 197 195 198 195 198 196 199 193 196 190 193 192 195 198 200 198 200 197 201 190 193 194 197 199 202 200 203 200 203 195 198 194 197 201 204 190 204 197 204 197 205 203 205 201 205 192 195 191 114 110 116 110 116 109 121 192 195 198 200 192 195 109 121 109 121 127 136 198 200 205 206 206 207 203 208 205 206 203 208 197 201 205 206 197 201 204 209 197 201 198 200 204 209 127 136 135 142 204 209 204 209 198 200 127 136 207 210 208 211 195 198 195 198 200 203 207 210 193 196 196 199 160 168 160 168 159 170 193 196 205 206 204 209 135 142 135 142 134 141 205 206 169 174 168 173 171 176 171 176 210 212 209 213 169 174 171 176 209 213 212 214 208 211 207 210 207 210 211 215 212 214 210 212 208 211 212 214 212 214 209 213 210 212 169 174 209 213 193 196 193 196 159 170 169 174 193 196 209 213 212 214 212 214 194 197 193 196 212 214 211 215 199 202 199 202 194 197 212 214 196 199 195 198 208 211 208 211 213 216 196 199 170 175 160 168 196 199 196 199 213 216 171 176 170 175 196 199 171 176 213 216 208 211 210 212 171 176 213 216 210 212 73 72 69 69 178 112 178 112 180 72 73 72 202 192 88 82 82 85 82 85 189 115 202 192 29 40 147 154 131 118 131 118 11 0 29 40 29 40 14 66 173 179 173 179 147 154 29 40 30 217 174 217 173 217 173 218 14 218 30 218

+
+
+
+ + + + 75.0243 -131.701 7.115471 75.91167 -132.0382 6.077709 75.0243 -131.8513 6.652866 78.33279 -132.0552 6.025253 75.31861 -129.7018 13.26823 75.37055 -131.6718 7.205402 78.40203 -133.3875 1.924931 74.74073 -126.266 11.65144 75.0243 -129.7324 6.189148 75.91167 -130.3171 5.267845 75.0243 -129.9931 5.778458 78.33279 -130.3467 5.221272 75.31861 -126.266 11.65144 75.37055 -129.6818 6.26899 78.40203 -132.6568 1.581089 74.74073 -123.3401 9.230964 75.0243 -128.0561 4.802364 75.91167 -128.8515 4.055404 75.0243 -128.4107 4.46939 78.33279 -128.8918 4.017647 75.31861 -123.3401 9.230964 75.37055 -127.9872 4.867092 78.40203 -132.0346 1.066334 74.74073 -121.1082 6.158908 75.0243 -126.7773 3.042255 75.91167 -127.7335 2.516582 75.0243 -127.2036 2.807926 78.33279 -127.7819 2.490009 75.31861 -121.1082 6.158908 75.37055 -126.6945 3.08781 78.40203 -131.5599 0.4130058 74.74073 -119.7103 2.628299 75.0243 -125.9765 1.019424 75.91167 -127.0333 0.7480619 75.0243 -126.4476 0.8984603 78.33279 -127.0868 0.7343443 75.31861 -119.7103 2.628299 75.37055 -125.8848 1.042938 78.40203 -131.2626 -0.3378449 74.74073 -119.2344 -1.139031 75.0243 -125.7038 -1.139031 75.91167 -126.7949 -1.139031 75.0243 -126.1902 -1.139031 78.33279 -126.8501 -1.139031 75.31861 -119.2344 -1.139031 75.37055 -125.6092 -1.139031 78.40203 -131.1614 -1.13903 74.74073 -119.7103 -4.906363 75.0243 -125.9765 -3.29749 75.91167 -127.0333 -3.026129 75.0243 -126.4476 -3.176525 78.33279 -127.0867 -3.012409 75.31861 -119.7103 -4.906363 75.37055 -125.8848 -3.321005 78.40203 -131.2626 -1.940222 74.74073 -121.1082 -8.436978 75.0243 -126.7773 -5.320324 75.91167 -127.7335 -4.794647 75.0243 -127.2036 -5.085991 78.33279 -127.7819 -4.768076 75.31861 -121.1082 -8.436978 75.37055 -126.6945 -5.365878 78.40203 -131.5599 -2.691071 74.74073 -123.3401 -11.50903 75.0243 -128.0561 -7.080431 75.91167 -128.8515 -6.333476 75.0243 -128.4107 -6.747458 78.33279 -128.8918 -6.295715 75.31861 -123.3401 -11.50903 75.37055 -127.9872 -7.145159 78.40203 -132.0346 -3.344397 74.74073 -126.266 -13.9295 75.0243 -129.7325 -8.467216 75.91167 -130.3172 -7.545914 75.0243 -129.9931 -8.056527 78.33279 -130.3467 -7.499342 75.31861 -126.266 -13.9295 75.37055 -129.6818 -8.547058 78.40203 -132.6568 -3.859156 74.74073 -129.7019 -15.5463 75.0243 -131.701 -9.393549 75.91167 -132.0382 -8.355789 75.0243 -131.8513 -8.930946 78.33279 -132.0553 -8.303326 75.31861 -129.7019 -15.5463 75.37055 -131.6718 -9.483482 78.40203 -133.3876 -4.202995 74.74073 -133.4319 -16.25784 75.0243 -133.8381 -9.801218 75.91167 -133.9066 -8.712199 75.0243 -133.8686 -9.315765 78.33279 -133.9101 -8.657155 75.31861 -133.4319 -16.25784 75.37055 -133.8322 -9.895586 78.40203 -134.1808 -4.354317 74.74073 -137.2217 -16.01941 75.0243 -136.0094 -9.664605 75.91167 -135.8049 -8.592766 75.0243 -135.9183 -9.18681 78.33279 -135.7946 -8.538586 75.31861 -137.2217 -16.01941 75.37055 -136.0271 -9.757489 78.40203 -134.9868 -4.303612 74.74073 -140.8331 -14.84598 75.0243 -138.0786 -8.992306 75.91167 -137.614 -8.004989 75.0243 -137.8714 -8.552187 78.33279 -137.5905 -7.955078 75.31861 -140.8331 -14.84598 75.37055 -138.1188 -9.077865 78.40203 -135.7548 -4.05406 74.74073 -144.0392 -12.8113 75.0243 -139.9155 -7.826551 75.91167 -139.22 -6.985793 75.0243 -139.6054 -7.451763 78.33279 -139.1848 -6.943295 75.31861 -144.0392 -12.8113 75.37055 -139.9758 -7.89941 78.40203 -136.4366 -3.621347 74.74073 -146.6387 -10.0432 75.0243 -141.4048 -6.240596 75.91167 -140.522 -5.599226 75.0243 -141.0113 -5.95469 78.33279 -140.4774 -5.566804 75.31861 -146.6387 -10.0432 75.37055 -141.4813 -6.296175 78.40203 -136.9894 -3.032663 74.74073 -148.468 -6.715629 75.0243 -142.4529 -4.334091 75.91167 -141.4384 -3.932409 75.0243 -142.0006 -4.155033 78.33279 -141.3871 -3.912103 75.31861 -148.468 -6.715629 75.37055 -142.5408 -4.368902 78.40203 -137.3784 -2.324995 74.74073 -149.4123 -3.037654 75.0243 -142.9939 -2.226829 75.91167 -141.9114 -2.090072 75.0243 -142.5114 -2.165869 78.33279 -141.8566 -2.08316 75.31861 -149.4123 -3.037652 75.37055 -143.0878 -2.23868 78.40203 -137.5793 -1.542808 74.74073 -149.4123 0.7596216 75.0243 -142.9939 -0.05121564 75.91167 -141.9114 -0.1879801 75.0243 -142.5114 -0.1121821 78.33279 -141.8566 -0.1948924 75.31861 -149.4123 0.7596216 75.37055 -143.0878 -0.03936719 78.40203 -137.5793 -0.7352522 74.74073 -148.468 4.437592 75.0243 -142.4529 2.056046 75.91167 -141.4384 1.654358 75.0243 -142.0006 1.87698 78.33279 -141.3871 1.634049 75.31861 -148.468 4.437592 75.37055 -142.5408 2.090851 78.40203 -137.3784 0.04693627 74.74073 -146.6386 7.765164 75.0243 -141.4048 3.962544 75.91167 -140.522 3.321171 75.0243 -141.0113 3.67664 78.33279 -140.4774 3.28875 75.31861 -146.6386 7.765164 75.37055 -141.4813 4.018124 78.40203 -136.9894 0.7546008 74.74073 -144.0392 10.53325 75.0243 -139.9155 5.548497 75.91167 -139.2199 4.707737 75.0243 -139.6054 5.17371 78.33279 -139.1848 4.665237 75.31861 -144.0392 10.53325 75.37055 -139.9757 5.621354 78.40203 -136.4366 1.343289 74.74073 -140.8331 12.56793 75.0243 -138.0785 6.714245 75.91167 -137.6139 5.726929 75.0243 -137.8714 6.274124 78.33279 -137.5904 5.677017 75.31861 -140.8331 12.56793 75.37055 -138.1188 6.799801 78.40203 -135.7547 1.775997 74.74073 -137.2216 13.74135 75.0243 -136.0094 7.386547 75.91167 -135.8049 6.314701 75.0243 -135.9182 6.908741 78.33279 -135.7946 6.260517 75.31861 -137.2216 13.74135 75.37055 -136.0271 7.479424 78.40203 -134.9867 2.025547 74.74073 -133.4318 13.97977 75.0243 -133.8381 7.523148 75.91167 -133.9066 6.434132 75.0243 -133.8686 7.037693 78.33279 -133.91 6.379082 75.31861 -133.4318 13.97977 75.37055 -133.8321 7.617516 78.40203 -134.1808 2.076252 74.74073 -129.7018 13.26823 + + + + + + + + + + 0.677187 0.2273668 0.6998016 0.6772015 0.3942534 0.6212589 0 0.5358186 0.8443331 0 0.309004 0.9510608 0.8994002 0.1350778 0.4157323 0.8993909 0.2342323 0.3690952 0.7718512 -0.3406814 -0.5368258 0.7718622 -0.1964523 -0.6046778 0.6828303 0.2257484 0.6948242 0.6828287 0.3914652 0.6168469 0.3123002 0.5090252 0.8020985 0.3123017 0.293563 0.9034868 0.9998714 0.004944086 0.01525962 0.9998713 0.008606374 0.01355051 0.8211094 -0.1763684 -0.5428386 0.8210986 -0.3058366 -0.4819346 0.6771948 0.5363783 0.503692 0 0.7289754 0.6845399 0.3123031 0.6925116 0.6503034 0.8993985 0.3186501 0.2992399 0.6828352 0.532559 0.5001171 0.8210989 -0.4160735 -0.3907423 0.7718619 -0.4634651 -0.4352348 0.9998714 0.01168882 0.01098692 0.6771902 0.6448093 0.3544498 0 0.8763152 0.4817383 0.8993942 0.3830742 0.2105809 0.771825 -0.557185 -0.306319 0.3123071 0.8324834 0.4576416 0.6828399 0.6402043 0.3519491 0.9998713 0.01406931 0.007721364 0.821068 -0.5002158 -0.2750118 0.8211877 -0.5527383 -0.1418851 0.6771932 0.7126871 0.1829938 0 0.9685881 0.2486705 0.8993887 0.4234177 0.1087079 0.7719631 -0.6157026 -0.158061 0.3123071 0.9201354 0.2362522 0.6828376 0.7076192 0.181681 0.9998715 0.01553428 0.003967463 0.6771855 0.7358124 0 0 1 0 0.3122973 0.9499844 0 0.8993883 0.437151 0 0.7719082 -0.635734 0 0.6828379 0.73057 0 0.9998713 0.01605308 0 0.8211371 -0.5707309 0 0.6771932 0.7126871 -0.1829938 0 0.9685881 -0.2486705 0.8993887 0.4234177 -0.1087079 0.7719717 -0.6156852 0.1580871 0.3122983 0.9201402 -0.2362456 0.6828213 0.707634 -0.1816848 0.9998715 0.01553428 -0.003967463 0.8212079 -0.5527009 0.1419138 0.6771828 0.6448023 -0.3544765 0 0.8763152 -0.4817383 0.3123071 0.8324834 -0.4576416 0.8993942 0.3830742 -0.2105809 0.771819 -0.5572112 0.3062861 0.6828399 0.6402043 -0.3519491 0.9998713 0.01406931 -0.007721364 0.821075 -0.50022 0.2749837 0.6771948 0.5363783 -0.503692 0 0.7289754 -0.6845399 0.3123031 0.6925116 -0.6503034 0.8993985 0.3186501 -0.2992399 0.9998714 0.01168882 -0.01098692 0.6828457 0.5325672 -0.5000942 0.8210989 -0.4160735 0.3907423 0.7718619 -0.4634651 0.4352348 0.6771886 0.3942459 -0.6212776 0 0.5358186 -0.8443331 0.8994075 0.234206 -0.3690714 0.7719049 -0.3406307 0.536781 0.3123326 0.5089977 -0.8021033 0.6828368 0.3914394 -0.6168543 0.9998715 0.008575856 -0.01355051 0.8211284 -0.3058059 0.4819036 0.677187 0.2273668 -0.6998016 0 0.309004 -0.9510608 0.8994002 0.1350778 -0.4157323 0.7718622 -0.1964523 0.6046778 0.3123292 0.2935602 -0.9034782 0.6828303 0.2257484 -0.6948242 0.9998714 0.004944086 -0.01525962 0.8211094 -0.1763684 0.5428386 0.8993974 0.02743661 -0.4362703 0.771867 -0.03991937 0.6345295 0.9998713 9.76616e-4 -0.01602256 0.6828343 0.04587018 -0.7291318 0.8211145 -0.0358293 0.5696378 0.6771928 0.04617565 -0.7343554 0 0.06277728 -0.9980276 0.3123304 0.05963391 -0.9481 0.8994035 -0.08191376 -0.4293759 0.7718702 0.1191178 0.6245218 0.6828393 -0.1368791 -0.7176313 0.3123319 -0.177987 -0.9331503 0.9998716 -0.002990841 -0.0157479 0.8211104 0.1069381 0.5606623 0.6771869 -0.1378545 -0.7227823 0 -0.1873575 -0.9822918 0.6771942 -0.3132812 -0.66578 0 -0.425772 -0.9048305 0.8994007 -0.186106 -0.3955288 0.7718588 0.2707045 0.5752853 0.3123036 -0.4044717 -0.8595749 0.6828365 -0.3110516 -0.6610457 0.9998714 -0.006805777 -0.01452714 0.8210967 0.2429963 0.5164815 0.6771892 -0.4690181 -0.566954 0 -0.6374216 -0.7705153 0.8993902 -0.278637 -0.3368365 0.7718926 0.4052344 0.4898643 0.3122995 -0.6055552 -0.7319644 0.6828292 -0.4656874 -0.5629205 0.9998714 -0.01022392 -0.01236027 0.8211264 0.3638226 0.4397551 0.6771949 -0.5952808 -0.4324904 0 -0.8090303 -0.587767 0.8994045 -0.3536274 -0.2569422 0.7718595 0.5143696 0.3737069 0.3123359 -0.7685403 -0.5583836 0.6828445 -0.5910417 -0.4294101 0.9998715 -0.01297062 -0.009430408 0.8211137 0.4617525 0.3354954 0.8993897 -0.4064497 -0.1609258 0.7718687 0.5911323 0.234054 0.3123013 -0.8832818 -0.349687 0.6828245 -0.6792843 -0.2689304 0.9998714 -0.01492387 -0.00589019 0.8211069 0.5306906 0.2101216 0.6771869 -0.6841452 -0.2708564 0 -0.9297801 -0.3681156 0.6771852 -0.7300136 -0.09219777 0 -0.9921175 -0.1253117 0.8994011 -0.433678 -0.05478197 0.771948 0.6306754 0.07965463 0.3123302 -0.942484 -0.1190541 0.6828439 -0.7248082 -0.09152805 0.9998716 -0.01590049 -0.001983702 0.8211847 0.5661649 0.07150685 0.6771852 -0.7300136 0.09219777 0 -0.9921175 0.1253117 0.8994011 -0.433678 0.05478197 0.771948 0.6306754 -0.07965463 0.3123313 -0.9424875 0.119024 0.6828439 -0.7248082 0.09152805 0.9998711 -0.01593101 0.001983702 0.8211847 0.5661649 -0.07150685 0.8993838 -0.4064608 0.1609302 0.7718743 0.5911365 -0.2340252 0.3123064 -0.8832657 0.3497233 0.6828387 -0.6792679 0.268936 0.9998714 -0.01492387 0.00589019 0.8211122 0.530694 -0.2100924 0.6771869 -0.6841452 0.2708564 0 -0.929776 0.368126 0.6771949 -0.5952808 0.4324904 0 -0.8090053 0.5878015 1 0 0 0.3123359 -0.7685403 0.5583836 0.8994116 -0.3536302 0.2569137 0.6828356 -0.591034 0.4294351 0.999869 -0.01418471 0.00779742 0.999869 -0.0141859 0.007797718 0.9999663 -0.007195949 0.003956198 0.9999663 -0.007197022 0.003956377 0.7718595 0.5143696 -0.3737069 0.8211137 0.4617525 -0.3354954 0.9999664 -0.005983769 0.00562179 0.9999663 -0.005986094 0.005621671 0.6771892 -0.4690181 0.566954 0 -0.6374216 0.7705153 1 1.53967e-5 0 0.3123053 -0.6055359 0.7319779 0.8993994 -0.2786399 0.3368093 0.6828129 -0.4656971 0.5629323 0.9998692 -0.01179081 0.0110802 0.9998691 -0.01180219 0.01108038 0.8210853 0.3638485 -0.4398105 0.7718373 0.4052985 -0.4898985 0.6771942 -0.3132812 0.66578 0 -0.425772 0.9048305 0.6828365 -0.3110516 0.6610457 0.3123311 -0.4044679 0.8595668 0.9998691 -0.008665382 0.01366662 0.9998691 -0.008669972 0.01366704 0.9999663 -0.004404306 0.006933748 0.9999663 -0.004399061 0.006933808 0.7718911 0.2706746 -0.5752561 0.8211196 0.242994 -0.5164462 1 1.45331e-5 0 0.8994007 -0.186106 0.3955288 0.6828393 -0.1368791 0.7176313 0.3123044 -0.1779887 0.9331592 0.999869 -0.005005538 0.01539379 0.9998691 -0.005004942 0.01539409 0.9999664 -0.002536058 0.007810354 0.9999664 -0.002539336 0.007810294 0.7718702 0.1191178 -0.6245218 0.8211104 0.1069381 -0.5606623 0.6771869 -0.1378545 0.7227823 0 -0.1873575 0.9822918 0.899394 -0.08188235 0.4294019 0.6828343 0.04587018 0.7291318 0.3123304 0.05963391 0.9481 0.9999663 -5.1666e-4 0.008196115 0.9999663 -5.13347e-4 0.008195996 0.6771919 0.04620611 0.7343544 0 0.06277728 0.9980276 1 3.84908e-6 0 1 -3.6334e-6 0 0.8993974 0.02743661 0.4362703 0.999869 -0.001006722 0.016155 0.9998691 -0.001020669 0.01615446 0.8211145 -0.0358293 -0.5696378 0.771868 -0.03988891 -0.6345304 1 -3.84916e-6 0 1 3.63337e-6 0 0.9998691 0.003042995 0.01590025 0.999869 0.003027081 0.01589989 0.9999663 0.001538753 0.008066892 0.9999663 0.001538753 0.008066713 + + + + + + + + + + 0.287323 0.9528551 0.1816071 0.8856333 0.1816071 0.8856333 0.1816071 0.8856333 0.287323 0.9528551 0.287323 0.9528551 0.3849775 0.7449184 0.3278031 0.7085627 0.3175797 0.720945 0.3175797 0.720945 0.3781486 0.7594591 0.3849775 0.7449184 0.3942422 0.7251909 0.341673 0.6917636 0.3405137 0.6931678 0.3405137 0.6931678 0.3934679 0.7268399 0.3942422 0.7251909 0.3934679 0.7268399 0.3405137 0.6931678 0.3278031 0.7085627 0.3278031 0.7085627 0.3849775 0.7449184 0.3934679 0.7268399 0.4547705 0.5963078 0.4322881 0.5820119 0.341673 0.6917636 0.341673 0.6917636 0.3942422 0.7251909 0.4547705 0.5963078 0.3768211 0.7622858 0.3155924 0.7233523 0.1816071 0.8856333 0.1816071 0.8856333 0.287323 0.9528551 0.3768211 0.7622858 0.3175797 0.720945 0.3155924 0.7233523 0.3768211 0.7622858 0.3768211 0.7622858 0.3781486 0.7594591 0.3175797 0.720945 0.1816071 0.8856333 0.1816071 0.8856333 0.09589618 0.7941802 0.09589618 0.7941802 0.09589618 0.7941802 0.1816071 0.8856333 0.3278031 0.7085627 0.3405137 0.6931678 0.2975801 0.647358 0.2975801 0.647358 0.2814478 0.659102 0.3278031 0.7085627 0.3405137 0.6931678 0.341673 0.6917636 0.2990516 0.6462869 0.2990516 0.6462869 0.2975801 0.647358 0.3405137 0.6931678 0.1816071 0.8856333 0.3155924 0.7233523 0.26595 0.6703842 0.26595 0.6703842 0.09589618 0.7941802 0.1816071 0.8856333 0.3175797 0.720945 0.3278031 0.7085627 0.2814478 0.659102 0.2814478 0.659102 0.2684724 0.6685479 0.3175797 0.720945 0.341673 0.6917636 0.4322881 0.5820119 0.4140601 0.5625628 0.4140601 0.5625628 0.2990516 0.6462869 0.341673 0.6917636 0.26595 0.6703842 0.3155924 0.7233523 0.3175797 0.720945 0.3175797 0.720945 0.2684724 0.6685479 0.26595 0.6703842 0.09589618 0.7941802 0.09589618 0.7941802 0.03557652 0.6842429 0.03557652 0.6842429 0.03557652 0.6842429 0.09589618 0.7941802 0.2684724 0.6685479 0.2814478 0.659102 0.2488251 0.5996444 0.2488251 0.5996444 0.2339128 0.6055603 0.2684724 0.6685479 0.2814478 0.659102 0.2975801 0.647358 0.2673655 0.5922892 0.2673655 0.5922892 0.2488251 0.5996444 0.2814478 0.659102 0.2975801 0.647358 0.2990516 0.6462869 0.2690565 0.5916183 0.2690565 0.5916183 0.2673655 0.5922892 0.2975801 0.647358 0.2990516 0.6462869 0.4140601 0.5625628 0.4012321 0.5391826 0.4012321 0.5391826 0.2690565 0.5916183 0.2990516 0.6462869 0.09589618 0.7941802 0.26595 0.6703842 0.2310139 0.6067103 0.2310139 0.6067103 0.03557652 0.6842429 0.09589618 0.7941802 0.2310139 0.6067103 0.26595 0.6703842 0.2684724 0.6685479 0.2684724 0.6685479 0.2339128 0.6055603 0.2310139 0.6067103 0.03557652 0.6842429 0.2310139 0.6067103 0.2129791 0.5363314 0.2129791 0.5363314 0.00443834 0.5627287 0.03557652 0.6842429 0.03557652 0.6842429 0.03557652 0.6842429 0.00443834 0.5627287 0.00443834 0.5627287 0.00443834 0.5627287 0.03557652 0.6842429 0.2339128 0.6055603 0.2488251 0.5996444 0.2319845 0.5339257 0.2319845 0.5339257 0.2160724 0.5359399 0.2339128 0.6055603 0.2488251 0.5996444 0.2673655 0.5922892 0.251768 0.5314215 0.251768 0.5314215 0.2319845 0.5339257 0.2488251 0.5996444 0.2673655 0.5922892 0.2690565 0.5916183 0.2535724 0.5311931 0.2535724 0.5311931 0.251768 0.5314215 0.2673655 0.5922892 0.2690565 0.5916183 0.4012321 0.5391826 0.3946099 0.5133405 0.3946099 0.5133405 0.2535724 0.5311931 0.2690565 0.5916183 0.2129791 0.5363314 0.2310139 0.6067103 0.2339128 0.6055603 0.2339128 0.6055603 0.2160724 0.5359399 0.2129791 0.5363314 0.00443834 0.5627287 0.00443834 0.5627287 0.004438042 0.4372733 0.004438042 0.4372733 0.004438042 0.4372733 0.00443834 0.5627287 0.2319845 0.5339257 0.251768 0.5314215 0.2517679 0.4685795 0.2517679 0.4685795 0.2319844 0.4660754 0.2319845 0.5339257 0.2160724 0.5359399 0.2319845 0.5339257 0.2319844 0.4660754 0.2319844 0.4660754 0.2160723 0.4640613 0.2160724 0.5359399 0.251768 0.5314215 0.2535724 0.5311931 0.2535723 0.4688079 0.2535723 0.4688079 0.2517679 0.4685795 0.251768 0.5314215 0.2535724 0.5311931 0.3946099 0.5133405 0.3946099 0.4866601 0.3946099 0.4866601 0.2535723 0.4688079 0.2535724 0.5311931 0.00443834 0.5627287 0.2129791 0.5363314 0.212979 0.4636698 0.212979 0.4636698 0.004438042 0.4372733 0.00443834 0.5627287 0.212979 0.4636698 0.2129791 0.5363314 0.2160724 0.5359399 0.2160724 0.5359399 0.2160723 0.4640613 0.212979 0.4636698 0.004438042 0.4372733 0.004438042 0.4372733 0.0355758 0.315759 0.0355758 0.315759 0.0355758 0.315759 0.004438042 0.4372733 0.2160723 0.4640613 0.2319844 0.4660754 0.2488247 0.4003567 0.2488247 0.4003567 0.2339124 0.3944408 0.2160723 0.4640613 0.2319844 0.4660754 0.2517679 0.4685795 0.2673651 0.4077118 0.2673651 0.4077118 0.2488247 0.4003567 0.2319844 0.4660754 0.2517679 0.4685795 0.2535723 0.4688079 0.2690562 0.4083827 0.2690562 0.4083827 0.2673651 0.4077118 0.2517679 0.4685795 0.2535723 0.4688079 0.3946099 0.4866601 0.4012319 0.4608179 0.4012319 0.4608179 0.2690562 0.4083827 0.2535723 0.4688079 0.004438042 0.4372733 0.212979 0.4636698 0.2310134 0.3932908 0.2310134 0.3932908 0.0355758 0.315759 0.004438042 0.4372733 0.2310134 0.3932908 0.212979 0.4636698 0.2160723 0.4640613 0.2160723 0.4640613 0.2339124 0.3944408 0.2310134 0.3932908 0.0355758 0.315759 0.0355758 0.315759 0.09589511 0.2058212 0.09589511 0.2058212 0.09589511 0.2058212 0.0355758 0.315759 0.2488247 0.4003567 0.2673651 0.4077118 0.2975797 0.3526428 0.2975797 0.3526428 0.2814473 0.3408989 0.2488247 0.4003567 0.2339124 0.3944408 0.2488247 0.4003567 0.2814473 0.3408989 0.2814473 0.3408989 0.2684718 0.331453 0.2339124 0.3944408 0.2673651 0.4077118 0.2690562 0.4083827 0.2990511 0.353714 0.2990511 0.353714 0.2975797 0.3526428 0.2673651 0.4077118 0.2690562 0.4083827 0.4012319 0.4608179 0.4140598 0.4374378 0.4140598 0.4374378 0.2990511 0.353714 0.2690562 0.4083827 0.0355758 0.315759 0.2310134 0.3932908 0.2659494 0.3296168 0.2659494 0.3296168 0.09589511 0.2058212 0.0355758 0.315759 0.2659494 0.3296168 0.2310134 0.3932908 0.2339124 0.3944408 0.2339124 0.3944408 0.2684718 0.331453 0.2659494 0.3296168 0.09589511 0.2058212 0.09589511 0.2058212 0.1816058 0.1143678 0.1816058 0.1143678 0.1816058 0.1143678 0.09589511 0.2058212 0.2814473 0.3408989 0.2975797 0.3526428 0.340513 0.3068329 0.340513 0.3068329 0.3278023 0.291438 0.2814473 0.3408989 0.2990511 0.353714 0.4140598 0.4374378 0.4322878 0.4179885 0.4322878 0.4179885 0.3416724 0.3082371 0.2990511 0.353714 0.09589511 0.2058212 0.2659494 0.3296168 0.3155915 0.2766485 0.3155915 0.2766485 0.1816058 0.1143678 0.09589511 0.2058212 0.2684718 0.331453 0.2814473 0.3408989 0.3278023 0.291438 0.3278023 0.291438 0.3175789 0.2790556 0.2684718 0.331453 0.2975797 0.3526428 0.2990511 0.353714 0.3416724 0.3082371 0.3416724 0.3082371 0.340513 0.3068329 0.2975797 0.3526428 0.3155915 0.2766485 0.2659494 0.3296168 0.2684718 0.331453 0.2684718 0.331453 0.3175789 0.2790556 0.3155915 0.2766485 0.1816058 0.1143678 0.1816058 0.1143678 0.2873224 0.04714524 0.2873224 0.04714524 0.2873224 0.04714524 0.1816058 0.1143678 0.3175789 0.2790556 0.3278023 0.291438 0.3849772 0.2550819 0.3849772 0.2550819 0.3781483 0.2405411 0.3175789 0.2790556 0.3278023 0.291438 0.340513 0.3068329 0.3934676 0.2731603 0.3934676 0.2731603 0.3849772 0.2550819 0.3278023 0.291438 0.340513 0.3068329 0.3416724 0.3082371 0.3942419 0.2748094 0.3942419 0.2748094 0.3934676 0.2731603 0.340513 0.3068329 0.3416724 0.3082371 0.4322878 0.4179885 0.4547703 0.4036925 0.4547703 0.4036925 0.3942419 0.2748094 0.3416724 0.3082371 0.1816058 0.1143678 0.3155915 0.2766485 0.3768208 0.2377142 0.3768208 0.2377142 0.2873224 0.04714524 0.1816058 0.1143678 0.3175789 0.2790556 0.3781483 0.2405411 0.3768208 0.2377142 0.3768208 0.2377142 0.3155915 0.2766485 0.3175789 0.2790556 0.2873224 0.04714524 0.2873224 0.04714524 0.4064022 0.008377194 0.4064022 0.008377194 0.4064022 0.008377194 0.2873224 0.04714524 0.3781483 0.2405411 0.3849772 0.2550819 0.4493793 0.2341147 0.4493793 0.2341147 0.446374 0.2183291 0.3781483 0.2405411 0.3849772 0.2550819 0.3934676 0.2731603 0.4531159 0.253741 0.4531159 0.253741 0.4493793 0.2341147 0.3849772 0.2550819 0.3934676 0.2731603 0.3942419 0.2748094 0.4534567 0.2555311 0.4534567 0.2555311 0.4531159 0.253741 0.3934676 0.2731603 0.3942419 0.2748094 0.4547703 0.4036925 0.4800947 0.3954477 0.4800947 0.3954477 0.4534567 0.2555311 0.3942419 0.2748094 0.2873224 0.04714524 0.3768208 0.2377142 0.4457898 0.2152605 0.4457898 0.2152605 0.4064022 0.008377194 0.2873224 0.04714524 0.4457898 0.2152605 0.3768208 0.2377142 0.3781483 0.2405411 0.3781483 0.2405411 0.446374 0.2183291 0.4457898 0.2152605 0.446374 0.2183291 0.4493793 0.2341147 0.5169622 0.2298543 0.5169622 0.2298543 0.5179693 0.2138158 0.446374 0.2183291 0.4534567 0.2555311 0.4800947 0.3954477 0.5066699 0.3937724 0.5066699 0.3937724 0.515596 0.2516139 0.4534567 0.2555311 0.4064022 0.008377194 0.4457898 0.2152605 0.5181651 0.2106978 0.5181651 0.2106978 0.5313632 4.99487e-4 0.4064022 0.008377194 0.4064022 0.008377194 0.4064022 0.008377194 0.5313632 4.99487e-4 0.5313632 4.99487e-4 0.5313632 4.99487e-4 0.4064022 0.008377194 0.4493793 0.2341147 0.4531159 0.253741 0.5157102 0.249795 0.5157102 0.249795 0.5169622 0.2298543 0.4493793 0.2341147 0.4531159 0.253741 0.4534567 0.2555311 0.515596 0.2516139 0.515596 0.2516139 0.5157102 0.249795 0.4531159 0.253741 0.5181651 0.2106978 0.4457898 0.2152605 0.446374 0.2183291 0.446374 0.2183291 0.5179693 0.2138158 0.5181651 0.2106978 0.5179693 0.2138158 0.5169622 0.2298543 0.5834793 0.2425681 0.5834793 0.2425681 0.5884355 0.2272844 0.5179693 0.2138158 0.5157102 0.249795 0.515596 0.2516139 0.5767553 0.2633035 0.5767553 0.2633035 0.5773173 0.2615703 0.5157102 0.249795 0.515596 0.2516139 0.5066699 0.3937724 0.5328261 0.3987718 0.5328261 0.3987718 0.5767553 0.2633035 0.515596 0.2516139 0.5179693 0.2138158 0.5884355 0.2272844 0.5893989 0.2243132 0.5893989 0.2243132 0.5181651 0.2106978 0.5179693 0.2138158 0.5313632 4.99487e-4 0.5313632 4.99487e-4 0.6543536 0.02400743 0.6543536 0.02400743 0.6543536 0.02400743 0.5313632 4.99487e-4 0.5169622 0.2298543 0.5157102 0.249795 0.5773173 0.2615703 0.5773173 0.2615703 0.5834793 0.2425681 0.5169622 0.2298543 0.5313632 4.99487e-4 0.5181651 0.2106978 0.5893989 0.2243132 0.5893989 0.2243132 0.6543536 0.02400743 0.5313632 4.99487e-4 0.6543536 0.02400743 0.6543536 0.02400743 0.7676452 0.07742369 0.7676452 0.07742369 0.7676452 0.07742369 0.6543536 0.02400743 0.5884355 0.2272844 0.5834793 0.2425681 0.644751 0.2714573 0.644751 0.2714573 0.6533449 0.2578888 0.5884355 0.2272844 0.5834793 0.2425681 0.5773173 0.2615703 0.6340663 0.2883272 0.6340663 0.2883272 0.644751 0.2714573 0.5834793 0.2425681 0.5773173 0.2615703 0.5767553 0.2633035 0.6330918 0.2898659 0.6330918 0.2898659 0.6340663 0.2883272 0.5773173 0.2615703 0.5767553 0.2633035 0.5328261 0.3987718 0.5569196 0.4101317 0.5569196 0.4101317 0.6330918 0.2898659 0.5767553 0.2633035 0.6543536 0.02400743 0.5893989 0.2243132 0.6550156 0.2552511 0.6550156 0.2552511 0.7676452 0.07742369 0.6543536 0.02400743 0.5884355 0.2272844 0.6533449 0.2578888 0.6550156 0.2552511 0.6550156 0.2552511 0.5893989 0.2243132 0.5884355 0.2272844 0.7676452 0.07742369 0.7676452 0.07742369 0.8641198 0.157392 0.8641198 0.157392 0.8641198 0.157392 0.7676452 0.07742369 0.6533449 0.2578888 0.644751 0.2714573 0.6969276 0.3147068 0.6969276 0.3147068 0.7086191 0.3037059 0.6533449 0.2578888 0.644751 0.2714573 0.6340663 0.2883272 0.6823915 0.3283842 0.6823915 0.3283842 0.6969276 0.3147068 0.644751 0.2714573 0.6340663 0.2883272 0.6330918 0.2898659 0.6810656 0.3296316 0.6810656 0.3296316 0.6823915 0.3283842 0.6340663 0.2883272 0.6330918 0.2898659 0.5569196 0.4101317 0.5774366 0.4271383 0.5774366 0.4271383 0.6810656 0.3296316 0.6330918 0.2898659 0.7676452 0.07742369 0.6550156 0.2552511 0.7108919 0.3015673 0.7108919 0.3015673 0.8641198 0.157392 0.7676452 0.07742369 0.6533449 0.2578888 0.7086191 0.3037059 0.7108919 0.3015673 0.7108919 0.3015673 0.6550156 0.2552511 0.6533449 0.2578888 0.8641198 0.157392 0.8641198 0.157392 0.9377154 0.2588877 0.9377154 0.2588877 0.9377154 0.2588877 0.8641198 0.157392 0.7086191 0.3037059 0.6969276 0.3147068 0.7367303 0.3695989 0.7367303 0.3695989 0.750785 0.3618569 0.7086191 0.3037059 0.6969276 0.3147068 0.6823915 0.3283842 0.7192562 0.3792243 0.7192562 0.3792243 0.7367303 0.3695989 0.6969276 0.3147068 0.6823915 0.3283842 0.6810656 0.3296316 0.7176625 0.3801023 0.7176625 0.3801023 0.7192562 0.3792243 0.6823915 0.3283842 0.6810656 0.3296316 0.5774366 0.4271383 0.593088 0.4487232 0.593088 0.4487232 0.7176625 0.3801023 0.6810656 0.3296316 0.8641198 0.157392 0.7108919 0.3015673 0.7535173 0.3603519 0.7535173 0.3603519 0.9377154 0.2588877 0.8641198 0.157392 0.7086191 0.3037059 0.750785 0.3618569 0.7535173 0.3603519 0.7535173 0.3603519 0.7108919 0.3015673 0.7086191 0.3037059 0.750785 0.3618569 0.7367303 0.3695989 0.7616584 0.4326846 0.7616584 0.4326846 0.7771931 0.4286879 0.750785 0.3618569 0.7367303 0.3695989 0.7192562 0.3792243 0.7423442 0.4376533 0.7423442 0.4376533 0.7616584 0.4326846 0.7367303 0.3695989 0.7192562 0.3792243 0.7176625 0.3801023 0.7405827 0.4381065 0.7405827 0.4381065 0.7423442 0.4376533 0.7192562 0.3792243 0.7176625 0.3801023 0.593088 0.4487232 0.6028903 0.4735301 0.6028903 0.4735301 0.7405827 0.4381065 0.7176625 0.3801023 0.9377154 0.2588877 0.7535173 0.3603519 0.7802131 0.4279111 0.7802131 0.4279111 0.9838077 0.3755334 0.9377154 0.2588877 0.750785 0.3618569 0.7771931 0.4286879 0.7802131 0.4279111 0.7802131 0.4279111 0.7535173 0.3603519 0.750785 0.3618569 0.9377154 0.2588877 0.9377154 0.2588877 0.9838077 0.3755334 0.9838077 0.3755334 0.9838077 0.3755334 0.9377154 0.2588877 0.9838077 0.3755334 0.9838077 0.3755334 0.9995005 0.4999997 0.9995005 0.4999997 0.9995005 0.4999997 0.9838077 0.3755334 0.7771931 0.4286879 0.7616584 0.4326846 0.7701457 0.4999999 0.7701457 0.4999999 0.7861843 0.4999999 0.7771931 0.4286879 0.7616584 0.4326846 0.7423442 0.4376533 0.750205 0.4999999 0.750205 0.4999999 0.7701457 0.4999999 0.7616584 0.4326846 0.7423442 0.4376533 0.7405827 0.4381065 0.7483862 0.4999999 0.7483862 0.4999999 0.750205 0.4999999 0.7423442 0.4376533 0.7405827 0.4381065 0.6028903 0.4735301 0.6062278 0.5 0.6062278 0.5 0.7483862 0.4999999 0.7405827 0.4381065 0.9838077 0.3755334 0.7802131 0.4279111 0.7893021 0.4999998 0.7893021 0.4999998 0.9995005 0.4999997 0.9838077 0.3755334 0.7771931 0.4286879 0.7861843 0.4999999 0.7893021 0.4999998 0.7893021 0.4999998 0.7802131 0.4279111 0.7771931 0.4286879 0.9995005 0.4999997 0.9995005 0.4999997 0.9838078 0.624466 0.9838078 0.624466 0.9838078 0.624466 0.9995005 0.4999997 0.7861843 0.4999999 0.7701457 0.4999999 0.7616586 0.5673152 0.7616586 0.5673152 0.7771933 0.5713117 0.7861843 0.4999999 0.7701457 0.4999999 0.750205 0.4999999 0.7423444 0.5623463 0.7423444 0.5623463 0.7616586 0.5673152 0.7701457 0.4999999 0.750205 0.4999999 0.7483862 0.4999999 0.7405828 0.5618931 0.7405828 0.5618931 0.7423444 0.5623463 0.750205 0.4999999 0.7483862 0.4999999 0.6062278 0.5 0.6028904 0.52647 0.6028904 0.52647 0.7405828 0.5618931 0.7483862 0.4999999 0.9995005 0.4999997 0.7893021 0.4999998 0.7802132 0.5720886 0.7802132 0.5720886 0.9838078 0.624466 0.9995005 0.4999997 0.7861843 0.4999999 0.7771933 0.5713117 0.7802132 0.5720886 0.7802132 0.5720886 0.7893021 0.4999998 0.7861843 0.4999999 0.7771933 0.5713117 0.7616586 0.5673152 0.7367306 0.6304008 0.7367306 0.6304008 0.7507852 0.6381428 0.7771933 0.5713117 0.7616586 0.5673152 0.7423444 0.5623463 0.7192564 0.6207754 0.7192564 0.6207754 0.7367306 0.6304008 0.7616586 0.5673152 0.7423444 0.5623463 0.7405828 0.5618931 0.7176626 0.6198974 0.7176626 0.6198974 0.7192564 0.6207754 0.7423444 0.5623463 0.7405828 0.5618931 0.6028904 0.52647 0.5930881 0.5512768 0.5930881 0.5512768 0.7176626 0.6198974 0.7405828 0.5618931 0.9838078 0.624466 0.7802132 0.5720886 0.7535174 0.6396478 0.7535174 0.6396478 0.9377158 0.7411118 0.9838078 0.624466 0.7771933 0.5713117 0.7507852 0.6381428 0.7535174 0.6396478 0.7535174 0.6396478 0.7802132 0.5720886 0.7771933 0.5713117 0.9838078 0.624466 0.9838078 0.624466 0.9377158 0.7411118 0.9377158 0.7411118 0.9377158 0.7411118 0.9838078 0.624466 0.9377158 0.7411118 0.9377158 0.7411118 0.8641203 0.8426075 0.8641203 0.8426075 0.8641203 0.8426075 0.9377158 0.7411118 0.7507852 0.6381428 0.7367306 0.6304008 0.6969278 0.685293 0.6969278 0.685293 0.7086194 0.6962938 0.7507852 0.6381428 0.7367306 0.6304008 0.7192564 0.6207754 0.6823917 0.6716157 0.6823917 0.6716157 0.6969278 0.685293 0.7367306 0.6304008 0.7192564 0.6207754 0.7176626 0.6198974 0.6810659 0.6703682 0.6810659 0.6703682 0.6823917 0.6716157 0.7192564 0.6207754 0.7176626 0.6198974 0.5930881 0.5512768 0.5774367 0.5728617 0.5774367 0.5728617 0.6810659 0.6703682 0.7176626 0.6198974 0.9377158 0.7411118 0.7535174 0.6396478 0.7108922 0.6984324 0.7108922 0.6984324 0.8641203 0.8426075 0.9377158 0.7411118 0.7507852 0.6381428 0.7086194 0.6962938 0.7108922 0.6984324 0.7108922 0.6984324 0.7535174 0.6396478 0.7507852 0.6381428 0.8641203 0.8426075 0.7108922 0.6984324 0.6550159 0.7447487 0.6550159 0.7447487 0.7676458 0.922576 0.8641203 0.8426075 0.8641203 0.8426075 0.8641203 0.8426075 0.7676458 0.922576 0.7676458 0.922576 0.7676458 0.922576 0.8641203 0.8426075 0.7086194 0.6962938 0.6969278 0.685293 0.6447513 0.7285424 0.6447513 0.7285424 0.6533452 0.742111 0.7086194 0.6962938 0.6969278 0.685293 0.6823917 0.6716157 0.6340666 0.7116727 0.6340666 0.7116727 0.6447513 0.7285424 0.6969278 0.685293 0.6823917 0.6716157 0.6810659 0.6703682 0.6330921 0.710134 0.6330921 0.710134 0.6340666 0.7116727 0.6823917 0.6716157 0.6810659 0.6703682 0.5774367 0.5728617 0.5569197 0.5898684 0.5569197 0.5898684 0.6330921 0.710134 0.6810659 0.6703682 0.6550159 0.7447487 0.7108922 0.6984324 0.7086194 0.6962938 0.7086194 0.6962938 0.6533452 0.742111 0.6550159 0.7447487 0.7676458 0.922576 0.7676458 0.922576 0.6543542 0.9759925 0.6543542 0.9759925 0.6543542 0.9759925 0.7676458 0.922576 0.6340666 0.7116727 0.6330921 0.710134 0.5767557 0.7366964 0.5767557 0.7366964 0.5773177 0.7384296 0.6340666 0.7116727 0.6330921 0.710134 0.5569197 0.5898684 0.5328262 0.6012284 0.5328262 0.6012284 0.5767557 0.7366964 0.6330921 0.710134 0.7676458 0.922576 0.6550159 0.7447487 0.5893993 0.7756867 0.5893993 0.7756867 0.6543542 0.9759925 0.7676458 0.922576 0.6533452 0.742111 0.5884358 0.7727155 0.5893993 0.7756867 0.5893993 0.7756867 0.6550159 0.7447487 0.6533452 0.742111 0.6533452 0.742111 0.6447513 0.7285424 0.5834797 0.7574318 0.5834797 0.7574318 0.5884358 0.7727155 0.6533452 0.742111 0.6447513 0.7285424 0.6340666 0.7116727 0.5773177 0.7384296 0.5773177 0.7384296 0.5834797 0.7574318 0.6447513 0.7285424 0.5773177 0.7384296 0.5767557 0.7366964 0.5155963 0.7483862 0.5155963 0.7483862 0.5157105 0.7502049 0.5773177 0.7384296 0.5767557 0.7366964 0.5328262 0.6012284 0.5066701 0.6062278 0.5066701 0.6062278 0.5155963 0.7483862 0.5767557 0.7366964 0.6543542 0.9759925 0.5893993 0.7756867 0.5181655 0.7893021 0.5181655 0.7893021 0.531364 0.9995005 0.6543542 0.9759925 0.5884358 0.7727155 0.5179697 0.7861843 0.5181655 0.7893021 0.5181655 0.7893021 0.5893993 0.7756867 0.5884358 0.7727155 0.6543542 0.9759925 0.6543542 0.9759925 0.531364 0.9995005 0.531364 0.9995005 0.531364 0.9995005 0.6543542 0.9759925 0.5884358 0.7727155 0.5834797 0.7574318 0.5169626 0.7701457 0.5169626 0.7701457 0.5179697 0.7861843 0.5884358 0.7727155 0.5834797 0.7574318 0.5773177 0.7384296 0.5157105 0.7502049 0.5157105 0.7502049 0.5169626 0.7701457 0.5834797 0.7574318 0.5157105 0.7502049 0.5155963 0.7483862 0.4534571 0.7444691 0.4534571 0.7444691 0.4531162 0.7462591 0.5157105 0.7502049 0.531364 0.9995005 0.5181655 0.7893021 0.4457902 0.7847396 0.4457902 0.7847396 0.406403 0.9916231 0.531364 0.9995005 0.531364 0.9995005 0.531364 0.9995005 0.406403 0.9916231 0.406403 0.9916231 0.406403 0.9916231 0.531364 0.9995005 0.5179697 0.7861843 0.5169626 0.7701457 0.4493798 0.7658852 0.4493798 0.7658852 0.4463744 0.7816709 0.5179697 0.7861843 0.5169626 0.7701457 0.5157105 0.7502049 0.4531162 0.7462591 0.4531162 0.7462591 0.4493798 0.7658852 0.5169626 0.7701457 0.5155963 0.7483862 0.5066701 0.6062278 0.4800949 0.6045525 0.4800949 0.6045525 0.4534571 0.7444691 0.5155963 0.7483862 0.4457902 0.7847396 0.5181655 0.7893021 0.5179697 0.7861843 0.5179697 0.7861843 0.4463744 0.7816709 0.4457902 0.7847396 0.406403 0.9916231 0.406403 0.9916231 0.287323 0.9528551 0.287323 0.9528551 0.287323 0.9528551 0.406403 0.9916231 0.4463744 0.7816709 0.4493798 0.7658852 0.3849775 0.7449184 0.3849775 0.7449184 0.3781486 0.7594591 0.4463744 0.7816709 0.4493798 0.7658852 0.4531162 0.7462591 0.3934679 0.7268399 0.3934679 0.7268399 0.3849775 0.7449184 0.4493798 0.7658852 0.4531162 0.7462591 0.4534571 0.7444691 0.3942422 0.7251909 0.3942422 0.7251909 0.3934679 0.7268399 0.4531162 0.7462591 0.4534571 0.7444691 0.4800949 0.6045525 0.4547705 0.5963078 0.4547705 0.5963078 0.3942422 0.7251909 0.4534571 0.7444691 0.406403 0.9916231 0.4457902 0.7847396 0.3768211 0.7622858 0.3768211 0.7622858 0.287323 0.9528551 0.406403 0.9916231 0.3768211 0.7622858 0.4457902 0.7847396 0.4463744 0.7816709 0.4463744 0.7816709 0.3781486 0.7594591 0.3768211 0.7622858 + + + + + + + + + + + + + + +

4 0 0 12 1 1 7 2 2 7 2 3 199 3 4 4 0 5 2 4 6 10 5 7 8 6 8 8 6 9 0 7 10 2 4 11 3 8 12 11 9 13 9 10 14 9 10 15 1 11 16 3 8 17 1 11 18 9 10 19 10 5 20 10 5 21 2 4 22 1 11 23 6 12 24 14 13 25 11 9 26 11 9 27 3 8 28 6 12 29 5 14 30 13 15 31 12 1 32 12 1 33 4 0 34 5 14 35 8 6 36 13 15 37 5 14 38 5 14 39 0 7 40 8 6 41 7 2 42 12 1 43 20 16 44 20 16 45 15 17 46 7 2 47 10 5 48 9 10 49 17 18 50 17 18 51 18 19 52 10 5 53 9 10 54 11 9 55 19 20 56 19 20 57 17 18 58 9 10 59 12 1 60 13 15 61 21 21 62 21 21 63 20 16 64 12 1 65 8 6 66 10 5 67 18 19 68 18 19 69 16 22 70 8 6 71 11 9 72 14 13 73 22 23 74 22 23 75 19 20 76 11 9 77 21 21 78 13 15 79 8 6 80 8 6 81 16 22 82 21 21 83 15 17 84 20 16 85 28 24 86 28 24 87 23 25 88 15 17 89 16 22 90 18 19 91 26 26 92 26 26 93 24 27 94 16 22 95 18 19 96 17 18 97 25 28 98 25 28 99 26 26 100 18 19 101 17 18 102 19 20 103 27 29 104 27 29 105 25 28 106 17 18 107 19 20 108 22 23 109 30 30 110 30 30 111 27 29 112 19 20 113 20 16 114 21 21 115 29 31 116 29 31 117 28 24 118 20 16 119 29 31 120 21 21 121 16 22 122 16 22 123 24 27 124 29 31 125 28 24 126 29 31 127 37 32 128 37 32 129 36 33 130 28 24 131 23 25 132 28 24 133 36 33 134 36 33 135 31 34 136 23 25 137 24 27 138 26 26 139 34 35 140 34 35 141 32 36 142 24 27 143 26 26 144 25 28 145 33 37 146 33 37 147 34 35 148 26 26 149 25 28 150 27 29 151 35 38 152 35 38 153 33 37 154 25 28 155 27 29 156 30 30 157 38 39 158 38 39 159 35 38 160 27 29 161 37 32 162 29 31 163 24 27 164 24 27 165 32 36 166 37 32 167 31 34 168 36 33 169 44 40 170 44 40 171 39 41 172 31 34 173 34 35 174 33 37 175 41 42 176 41 42 177 42 43 178 34 35 179 32 36 180 34 35 181 42 43 182 42 43 183 40 44 184 32 36 185 33 37 186 35 38 187 43 45 188 43 45 189 41 42 190 33 37 191 35 38 192 38 39 193 46 46 194 46 46 195 43 45 196 35 38 197 36 33 198 37 32 199 45 47 200 45 47 201 44 40 202 36 33 203 45 47 204 37 32 205 32 36 206 32 36 207 40 44 208 45 47 209 39 41 210 44 40 211 52 48 212 52 48 213 47 49 214 39 41 215 40 44 216 42 43 217 50 50 218 50 50 219 48 51 220 40 44 221 42 43 222 41 42 223 49 52 224 49 52 225 50 50 226 42 43 227 41 42 228 43 45 229 51 53 230 51 53 231 49 52 232 41 42 233 43 45 234 46 46 235 54 54 236 54 54 237 51 53 238 43 45 239 44 40 240 45 47 241 53 55 242 53 55 243 52 48 244 44 40 245 53 55 246 45 47 247 40 44 248 40 44 249 48 51 250 53 55 251 47 49 252 52 48 253 60 56 254 60 56 255 55 57 256 47 49 257 50 50 258 49 52 259 57 58 260 57 58 261 58 59 262 50 50 263 48 51 264 50 50 265 58 59 266 58 59 267 56 60 268 48 51 269 49 52 270 51 53 271 59 61 272 59 61 273 57 58 274 49 52 275 51 53 276 54 54 277 62 62 278 62 62 279 59 61 280 51 53 281 52 48 282 53 55 283 61 63 284 61 63 285 60 56 286 52 48 287 61 63 288 53 55 289 48 51 290 48 51 291 56 60 292 61 63 293 55 57 294 60 56 295 68 64 296 68 64 297 63 65 298 55 57 299 58 59 300 57 58 301 65 66 302 65 66 303 66 67 304 58 59 305 59 61 306 62 62 307 70 68 308 70 68 309 67 69 310 59 61 311 60 56 312 61 63 313 69 70 314 69 70 315 68 64 316 60 56 317 56 60 318 58 59 319 66 67 320 66 67 321 64 71 322 56 60 323 57 58 324 59 61 325 67 69 326 67 69 327 65 66 328 57 58 329 69 70 330 61 63 331 56 60 332 56 60 333 64 71 334 69 70 335 63 65 336 68 64 337 76 72 338 76 72 339 71 73 340 63 65 341 64 71 342 66 67 343 74 74 344 74 74 345 72 75 346 64 71 347 66 67 348 65 66 349 73 76 350 73 76 351 74 74 352 66 67 353 65 66 354 67 69 355 75 77 356 75 77 357 73 76 358 65 66 359 67 69 360 70 68 361 78 78 362 78 78 363 75 77 364 67 69 365 68 64 366 69 70 367 77 79 368 77 79 369 76 72 370 68 64 371 64 71 372 72 75 373 77 79 374 77 79 375 69 70 376 64 71 377 71 73 378 76 72 379 84 80 380 84 80 381 79 81 382 71 73 383 72 75 384 74 74 385 82 82 386 82 82 387 80 83 388 72 75 389 74 74 390 73 76 391 81 84 392 81 84 393 82 82 394 74 74 395 73 76 396 75 77 397 83 85 398 83 85 399 81 84 400 73 76 401 75 77 402 78 78 403 86 86 404 86 86 405 83 85 406 75 77 407 76 72 408 77 79 409 85 87 410 85 87 411 84 80 412 76 72 413 85 87 414 77 79 415 72 75 416 72 75 417 80 83 418 85 87 419 80 83 420 82 82 421 90 88 422 90 88 423 88 89 424 80 83 425 83 85 426 86 86 427 94 90 428 94 90 429 91 91 430 83 85 431 84 80 432 85 87 433 93 92 434 93 92 435 92 93 436 84 80 437 79 81 438 84 80 439 92 93 440 92 93 441 87 94 442 79 81 443 82 82 444 81 84 445 89 95 446 89 95 447 90 88 448 82 82 449 81 84 450 83 85 451 91 91 452 91 91 453 89 95 454 81 84 455 93 92 456 85 87 457 80 83 458 80 83 459 88 89 460 93 92 461 88 89 462 90 88 463 98 96 464 98 96 465 96 97 466 88 89 467 89 95 468 91 91 469 99 98 470 99 98 471 97 99 472 89 95 473 91 91 474 94 90 475 102 100 476 102 100 477 99 98 478 91 91 479 88 89 480 96 97 481 101 101 482 101 101 483 93 92 484 88 89 485 87 94 486 92 93 487 100 102 488 100 102 489 95 103 490 87 94 491 90 88 492 89 95 493 97 99 494 97 99 495 98 96 496 90 88 497 92 93 498 93 92 499 101 101 500 101 101 501 100 102 502 92 93 503 95 103 504 100 102 505 108 104 506 108 104 507 103 105 508 95 103 509 96 97 510 98 96 511 106 106 512 106 106 513 104 107 514 96 97 515 98 96 516 97 99 517 105 108 518 105 108 519 106 106 520 98 96 521 97 99 522 99 98 523 107 109 524 107 109 525 105 108 526 97 99 527 99 98 528 102 100 529 110 110 530 110 110 531 107 109 532 99 98 533 100 102 534 101 101 535 109 111 536 109 111 537 108 104 538 100 102 539 96 97 540 104 107 541 109 111 542 109 111 543 101 101 544 96 97 545 103 105 546 108 104 547 116 112 548 116 112 549 111 113 550 103 105 551 104 107 552 106 106 553 114 114 554 114 114 555 112 115 556 104 107 557 106 106 558 105 108 559 113 116 560 113 116 561 114 114 562 106 106 563 105 108 564 107 109 565 115 117 566 115 117 567 113 116 568 105 108 569 107 109 570 110 110 571 118 118 572 118 118 573 115 117 574 107 109 575 108 104 576 109 111 577 117 119 578 117 119 579 116 112 580 108 104 581 104 107 582 112 115 583 117 119 584 117 119 585 109 111 586 104 107 587 111 113 588 116 112 589 124 120 590 124 120 591 119 121 592 111 113 593 112 115 594 114 114 595 122 122 596 122 122 597 120 123 598 112 115 599 114 114 600 113 116 601 121 124 602 121 124 603 122 122 604 114 114 605 113 116 606 115 117 607 123 125 608 123 125 609 121 124 610 113 116 611 115 117 612 118 118 613 126 126 614 126 126 615 123 125 616 115 117 617 116 112 618 117 119 619 125 127 620 125 127 621 124 120 622 116 112 623 112 115 624 120 123 625 125 127 626 125 127 627 117 119 628 112 115 629 120 123 630 122 122 631 130 128 632 130 128 633 128 129 634 120 123 635 122 122 636 121 124 637 129 130 638 129 130 639 130 128 640 122 122 641 121 124 642 123 125 643 131 131 644 131 131 645 129 130 646 121 124 647 123 125 648 126 126 649 134 132 650 134 132 651 131 131 652 123 125 653 124 120 654 125 127 655 133 133 656 133 133 657 132 134 658 124 120 659 120 123 660 128 129 661 133 133 662 133 133 663 125 127 664 120 123 665 119 121 666 124 120 667 132 134 668 132 134 669 127 135 670 119 121 671 127 135 672 132 134 673 140 136 674 140 136 675 135 137 676 127 135 677 128 129 678 130 128 679 138 138 680 138 138 681 136 139 682 128 129 683 130 128 684 129 130 685 137 140 686 137 140 687 138 138 688 130 128 689 129 130 690 131 131 691 139 141 692 139 141 693 137 140 694 129 130 695 131 131 696 134 132 697 142 142 698 142 142 699 139 141 700 131 131 701 132 134 702 133 133 703 141 143 704 141 143 705 140 136 706 132 134 707 128 129 708 136 139 709 141 143 710 141 143 711 133 133 712 128 129 713 135 137 714 140 136 715 148 144 716 148 144 717 143 145 718 135 137 719 136 139 720 138 138 721 146 146 722 146 146 723 144 147 724 136 139 725 138 138 726 137 140 727 145 148 728 145 148 729 146 146 730 138 138 731 137 140 732 139 141 733 147 149 734 147 149 735 145 148 736 137 140 737 139 141 738 142 142 739 150 150 740 150 150 741 147 149 742 139 141 743 140 136 744 141 143 745 149 151 746 149 151 747 148 144 748 140 136 749 136 139 750 144 147 751 149 151 752 149 151 753 141 143 754 136 139 755 144 147 756 146 146 757 154 152 758 154 152 759 152 153 760 144 147 761 146 146 762 145 148 763 153 154 764 153 154 765 154 152 766 146 146 767 145 148 768 147 149 769 155 155 770 155 155 771 153 154 772 145 148 773 147 149 774 150 150 775 158 156 776 158 156 777 155 155 778 147 149 779 148 144 780 149 151 781 157 157 782 157 157 783 156 158 784 148 144 785 144 147 786 152 153 787 157 157 788 157 157 789 149 151 790 144 147 791 143 145 792 148 144 793 156 158 794 156 158 795 151 159 796 143 145 797 151 159 798 156 158 799 164 160 800 164 160 801 159 161 802 151 159 803 152 162 804 154 162 805 162 162 806 162 162 807 160 162 808 152 162 809 154 152 810 153 154 811 161 163 812 161 163 813 162 164 814 154 152 815 153 154 816 155 155 817 163 165 818 163 165 819 161 163 820 153 154 821 155 166 822 158 166 823 166 166 824 166 167 825 163 167 826 155 167 827 156 168 828 157 168 829 165 168 830 165 169 831 164 169 832 156 169 833 152 153 834 160 170 835 165 171 836 165 171 837 157 157 838 152 153 839 164 172 840 165 172 841 173 172 842 173 173 843 172 173 844 164 173 845 159 161 846 164 160 847 172 174 848 172 174 849 167 175 850 159 161 851 160 176 852 162 176 853 170 176 854 170 162 855 168 162 856 160 162 857 162 164 858 161 163 859 169 177 860 169 177 861 170 178 862 162 164 863 161 163 864 163 165 865 171 179 866 171 179 867 169 177 868 161 163 869 163 180 870 166 180 871 174 180 872 174 181 873 171 181 874 163 181 875 173 182 876 165 171 877 160 170 878 160 170 879 168 183 880 173 182 881 167 175 882 172 174 883 180 184 884 180 184 885 175 185 886 167 175 887 169 177 888 171 179 889 179 186 890 179 186 891 177 187 892 169 177 893 171 188 894 174 188 895 182 188 896 182 189 897 179 189 898 171 189 899 172 190 900 173 190 901 181 190 902 181 191 903 180 191 904 172 191 905 168 183 906 176 192 907 181 193 908 181 193 909 173 182 910 168 183 911 168 162 912 170 162 913 178 162 914 178 194 915 176 194 916 168 194 917 170 178 918 169 177 919 177 187 920 177 187 921 178 195 922 170 178 923 177 187 924 179 186 925 187 196 926 187 196 927 185 197 928 177 187 929 179 198 930 182 198 931 190 198 932 190 199 933 187 199 934 179 199 935 180 200 936 181 200 937 189 200 938 189 201 939 188 201 940 180 201 941 176 192 942 184 202 943 189 203 944 189 203 945 181 193 946 176 192 947 175 185 948 180 184 949 188 204 950 188 204 951 183 205 952 175 185 953 176 162 954 178 162 955 186 162 956 186 162 957 184 162 958 176 162 959 178 195 960 177 187 961 185 197 962 185 197 963 186 206 964 178 195 965 185 197 966 187 196 967 195 207 968 195 207 969 193 208 970 185 197 971 188 209 972 189 209 973 197 209 974 197 210 975 196 210 976 188 210 977 183 205 978 188 204 979 196 211 980 196 211 981 191 212 982 183 205 983 184 213 984 186 213 985 194 213 986 194 214 987 192 214 988 184 214 989 186 206 990 185 197 991 193 208 992 193 208 993 194 215 994 186 206 995 187 216 996 190 216 997 198 216 998 198 217 999 195 217 1000 187 217 1001 197 218 1002 189 203 1003 184 202 1004 184 202 1005 192 219 1006 197 218 1007 191 212 1008 196 211 1009 4 0 1010 4 0 1011 199 3 1012 191 212 1013 192 220 1014 194 220 1015 2 220 1016 2 221 1017 0 221 1018 192 221 1019 194 215 1020 193 208 1021 1 11 1022 1 11 1023 2 4 1024 194 215 1025 193 208 1026 195 207 1027 3 8 1028 3 8 1029 1 11 1030 193 208 1031 195 222 1032 198 222 1033 6 222 1034 6 223 1035 3 223 1036 195 223 1037 196 224 1038 197 224 1039 5 224 1040 5 225 1041 4 225 1042 196 225 1043 5 14 1044 197 218 1045 192 219 1046 192 219 1047 0 7 1048 5 14 1049

+
+
+
+ + + + 83.37479 -143.1665 20.0688 84.06229 -143.1665 20.0688 83.70972 -142.9695 19.59339 82.42646 -142.314 17.92014 78.2261 -137.4285 18.05566 77.58963 -141.7967 16.76197 62.82386 -137.9746 21.47523 62.82385 -143.1286 19.97739 63.83644 -137.9871 21.55385 63.83644 -143.159 20.05071 80.85382 -135.6864 3.57177 80.08779 -135.7212 2.395027 73.23274 -137.6647 19.5468 73.23274 -142.3727 18.15247 62.74448 -137.9106 21.07093 62.74448 -142.9724 19.60038 82.46326 -135.9249 19.28187 83.70922 -135.8405 21.26078 82.46603 -139.8403 18.61918 83.70751 -139.7431 20.65851 84.06229 -136.3505 21.73946 84.06229 -139.1654 21.3289 83.37479 -136.3179 21.74202 83.37479 -139.2128 21.31752 82.73535 -139.4419 15.91748 82.73535 -136.1804 16.19619 83.36256 -138.362 10.42477 81.84204 -139.0738 10.49332 80.66424 -139.2603 10.57927 81.86623 -135.808 10.76991 80.69038 -135.6469 10.879 82.00879 -137.8936 5.887489 80.47491 -138.6679 6.616348 80.57846 -135.1239 6.708027 81.54763 -136.3848 4.812061 81.76401 -137.7368 5.129166 82.05194 -135.8208 6.234962 80.97516 -135.3599 7.769703 79.92739 -135.267 8.587933 78.70211 -138.9134 6.912945 78.70349 -134.9513 7.811115 78.6651 -134.9857 6.427036 78.6637 -138.0436 5.635517 84.17662 -143.066 19.82614 84.17673 -136.1859 21.48351 84.1772 -139.3215 21.01421 80.36526 -140.0378 17.31857 84.26208 -138.7228 15.98151 81.51374 -135.5625 4.943993 81.55523 -139.6281 15.90018 81.55346 -136.0618 16.202 79.28041 -138.8932 7.004055 79.46759 -135.0154 7.880024 80.25009 -141.9347 16.72321 80.34769 -135.8092 18.0768 84.20208 -136.5506 19.76274 84.20508 -138.9 19.38468 84.26102 -136.6755 16.16083 83.37767 -136.3961 10.60265 80.84711 -135.0624 3.692799 84.06229 -132.4341 21.73946 83.37479 -132.4667 21.74202 83.37479 -129.5718 21.31752 84.06229 -129.6192 21.3289 84.06229 -125.6181 20.0688 83.37479 -125.6181 20.0688 84.06227 -120.874 17.49267 83.37479 -120.874 17.49267 84.17673 -132.5987 21.48351 84.1772 -129.4631 21.01421 84.20508 -129.8846 19.38468 84.20208 -132.234 19.76274 83.70751 -129.0415 20.65851 84.17662 -125.7187 19.82614 83.70972 -125.8151 19.59339 83.70972 -121.1774 17.07507 84.17662 -121.0289 17.27952 82.42646 -126.4706 17.92014 82.46603 -128.9443 18.61918 82.42646 -122.2368 15.61699 77.58963 -126.9879 16.76197 78.2261 -131.3561 18.05566 80.36526 -128.7469 17.31857 80.25009 -126.85 16.72321 80.25011 -122.9744 14.60178 77.58963 -122.9844 14.588 73.23274 -131.1199 19.5468 73.23274 -126.4119 18.15247 73.23274 -122.097 15.8094 62.74448 -130.874 21.07093 62.74448 -125.8122 19.60038 62.74448 -121.173 17.08122 62.82386 -130.81 21.47523 62.82385 -125.656 19.97739 62.82385 -120.9324 17.41238 63.83644 -130.7975 21.55385 63.83644 -125.6257 20.05071 63.83644 -120.8856 17.47678 82.46326 -132.8597 19.28187 80.34769 -132.9754 18.0768 83.70922 -132.9441 21.26078 81.55523 -129.1565 15.90018 82.73535 -129.3427 15.91748 81.55346 -132.7229 16.202 82.73535 -132.6043 16.19619 84.26208 -130.0619 15.98151 84.26102 -132.1091 16.16083 83.37767 -132.3885 10.60265 83.36256 -130.4226 10.42477 81.84204 -129.7108 10.49332 80.66424 -129.5243 10.57927 80.69038 -133.1378 10.879 81.86623 -132.9766 10.76991 82.00879 -130.891 5.887489 82.05194 -132.9639 6.234962 80.47491 -130.1167 6.616348 79.28041 -129.8915 7.004055 80.97516 -133.4247 7.769703 79.92739 -133.5176 8.587933 79.92763 -134.3923 2.429337 80.08779 -133.0635 2.395027 79.79858 -132.5652 1.401138 79.79858 -134.3923 2.099583 79.97248 -132.2714 1.805519 80.57846 -133.6607 6.708027 81.51374 -133.2221 4.943993 79.46759 -133.7692 7.880024 80.18053 -134.3923 6.189579 79.29992 -134.3923 7.602329 80.84711 -133.7222 3.692799 80.30725 -129.4119 5.74131 81.79683 -130.0894 4.808777 79.08676 -129.1709 6.073029 78.6637 -130.741 5.635517 78.70211 -129.8712 6.912945 78.70349 -133.8333 7.811115 78.6651 -133.7989 6.427036 78.66484 -134.3923 6.447338 78.70325 -134.3923 7.584949 78.66312 -129.9052 5.062313 78.70154 -129.1905 6.046024 80.85382 -133.0982 3.57177 81.54763 -132.3998 4.812061 81.76401 -131.0478 5.129166 80.51977 -134.3923 3.320438 83.37481 -157.2494 -2.912625 83.37479 -156.2653 -8.220619 84.06229 -157.2494 -2.912625 84.17662 -156.0148 -8.1392 83.70972 -156.7364 -2.872251 82.42646 -154.0603 -7.504174 82.42646 -154.9424 -2.765882 78.2261 -153.5616 1.922399 77.58966 -153.6811 -2.631797 77.58963 -152.8507 -7.111137 62.82386 -156.9826 2.459706 62.82386 -157.1507 -2.904868 62.82385 -156.171 -8.18995 63.83645 -157.0612 2.472161 63.83645 -157.2298 -2.911082 63.83644 -156.2466 -8.214551 80.85382 -139.2483 -0.8965603 80.0878 -138.1399 -1.29322 73.23276 -155.0528 2.158574 73.23276 -155.1815 -2.749892 73.23274 -154.2865 -7.577671 62.74448 -156.5783 2.395669 62.74448 -156.7439 -2.87284 62.74448 -155.7816 -8.063461 82.46327 -154.2632 3.73132 83.70922 -156.1191 4.423135 82.46606 -154.8429 -0.197234 83.70752 -156.7524 0.5254222 84.06229 -156.732 4.085973 84.06229 -157.2114 1.281949 83.37481 -156.7244 4.117764 83.37481 -157.2153 1.233361 82.73537 -152.1503 -0.6532241 82.73537 -151.4075 2.534886 83.36258 -146.5927 -1.323455 81.84204 -146.8778 -1.979228 80.66426 -147.0172 -2.130063 81.86623 -146.1317 1.212159 80.69038 -146.1857 1.39914 82.00879 -142.1328 -2.280109 80.47491 -143.0652 -2.791263 80.57846 -142.0573 0.6075749 81.54764 -140.6437 -1.177482 79.97249 -137.824 -2.228664 81.76401 -141.3631 -2.365295 82.05197 -141.8226 -0.2013621 80.97517 -143.1399 0.711247 79.92739 -143.8893 1.052411 80.30727 -142.4508 -3.732 78.70211 -143.4231 -2.9331 78.70351 -143.053 1.112626 78.6651 -141.7473 0.6522489 78.6637 -141.9395 -2.500583 84.17662 -156.9875 -2.892011 84.06229 -156.2653 -8.220619 84.17673 -156.4378 4.163423 84.1772 -156.9604 1.036309 83.70972 -155.7744 -8.061113 80.36526 -153.6669 -0.7869101 84.26208 -151.9889 0.05057227 81.51374 -140.5151 -0.3546444 81.55523 -152.1914 -0.8356315 81.55346 -151.3764 2.649446 79.28044 -143.5035 -2.885685 79.46759 -143.1384 1.072991 79.08676 -142.8408 -3.858707 80.25011 -152.8669 -7.116403 80.25009 -153.6869 -2.77497 80.34769 -153.0813 3.468957 84.20208 -154.9139 3.284863 84.2051 -155.2803 0.9336215 78.70156 -142.809 -3.848387 84.26102 -151.5269 2.053033 83.37768 -146.1544 0.6011397 80.84711 -139.1706 -0.2656666 78.66314 -141.6526 -3.472652 81.79683 -141.3545 -3.375808 84.06229 -155.5218 7.810746 83.37481 -155.5343 7.780538 83.37481 -154.236 10.40258 84.06229 -154.2615 10.36103 84.06229 -151.8266 13.77682 83.37481 -151.8266 13.77682 84.06227 -147.9106 17.49267 83.37479 -147.9106 17.49267 84.17673 -155.3292 7.575105 84.1772 -153.9139 10.41219 84.2051 -152.4944 9.507749 84.20208 -153.58 7.390172 83.70752 -153.4454 10.70323 84.17662 -151.6269 13.60624 83.70972 -151.4354 13.44262 83.70972 -147.6072 17.07507 84.17662 -147.7557 17.27953 82.42646 -150.0466 12.30212 82.46606 -151.4758 10.16551 82.42646 -146.5479 15.617 77.58966 -149.105 11.45224 78.2261 -151.6852 7.69761 80.36526 -150.1779 9.951356 80.25009 -149.0254 11.57147 80.25011 -145.8102 14.60179 77.58963 -145.8002 14.58801 73.23276 -153.0303 8.383008 73.23276 -150.2494 12.42972 73.23274 -146.6876 15.80941 62.74448 -154.4039 9.087884 62.74448 -151.4411 13.44753 62.74448 -147.6117 17.08122 62.82386 -154.7686 9.273702 62.82386 -151.7514 13.71257 62.82385 -147.8522 17.41238 63.83645 -154.8395 9.309846 63.83645 -151.8118 13.76409 63.83644 -147.899 17.47678 82.46327 -153.316 6.64652 80.34769 -152.2056 6.164113 83.70922 -155.2241 7.177739 81.55523 -148.9555 9.123483 82.73537 -149.0294 8.951761 81.55346 -150.3446 5.824936 82.73537 -150.3024 5.93591 84.26208 -149.3126 8.287534 84.26102 -150.1158 6.395913 83.37768 -144.9159 4.412648 83.36258 -144.1393 6.227318 81.84204 -143.9845 6.925457 80.66426 -144.0087 7.129395 80.69038 -145.4103 3.785428 81.86623 -145.2568 3.905007 82.00879 -139.9688 4.379776 82.05197 -140.9398 2.515774 80.47491 -140.4227 5.341378 79.28044 -140.7218 5.675419 80.97517 -142.5419 2.551678 79.92739 -143.3487 2.716214 79.92763 -137.7619 -0.01880621 80.0878 -137.3186 1.234417 79.79858 -136.2194 1.401138 79.79858 -137.4483 -0.1206967 79.97248 -136.5132 1.805519 80.57846 -141.6051 1.999211 81.51374 -139.7919 1.871193 79.46759 -142.7532 2.258122 80.18053 -141.3381 1.143181 79.29992 -142.6817 1.579747 80.84711 -138.7564 1.008927 80.30725 -139.3727 5.741314 81.79683 -138.6952 4.808784 79.08676 -139.6138 6.073032 78.6637 -139.6829 4.444519 78.70211 -140.6289 5.666531 78.70351 -142.7075 2.175896 78.6651 -141.3806 1.780869 78.66485 -141.5832 1.222832 78.70326 -142.6652 1.574372 78.66312 -138.8794 5.062325 78.70154 -139.5941 6.046024 80.85382 -138.4485 1.565022 81.54764 -139.4123 2.612492 81.76401 -139.2961 3.996277 79.28045 -137.5551 3.239532 80.51979 -138.6094 0.2565655 83.37481 -139.7446 -23.40792 83.37479 -134.3923 -24.11231 84.06229 -139.7446 -23.40792 84.17662 -134.3923 -23.84884 83.70972 -139.6244 -22.90755 82.42646 -134.3923 -21.79385 82.42646 -139.1713 -21.16856 78.2261 -143.2034 -18.40656 77.58966 -138.909 -19.92752 77.58963 -134.3923 -20.52195 62.82386 -144.7715 -21.49405 62.82385 -139.7215 -23.31172 62.82385 -134.3923 -24.01306 63.83645 -144.8077 -21.56499 63.83645 -139.74 -23.38888 63.83644 -134.3923 -24.09266 80.85382 -136.0993 -5.664886 80.0878 -135.3795 -4.733295 73.23276 -143.8888 -19.75174 73.23276 -139.2604 -21.391 73.23274 -134.3923 -22.03168 62.74448 -144.5857 -21.12934 62.74448 -139.6262 -22.91491 62.74448 -134.3923 -23.60372 82.46327 -145.1405 -18.51481 83.70922 -146.3721 -20.06614 82.46606 -141.5834 -20.2801 83.70752 -142.8608 -21.8728 84.06229 -146.2408 -20.7532 84.06229 -143.7221 -22.07563 83.37481 -146.2686 -20.73612 83.37481 -143.6771 -22.09428 82.73537 -140.3177 -17.86021 82.73537 -143.1202 -16.16856 83.36258 -137.9629 -12.78173 81.84204 -137.4273 -13.25558 80.66426 -137.3269 -13.43474 81.86623 -140.2319 -11.55978 80.69038 -140.4265 -11.55329 82.00879 -135.6748 -8.835698 80.47491 -135.4769 -9.880465 80.57846 -138.3978 -7.871548 81.54764 -136.2634 -7.078805 79.97248 -134.3923 -4.721926 81.76401 -135.356 -8.130009 82.05197 -137.556 -7.89843 80.97517 -138.831 -8.86914 79.92739 -139.3871 -9.476519 80.30725 -134.3923 -9.586834 78.70211 -135.4526 -10.26472 78.70351 -139.1859 -8.662491 78.6651 -138.3446 -7.562944 78.6637 -135.4054 -8.719986 84.17662 -139.6832 -23.15251 84.06227 -134.3923 -24.11231 84.17673 -146.2235 -20.44939 84.1772 -143.4109 -21.91275 83.70972 -134.3923 -23.59612 80.36526 -140.6592 -19.34392 84.26208 -140.9372 -17.48927 81.51374 -137.0062 -6.702188 81.55523 -140.1569 -17.95565 81.55346 -143.2195 -16.10357 79.28044 -135.5225 -10.32652 79.46759 -139.1746 -8.755905 79.08676 -134.3923 -9.996867 80.25011 -134.3923 -20.53898 80.25009 -138.7746 -19.97725 80.34769 -144.5258 -17.47188 84.20208 -144.917 -19.2716 84.2051 -142.7941 -20.34667 78.70154 -134.3923 -9.963478 84.26102 -142.6988 -16.43101 83.37768 -139.6578 -11.77013 80.84711 -136.6753 -5.396002 78.66312 -134.3923 -8.747553 81.79683 -134.3923 -8.434159 84.06229 -149.4093 -18.45118 83.37481 -149.3844 -18.4724 83.37481 -151.4769 -16.42739 84.06229 -151.4453 -16.46445 84.06229 -153.9415 -13.09326 83.37481 -153.9415 -13.09326 84.17673 -149.1256 -18.34085 84.1772 -151.3865 -16.11813 84.2051 -150.0877 -15.04757 84.20208 -148.4092 -16.73438 83.70752 -151.5185 -15.58256 84.17662 -153.7175 -12.95604 83.70972 -153.5027 -12.82441 82.42646 -151.9889 -11.85602 82.46606 -150.3985 -13.87557 77.58966 -150.8896 -11.22311 78.2261 -148.1161 -14.83729 80.36526 -149.7937 -12.70731 80.25009 -150.9784 -11.11066 73.23276 -149.1836 -15.90483 73.23276 -152.1729 -12.00949 62.74448 -150.2785 -16.99332 62.74448 -153.5092 -12.82837 62.82386 -150.5679 -17.28278 62.82385 -153.8571 -13.04158 63.83645 -150.6242 -17.33906 63.83645 -153.9248 -13.08305 82.46327 -147.6204 -16.71312 80.34769 -146.8185 -15.80618 83.70922 -148.7153 -18.3637 81.55523 -148.6286 -11.80058 82.73537 -148.4882 -11.924 81.55346 -145.9208 -14.14101 82.73537 -146.0133 -14.06662 84.26208 -147.944 -12.39855 84.26102 -146.3931 -13.74697 83.37768 -142.9001 -9.414497 83.36258 -144.386 -8.115091 81.84204 -145.0021 -7.752185 80.66426 -145.2035 -7.712083 80.69038 -142.4564 -10.07849 81.86623 -142.5226 -9.895504 82.00879 -141.3401 -4.719656 82.05197 -139.8674 -6.219146 80.47491 -142.3949 -4.854213 79.28044 -142.805 -5.03547 80.97517 -140.3966 -7.731693 79.92739 -140.8024 -8.44823 79.92763 -136.4748 -3.979971 80.0878 -137.5297 -3.171135 79.79858 -137.3486 -2.074196 79.79858 -136.281 -3.713202 80.57846 -139.5816 -7.011467 81.51374 -138.8996 -5.32655 79.46759 -140.1827 -8.023447 80.18053 -138.685 -7.022072 79.29992 -139.5154 -8.165011 80.84711 -137.7596 -4.608257 78.6637 -141.3133 -4.427677 78.70211 -142.7679 -4.94985 78.70351 -140.0904 -8.005355 78.6651 -139.3046 -6.865414 78.66485 -138.8365 -7.230605 78.70326 -139.5052 -8.150948 80.85382 -138.1933 -4.143548 81.54764 -139.4873 -4.736471 81.76401 -140.7675 -4.198343 79.28045 -139.5098 -2.776407 80.51979 -136.9986 -4.700884 83.37479 -114.8431 -13.09327 84.06229 -114.8431 -13.09327 83.70972 -115.2819 -12.8244 82.42646 -116.7957 -11.85602 78.2261 -120.6685 -14.8373 77.58963 -117.895 -11.2231 62.82386 -118.2167 -17.28277 62.82385 -114.9275 -13.04157 63.83644 -118.1604 -17.33906 63.83644 -114.8598 -13.08304 80.85382 -130.5913 -4.143549 80.08779 -131.2549 -3.171133 73.23274 -119.601 -15.90483 73.23274 -116.6117 -12.0095 62.74448 -118.5061 -16.99333 62.74448 -115.2754 -12.82836 82.46326 -121.1642 -16.71311 83.70922 -120.0693 -18.36371 82.46603 -118.3861 -13.87557 83.70751 -117.266 -15.58257 84.06229 -119.3754 -18.45116 84.06229 -117.3393 -16.46445 83.37479 -119.4002 -18.47239 83.37479 -117.3077 -16.42738 82.73535 -120.2964 -11.924 82.73535 -122.7713 -14.06661 83.36256 -124.3986 -8.115094 81.84204 -123.7825 -7.752175 80.66424 -123.5811 -7.712077 81.86623 -126.262 -9.895504 80.69038 -126.3283 -10.07849 82.00879 -127.4445 -4.719652 80.47491 -126.3897 -4.85421 80.57846 -129.2029 -7.011463 81.54763 -129.2973 -4.736471 81.76401 -128.0171 -4.198339 82.05194 -128.9172 -6.219147 80.97516 -128.388 -7.731698 79.92739 -127.9822 -8.448231 78.70211 -126.0167 -4.949852 78.70349 -128.6942 -8.005349 78.6651 -129.48 -6.865416 78.6637 -127.4713 -4.427668 84.17662 -115.0671 -12.95603 84.17673 -119.6589 -18.34084 84.1772 -117.3981 -16.11814 80.36526 -118.9908 -12.70731 84.26208 -120.8406 -12.39855 81.51374 -129.885 -5.326551 81.55523 -120.1559 -11.80057 81.55346 -122.8638 -14.14101 79.28041 -125.9795 -5.035464 79.46759 -128.6019 -8.023446 80.25009 -117.8061 -11.11066 80.34769 -121.9661 -15.80618 84.20208 -120.3753 -16.73437 84.20508 -118.6969 -15.04757 84.26102 -122.3915 -13.74696 83.37767 -125.8845 -9.414502 80.84711 -131.025 -4.608261 84.06229 -122.5438 -20.7532 83.37479 -122.5159 -20.73612 83.37479 -125.1074 -22.09427 84.06229 -125.0625 -22.07562 84.06229 -129.04 -23.40792 83.37479 -129.04 -23.40792 84.17673 -122.5611 -20.44938 84.1772 -125.3736 -21.91276 84.20508 -125.9905 -20.34668 84.20208 -123.8676 -19.27159 83.70751 -125.9238 -21.8728 84.17662 -129.1013 -23.15252 83.70972 -129.1601 -22.90755 82.42646 -129.6133 -21.16856 82.46603 -127.2011 -20.2801 77.58963 -129.8756 -19.92751 78.2261 -125.5812 -18.40657 80.36526 -128.1254 -19.34392 80.25009 -130.0099 -19.97724 73.23274 -124.8958 -19.75174 73.23274 -129.5242 -21.39101 62.74448 -124.1989 -21.12934 62.74448 -129.1584 -22.91491 62.82386 -124.0131 -21.49406 62.82385 -129.0631 -23.31171 63.83644 -123.9769 -21.56499 63.83644 -129.0446 -23.38887 82.46326 -123.644 -18.5148 80.34769 -124.2587 -17.47188 83.70922 -122.4125 -20.06615 81.55523 -128.6277 -17.95565 82.73535 -128.4669 -17.86021 81.55346 -125.565 -16.10357 82.73535 -125.6644 -16.16856 84.26208 -127.8474 -17.48926 84.26102 -126.0857 -16.431 83.37767 -129.1268 -11.77014 83.36256 -130.8217 -12.78173 81.84204 -131.3573 -13.25558 80.66424 -131.4576 -13.43474 80.69038 -128.3581 -11.55329 81.86623 -128.5526 -11.55978 82.00879 -133.1097 -8.835696 82.05194 -131.2286 -7.89843 80.47491 -133.3078 -9.880463 79.28041 -133.2621 -10.32651 80.97516 -129.9536 -8.869145 79.92739 -129.3975 -9.476521 79.92763 -132.3098 -3.979969 80.08779 -133.405 -4.733295 79.79858 -134.3923 -4.222078 79.79858 -132.5036 -3.713198 80.57846 -130.3867 -7.871544 81.51374 -131.7784 -6.70219 79.46759 -129.61 -8.7559 80.18053 -130.0996 -7.02207 79.29992 -129.2692 -8.165009 80.84711 -132.1093 -5.396006 78.6637 -133.3792 -8.719978 78.70211 -133.332 -10.26472 78.70349 -129.5987 -8.662486 78.6651 -130.44 -7.562946 78.66484 -129.9481 -7.2306 78.70325 -129.2794 -8.150949 80.85382 -132.6852 -5.664886 81.54763 -132.5212 -7.078805 81.76401 -133.4286 -8.130012 79.28045 -134.3923 -6.494455 80.51977 -131.786 -4.700886 83.37481 -116.958 13.77682 84.06229 -116.958 13.77682 83.70972 -117.3493 13.44262 82.42646 -118.7381 12.30212 78.2261 -117.0994 7.697601 77.58966 -119.6797 11.45224 62.82385 -114.016 9.273689 62.82385 -117.0332 13.71255 63.83644 -113.9451 9.309825 63.83645 -116.9729 13.76409 80.85382 -130.3361 1.565018 80.0878 -131.466 1.234409 73.23276 -115.7543 8.382995 73.23276 -118.5352 12.42971 62.74448 -114.3808 9.087863 62.74448 -117.3435 13.44752 82.46327 -115.4686 6.646518 83.70922 -113.5605 7.177726 82.46606 -117.3088 10.1655 83.70752 -115.3392 10.70323 84.06229 -113.2629 7.810726 84.06229 -114.5232 10.36102 83.37479 -113.2503 7.780525 83.37481 -114.5486 10.40257 82.73537 -119.7552 8.951747 82.73537 -118.4822 5.935901 83.36258 -124.6453 6.227306 81.84204 -124.8001 6.925449 80.66426 -124.776 7.129395 81.86623 -123.5279 3.904995 80.69038 -123.3743 3.785423 82.00879 -128.8158 4.379764 80.47491 -128.3618 5.341377 80.57846 -127.1795 1.999195 81.54764 -129.3723 2.612476 81.76401 -129.4886 3.996269 82.05197 -127.8448 2.515759 80.97517 -126.2427 2.55167 79.92739 -125.4359 2.716213 78.70211 -128.1556 5.666523 78.70351 -126.0771 2.175884 78.6651 -127.404 1.780857 78.6637 -129.1018 4.444504 84.17662 -117.1577 13.60624 84.17673 -113.4554 7.575103 84.1772 -114.8707 10.41218 80.36526 -118.6068 9.951347 84.26208 -119.472 8.287517 81.51374 -128.9928 1.871178 79.28045 -131.2295 3.239532 81.55523 -119.8291 9.123466 81.55346 -118.44 5.824924 79.28044 -128.0628 5.675411 79.46759 -126.0314 2.258114 80.25009 -119.7592 11.57145 80.34769 -116.579 6.164112 84.20208 -115.2046 7.390171 84.2051 -116.2902 9.507743 84.26102 -118.6688 6.3959 83.37768 -123.8687 4.412639 80.84711 -130.0282 1.008922 84.06229 -112.0526 4.085956 83.37479 -112.0602 4.117748 83.37479 -111.5694 1.233363 84.06229 -111.5732 1.281928 84.06229 -111.5352 -2.912639 83.37479 -111.5352 -2.912639 84.06227 -112.5192 -8.220621 83.37479 -112.5192 -8.220621 84.17673 -112.3469 4.163421 84.1772 -111.8242 1.0363 84.20508 -113.5043 0.933612 84.20208 -113.8707 3.284847 83.70751 -112.0322 0.5254203 84.17662 -111.7971 -2.89203 83.70971 -112.0483 -2.872268 83.70971 -113.0102 -8.06111 84.17659 -112.7698 -8.139204 82.42646 -113.8422 -2.765891 82.46603 -113.9417 -0.1972358 82.42646 -114.7242 -7.504177 77.58966 -115.1035 -2.631799 78.2261 -115.223 1.922393 80.36526 -115.1177 -0.7869194 80.25009 -115.0977 -2.774979 80.25011 -115.9177 -7.116405 77.58963 -115.9339 -7.111141 73.23274 -113.7318 2.158565 73.23274 -113.6031 -2.749894 73.23274 -114.498 -7.577672 62.74448 -112.2063 2.395648 62.74448 -112.0407 -2.872853 62.74448 -113.003 -8.063461 62.82385 -111.802 2.459704 62.82385 -111.6339 -2.904883 62.82384 -112.6136 -8.189956 63.83644 -111.7234 2.47214 63.83644 -111.5548 -2.911084 63.83643 -112.5379 -8.214553 82.46327 -114.5214 3.731319 80.34769 -115.7032 3.46894 83.70922 -112.6654 4.42313 81.55523 -116.5932 -0.8356482 82.73537 -116.6343 -0.6532408 81.55346 -117.4083 2.649437 82.73537 -117.3772 2.534878 84.26208 -116.7956 0.05056703 84.26102 -117.2577 2.05302 83.37768 -122.6302 0.6011311 83.36258 -122.1919 -1.323472 81.84204 -121.9068 -1.979237 80.66426 -121.7674 -2.130061 80.69038 -122.5989 1.399131 81.86623 -122.6529 1.212143 82.00879 -126.6519 -2.280125 82.05197 -126.9619 -0.2013781 80.47491 -125.7194 -2.791264 79.28044 -125.2811 -2.885691 80.97517 -125.6447 0.7112463 79.92739 -124.8953 1.052398 79.92763 -131.0227 -0.01881027 80.0878 -130.6448 -1.293224 79.79858 -131.436 -2.074203 79.79858 -131.3363 -0.1207122 79.97248 -130.9606 -2.228662 80.57846 -126.7274 0.6075628 81.51374 -128.2695 -0.3546525 79.46759 -125.6463 1.072975 80.18053 -127.4465 1.143165 79.29992 -126.1029 1.579731 80.84711 -129.614 -0.2656747 80.30725 -126.3338 -3.732 81.79683 -127.4301 -3.375814 79.08676 -125.9438 -3.85871 78.6637 -126.8452 -2.500601 78.70211 -125.3615 -2.933106 78.70351 -125.7316 1.11261 78.6651 -127.0373 0.6522367 78.66485 -127.2014 1.222832 78.70326 -126.1195 1.574363 78.66312 -127.132 -3.472654 78.70154 -125.9756 -3.848393 80.85382 -129.5363 -0.8965684 81.54764 -128.1409 -1.177498 81.76401 -127.4215 -2.365296 79.28045 -129.2748 -2.776405 80.51979 -130.1752 0.2565497 + + + + + + + + + + -4.88299e-4 -0.2266622 0.9739733 0.5426937 -0.1788734 0.8206632 0.5407763 -0.06699043 0.8384947 3.66227e-4 -0.0705291 0.9975097 0.5332614 -0.3307667 0.7786051 0 -0.3909816 0.9203985 0.5286265 -0.4989311 0.6867474 0 -0.587767 0.8090303 0.8940578 -0.4387735 -0.09021449 0.8403217 0.5385152 -0.06213748 0.9829711 0.1837577 0.001037657 0.9837574 -0.1655058 0.06949234 0.7323481 -0.1898013 -0.6539433 0.9568013 0.1162469 -0.266492 0.6550642 0.2999427 -0.6934879 0.6532555 0.4450256 -0.6125435 0.9615906 0.1613536 -0.2220557 0.6824071 0.2766251 -0.6766085 0.707402 -0.5061591 -0.4933411 0.6807913 0.430534 -0.5925908 -0.01333671 -0.006286859 -0.9998914 0.2612759 0.3737396 -0.8899739 -0.170147 0.3891255 -0.905335 -0.1734712 0.1482013 -0.9736242 0.2679599 0.5662866 -0.7794338 -0.1651377 0.5797062 -0.7979162 -0.2316129 0.3768554 -0.8968476 -0.2171103 0.1396842 -0.9661012 -0.2370737 0.5710155 -0.7859628 -0.8399437 0.2068577 -0.5017017 -0.8469738 0.07529127 -0.5262762 -0.8453298 0.3140154 -0.4322175 -0.6458811 -0.2903611 0.7060652 -0.6401309 -0.1083415 0.7605884 -0.6420063 -0.4506496 0.6202765 -0.07812964 -0.379173 0.9220215 -0.07834255 -0.140632 0.9869576 -0.07837355 -0.5859705 0.8065334 -0.4843364 -0.8291705 -0.2790961 0.3135879 -0.9440292 -0.1023318 -0.5361869 0.8271238 -0.1684339 -0.04104775 0.3157781 -0.9479448 0.2200417 0.975386 -0.01428282 0.5911509 0.6527685 -0.4737447 0.8234142 0.5651282 -0.05118107 0.8503858 -0.5181542 -0.09143537 0.8218804 -0.5193442 -0.2340818 0.8230711 0.5523357 -0.132209 0.2877649 -0.944903 -0.1560443 -0.598814 -0.7954176 0.09344923 -0.607401 0.7534677 0.2516951 0.2588353 0.9647803 0.04693883 0.9129795 -0.3837474 -0.1385873 0.8143476 0.5494703 -0.1868699 0.3789232 -0.9100444 0.1680372 -0.1700191 -0.7446234 0.6454685 0.3090687 0.9482338 0.07300209 -0.5252685 0.7412844 0.4178404 0.9800694 0.1167672 -0.1607151 0.9740573 0 -0.2263013 0.8911873 0 -0.4536354 0.932546 -0.1014154 -0.3465155 0.9998633 -0.009705007 0.01339781 0.5324375 0.8270694 0.1801851 0.8153595 0.5352819 -0.2205951 1.83113e-4 0.4865911 0.8736299 0.9522997 0 0.3051644 0.4640777 0 0.8857946 0.9027146 0.3291144 -0.2771104 0.4633718 -0.5208699 0.7169247 0.9988176 0.02856552 -0.03933864 0.1086782 -0.5842868 0.8042375 -0.6669405 0.07358223 0.7414689 -0.9996033 -0.004333734 0.0278337 -0.999635 -0.01156651 0.02441483 -0.6730996 -0.4091091 0.6160898 -0.9995735 0 0.02920621 -0.801864 0 0.5975068 -0.9995015 -0.01855558 0.02554446 -0.7899508 -0.360428 0.4960539 -0.9996644 -0.02005827 0.0163989 0.8265468 -0.1502451 -0.5424452 0.8438089 -0.03439444 -0.5355405 0.957085 0.1703587 -0.2344492 0.8426107 0.09644132 -0.5298172 0.6832983 0.2526394 -0.6850379 0.9338889 0 -0.3575634 -4.88313e-4 0.226669 0.9739718 3.66227e-4 0.0705291 0.9975097 0.5407763 0.06699043 0.8384947 0.5426937 0.1788734 0.8206632 0.5332614 0.3307667 0.7786051 0 0.3909816 0.9203985 0.5286265 0.4989311 0.6867474 0 0.587767 0.8090303 0.8940578 0.4387735 -0.09021449 0.9837574 0.1655058 0.06949234 0.9829711 -0.1837577 0.001037657 0.8403307 -0.5385014 -0.06213593 0.7323481 0.1898013 -0.6539433 0.6550467 -0.2999487 -0.6935017 0.9567876 -0.1162794 -0.2665271 0.653238 -0.4450345 -0.6125556 0.961584 -0.1613525 -0.2220848 0.707402 0.5061591 -0.4933411 0.6824071 -0.2766251 -0.6766085 0.6807913 -0.430534 -0.5925908 -0.01336723 0.006317377 -0.9998908 -0.1734704 -0.1482312 -0.9736198 -0.170147 -0.3891255 -0.905335 0.2612759 -0.3737396 -0.8899739 -0.1651417 -0.5797204 -0.7979052 0.2679599 -0.5662866 -0.7794338 -0.2171103 -0.1396842 -0.9661012 -0.2316129 -0.3768554 -0.8968476 -0.2370737 -0.5710155 -0.7859628 -0.8469738 -0.07529127 -0.5262762 -0.8399437 -0.2068577 -0.5017017 -0.8453298 -0.3140154 -0.4322175 -0.6401309 0.1083415 0.7605884 -0.6458494 0.2903606 0.7060945 -0.6420063 0.4506496 0.6202765 -0.07834255 0.140632 0.9869576 -0.07809931 0.3791739 0.9220237 -0.07837355 0.5859705 0.8065334 -0.0410794 -0.3157868 -0.9479405 0.5911509 -0.6527685 -0.4737447 0.6832893 -0.2526055 -0.6850594 0.4300965 0 -0.9027829 0.4300965 0 -0.902783 -0.4843364 0.8291705 -0.2790961 0.3136144 0.9440171 -0.1023611 -0.5361624 -0.827133 -0.1684663 0.2200708 -0.9753798 -0.01425224 0.8234381 -0.5650932 -0.05118066 0.8504076 0.5181184 -0.09143441 0.823054 -0.5523547 -0.1322367 0.8218804 0.5193442 -0.2340818 0.2877649 0.944903 -0.1560443 -0.598814 0.7954176 0.09344923 -0.6073678 -0.7534949 0.251694 0.2588638 -0.9647728 0.04693847 0.8143237 -0.5495052 -0.1868714 0.9129795 0.3837474 -0.1385873 0.378897 0.9100549 0.1680392 -0.170023 0.7446098 0.6454831 0.3090687 -0.9482338 0.07300209 -0.5252972 -0.7412819 0.4178085 0.9800694 -0.1167672 -0.1607151 0.9325489 0.1013852 -0.3465166 0.9998633 0.009705007 0.01339781 0.5324127 -0.8270783 0.1802176 0.8153541 -0.5352783 -0.2206241 1.83113e-4 -0.4865911 0.8736299 0.9027146 -0.3291144 -0.2771104 0.4633718 0.5208699 0.7169247 0.9988179 -0.02859604 -0.03930813 0.1087111 0.5842993 0.8042241 -0.666942 -0.07355189 0.7414705 -0.6730452 0.4091436 0.6161264 -0.999635 0.01156651 0.02441483 -0.9996033 0.004333734 0.0278337 -0.9993429 -0.0132302 0.03374654 -0.9996136 0.001424193 0.02776044 -0.9996644 0.02005845 0.01639819 -0.9995002 0.01740103 0.0263924 -0.7899039 0.3604345 0.4961239 0.8265468 0.1502451 -0.5424452 0.957085 -0.1703587 -0.2344492 0.8437993 0.03442579 -0.5355538 0.8426107 -0.09644132 -0.5298172 -3.96745e-4 -0.99635 0.0853613 0.5426962 -0.8357742 0.08344006 0.5407372 -0.8181862 0.1953832 3.96751e-4 -0.9704844 0.2411637 0.5332897 -0.8426917 -0.07397812 0 -0.9961701 -0.08743685 0.528617 -0.8073152 -0.2623096 0 -0.9510608 -0.309004 0.8940559 -0.04977655 -0.4451815 0.8403244 0.2255087 0.4929512 0.9829783 0.05566614 0.175086 0.9837556 -0.1172852 -0.1359019 0.7323414 0.5632949 -0.3825901 0.95677 0.2894725 0.02823001 0.6550127 0.7522788 0.07095813 0.6532982 0.7200441 0.2339617 0.9616178 0.2609665 0.08478128 0.6824043 0.7289763 0.05401855 0.7074078 0.3127927 -0.6338257 0.6807761 0.6966464 0.2263353 -0.01336747 0.9490007 -0.3149907 0.261276 0.9619084 0.0804184 -0.1701426 0.9812729 0.09030526 -0.173473 0.9717726 -0.1598918 0.2679584 0.9162774 0.2977146 -0.1651385 0.9380026 0.3047631 -0.2316093 0.969408 0.0812723 -0.2171118 0.9619877 -0.1656568 -0.2370758 0.9239487 0.3001902 -0.8399571 0.5410493 0.04168957 -0.8469663 0.5237994 -0.09100794 -0.8453217 0.5081146 0.1650785 -0.6458438 -0.7612668 -0.05795562 -0.6401192 -0.7568568 0.131967 -0.6419622 -0.7292153 -0.2369171 -0.07809835 -0.9940685 -0.07568734 -0.07831251 -0.9821114 0.1712438 -0.07825142 -0.9481428 -0.3080617 -0.4843391 0.009216785 -0.8748319 0.3136114 -0.1943438 -0.9294506 -0.536192 0.4158242 0.7345668 -0.04107844 0.9991285 0.007416069 0.2200431 0.3149883 0.9232352 0.5911511 0.6522805 0.4744163 0.8234304 0.2233067 0.521629 0.8504078 -0.07312315 -0.5210179 0.8218846 0.06213724 -0.566255 0.8230748 0.2964339 0.4844327 0.2877643 -0.1435312 -0.9468847 -0.5988166 -0.3346732 -0.7276074 -0.6073884 -0.006531 0.7943782 0.2588661 0.2534642 0.9320646 0.9129663 0.01321458 -0.4078211 0.8143345 0.3475487 0.4648326 0.378929 -0.4410665 -0.8135559 -0.1700201 -0.843997 -0.508687 0.3090647 0.2235813 0.9243865 -0.5252658 -0.1683439 0.8341201 0.9800679 0.1889452 0.06137436 0.9740586 0.2152231 -0.06992 0.8911942 0.4314209 -0.1401751 0.9325494 0.2982046 -0.2035335 0.9998624 -0.0157783 -0.005127131 0.5324032 0.08420181 0.8422927 0.815351 0.3752336 0.4409109 1.83115e-4 -0.6805155 0.7327337 0.9523045 -0.2902113 0.09430569 0.464111 -0.842401 0.273791 0.902727 0.3652231 0.2273679 0.4633772 -0.8427953 -0.2738207 0.9988144 0.04629677 0.01504564 0.1086792 -0.9454267 -0.3071767 -0.6669653 -0.6824385 0.2990571 -0.9996035 -0.02780318 0.004455804 -0.999635 -0.02679526 -0.003448545 -0.6730726 -0.7123814 -0.1987111 -0.9995738 -0.02777183 0.009002923 -0.8018314 -0.5682983 0.1846718 -0.9995025 -0.03000032 -0.009735584 -0.7899604 -0.583162 -0.189433 -0.9996642 -0.02179265 -0.01402032 0.8265524 0.4694468 -0.3105332 0.8437959 0.4987149 -0.1982224 0.9570869 0.2756203 0.08954375 0.8426107 0.5336931 -0.0719648 0.6833546 0.72953 0.02850484 0.9338959 0.340048 -0.1104804 -5.49345e-4 -0.8562463 0.5165677 3.35709e-4 -0.926894 0.3753232 0.5407957 -0.7767376 0.3228294 0.5427216 -0.7251954 0.4237275 0.5332346 -0.6382823 0.5552085 0 -0.7545339 0.6562611 0.8940569 0.2213855 0.3894237 0.9837594 -0.01489341 0.1788736 0.9829717 -0.05774283 -0.1744493 0.840319 -0.1072754 -0.5313719 0.7323048 0.6806361 -0.02154642 0.6550326 0.5668628 -0.4995986 0.9567844 0.2175425 -0.1929744 0.7073852 0.6256229 0.3289411 0.6824098 0.5580135 -0.4721629 -0.01336747 0.9529076 -0.3029662 -0.1734704 0.88017 -0.4418246 -0.1701465 0.7407708 -0.6498531 0.2612735 0.7309003 -0.6304928 -0.2171126 0.8756527 -0.4313868 -0.2316102 0.7364896 -0.6355625 -0.8469695 0.4772596 -0.234235 -0.839955 0.4132022 -0.3517666 -0.640113 -0.68989 0.3380934 -0.6458725 -0.5817827 0.4943459 -0.07831144 -0.8952105 0.438709 -0.07815968 -0.7597147 0.6455423 -0.04107856 0.8039627 -0.5932593 0.5911497 0.2488505 -0.7672128 0.6833006 0.573461 -0.4519324 0.4301288 0.8585737 -0.2789987 0.4303056 0.8585106 -0.2789208 -0.4843635 0.5216575 0.7023287 0.3135852 0.3890593 0.8661971 -0.5361886 -0.0953719 -0.838693 0.2200443 -0.2878277 -0.9320601 0.8234266 -0.1259204 -0.5532745 0.8504143 0.247052 0.4645005 0.8230713 -0.04489368 -0.566161 0.8218815 0.3831073 0.4215919 0.2877668 0.4404246 0.8504214 -0.5988247 0.1569011 0.7853604 -0.607367 -0.472227 -0.6388326 0.2588658 -0.3427943 -0.9030396 0.8143467 0.007934987 -0.5803246 0.9129778 0.2504089 0.3221287 0.3789247 0.1213743 0.9174337 -0.1699923 -0.3837798 0.907643 0.3090702 -0.3624488 -0.8792648 -0.5253003 -0.6264722 -0.5758405 0.932548 0.3608909 -0.01059019 0.5324137 -0.4269686 -0.7309129 0.8153479 0.0443747 -0.5772685 2.44152e-4 -0.9812464 -0.1927579 0.902729 0.1619046 -0.3985815 -0.6669352 -0.7279126 0.1591879 -0.6730678 -0.4595258 0.5794963 -0.9996348 -0.01965391 0.01855522 -0.9996035 -0.02511745 0.0127266 -0.999343 -0.03618097 -0.00213778 -0.9996139 -0.02596998 0.00988692 -0.9996644 -0.00939995 0.02414232 -0.9995001 -0.01972681 0.02471023 0.8265394 0.5623385 -0.02465915 0.8438082 0.5199639 -0.1327606 0.8426081 0.4740872 -0.2554468 -4.88297e-4 -0.3890814 -0.9212033 0.542692 -0.3376336 -0.7690832 0.5407661 -0.4386495 -0.7177457 3.0519e-4 -0.5292608 -0.8484593 0.5332636 -0.1900436 -0.824326 0 -0.2246789 -0.974433 0.5286211 0 -0.8488579 0 0 -1 0.8940554 0.4080091 -0.1849148 0.840322 -0.3991331 0.366813 0.9829688 -0.1493009 0.1071536 0.9837558 0.09305298 -0.1535115 0.7323366 0.5379604 0.4174709 0.9567774 0.06256437 0.2840118 0.6550334 0.1649562 0.7373743 0.6532686 0 0.7571263 0.9615908 0 0.2744874 0.6824057 0.1738669 0.7099949 0.7074042 0.6994692 0.1015983 0.6807683 0 0.7324988 -0.01336729 0.5928327 0.8052148 0.2612763 0.2207159 0.939691 -0.1701418 0.2173238 0.9611567 -0.1734714 0.4523563 0.8748037 0.2679587 0 0.9634305 -0.1651363 0 0.9862708 -0.231611 0.2222721 0.9470753 -0.2171165 0.4548339 0.8637052 -0.2370742 0 0.9714916 -0.83995 0.1275398 0.5274637 -0.8469704 0.2484267 0.470027 -0.8453163 0 0.5342663 -0.6458618 -0.1800978 -0.7419079 -0.6401358 -0.3593916 -0.679017 -0.6420018 0 -0.7667032 -0.07809919 -0.2351826 -0.9688084 -0.07837402 -0.4663378 -0.881128 -0.07834172 0 -0.9969267 -0.4843465 0.8348644 -0.2615532 0.3136181 0.8239038 -0.4720447 -0.5361974 -0.5701351 0.6224455 -0.04107838 0.301679 0.9525243 0.2200431 -0.7807106 0.5848692 0.5911375 -0.2496517 0.7669619 0.8234401 -0.4270864 0.3735557 0.8504039 0.4729179 -0.2305688 0.8218749 0.557764 -0.1158499 0.8230675 -0.3691276 0.4316305 0.287795 0.8561826 -0.4290984 -0.5987967 0.5886031 -0.5431287 -0.6073423 -0.7575603 0.239244 0.2588934 -0.808115 0.5290789 0.9129765 0.3919253 -0.1134392 0.8143414 -0.3346726 0.4741754 0.3789256 0.6374533 -0.6708717 -0.1699905 0.223002 -0.959882 0.3090665 -0.810037 0.4983152 -0.5253008 -0.8452972 0.09763169 0.9800644 0 0.1986802 0.9740583 0.1330037 0.183086 0.8911957 0.2666171 0.3669953 0.9325489 0.2857221 0.2207158 0.9998628 0 -0.01657176 0.5324359 -0.7750321 0.3403488 0.8153429 -0.3033884 0.4931244 2.13634e-4 -0.9071825 -0.4207373 0.9522966 -0.1793624 -0.2469018 0.4641026 -0.5206849 -0.7165864 0.9027248 -0.1033377 0.4176235 0.4633637 0 -0.8861683 0.9988176 0 0.04861634 0.1087096 0 -0.9940736 -0.6669474 -0.4953351 -0.5566187 -0.9996035 -0.01284867 -0.02505642 -0.9996344 -0.004974484 -0.02658164 -0.6730666 -0.03112936 -0.7389265 -0.999574 -0.01715141 -0.02362132 -0.8018603 -0.3512144 -0.4833928 -0.999502 0 -0.03155678 -0.7899172 0 -0.6132136 -0.9996644 0.006585597 -0.02505534 0.8265437 0.4404184 0.3505097 0.8438059 0.3426436 0.4130218 0.957084 0 0.2898109 0.8426128 0.2333825 0.485321 0.6832898 0.1983124 0.7026999 0.9338954 0.210157 0.2892634 -5.49344e-4 -0.7558662 -0.6547259 3.05194e-4 -0.6433789 -0.7655479 0.5408022 -0.5470587 -0.6389523 0.5426895 -0.6271052 -0.5587731 0.5332666 -0.7252645 -0.4354517 0 -0.8573125 -0.5147965 0.8940561 -0.3019556 0.3308877 0.9837616 -0.1747234 0.04104852 0.982969 0.1480801 -0.1088322 0.8403218 0.4721965 -0.2662515 0.7323719 0.230787 0.6406003 0.6550336 0.6503031 0.3847556 0.9567824 0.2507472 0.1472865 0.7074046 -0.1195132 0.6966314 0.6824186 0.6215015 0.3847608 -0.01336747 0.5826144 0.8126388 -0.1734716 0.6922079 0.7005397 -0.1701439 0.8469656 0.5036869 0.2612764 0.8254881 0.5003041 -0.2171138 0.6808841 0.6994702 -0.2316086 0.8320393 0.5040517 -0.8469759 0.3702315 0.3815237 -0.8399481 0.4622431 0.2842859 -0.6401181 -0.5347339 -0.5516417 -0.6458767 -0.6499357 -0.4005333 -0.07834357 -0.6938918 -0.7158048 -0.07816028 -0.8487154 -0.5230423 -0.0410791 0.8126712 0.581273 0.5911347 0.8065728 -3.96755e-4 0.683267 0.6070907 0.4056935 0.4300343 0.5306531 0.7303956 0.4300611 0.5306661 0.7303704 -0.4843769 -0.5067478 0.713152 0.3135862 -0.7035625 0.6377017 -0.5361933 0.7681704 -0.3498731 0.2200431 0.7974961 -0.5617662 0.8234295 0.4872642 -0.2907533 0.8504105 -0.3654034 0.3785265 0.8230622 0.5245881 -0.2176603 0.8218795 -0.2825458 0.4946536 0.2877622 -0.6726964 0.681669 -0.5988184 -0.6984332 0.3919283 -0.6073962 0.4616052 -0.646522 0.2588644 0.7529102 -0.6050749 0.8143452 0.5543822 -0.1717623 0.9129782 -0.2289846 0.3376936 0.3788995 -0.8350437 0.3989202 -0.1699584 -0.9818159 -0.08456718 0.3090955 0.7242137 -0.6164209 -0.525295 0.3540828 -0.7737511 0.9325451 0.1216191 0.3399536 0.5324413 0.5631742 -0.6319345 0.8153456 0.5627399 -0.1361452 2.13636e-4 -0.1198191 -0.9927957 0.9027211 0.4291275 0.03073257 -0.6669279 -0.3762971 -0.6431233 -0.6730272 -0.6931695 -0.2579739 -0.9996351 -0.02371287 -0.01293981 -0.9996034 -0.01986813 -0.01995968 -0.9993432 -0.009135782 -0.03506791 -0.9996134 -0.01743578 -0.02166026 -0.9996644 -0.02586334 -0.001464545 -0.9995006 -0.02958905 -0.01109814 0.8265429 0.1972435 0.5271832 0.843806 0.2869453 0.4534908 0.8426065 0.3894564 0.3719384 -5.49344e-4 0.7558662 -0.6547259 0.5426895 0.6271052 -0.5587731 0.5407701 0.547057 -0.6389809 4.27263e-4 0.6433967 -0.7655329 0.5332666 0.7252645 -0.4354517 0 0.8573125 -0.5147965 0.5286563 0.807298 -0.2622833 0 0.9510608 -0.309004 0.8940561 0.3019556 0.3308877 0.8403429 -0.4721607 -0.2662485 0.982968 -0.148019 -0.1089236 0.9837604 0.1747232 0.04107898 0.7323138 -0.2308795 0.6406334 0.9567824 -0.2507472 0.1472865 0.6550413 -0.6503108 0.3847296 0.6532982 -0.7200441 0.2339617 0.96159 -0.2610588 0.08481204 0.6823976 -0.6215128 0.3847795 0.7074046 0.1195132 0.6966314 0.6807761 -0.6966464 0.2263353 -0.01333695 -0.5826147 0.8126391 0.2613048 -0.8254815 0.5003001 -0.1701439 -0.8469656 0.5036869 -0.1734716 -0.6922079 0.7005397 0.2679584 -0.9162774 0.2977146 -0.1651385 -0.9380026 0.3047631 -0.2316086 -0.8320393 0.5040517 -0.2171138 -0.6808841 0.6994702 -0.2370758 -0.9239487 0.3001902 -0.83996 -0.4622191 0.28429 -0.8469858 -0.3702358 0.3814976 -0.8452998 -0.5081504 0.1650802 -0.6458767 0.6499357 -0.4005333 -0.6401361 0.5347234 -0.5516309 -0.6420087 0.7291725 -0.236923 -0.07816028 0.8487154 -0.5230423 -0.07834357 0.6938918 -0.7158048 -0.07834243 0.948136 -0.3080595 -0.4843196 0.5067517 0.7131881 0.3136138 0.7035558 0.6376956 -0.5361933 -0.7681704 -0.3498731 -0.0410791 -0.8126712 0.581273 0.2200431 -0.7974961 -0.5617662 0.5911546 -0.8065583 -3.96748e-4 0.8234295 -0.4872642 -0.2907533 0.8504105 0.3654034 0.3785265 0.8218795 0.2825458 0.4946536 0.8230622 -0.5245881 -0.2176603 0.2877682 0.6727104 0.6816526 -0.5988255 0.6984415 0.3919024 -0.6073563 -0.4616286 -0.6465426 0.2588976 -0.7529181 -0.6050508 0.9129782 0.2289846 0.3376936 0.8143452 -0.5543822 -0.1717623 0.3789306 0.8350147 0.3989514 -0.1700236 0.9818097 -0.08450824 0.3090737 -0.7242341 -0.6164078 -0.525295 -0.3540828 -0.7737511 0.9800679 -0.1889452 0.06137436 0.9740583 -0.1330037 0.183086 0.8911957 -0.2666171 0.3669953 0.9325451 -0.1216191 0.3399536 0.9998629 0.01574778 -0.005127131 0.5324424 -0.563206 -0.6319053 0.8153456 -0.5627399 -0.1361452 2.44155e-4 0.1198191 -0.9927957 0.9523137 0.1793599 -0.2468373 0.464086 0.52067 -0.7166079 0.9027211 -0.4291275 0.03073257 0.4633772 0.8427953 -0.2738207 0.9988158 -0.04626631 0.0150457 0.10865 0.9454386 -0.30715 -0.6669279 0.3762971 -0.6431233 -0.9996034 0.01986813 -0.01995968 -0.9996351 0.02371287 -0.01293981 -0.673083 0.6931345 -0.2579225 -0.999574 0.01715141 -0.02362132 -0.8018603 0.3512144 -0.4833928 -0.9995016 0.03003078 -0.009735584 -0.7899604 0.583162 -0.189433 -0.9996646 0.02585899 -0.001477897 0.8265429 -0.1972435 0.5271832 0.843806 -0.2869453 0.4534908 0.9570789 -0.2756485 0.08954304 0.8426065 -0.3894564 0.3719384 0.6833001 -0.607032 0.4057256 0.9338954 -0.210157 0.2892634 -4.27272e-4 0.3890923 -0.9211987 3.96747e-4 0.5292608 -0.8484591 0.5407779 0.4386591 -0.7177309 0.542692 0.3376336 -0.7690832 0.5332636 0.1900436 -0.824326 0 0.2246789 -0.974433 0.8940554 -0.4080091 -0.1849148 0.9837568 -0.09299206 -0.1535422 0.9829688 0.1493009 0.1071536 0.840331 0.3991229 0.3668037 0.7323627 -0.5379266 0.4174684 0.6550334 -0.1649562 0.7373743 0.9567883 -0.06256306 0.2839755 0.7074042 -0.6994692 0.1015983 0.6824057 -0.1738669 0.7099949 -0.01333683 -0.592833 0.8052151 -0.1734714 -0.4523563 0.8748037 -0.1701418 -0.2173238 0.9611567 0.2612763 -0.2207159 0.939691 -0.2171165 -0.4548339 0.8637052 -0.231611 -0.2222721 0.9470753 -0.8469704 -0.2484267 0.470027 -0.83995 -0.1275398 0.5274637 -0.6401358 0.3593916 -0.679017 -0.6458618 0.1800978 -0.7419079 -0.07837402 0.4663378 -0.881128 -0.07809919 0.2351826 -0.9688084 -0.04104787 -0.3016793 0.9525255 0.5911619 0.2496186 0.766954 0.683294 -0.1982831 0.7027042 0.4300564 -0.530646 0.7303878 0.4300901 -0.530658 0.7303592 -0.4843465 -0.8348644 -0.2615532 0.3136136 -0.8238919 -0.4720684 -0.5361654 0.5701336 0.6224744 0.2200431 0.7807106 0.5848692 0.82341 0.4271172 0.3735864 0.8504221 -0.4728975 -0.2305433 0.8230767 0.3691012 0.4316354 0.8218889 -0.557743 -0.1158518 0.2877633 -0.8561789 -0.4291271 -0.5988467 -0.5885617 -0.5431187 -0.6073616 0.7575464 0.2392396 0.2588934 0.808115 0.5290789 0.8143414 0.3346726 0.4741754 0.9129797 -0.3919267 -0.1134091 0.3789256 -0.6374533 -0.6708717 -0.1700202 -0.2230008 -0.959877 0.3090988 0.8100416 0.4982876 -0.5252992 0.8452947 0.09766191 0.9325489 -0.2857221 0.2207158 0.5324359 0.7750321 0.3403488 0.8153627 0.3033652 0.4931058 2.13634e-4 0.9071825 -0.4207373 0.9027161 0.1033062 0.4176501 -0.6669374 0.4953581 -0.5566102 -0.6730666 0.03112936 -0.7389265 -0.9996351 0.004974484 -0.02655112 -0.9996039 0.01281815 -0.02505648 -0.9993429 0.03053706 -0.01953256 -0.9996136 0.01518839 -0.02328073 -0.9996644 -0.006585538 -0.02505499 -0.9995002 0.001422941 -0.03158354 0.8265437 -0.4404184 0.3505097 0.8437952 -0.3426392 0.4130471 0.8426128 -0.2333825 0.485321 -4.27269e-4 0.8562463 0.5165677 0.5427216 0.7251954 0.4237275 0.5407957 0.7767376 0.3228294 4.88305e-4 0.926894 0.3753232 0.5332346 0.6382823 0.5552085 0 0.7545339 0.6562611 0.8940569 -0.2213855 0.3894237 0.840319 0.1072754 -0.5313719 0.9829717 0.05783438 -0.1744188 0.9837532 0.01495432 0.178903 0.7323342 -0.6806045 -0.02154642 0.9567989 -0.2175084 -0.1929407 0.6550714 -0.5668395 -0.4995744 0.6823999 -0.5580055 -0.4721866 0.7074004 -0.6256094 0.328934 -0.01336747 -0.9529076 -0.3029662 0.2612785 -0.7309144 -0.6304743 -0.1701465 -0.7407708 -0.6498531 -0.1735 -0.8801653 -0.4418222 -0.2316102 -0.7364896 -0.6355625 -0.2171126 -0.8756527 -0.4313868 -0.8399444 -0.4132274 -0.3517622 -0.8469485 -0.4772955 -0.2342376 -0.6458547 0.5817942 0.4943556 -0.6401377 0.6898837 0.3380598 -0.07809901 0.7597182 0.6455454 -0.07831251 0.8951925 0.4387456 -0.4843506 -0.5216764 0.7023236 0.3135852 -0.3890593 0.8661971 -0.5361886 0.0953719 -0.838693 -0.04107958 -0.8039519 -0.5932739 0.2200443 0.2878277 -0.9320601 0.5911542 -0.2488219 -0.7672187 0.8234235 0.1259504 -0.5532724 0.8504143 -0.247052 0.4645005 0.8218719 -0.3831333 0.421587 0.8230713 0.04489368 -0.566161 0.2877668 -0.4404246 0.8504214 -0.5988104 -0.1568974 0.7853721 -0.607367 0.472227 -0.6388326 0.2588658 0.3427943 -0.9030396 0.9129759 -0.2503778 0.3221586 0.8143467 -0.007934987 -0.5803246 0.3789232 -0.1214044 0.9174302 -0.169933 0.3837838 0.9076524 0.3090702 0.3624488 -0.8792648 -0.5253325 0.6264436 -0.5758423 0.9740586 -0.2152231 -0.06992 0.8911824 -0.4314457 -0.1401733 0.932548 -0.3608909 -0.01059019 0.5324137 0.4269686 -0.7309129 0.815361 -0.04440593 -0.5772473 2.13632e-4 0.9812406 -0.1927872 0.9522961 0.2902392 0.09430485 0.4640192 0.8424617 0.2737603 0.9027226 -0.1618729 -0.3986091 -0.6669132 0.7279523 0.1590984 -0.9996035 0.02511745 0.0127266 -0.9996348 0.01965391 0.01855522 -0.673013 0.4595606 0.5795322 -0.9995738 0.02777183 0.009002923 -0.80189 0.5682356 0.1846101 -0.9995015 0.01855558 0.02554446 -0.9996644 0.009403347 0.02414131 0.8265388 -0.5623382 -0.02468961 0.8438082 -0.5199639 -0.1327606 0.8426081 -0.4740872 -0.2554468 0.6833288 -0.5734286 -0.4519309 0.9338959 -0.340048 -0.1104804 -5.18821e-4 0.99635 0.0853613 3.96754e-4 0.9704915 0.241135 0.5407972 0.818154 0.1953523 0.5426394 0.8358111 0.08344072 0.5332679 0.8427055 -0.07397931 0 0.9961727 -0.08740657 0.8940559 0.04977655 -0.4451815 0.9837515 0.1172847 -0.1359319 0.9829654 -0.05578923 0.1751196 0.8403334 -0.2255029 0.4929386 0.7323414 -0.5632949 -0.3825901 0.6550626 -0.7522355 0.07095694 0.9567979 -0.2893801 0.02822995 0.7074078 -0.3127927 -0.6338257 0.682388 -0.7289915 0.05401968 -0.01336747 -0.9490007 -0.3149907 -0.1734679 -0.9717742 -0.1598871 -0.1701426 -0.9812729 0.09030526 0.261276 -0.9619084 0.0804184 -0.2171118 -0.9619877 -0.1656568 -0.2316098 -0.9694105 0.08124196 -0.8469663 -0.5237994 -0.09100794 -0.8399571 -0.5410493 0.04168957 -0.6401372 0.756842 0.1319643 -0.6458438 0.7612668 -0.05795562 -0.07834327 0.9821142 0.1712138 -0.07809835 0.9940685 -0.07568734 -0.04104799 -0.9991299 0.007385551 0.5911511 -0.6522805 0.4744163 0.6832589 -0.7296172 0.02856576 0.4299893 -0.8586479 -0.2789858 0.4301594 -0.8585614 -0.2789897 -0.4843391 -0.009216785 -0.8748319 0.3136114 0.1943438 -0.9294506 -0.5361989 -0.415799 0.7345762 0.2200722 -0.3149862 0.9232291 0.8234304 -0.2233067 0.521629 0.8504078 0.07312315 -0.5210179 0.8230626 -0.2964295 0.4844561 0.8218705 -0.06213617 -0.5662757 0.2877643 0.1435312 -0.9468847 -0.5988166 0.3346732 -0.7276074 -0.6073884 0.006531 0.7943782 0.2588661 -0.2534642 0.9320646 0.8143345 -0.3475487 0.4648326 0.9129776 -0.0132147 -0.4077957 0.3789196 0.4410555 -0.8135662 -0.1700201 0.843997 -0.508687 0.3090647 -0.2235813 0.9243865 -0.5252906 0.1683115 0.8341109 0.9325466 -0.2982342 -0.2035024 0.5324388 -0.08420258 0.8422701 0.815351 -0.3752336 0.4409109 2.13634e-4 0.6805155 0.7327337 0.902727 -0.3652231 0.2273679 -0.6668993 0.682464 0.2991464 -0.6730726 0.7123814 -0.1987111 -0.999635 0.02679526 -0.003448545 -0.9996035 0.02780318 0.004455804 -0.9993428 0.02801907 0.02300131 -0.9996135 0.0268318 0.00727719 -0.9996645 0.0217868 -0.01400578 -0.9995001 0.03048127 -0.008397102 0.8265524 -0.4694468 -0.3105332 0.8438088 -0.4986919 -0.1982254 0.8426107 -0.5336931 -0.0719648 + + + + + + + + + + + + + + +

23 0 21 1 20 2 20 2 22 3 23 0 1 4 21 1 23 0 23 0 0 5 1 4 228 6 1 4 0 5 0 5 229 7 228 6 56 8 55 9 44 10 44 10 45 11 56 8 19 12 45 11 43 13 43 13 2 14 19 12 237 15 2 14 43 13 43 13 238 16 237 15 19 12 2 14 3 17 3 17 18 18 19 12 2 14 237 15 241 19 241 19 3 17 2 14 46 20 53 21 5 22 5 22 4 23 46 20 5 22 53 21 246 24 246 24 247 25 5 22 4 23 5 22 13 26 13 26 12 27 4 23 5 22 247 25 250 28 250 28 13 26 5 22 12 27 13 26 15 29 15 29 14 30 12 27 13 26 250 28 253 31 253 31 15 29 13 26 7 32 6 33 14 30 14 30 15 29 7 32 256 34 7 32 15 29 15 29 253 31 256 34 9 35 8 36 6 33 6 33 7 32 9 35 259 37 9 35 7 32 7 32 256 34 259 37 53 21 3 17 241 19 241 19 246 24 53 21 46 20 18 18 3 17 3 17 53 21 46 20 49 38 24 39 18 18 18 18 46 20 49 38 50 40 49 38 46 20 46 20 54 41 50 40 25 42 50 40 54 41 54 41 16 43 25 42 57 44 55 9 56 8 56 8 47 45 57 44 25 42 16 43 55 9 55 9 57 44 25 42 47 45 26 46 58 47 58 47 57 44 47 45 27 48 26 46 47 45 47 45 24 39 27 48 28 49 27 48 24 39 24 39 49 38 28 49 30 50 28 49 49 38 49 38 50 40 30 50 29 51 30 50 50 40 50 40 25 42 29 51 58 47 29 51 25 42 25 42 57 44 58 47 58 47 26 46 31 52 31 52 36 53 58 47 32 54 31 52 26 46 26 46 27 48 32 54 51 55 32 54 27 48 27 48 28 49 51 55 37 56 38 57 30 50 30 50 29 51 37 56 37 56 29 51 58 47 58 47 36 53 37 56 283 58 122 59 119 60 119 60 11 61 283 58 285 62 283 58 11 61 33 63 37 56 36 53 36 53 48 64 33 63 52 65 38 57 37 56 37 56 33 63 52 65 127 66 128 67 52 65 52 65 33 63 127 66 59 68 127 66 33 63 33 63 48 64 59 68 292 69 293 70 31 52 31 52 32 54 292 69 294 71 292 69 32 54 32 54 51 55 294 71 40 72 41 73 42 74 42 74 39 75 40 72 137 76 41 73 40 72 40 72 138 77 137 76 42 74 301 78 302 79 302 80 39 80 42 80 40 72 39 75 51 55 51 55 52 65 40 72 138 77 40 72 52 65 52 65 128 67 138 77 39 75 302 79 294 71 294 71 51 55 39 75 10 81 34 82 306 83 35 84 293 70 306 83 34 82 35 84 306 83 11 61 10 81 306 83 285 62 11 61 306 83 21 1 45 11 44 10 44 10 20 2 21 1 45 11 21 1 1 4 1 4 43 13 45 11 43 13 1 4 228 6 228 6 238 16 43 13 16 43 17 85 44 10 44 10 55 9 16 43 56 8 45 11 19 12 19 12 18 18 56 8 56 8 18 18 24 39 24 39 47 45 56 8 54 41 46 20 4 23 10 81 119 60 144 86 144 86 59 68 10 81 48 64 34 82 10 81 10 81 59 68 48 64 36 53 34 82 48 64 36 53 31 52 35 84 35 84 34 82 36 53 144 86 127 66 59 68 11 61 119 60 10 81 293 70 35 84 31 52 38 57 52 65 51 55 51 55 28 49 30 50 38 57 51 55 30 50 62 87 61 88 60 89 60 89 63 90 62 87 64 91 65 92 62 87 62 87 63 90 64 91 66 93 67 94 65 92 65 92 64 91 66 93 70 95 69 96 68 97 68 97 71 98 70 95 72 99 74 100 73 101 73 101 69 96 72 99 75 102 76 103 73 101 73 101 74 100 75 102 72 99 78 104 77 105 77 105 74 100 72 99 74 100 77 105 79 106 79 106 75 102 74 100 82 107 81 108 80 109 80 109 83 110 82 107 80 109 85 111 84 112 84 112 83 110 80 109 4 23 12 27 86 113 86 113 81 108 4 23 81 108 86 113 87 114 87 114 80 109 81 108 80 109 87 114 88 115 88 115 85 111 80 109 12 27 14 30 89 116 89 116 86 113 12 27 86 113 89 116 90 117 90 117 87 114 86 113 87 114 90 117 91 118 91 118 88 115 87 114 14 30 6 33 92 119 92 119 89 116 14 30 93 120 90 117 89 116 89 116 92 119 93 120 94 121 91 118 90 117 90 117 93 120 94 121 6 33 8 36 95 122 95 122 92 119 6 33 96 123 93 120 92 119 92 119 95 122 96 123 97 124 94 121 93 120 93 120 96 123 97 124 54 41 99 125 98 126 98 126 16 43 54 41 83 110 84 112 79 106 79 106 77 105 83 110 98 126 100 127 17 85 17 85 16 43 98 126 82 107 83 110 77 105 77 105 78 104 82 107 100 128 68 128 44 128 44 129 17 129 100 129 20 2 60 89 61 88 61 88 22 3 20 2 101 130 82 107 78 104 78 104 102 131 101 130 103 132 99 125 82 107 82 107 101 130 103 132 104 133 98 126 99 125 99 125 103 132 104 133 106 134 105 135 70 95 70 95 71 98 106 134 104 133 106 134 71 98 71 98 98 126 104 133 105 135 106 134 107 136 107 136 108 137 105 135 109 138 102 131 105 135 105 135 108 137 109 138 110 139 101 130 102 131 102 131 109 138 110 139 111 140 103 132 101 130 101 130 110 139 111 140 112 141 104 133 103 132 103 132 111 140 112 141 107 136 106 134 104 133 104 133 112 141 107 136 107 136 114 142 113 143 113 143 108 137 107 136 115 144 109 138 108 137 108 137 113 143 115 144 116 145 110 139 109 138 109 138 115 144 116 145 117 146 112 141 111 140 111 140 118 147 117 146 117 146 114 142 107 136 107 136 112 141 117 146 121 148 120 149 119 60 119 60 122 59 121 148 123 150 120 149 121 148 124 151 125 152 114 142 114 142 117 146 124 151 126 153 124 151 117 146 117 146 118 147 126 153 127 66 124 151 126 153 126 153 128 67 127 66 129 154 125 152 124 151 124 151 127 66 129 154 130 155 115 144 113 143 113 143 131 156 130 155 132 157 116 145 115 144 115 144 130 155 132 157 135 158 134 159 133 160 133 160 136 161 135 158 137 162 138 162 135 162 135 163 136 163 137 163 133 164 134 164 140 164 140 165 139 165 133 165 135 158 126 153 116 145 116 145 134 159 135 158 138 77 128 67 126 153 126 153 135 158 138 77 134 159 116 145 132 157 132 157 140 166 134 159 141 167 632 168 142 169 143 170 632 168 131 156 142 169 632 168 143 170 120 149 632 168 141 167 123 150 632 168 120 149 63 90 60 89 68 97 68 97 69 96 63 90 69 96 73 101 64 91 64 91 63 90 69 96 73 101 76 103 66 93 66 93 64 91 73 101 44 10 68 97 60 89 60 89 20 2 44 10 98 126 71 98 68 97 68 97 100 127 98 126 70 95 78 104 72 99 72 99 69 96 70 95 70 95 105 135 102 131 102 131 78 104 70 95 99 125 81 108 82 107 81 108 99 125 54 41 54 41 4 23 81 108 141 167 129 154 144 86 144 86 119 60 141 167 125 152 129 154 141 167 141 167 142 169 125 152 114 142 125 152 142 169 114 142 142 169 143 170 143 170 113 143 114 142 144 86 129 154 127 66 120 149 141 167 119 60 131 156 113 143 143 170 116 145 126 153 118 147 116 145 118 147 111 140 116 145 111 140 110 139 176 171 174 172 173 173 173 173 175 174 176 171 147 175 174 172 176 171 176 171 145 176 147 175 199 177 147 175 145 176 145 176 146 178 199 177 215 179 214 180 200 181 200 181 201 182 215 179 172 183 201 182 198 184 198 184 149 185 172 183 202 186 149 185 198 184 198 184 148 187 202 186 172 183 149 185 151 188 151 188 171 189 172 183 149 185 202 186 150 190 150 190 151 188 149 185 203 191 212 192 153 193 153 193 152 194 203 191 153 193 212 192 211 195 211 195 154 196 153 193 152 194 153 193 164 197 164 197 163 198 152 194 153 193 154 196 165 199 165 199 164 197 153 193 163 198 164 197 167 200 167 200 166 201 163 198 164 197 165 199 168 202 168 202 167 200 164 197 156 203 155 204 166 201 166 201 167 200 156 203 157 205 156 203 167 200 167 200 168 202 157 205 159 206 158 207 155 204 155 204 156 203 159 206 160 208 159 206 156 203 156 203 157 205 160 208 212 192 151 188 150 190 150 190 211 195 212 192 203 191 171 189 151 188 151 188 212 192 203 191 206 209 177 210 171 189 171 189 203 191 206 209 207 211 206 209 203 191 203 191 213 212 207 211 178 213 207 211 213 212 213 212 169 214 178 213 217 215 214 180 215 179 215 179 204 216 217 215 178 213 169 214 214 180 214 180 217 215 178 213 204 216 179 217 218 218 218 218 217 215 204 216 180 219 179 217 204 216 204 216 177 210 180 219 181 220 180 219 177 210 177 210 206 209 181 220 183 221 181 220 206 209 206 209 207 211 183 221 182 222 183 221 207 211 207 211 178 213 182 222 218 218 182 222 178 213 178 213 217 215 218 218 218 218 179 217 184 223 184 223 190 224 218 218 185 225 184 223 179 217 179 217 180 219 185 225 208 226 185 225 180 219 180 219 181 220 208 226 191 227 192 228 183 221 183 221 182 222 191 227 191 227 182 222 218 218 218 218 190 224 191 227 435 229 284 230 281 231 281 231 162 232 435 229 188 233 435 229 162 232 186 234 191 227 190 224 190 224 205 235 186 234 209 236 192 228 191 227 191 227 186 234 209 236 289 237 290 238 209 236 209 236 186 234 289 237 219 239 289 237 186 234 186 234 205 235 219 239 193 240 221 241 184 223 184 223 185 225 193 240 210 242 193 240 185 225 185 225 208 226 210 242 195 243 196 244 197 245 197 245 194 246 195 243 299 247 196 244 195 243 195 243 300 248 299 247 197 245 220 249 216 250 216 251 194 251 197 251 195 243 194 246 208 226 208 226 209 236 195 243 300 248 195 243 209 236 209 236 290 238 300 248 194 246 216 250 210 242 210 242 208 226 194 246 161 252 187 253 452 254 189 255 221 241 452 254 187 253 189 255 452 254 162 232 161 252 452 254 188 233 162 232 452 254 174 172 201 182 200 181 200 181 173 173 174 172 201 182 174 172 147 175 147 175 198 184 201 182 198 184 147 175 199 177 199 177 148 187 198 184 169 214 170 256 200 181 200 181 214 180 169 214 215 179 201 182 172 183 172 183 171 189 215 179 215 179 171 189 177 210 177 210 204 216 215 179 213 212 203 191 152 194 161 252 281 231 307 257 307 257 219 239 161 252 205 235 187 253 161 252 161 252 219 239 205 235 190 224 187 253 205 235 190 224 184 223 189 255 189 255 187 253 190 224 307 257 289 237 219 239 162 232 281 231 161 252 221 241 189 255 184 223 192 228 209 236 208 226 208 226 181 220 183 221 192 228 208 226 183 221 224 258 223 259 222 260 222 260 225 261 224 258 226 262 227 263 224 258 224 258 225 261 226 262 228 6 229 7 227 263 227 263 226 262 228 6 232 264 231 265 230 266 230 266 233 267 232 264 234 268 236 269 235 270 235 270 231 265 234 268 237 15 238 16 235 270 235 270 236 269 237 15 234 268 240 271 239 272 239 272 236 269 234 268 236 269 239 272 241 19 241 19 237 15 236 269 244 273 243 274 242 275 242 275 245 276 244 273 242 275 247 25 246 24 246 24 245 276 242 275 152 194 163 198 248 277 248 277 243 274 152 194 243 274 248 277 249 278 249 278 242 275 243 274 242 275 249 278 250 28 250 28 247 25 242 275 163 198 166 201 251 279 251 279 248 277 163 198 248 277 251 279 252 280 252 280 249 278 248 277 249 278 252 280 253 31 253 31 250 28 249 278 166 201 155 204 254 281 254 281 251 279 166 201 255 282 252 280 251 279 251 279 254 281 255 282 256 34 253 31 252 280 252 280 255 282 256 34 155 204 158 207 257 283 257 283 254 281 155 204 258 284 255 282 254 281 254 281 257 283 258 284 259 37 256 34 255 282 255 282 258 284 259 37 213 212 261 285 260 286 260 286 169 214 213 212 245 276 246 24 241 19 241 19 239 272 245 276 260 286 262 287 170 256 170 256 169 214 260 286 244 273 245 276 239 272 239 272 240 271 244 273 262 288 230 288 200 288 200 289 170 289 262 289 173 173 222 260 223 259 223 259 175 174 173 173 263 290 244 273 240 271 240 271 264 291 263 290 265 292 261 285 244 273 244 273 263 290 265 292 266 293 260 286 261 285 261 285 265 292 266 293 268 294 267 295 232 264 232 264 233 267 268 294 266 293 268 294 233 267 233 267 260 286 266 293 267 295 268 294 269 296 269 296 270 297 267 295 271 298 264 291 267 295 267 295 270 297 271 298 272 299 263 290 264 291 264 291 271 298 272 299 273 300 265 292 263 290 263 290 272 299 273 300 274 301 266 293 265 292 265 292 273 300 274 301 269 296 268 294 266 293 266 293 274 301 269 296 269 296 276 302 275 303 275 303 270 297 269 296 277 304 271 298 270 297 270 297 275 303 277 304 278 305 272 299 271 298 271 298 277 304 278 305 279 306 274 301 273 300 273 300 280 307 279 306 279 306 276 302 269 296 269 296 274 301 279 306 283 58 282 308 281 231 281 231 284 230 283 58 285 62 282 308 283 58 286 309 287 310 276 302 276 302 279 306 286 309 288 311 286 309 279 306 279 306 280 307 288 311 289 237 286 309 288 311 288 311 290 238 289 237 291 312 287 310 286 309 286 309 289 237 291 312 292 69 277 304 275 303 275 303 293 70 292 69 294 71 278 305 277 304 277 304 292 69 294 71 297 313 296 314 295 315 295 315 298 316 297 313 299 317 300 317 297 317 297 318 298 318 299 318 295 319 296 319 302 319 302 320 301 320 295 320 297 313 288 311 278 305 278 305 296 314 297 313 300 248 290 238 288 311 288 311 297 313 300 248 296 314 278 305 294 71 294 71 302 79 296 314 303 321 306 83 304 322 305 323 306 83 293 70 304 322 306 83 305 323 282 308 306 83 303 321 285 62 306 83 282 308 225 261 222 260 230 266 230 266 231 265 225 261 231 265 235 270 226 262 226 262 225 261 231 265 235 270 238 16 228 6 228 6 226 262 235 270 200 181 230 266 222 260 222 260 173 173 200 181 260 286 233 267 230 266 230 266 262 287 260 286 232 264 240 271 234 268 234 268 231 265 232 264 232 264 267 295 264 291 264 291 240 271 232 264 261 285 243 274 244 273 243 274 261 285 213 212 213 212 152 194 243 274 303 321 291 312 307 257 307 257 281 231 303 321 287 310 291 312 303 321 303 321 304 322 287 310 276 302 287 310 304 322 276 302 304 322 305 323 305 323 275 303 276 302 307 257 291 312 289 237 282 308 303 321 281 231 293 70 275 303 305 323 278 305 288 311 280 307 278 305 280 307 273 300 278 305 273 300 272 299 339 324 337 325 336 326 336 326 338 327 339 324 310 328 337 325 339 324 339 324 308 329 310 328 362 330 310 328 308 329 308 329 309 331 362 330 378 332 377 333 363 334 363 334 364 335 378 332 335 336 364 335 361 337 361 337 312 338 335 336 365 339 312 338 361 337 361 337 311 340 365 339 335 336 312 338 314 341 314 341 334 342 335 336 312 338 365 339 313 343 313 343 314 341 312 338 366 344 375 345 316 346 316 346 315 347 366 344 316 346 375 345 374 348 374 348 317 349 316 346 315 347 316 346 327 350 327 350 326 351 315 347 316 346 317 349 328 352 328 352 327 350 316 346 326 351 327 350 330 353 330 353 329 354 326 351 327 350 328 352 331 355 331 355 330 353 327 350 319 356 318 357 329 354 329 354 330 353 319 356 320 358 319 356 330 353 330 353 331 355 320 358 322 359 321 360 318 357 318 357 319 356 322 359 323 361 322 359 319 356 319 356 320 358 323 361 375 345 314 341 313 343 313 343 374 348 375 345 366 344 334 342 314 341 314 341 375 345 366 344 369 362 340 363 334 342 334 342 366 344 369 362 370 364 369 362 366 344 366 344 376 365 370 364 341 366 370 364 376 365 376 365 332 367 341 366 380 368 377 333 378 332 378 332 367 369 380 368 341 366 332 367 377 333 377 333 380 368 341 366 367 369 342 370 381 371 381 371 380 368 367 369 343 372 342 370 367 369 367 369 340 363 343 372 344 373 343 372 340 363 340 363 369 362 344 373 346 374 344 373 369 362 369 362 370 364 346 374 345 375 346 374 370 364 370 364 341 366 345 375 381 371 345 375 341 366 341 366 380 368 381 371 381 371 342 370 347 376 347 376 353 377 381 371 348 378 347 376 342 370 342 370 343 372 348 378 371 379 348 378 343 372 343 372 344 373 371 379 354 380 355 381 346 374 346 374 345 375 354 380 354 380 345 375 381 371 381 371 353 377 354 380 564 382 436 383 433 384 433 384 325 385 564 382 351 386 564 382 325 385 349 387 354 380 353 377 353 377 368 388 349 387 372 389 355 381 354 380 354 380 349 387 372 389 440 390 441 391 372 389 372 389 349 387 440 390 382 392 440 390 349 387 349 387 368 388 382 392 356 393 384 394 347 376 347 376 348 378 356 393 373 395 356 393 348 378 348 378 371 379 373 395 358 396 359 397 360 398 360 398 357 399 358 396 447 400 359 397 358 396 358 396 448 401 447 400 360 398 383 402 379 403 379 404 357 404 360 404 358 396 357 399 371 379 371 379 372 389 358 396 448 401 358 396 372 389 372 389 441 391 448 401 357 399 379 403 373 395 373 395 371 379 357 399 324 405 350 406 581 407 352 408 384 394 581 407 350 406 352 408 581 407 325 385 324 405 581 407 351 386 325 385 581 407 337 325 364 335 363 334 363 334 336 326 337 325 364 335 337 325 310 328 310 328 361 337 364 335 361 337 310 328 362 330 362 330 311 340 361 337 332 367 333 409 363 334 363 334 377 333 332 367 378 332 364 335 335 336 335 336 334 342 378 332 378 332 334 342 340 363 340 363 367 369 378 332 376 365 366 344 315 347 324 405 433 384 453 410 453 410 382 392 324 405 368 388 350 406 324 405 324 405 382 392 368 388 353 377 350 406 368 388 353 377 347 376 352 408 352 408 350 406 353 377 453 410 440 390 382 392 325 385 433 384 324 405 384 394 352 408 347 376 355 381 372 389 371 379 371 379 344 373 346 374 355 381 371 379 346 374 387 411 386 412 385 413 385 413 388 414 387 411 389 415 390 416 387 411 387 411 388 414 389 415 199 177 146 178 390 416 390 416 389 415 199 177 393 417 392 418 391 419 391 419 394 420 393 417 395 421 397 422 396 423 396 423 392 418 395 421 202 186 148 187 396 423 396 423 397 422 202 186 395 421 399 424 398 425 398 425 397 422 395 421 397 422 398 425 150 190 150 190 202 186 397 422 402 426 401 427 400 428 400 428 403 429 402 426 400 428 154 196 211 195 211 195 403 429 400 428 315 347 326 351 404 430 404 430 401 427 315 347 401 427 404 430 405 431 405 431 400 428 401 427 400 428 405 431 165 199 165 199 154 196 400 428 326 351 329 354 406 432 406 432 404 430 326 351 404 430 406 432 407 433 407 433 405 431 404 430 405 431 407 433 168 202 168 202 165 199 405 431 329 354 318 357 408 434 408 434 406 432 329 354 409 435 407 433 406 432 406 432 408 434 409 435 157 205 168 202 407 433 407 433 409 435 157 205 318 357 321 360 410 436 410 436 408 434 318 357 411 437 409 435 408 434 408 434 410 436 411 437 160 208 157 205 409 435 409 435 411 437 160 208 376 365 413 438 412 439 412 439 332 367 376 365 403 429 211 195 150 190 150 190 398 425 403 429 412 439 414 440 333 409 333 409 332 367 412 439 402 426 403 429 398 425 398 425 399 424 402 426 414 441 391 441 363 441 363 442 333 442 414 442 336 326 385 413 386 412 386 412 338 327 336 326 415 443 402 426 399 424 399 424 416 444 415 443 417 445 413 438 402 426 402 426 415 443 417 445 418 446 412 439 413 438 413 438 417 445 418 446 420 447 419 448 393 417 393 417 394 420 420 447 418 446 420 447 394 420 394 420 412 439 418 446 419 448 420 447 421 449 421 449 422 450 419 448 423 451 416 444 419 448 419 448 422 450 423 451 424 452 415 443 416 444 416 444 423 451 424 452 425 453 417 445 415 443 415 443 424 452 425 453 426 454 418 446 417 445 417 445 425 453 426 454 421 449 420 447 418 446 418 446 426 454 421 449 421 449 428 455 427 456 427 456 422 450 421 449 429 457 423 451 422 450 422 450 427 456 429 457 430 458 424 452 423 451 423 451 429 457 430 458 431 459 426 454 425 453 425 453 432 460 431 459 431 459 428 455 421 449 421 449 426 454 431 459 435 229 434 461 433 384 433 384 436 383 435 229 188 233 434 461 435 229 437 462 438 463 428 455 428 455 431 459 437 462 439 464 437 462 431 459 431 459 432 460 439 464 440 390 437 462 439 464 439 464 441 391 440 390 442 465 438 463 437 462 437 462 440 390 442 465 193 240 429 457 427 456 427 456 221 241 193 240 210 242 430 458 429 457 429 457 193 240 210 242 445 466 444 467 443 468 443 468 446 469 445 466 447 470 448 470 445 470 445 471 446 471 447 471 443 472 444 472 216 472 216 473 220 473 443 473 445 466 439 464 430 458 430 458 444 467 445 466 448 401 441 391 439 464 439 464 445 466 448 401 444 467 430 458 210 242 210 242 216 250 444 467 449 474 452 254 450 475 451 476 452 254 221 241 450 475 452 254 451 476 434 461 452 254 449 474 188 233 452 254 434 461 388 414 385 413 391 419 391 419 392 418 388 414 392 418 396 423 389 415 389 415 388 414 392 418 396 423 148 187 199 177 199 177 389 415 396 423 363 334 391 419 385 413 385 413 336 326 363 334 412 439 394 420 391 419 391 419 414 440 412 439 393 417 399 424 395 421 395 421 392 418 393 417 393 417 419 448 416 444 416 444 399 424 393 417 413 438 401 427 402 426 401 427 413 438 376 365 376 365 315 347 401 427 449 474 442 465 453 410 453 410 433 384 449 474 438 463 442 465 449 474 449 474 450 475 438 463 428 455 438 463 450 475 428 455 450 475 451 476 451 476 427 456 428 455 453 410 442 465 440 390 434 461 449 474 433 384 221 241 427 456 451 476 430 458 439 464 432 460 430 458 432 460 425 453 430 458 425 453 424 452 477 477 475 478 474 479 474 479 476 480 477 477 455 481 475 478 477 477 477 477 454 482 455 481 650 483 455 481 454 482 454 482 651 484 650 483 510 485 509 486 498 487 498 487 499 488 510 485 473 489 499 488 497 490 497 490 456 491 473 489 659 492 456 491 497 490 497 490 660 493 659 492 473 489 456 491 457 494 457 494 472 495 473 489 456 491 659 492 663 496 663 496 457 494 456 491 500 497 507 498 459 499 459 499 458 500 500 497 459 499 507 498 668 501 668 501 669 502 459 499 458 500 459 499 467 503 467 503 466 504 458 500 459 499 669 502 672 505 672 505 467 503 459 499 466 504 467 503 469 506 469 506 468 507 466 504 467 503 672 505 675 508 675 508 469 506 467 503 461 509 460 510 468 507 468 507 469 506 461 509 678 511 461 509 469 506 469 506 675 508 678 511 463 512 462 513 460 510 460 510 461 509 463 512 681 514 463 512 461 509 461 509 678 511 681 514 507 498 457 494 663 496 663 496 668 501 507 498 500 497 472 495 457 494 457 494 507 498 500 497 503 515 478 516 472 495 472 495 500 497 503 515 504 517 503 515 500 497 500 497 508 518 504 517 479 519 504 517 508 518 508 518 470 520 479 519 511 521 509 486 510 485 510 485 501 522 511 521 479 519 470 520 509 486 509 486 511 521 479 519 501 522 480 523 512 524 512 524 511 521 501 522 481 525 480 523 501 522 501 522 478 516 481 525 482 526 481 525 478 516 478 516 503 515 482 526 484 527 482 526 503 515 503 515 504 517 484 527 483 528 484 527 504 517 504 517 479 519 483 528 512 524 483 528 479 519 479 519 511 521 512 524 512 524 480 523 485 529 485 529 490 530 512 524 486 531 485 529 480 523 480 523 481 525 486 531 505 532 486 531 481 525 481 525 482 526 505 532 491 533 492 534 484 527 484 527 483 528 491 533 491 533 483 528 512 524 512 524 490 530 491 533 705 535 565 536 562 537 562 537 465 538 705 535 707 539 705 535 465 538 487 540 491 533 490 530 490 530 502 541 487 540 506 542 492 534 491 533 491 533 487 540 506 542 569 543 570 544 506 542 506 542 487 540 569 543 513 545 569 543 487 540 487 540 502 541 513 545 714 546 715 547 485 529 485 529 486 531 714 546 716 548 714 546 486 531 486 531 505 532 716 548 494 549 495 550 496 551 496 551 493 552 494 549 576 553 495 550 494 549 494 549 577 554 576 553 496 551 723 555 724 556 724 557 493 557 496 557 494 549 493 552 505 532 505 532 506 542 494 549 577 554 494 549 506 542 506 542 570 544 577 554 493 552 724 556 716 548 716 548 505 532 493 552 464 558 488 559 728 560 489 561 715 547 728 560 488 559 489 561 728 560 465 538 464 558 728 560 707 539 465 538 728 560 475 478 499 488 498 487 498 487 474 479 475 478 499 488 475 478 455 481 455 481 497 490 499 488 497 490 455 481 650 483 650 483 660 493 497 490 470 520 471 562 498 487 498 487 509 486 470 520 510 485 499 488 473 489 473 489 472 495 510 485 510 485 472 495 478 516 478 516 501 522 510 485 508 518 500 497 458 500 464 558 562 537 582 563 582 563 513 545 464 558 502 541 488 559 464 558 464 558 513 545 502 541 490 530 488 559 502 541 490 530 485 529 489 561 489 561 488 559 490 530 582 563 569 543 513 545 465 538 562 537 464 558 715 547 489 561 485 529 492 534 506 542 505 532 505 532 482 526 484 527 492 534 505 532 484 527 516 564 515 565 514 566 514 566 517 567 516 564 518 568 519 569 516 564 516 564 517 567 518 568 362 330 309 331 519 569 519 569 518 568 362 330 522 570 521 571 520 572 520 572 523 573 522 570 524 574 526 575 525 576 525 576 521 571 524 574 365 339 311 340 525 576 525 576 526 575 365 339 524 574 528 577 527 578 527 578 526 575 524 574 526 575 527 578 313 343 313 343 365 339 526 575 531 579 530 580 529 581 529 581 532 582 531 579 529 581 317 349 374 348 374 348 532 582 529 581 458 500 466 504 533 583 533 583 530 580 458 500 530 580 533 583 534 584 534 584 529 581 530 580 529 581 534 584 328 352 328 352 317 349 529 581 466 504 468 507 535 585 535 585 533 583 466 504 533 583 535 585 536 586 536 586 534 584 533 583 534 584 536 586 331 355 331 355 328 352 534 584 468 507 460 510 537 587 537 587 535 585 468 507 538 588 536 586 535 585 535 585 537 587 538 588 320 358 331 355 536 586 536 586 538 588 320 358 460 510 462 513 539 589 539 589 537 587 460 510 540 590 538 588 537 587 537 587 539 589 540 590 323 361 320 358 538 588 538 588 540 590 323 361 508 518 542 591 541 592 541 592 470 520 508 518 532 582 374 348 313 343 313 343 527 578 532 582 541 592 543 593 471 562 471 562 470 520 541 592 531 579 532 582 527 578 527 578 528 577 531 579 543 594 520 594 498 594 498 595 471 595 543 595 474 479 514 566 515 565 515 565 476 480 474 479 544 596 531 579 528 577 528 577 545 597 544 596 546 598 542 591 531 579 531 579 544 596 546 598 547 599 541 592 542 591 542 591 546 598 547 599 549 600 548 601 522 570 522 570 523 573 549 600 547 599 549 600 523 573 523 573 541 592 547 599 548 601 549 600 550 602 550 602 551 603 548 601 552 604 545 597 548 601 548 601 551 603 552 604 553 605 544 596 545 597 545 597 552 604 553 605 554 606 546 598 544 596 544 596 553 605 554 606 555 607 547 599 546 598 546 598 554 606 555 607 550 602 549 600 547 599 547 599 555 607 550 602 550 602 557 608 556 609 556 609 551 603 550 602 558 610 552 604 551 603 551 603 556 609 558 610 559 611 553 605 552 604 552 604 558 610 559 611 560 612 555 607 554 606 554 606 561 613 560 612 560 612 557 608 550 602 550 602 555 607 560 612 564 382 563 614 562 537 562 537 565 536 564 382 351 386 563 614 564 382 566 615 567 616 557 608 557 608 560 612 566 615 568 617 566 615 560 612 560 612 561 613 568 617 569 543 566 615 568 617 568 617 570 544 569 543 571 618 567 616 566 615 566 615 569 543 571 618 356 393 558 610 556 609 556 609 384 394 356 393 373 395 559 611 558 610 558 610 356 393 373 395 574 619 573 620 572 621 572 621 575 622 574 619 576 623 577 623 574 623 574 624 575 624 576 624 572 625 573 625 379 625 379 626 383 626 572 626 574 619 568 617 559 611 559 611 573 620 574 619 577 554 570 544 568 617 568 617 574 619 577 554 573 620 559 611 373 395 373 395 379 403 573 620 578 627 581 407 579 628 580 629 581 407 384 394 579 628 581 407 580 629 563 614 581 407 578 627 351 386 581 407 563 614 517 567 514 566 520 572 520 572 521 571 517 567 521 571 525 576 518 568 518 568 517 567 521 571 525 576 311 340 362 330 362 330 518 568 525 576 498 487 520 572 514 566 514 566 474 479 498 487 541 592 523 573 520 572 520 572 543 593 541 592 522 570 528 577 524 574 524 574 521 571 522 570 522 570 548 601 545 597 545 597 528 577 522 570 542 591 530 580 531 579 530 580 542 591 508 518 508 518 458 500 530 580 578 627 571 618 582 563 582 563 562 537 578 627 567 616 571 618 578 627 578 627 579 628 567 616 557 608 567 616 579 628 557 608 579 628 580 629 580 629 556 609 557 608 582 563 571 618 569 543 563 614 578 627 562 537 384 394 556 609 580 629 559 611 568 617 561 613 559 611 561 613 554 606 559 611 554 606 553 605 606 630 604 631 603 632 603 632 605 633 606 630 584 634 604 631 606 630 606 630 583 635 584 634 66 93 584 634 583 635 583 635 67 94 66 93 640 636 639 637 627 638 627 638 628 639 640 636 602 640 628 639 626 641 626 641 585 642 602 640 75 102 585 642 626 641 626 641 76 103 75 102 602 640 585 642 586 643 586 643 601 644 602 640 585 642 75 102 79 106 79 106 586 643 585 642 629 645 637 646 588 647 588 647 587 648 629 645 588 647 637 646 84 112 84 112 85 111 588 647 587 648 588 647 596 649 596 649 595 650 587 648 588 647 85 111 88 115 88 115 596 649 588 647 595 650 596 649 598 651 598 651 597 652 595 650 596 649 88 115 91 118 91 118 598 651 596 649 590 653 589 654 597 652 597 652 598 651 590 653 94 121 590 653 598 651 598 651 91 118 94 121 592 655 591 656 589 654 589 654 590 653 592 655 97 124 592 655 590 653 590 653 94 121 97 124 637 646 586 643 79 106 79 106 84 112 637 646 629 645 601 644 586 643 586 643 637 646 629 645 633 657 607 658 601 644 601 644 629 645 633 657 634 659 633 657 629 645 629 645 638 660 634 659 608 661 634 659 638 660 638 660 599 662 608 661 641 663 639 637 640 636 640 636 630 664 641 663 608 661 599 662 639 637 639 637 641 663 608 661 630 664 609 665 642 666 642 666 641 663 630 664 610 667 609 665 630 664 630 664 607 658 610 667 611 668 610 667 607 658 607 658 633 657 611 668 613 669 611 668 633 657 633 657 634 659 613 669 612 670 613 669 634 659 634 659 608 661 612 670 642 666 612 670 608 661 608 661 641 663 642 666 642 666 609 665 614 671 614 671 619 672 642 666 615 673 614 671 609 665 609 665 610 667 615 673 635 674 615 673 610 667 610 667 611 668 635 674 620 675 621 676 613 669 613 669 612 670 620 675 620 675 612 670 642 666 642 666 619 672 620 675 121 148 706 677 703 678 703 678 594 679 121 148 123 150 121 148 594 679 616 680 620 675 619 672 619 672 631 681 616 680 636 682 621 676 620 675 620 675 616 680 636 682 711 683 712 684 636 682 636 682 616 680 711 683 643 685 711 683 616 680 616 680 631 681 643 685 130 155 131 156 614 671 614 671 615 673 130 155 132 157 130 155 615 673 615 673 635 674 132 157 623 686 624 687 625 688 625 688 622 689 623 686 721 690 624 687 623 686 623 686 722 691 721 690 625 688 139 692 140 166 140 693 622 693 625 693 623 686 622 689 635 674 635 674 636 682 623 686 722 691 623 686 636 682 636 682 712 684 722 691 622 689 140 166 132 157 132 157 635 674 622 689 593 694 617 695 632 168 618 696 131 156 632 168 617 695 618 696 632 168 594 679 593 694 632 168 123 150 594 679 632 168 604 631 628 639 627 638 627 638 603 632 604 631 628 639 604 631 584 634 584 634 626 641 628 639 626 641 584 634 66 93 66 93 76 103 626 641 599 662 600 697 627 638 627 638 639 637 599 662 640 636 628 639 602 640 602 640 601 644 640 636 640 636 601 644 607 658 607 658 630 664 640 636 638 660 629 645 587 648 593 694 703 678 729 698 729 698 643 685 593 694 631 681 617 695 593 694 593 694 643 685 631 681 619 672 617 695 631 681 619 672 614 671 618 696 618 696 617 695 619 672 729 698 711 683 643 685 594 679 703 678 593 694 131 156 618 696 614 671 621 676 636 682 635 674 635 674 611 668 613 669 621 676 635 674 613 669 646 699 645 700 644 701 644 701 647 702 646 699 648 703 649 704 646 699 646 699 647 702 648 703 650 483 651 484 649 704 649 704 648 703 650 483 654 705 653 706 652 707 652 707 655 708 654 705 656 709 658 710 657 711 657 711 653 706 656 709 659 492 660 493 657 711 657 711 658 710 659 492 656 709 662 712 661 713 661 713 658 710 656 709 658 710 661 713 663 496 663 496 659 492 658 710 666 714 665 715 664 716 664 716 667 717 666 714 664 716 669 502 668 501 668 501 667 717 664 716 587 648 595 650 670 718 670 718 665 715 587 648 665 715 670 718 671 719 671 719 664 716 665 715 664 716 671 719 672 505 672 505 669 502 664 716 595 650 597 652 673 720 673 720 670 718 595 650 670 718 673 720 674 721 674 721 671 719 670 718 671 719 674 721 675 508 675 508 672 505 671 719 597 652 589 654 676 722 676 722 673 720 597 652 677 723 674 721 673 720 673 720 676 722 677 723 678 511 675 508 674 721 674 721 677 723 678 511 589 654 591 656 679 724 679 724 676 722 589 654 680 725 677 723 676 722 676 722 679 724 680 725 681 514 678 511 677 723 677 723 680 725 681 514 638 660 683 726 682 727 682 727 599 662 638 660 667 717 668 501 663 496 663 496 661 713 667 717 682 727 684 728 600 697 600 697 599 662 682 727 666 714 667 717 661 713 661 713 662 712 666 714 684 729 652 729 627 729 627 730 600 730 684 730 603 632 644 701 645 700 645 700 605 633 603 632 685 731 666 714 662 712 662 712 686 732 685 731 687 733 683 726 666 714 666 714 685 731 687 733 688 734 682 727 683 726 683 726 687 733 688 734 690 735 689 736 654 705 654 705 655 708 690 735 688 734 690 735 655 708 655 708 682 727 688 734 689 736 690 735 691 737 691 737 692 738 689 736 693 739 686 732 689 736 689 736 692 738 693 739 694 740 685 731 686 732 686 732 693 739 694 740 695 741 687 733 685 731 685 731 694 740 695 741 696 742 688 734 687 733 687 733 695 741 696 742 691 737 690 735 688 734 688 734 696 742 691 737 691 737 698 743 697 744 697 744 692 738 691 737 699 745 693 739 692 738 692 738 697 744 699 745 700 746 694 740 693 739 693 739 699 745 700 746 701 747 696 742 695 741 695 741 702 748 701 747 701 747 698 743 691 737 691 737 696 742 701 747 705 535 704 749 703 678 703 678 706 677 705 535 707 539 704 749 705 535 708 750 709 751 698 743 698 743 701 747 708 750 710 752 708 750 701 747 701 747 702 748 710 752 711 683 708 750 710 752 710 752 712 684 711 683 713 753 709 751 708 750 708 750 711 683 713 753 714 546 699 745 697 744 697 744 715 547 714 546 716 548 700 746 699 745 699 745 714 546 716 548 719 754 718 755 717 756 717 756 720 757 719 754 721 758 722 758 719 758 719 759 720 759 721 759 717 760 718 760 724 760 724 761 723 761 717 761 719 754 710 752 700 746 700 746 718 755 719 754 722 691 712 684 710 752 710 752 719 754 722 691 718 755 700 746 716 548 716 548 724 556 718 755 725 762 728 560 726 763 727 764 728 560 715 547 726 763 728 560 727 764 704 749 728 560 725 762 707 539 728 560 704 749 647 702 644 701 652 707 652 707 653 706 647 702 653 706 657 711 648 703 648 703 647 702 653 706 657 711 660 493 650 483 650 483 648 703 657 711 627 638 652 707 644 701 644 701 603 632 627 638 682 727 655 708 652 707 652 707 684 728 682 727 654 705 662 712 656 709 656 709 653 706 654 705 654 705 689 736 686 732 686 732 662 712 654 705 683 726 665 715 666 714 665 715 683 726 638 660 638 660 587 648 665 715 725 762 713 753 729 698 729 698 703 678 725 762 709 751 713 753 725 762 725 762 726 763 709 751 698 743 709 751 726 763 698 743 726 763 727 764 727 764 697 744 698 743 729 698 713 753 711 683 704 749 725 762 703 678 715 547 697 744 727 764 700 746 710 752 702 748 700 746 702 748 695 741 700 746 695 741 694 740 122 59 283 58 284 230 284 230 435 229 436 383 122 59 284 230 436 383 436 383 564 382 565 536 122 59 436 383 565 536 565 536 705 535 706 677 122 59 565 536 706 677 122 59 706 677 121 148

+
+
+
+ + + + 62.49788 -134.1563 20.68826 60.72117 -134.1564 22.86202 59.86926 -134.157 26.53403 60.32532 -134.1572 29.27875 61.80408 -134.1571 31.36776 64.25143 -134.1571 32.00262 81.31433 -134.1571 31.90955 83.59616 -134.1571 31.1216 85.17128 -134.1574 28.83968 85.69026 -134.1572 25.31404 84.68814 -134.1565 22.58813 82.75508 -134.1563 20.86562 62.49788 -139.8027 19.99527 60.72116 -140.3654 22.09497 59.86926 -141.3164 25.64166 60.32532 -142.0271 28.29278 61.80408 -142.5676 30.31064 64.25143 -142.7318 30.92385 81.31433 -142.7078 30.83401 83.59616 -142.5038 30.07289 85.17131 -141.9136 27.8686 85.69026 -141.0008 24.46322 84.68814 -140.2946 21.83036 82.75508 -139.8486 20.16663 62.49788 -145.0773 17.86446 60.72117 -146.1643 19.74698 59.86926 -148.0009 22.92668 60.32532 -149.3734 25.30354 61.80408 -150.4178 27.11271 64.25143 -150.7352 27.66255 81.31433 -150.6887 27.58197 83.59616 -150.2947 26.89955 85.17128 -149.154 24.92322 85.69026 -147.391 21.87003 84.68814 -146.0275 19.5097 82.75508 -145.166 18.01808 62.49788 -149.6207 14.4411 60.72116 -151.158 15.97814 59.86926 -153.7549 18.57417 60.32532 -155.6958 20.51474 61.80408 -157.1729 21.99201 64.25143 -157.6218 22.44093 81.31433 -157.556 22.37514 83.59616 -156.9988 21.81801 85.17128 -155.3855 20.20417 85.69028 -152.8923 17.71133 84.68814 -150.9644 15.78439 82.75508 -149.7462 14.56652 62.49788 -153.1234 9.95846 60.72116 -155.006 11.0453 59.86926 -158.1864 12.88067 60.32532 -160.5635 14.25285 61.80408 -162.3724 15.29741 64.25143 -162.9223 15.61493 81.31433 -162.8417 15.56835 83.59616 -162.1593 15.17434 85.17128 -160.1833 14.03308 85.69026 -157.1299 12.27054 84.68814 -154.7689 10.90818 82.75508 -153.277 10.04718 62.49788 -155.3465 4.722032 60.72117 -157.4462 5.284574 59.86926 -160.9932 6.234258 60.32532 -163.6445 6.94436 61.80408 -165.6621 7.485265 64.25143 -166.2754 7.649564 81.31433 -166.1855 7.625505 83.59616 -165.4244 7.421518 85.17128 -163.2204 6.830598 85.69026 -159.8148 5.918351 84.68814 -157.1816 5.213552 82.75508 -155.5177 4.767957 62.49788 -156.1384 -0.9112997 60.72117 -158.3122 -0.9114407 59.86926 -161.9841 -0.9121271 60.32532 -164.7289 -0.9123826 61.80408 -166.8179 -0.9122147 64.25143 -167.4527 -0.9122147 81.31433 -167.3597 -0.9122147 83.59616 -166.5717 -0.9122147 85.17128 -164.2898 -0.9125543 85.69028 -160.7641 -0.9122836 84.68814 -158.0383 -0.9115513 82.75508 -156.3158 -0.9112997 62.49788 -155.4454 -6.557763 60.72117 -157.5452 -7.120492 59.86926 -161.0918 -8.071504 60.32532 -163.7429 -8.782185 61.80408 -165.7607 -9.32269 64.25143 -166.3739 -9.486989 81.31433 -166.2841 -9.462922 83.59616 -165.523 -9.258944 85.17131 -163.3187 -8.668671 85.69026 -159.9133 -7.755898 84.68814 -157.2805 -7.049682 82.75508 -155.6168 -6.603604 62.49788 -153.3147 -11.83237 60.72117 -155.1971 -12.91938 59.86926 -158.3768 -14.75602 60.32532 -160.7536 -16.12856 61.80408 -162.5628 -17.17292 64.25143 -163.1127 -17.49035 81.31433 -163.032 -17.44386 83.59616 -162.3497 -17.04984 85.17128 -160.3733 -15.90917 85.69026 -157.3202 -14.14616 84.68814 -154.9598 -12.78253 82.75508 -153.4683 -11.9211 62.49788 -149.8913 -16.37582 60.72116 -151.4283 -17.91306 59.86926 -154.0243 -20.50998 60.32532 -155.9648 -22.45099 61.80408 -157.4421 -23.92802 64.25143 -157.891 -24.37695 81.31433 -157.8252 -24.31116 83.59616 -157.2681 -23.75394 85.17128 -155.6543 -22.14066 85.69026 -153.1616 -19.64744 84.68814 -151.2346 -17.71942 82.75508 -150.0168 -16.50124 62.49788 -145.4087 -19.87843 60.72117 -146.4955 -21.76108 59.86926 -148.3308 -24.94147 60.32532 -149.703 -27.31859 61.80408 -150.7475 -29.12758 64.25143 -151.065 -29.67743 81.31433 -151.0184 -29.59685 83.59616 -150.6244 -28.91443 85.17128 -149.4833 -26.93843 85.69026 -147.7207 -23.88497 84.68814 -146.3583 -21.52391 82.75508 -145.4974 -20.03204 62.49788 -140.1722 -22.10152 60.72117 -140.7348 -24.20121 59.86926 -141.6844 -27.74833 60.32532 -142.3945 -30.39959 61.80408 -142.9353 -32.41727 64.25143 -143.0997 -33.03057 81.31433 -143.0756 -32.94064 83.59616 -142.8716 -32.17952 85.17128 -142.2807 -29.9755 85.69026 -141.3685 -26.56989 84.68814 -140.6637 -23.93669 82.75508 -140.2181 -22.27279 62.49788 -134.5389 -22.8935 60.72117 -134.5387 -25.06726 59.86926 -134.538 -28.73927 60.32532 -134.5377 -31.48398 61.80408 -134.5379 -33.57299 64.25143 -134.5379 -34.20784 81.31433 -134.5379 -34.11479 83.59616 -134.5379 -33.32684 85.17128 -134.5376 -31.04491 85.69026 -134.5378 -27.51935 84.68814 -134.5386 -24.79337 82.75508 -134.5389 -23.07086 62.49788 -128.8924 -22.2005 60.72117 -128.3297 -24.30021 59.86926 -127.3786 -27.8469 60.32532 -126.6679 -30.49801 61.80408 -126.1274 -32.51587 64.25143 -125.9631 -33.12909 81.31433 -125.9872 -33.03923 83.59616 -126.1912 -32.27811 85.17128 -126.7814 -30.07383 85.69026 -127.6942 -26.66846 84.68814 -128.4005 -24.03559 82.75508 -128.8466 -22.37186 62.49788 -123.6178 -20.0697 60.72116 -122.5308 -21.95222 59.86926 -120.6941 -25.13191 60.32532 -119.3215 -27.50878 61.80408 -118.2772 -29.31794 64.25143 -117.9598 -29.86779 81.31433 -118.0062 -29.7872 83.59616 -118.4003 -29.10479 85.17128 -119.5409 -27.12845 85.69026 -121.304 -24.07535 84.68814 -122.6676 -21.71493 82.75508 -123.5291 -20.22331 62.49788 -119.0744 -16.64642 60.72117 -117.5371 -18.18338 59.86926 -114.94 -20.77941 60.32532 -112.9991 -22.72006 61.80408 -111.522 -24.19724 64.25143 -111.0731 -24.64616 81.31433 -111.1389 -24.58037 83.59616 -111.6961 -24.02324 85.17128 -113.3094 -22.4094 85.69026 -115.8026 -19.91666 84.68814 -117.7308 -17.98962 82.75508 -118.9489 -16.77176 62.49788 -115.5717 -12.16378 60.72117 -113.6891 -13.25054 59.86926 -110.5086 -15.08591 60.32532 -108.1315 -16.45809 61.80408 -106.3225 -17.50264 64.25143 -105.7727 -17.82016 81.31433 -105.8533 -17.77359 83.59616 -106.5357 -17.37966 85.17128 -108.5117 -16.2384 85.69026 -111.5652 -14.47577 84.68814 -113.9263 -13.11346 82.75508 -115.4182 -12.25241 62.49788 -113.3487 -6.927265 60.72117 -111.249 -7.489807 59.86926 -107.7018 -8.439495 60.32532 -105.0505 -9.149681 61.80408 -103.0328 -9.690501 64.25143 -102.4195 -9.8548 81.31433 -102.5095 -9.830735 83.59616 -103.2706 -9.626754 85.17128 -105.4746 -9.035835 85.69026 -108.8802 -8.123588 84.68814 -111.5135 -7.418782 82.75508 -113.1774 -6.973191 62.49788 -112.5567 -1.293939 60.72117 -110.3829 -1.293794 59.86926 -106.7108 -1.293107 60.32532 -103.9661 -1.292852 61.80408 -101.8771 -1.293016 64.25143 -101.2422 -1.293016 81.31433 -101.3353 -1.293016 83.59616 -102.1232 -1.293016 85.17128 -104.4052 -1.29268 85.69026 -107.9308 -1.292955 84.68814 -110.6568 -1.293683 82.75508 -112.3793 -1.293939 62.49788 -113.2497 4.352531 60.72117 -111.1499 4.91526 59.86926 -107.6032 5.866271 60.32532 -104.9521 6.576952 61.80408 -102.9342 7.117454 64.25143 -102.321 7.281753 81.31433 -102.4109 7.25769 83.59616 -103.172 7.05371 85.17128 -105.3763 6.463439 85.69026 -108.7816 5.550666 84.68814 -111.4146 4.844451 82.75508 -113.0783 4.398368 62.49788 -115.3805 9.62714 60.72117 -113.498 10.71414 59.86925 -110.3182 12.5508 60.32532 -107.9413 13.92333 61.80408 -106.1321 14.96768 64.25143 -105.5823 15.28511 81.31433 -105.6629 15.23863 83.59616 -106.3453 14.84461 85.17128 -108.3216 13.70394 85.69026 -111.3748 11.94093 84.68814 -113.7352 10.5773 82.75508 -115.2269 9.715863 62.49788 -118.8039 14.17058 60.72116 -117.2668 15.70782 59.86926 -114.6707 18.30475 60.32531 -112.73 20.24576 61.80408 -111.2529 21.72279 64.25143 -110.8039 22.17171 81.31433 -110.8697 22.10592 83.59616 -111.4268 21.5487 85.17128 -113.0407 19.93543 85.69026 -115.5335 17.44221 84.68814 -117.4606 15.51419 82.75508 -118.6784 14.29601 62.49788 -123.2865 17.67319 60.72116 -122.1996 19.55585 59.86926 -120.3642 22.73623 60.32531 -118.992 25.11336 61.80408 -117.9474 26.92235 64.25143 -117.6299 27.4722 81.31433 -117.6765 27.39161 83.59616 -118.0705 26.7092 85.17128 -119.2118 24.7332 85.69026 -120.9743 21.67974 84.68814 -122.3368 19.31867 82.75508 -123.1978 17.8268 62.49788 -128.5229 19.89628 60.72117 -127.9603 21.99597 59.86926 -127.0106 25.5431 60.32532 -126.3004 28.19436 61.80408 -125.7596 30.21204 64.25143 -125.5953 30.82534 81.31433 -125.6193 30.73541 83.59616 -125.8234 29.97429 85.17128 -126.4143 27.77026 85.69026 -127.3265 24.36466 84.68814 -128.0314 21.73141 82.75508 -128.477 20.06755 + + + + + + + + + + -0.9049705 -0.003357052 -0.425461 -0.7743591 -0.005737543 -0.6327204 -0.7743634 0.1582115 -0.6126422 -0.9049784 0.1068468 -0.4118227 -0.9998808 -3.05186e-5 -0.01544237 -0.9998809 0.003936886 -0.01492357 -0.9181732 0.002533078 0.396171 -0.9181659 -0.100072 0.3833499 -0.5552006 0.004852473 0.8317024 -0.5551763 -0.2105525 0.804641 -0.1225339 0.00564599 0.9924483 -0.122534 -0.2513855 0.9600993 0.165965 0.005615532 0.9861156 0.1659942 -0.2497696 0.9539712 0.5926582 0.004730522 0.8054402 0.5926592 -0.2038706 0.7792252 0.9239035 0.00250256 0.3826174 0.9239056 -0.09659302 0.3702275 0.9965955 0.02081388 -0.07977646 0.9965966 -5.18822e-4 -0.08243167 0.8361278 -0.00439471 -0.5485172 0.8361316 0.1376716 -0.5309712 0.6651575 -0.006683588 -0.7466732 0.6651436 0.1867797 -0.7229781 -0.7743663 0.3113884 -0.5508124 -0.9049804 0.2097877 -0.3701347 -0.999881 0.00766015 -0.01339763 -0.9181707 -0.1958723 0.3443789 -0.5552079 -0.4116449 0.7226981 -0.1225355 -0.491302 0.8623268 0.1659938 -0.4881544 0.8568263 0.5926645 -0.398589 0.6999112 0.9239096 -0.1891278 0.3325989 0.9965968 0.04074281 -0.07165849 0.8361341 0.2704305 -0.4772285 0.6651632 0.3675107 -0.6499952 -0.7743747 0.4433283 -0.4514465 -0.9049835 0.2984465 -0.3032075 -0.999881 0.01086461 -0.01095616 -0.9181725 -0.2783358 0.2819371 -0.5552121 -0.5846635 0.5915305 -0.1225334 -0.6977537 0.7057801 0.1659638 -0.6933065 0.701272 0.592653 -0.5661624 0.5729071 0.9239035 -0.2687813 0.2723215 0.9965963 0.05792492 -0.0586574 0.8361343 0.3847249 -0.3909813 0.6651697 0.5232241 -0.5327156 -0.7743634 0.5450727 -0.3213365 -0.9049718 0.3667741 -0.2156453 -0.999881 0.01333659 -0.007751703 -0.9181638 -0.3418432 0.2002961 -0.5552108 -0.7178493 0.4200399 -0.1225659 -0.8566492 0.5011287 0.1659924 -0.851173 0.4979469 0.5926535 -0.6951677 0.4068217 0.9239096 -0.3300963 0.1934615 0.996596 0.07113963 -0.04165834 0.8361422 0.4728078 -0.278063 0.6651637 0.6432815 -0.3791387 -0.7743597 0.6096789 -0.1692891 -0.9049776 0.4100828 -0.1133472 -0.999881 0.01489305 -0.004028439 -0.9181644 -0.382037 0.1049854 -0.5552039 -0.8021036 0.2199513 -0.1225333 -0.9571641 0.2623404 0.1659911 -0.9510537 0.2606601 0.59265 -0.7767717 0.2130537 0.9238993 -0.3689432 0.1014449 0.9965959 0.0795018 -0.02182102 0.8361315 0.5286822 -0.1462169 0.6651663 0.7194905 -0.1997177 -0.7743591 0.6327204 -0.005737543 -0.9049707 0.425461 -0.003357052 -0.9998808 0.01544237 -3.05186e-5 -0.9181732 -0.396171 0.002533078 -0.5551795 -0.8317164 0.004852592 -0.1225038 -0.992452 0.00564599 0.1659947 -0.9861108 0.005615532 0.5926583 -0.8054403 0.004730522 0.9239036 -0.3826175 0.002472043 0.9965941 0.08246201 -5.18821e-4 0.8361278 0.5485172 -0.00439471 0.6651575 0.7466732 -0.006683588 -0.7743672 0.6126452 0.1581817 -0.9049784 0.4118227 0.1068468 -0.9998809 0.01492357 0.003936886 -0.9181659 -0.3833499 -0.100072 -0.5551763 -0.804641 -0.2105525 -0.122534 -0.9600993 -0.2513855 0.1659942 -0.9539712 -0.2497696 0.5926592 -0.7792252 -0.2038706 0.9239056 -0.3702275 -0.09659302 0.9965955 0.07977646 0.02081388 0.8361316 0.5309712 0.1376716 0.6651436 0.7229781 0.1867797 -0.7743532 0.5508337 0.3113832 -0.9049692 0.3701425 0.2098227 -0.999881 0.01339763 0.00766015 -0.9181707 -0.3443789 -0.1958723 -0.5552079 -0.7226981 -0.4116449 -0.1225355 -0.8623268 -0.491302 0.1659642 -0.8568307 -0.4881569 0.5926519 -0.6999267 -0.3985804 0.9239096 -0.3325989 -0.1891278 0.9965968 0.07165849 0.04074281 0.8361341 0.4772285 0.2704305 0.6651331 0.6500261 0.3675109 -0.7743641 0.4514708 0.4433222 -0.9049751 0.3032351 0.2984437 -0.999881 0.01095616 0.01086461 -0.9181725 -0.2819371 -0.2783358 -0.5552121 -0.5915305 -0.5846635 -0.1225334 -0.7057801 -0.6977537 0.1659638 -0.701272 -0.6933065 0.592653 -0.5729071 -0.5661624 0.9239035 -0.2723215 -0.2687813 0.9965963 0.0586574 0.05792492 0.8361343 0.3909813 0.3847249 0.6651591 0.5327072 0.5232463 -0.7743634 0.3213365 0.5450727 -0.9049718 0.2156453 0.3667741 -0.999881 0.007751703 0.01333659 -0.9181638 -0.2002961 -0.3418432 -0.5552108 -0.4200399 -0.7178493 -0.1225358 -0.5011305 -0.8566524 0.1659924 -0.4979469 -0.851173 0.5926535 -0.4068217 -0.6951677 0.9239096 -0.1934615 -0.3300963 0.996596 0.04165834 0.07113963 0.8361352 0.2780911 0.4728038 0.6651468 0.3791464 0.6432946 -0.7743597 0.1692891 0.6096789 -0.9049776 0.1133472 0.4100828 -0.999881 0.004028439 0.01489305 -0.9181644 -0.1049854 -0.382037 -0.5552039 -0.2199513 -0.8021036 -0.1225333 -0.2623404 -0.9571641 0.1659911 -0.2606601 -0.9510537 0.59265 -0.2130537 -0.7767717 0.9239096 -0.101446 -0.3689168 0.9965959 0.02182102 0.0795018 0.8361315 0.1462169 0.5286822 0.6651663 0.1997177 0.7194905 -0.7743591 0.005737543 0.6327204 -0.9049705 0.003357052 0.425461 -0.9998808 3.05186e-5 0.01544237 -0.9181732 -0.002533078 -0.396171 -0.5552006 -0.004852473 -0.8317024 -0.1225339 -0.00564599 -0.9924483 0.165965 -0.005615532 -0.9861156 0.5926582 -0.004730522 -0.8054402 0.9239036 -0.002472043 -0.3826175 0.9965966 5.18822e-4 0.08243167 0.8361278 0.00439471 0.5485172 0.6651575 0.006683588 0.7466732 -0.7743634 -0.1582115 0.6126422 -0.9049784 -0.1068468 0.4118227 -0.9998809 -0.003936886 0.01492357 -0.9181659 0.100072 -0.3833499 -0.5551974 0.2105489 -0.8046273 -0.122534 0.2513855 -0.9600993 0.1659942 0.2497696 -0.9539712 0.5926592 0.2038706 -0.7792252 0.9239056 0.09659302 -0.3702275 0.9965955 -0.02081388 0.07977646 0.8361316 -0.1376716 0.5309712 0.6651644 -0.1867465 0.7229676 -0.7743663 -0.3113884 0.5508124 -0.9049804 -0.2097877 0.3701347 -0.999881 -0.00766015 0.01339763 -0.9181707 0.1958723 -0.3443789 -0.5552079 0.4116449 -0.7226981 -0.1225355 0.491302 -0.8623268 0.1659938 0.4881544 -0.8568263 0.5926645 0.398589 -0.6999112 0.9239096 0.1891278 -0.3325989 0.9965968 -0.04074281 0.07165849 0.8361411 -0.2704023 0.4772325 0.6651632 -0.3675107 0.6499952 -0.7743641 -0.4433222 0.4514708 -0.9049835 -0.2984465 0.3032075 -0.999881 -0.01086461 0.01095616 -0.9181725 0.2783358 -0.2819371 -0.5552121 0.5846635 -0.5915305 -0.1225334 0.6977537 -0.7057801 0.1659638 0.6933065 -0.701272 0.592653 0.5661624 -0.5729071 0.9239035 0.2687813 -0.2723215 0.996598 -0.05789452 0.05865746 0.8361343 -0.3847249 0.3909813 0.6651591 -0.5232462 0.5327071 -0.7743634 -0.5450727 0.3213365 -0.9049718 -0.3667741 0.2156453 -0.999881 -0.01333659 0.007751703 -0.9181734 0.3418163 -0.2002982 -0.5552108 0.7178493 -0.4200399 -0.1225358 0.8566524 -0.5011305 0.1659653 0.8511903 -0.4979265 0.5926535 0.6951677 -0.4068217 0.9239096 0.3300963 -0.1934615 0.996596 -0.07113963 0.04165834 0.8361422 -0.4728078 0.278063 0.6651637 -0.6432815 0.3791387 -0.7743597 -0.6096789 0.1692891 -0.9049776 -0.4100828 0.1133472 -0.999881 -0.01489305 0.004028439 -0.9181644 0.382037 -0.1049854 -0.5552039 0.8021036 -0.2199513 -0.1225333 0.9571641 -0.2623404 0.1659911 0.9510537 -0.2606601 0.59265 0.7767717 -0.2130537 0.9239097 0.3689169 -0.101446 0.9965959 -0.0795018 0.02182102 0.836145 -0.5286602 0.1462193 0.6651663 -0.7194905 0.1997177 -0.7743591 -0.6327204 0.005737543 -0.9049707 -0.425461 0.003357052 -0.9998808 -0.01544237 3.05186e-5 -0.9181732 0.396171 -0.002533078 -0.5552006 0.8317024 -0.004852473 -0.1225339 0.9924483 -0.00564599 0.165965 0.9861155 -0.005646049 0.5926583 0.8054403 -0.004730522 0.9239144 0.3825914 -0.002472043 0.9965966 -0.08243167 5.18822e-4 0.8361278 -0.5485172 0.00439471 0.6651575 -0.7466732 0.006683588 -0.7743672 -0.6126452 -0.1581817 -0.9049784 -0.4118227 -0.1068468 -0.9998809 -0.01492357 -0.003936886 -0.9181766 0.3833239 0.1000732 -0.5551974 0.8046273 0.2105489 -0.122534 0.9600993 0.2513855 0.1659646 0.9539761 0.2497709 0.5926592 0.7792252 0.2038706 0.9239056 0.3702275 0.09659302 0.996598 -0.07974612 -0.02081394 0.8361316 -0.5309712 -0.1376716 0.6651436 -0.7229781 -0.1867797 -0.7743663 -0.5508124 -0.3113884 -0.9049746 -0.3701323 -0.2098169 -0.999881 -0.01339763 -0.00766015 -0.9181707 0.3443789 0.1958723 -0.5552079 0.7226981 0.4116449 -0.1225355 0.8623268 0.491302 0.1659938 0.8568263 0.4881544 0.5926519 0.6999267 0.3985804 0.9239096 0.3325989 0.1891278 0.9965968 -0.07165849 -0.04074281 0.8361411 -0.4772325 -0.2704023 0.6651764 -0.6499776 -0.367518 -0.7743747 -0.4514465 -0.4433283 -0.9049835 -0.3032075 -0.2984465 -0.999881 -0.01095616 -0.01086461 -0.9181725 0.2819371 0.2783358 -0.5552121 0.5915305 0.5846635 -0.1225334 0.7057801 0.6977537 0.1659638 0.701272 0.6933065 0.592653 0.5729071 0.5661624 0.9239112 0.2722933 0.2687836 0.9965963 -0.0586574 -0.05792492 0.8361343 -0.3909813 -0.3847249 0.6651697 -0.5327156 -0.5232241 -0.7743634 -0.3213365 -0.5450727 -0.904982 -0.2156477 -0.3667477 -0.999881 -0.007751703 -0.01333659 -0.9181734 0.2002982 0.3418163 -0.5552108 0.4200399 0.7178493 -0.1225358 0.5011305 0.8566524 0.1659924 0.4979469 0.851173 0.5926535 0.4068217 0.6951677 0.9239096 0.1934615 0.3300963 0.9965983 -0.0416584 -0.07110929 0.8361422 -0.278063 -0.4728078 0.6651637 -0.3791387 -0.6432815 -0.7743597 -0.1692891 -0.6096789 -0.9049776 -0.1133472 -0.4100828 -0.999881 -0.004028439 -0.01489305 -0.9181644 0.1049854 0.382037 -0.5552039 0.2199513 0.8021036 -0.1225333 0.2623404 0.9571641 0.1659911 0.2606601 0.9510537 0.59265 0.2130537 0.7767717 0.9239096 0.101446 0.3689168 0.9965959 -0.02182102 -0.0795018 0.8361315 -0.1462169 -0.5286822 0.6651663 -0.1997177 -0.7194905 + + + + + + + + + + 0.911053 0.451604 0.911053 0.478703 0.842382 0.478703 0.842382 0.478703 0.842382 0.451604 0.911053 0.451604 0.911053 0.4146401 0.911053 0.451604 0.842382 0.451604 0.842382 0.451604 0.842382 0.4146401 0.911053 0.4146401 0.911053 0.386596 0.911053 0.4146401 0.842382 0.4146401 0.842382 0.4146401 0.842382 0.386596 0.911053 0.386596 0.911053 0.36095 0.911053 0.386596 0.842382 0.386596 0.842382 0.386596 0.842382 0.36095 0.911053 0.36095 0.911053 0.335286 0.911053 0.36095 0.842382 0.36095 0.842382 0.36095 0.842382 0.335286 0.911053 0.335286 0.911053 0.163189 0.911053 0.335286 0.842382 0.335286 0.842382 0.335286 0.842382 0.163189 0.911053 0.163189 0.911053 0.138749 0.911053 0.163189 0.842382 0.163189 0.842382 0.163189 0.842382 0.138749 0.911053 0.138749 0.911053 0.112012 0.911053 0.138749 0.842382 0.138749 0.842382 0.138749 0.842382 0.112012 0.911053 0.112012 0.842382 0.07736504 0.911053 0.07736504 0.911053 0.112012 0.911053 0.112012 0.842382 0.112012 0.842382 0.07736504 0.911053 0.04728651 0.911053 0.07736504 0.842382 0.07736504 0.842382 0.07736504 0.842382 0.04728651 0.911053 0.04728651 0.911053 0.02071702 0.911053 0.04728651 0.842382 0.04728651 0.842382 0.04728651 0.842382 0.02071702 0.911053 0.02071702 0.842382 0.451604 0.842382 0.478703 0.770435 0.478703 0.770435 0.478703 0.770435 0.451604 0.842382 0.451604 0.842382 0.4146401 0.842382 0.451604 0.770435 0.451604 0.770435 0.451604 0.770435 0.4146401 0.842382 0.4146401 0.842382 0.386596 0.842382 0.4146401 0.770435 0.4146401 0.770435 0.4146401 0.770435 0.386596 0.842382 0.386596 0.842382 0.36095 0.842382 0.386596 0.770435 0.386596 0.770435 0.386596 0.770435 0.36095 0.842382 0.36095 0.842382 0.335286 0.842382 0.36095 0.770435 0.36095 0.770435 0.36095 0.770435 0.335286 0.842382 0.335286 0.842382 0.163189 0.842382 0.335286 0.770435 0.335286 0.770435 0.335286 0.770435 0.163189 0.842382 0.163189 0.842382 0.138749 0.842382 0.163189 0.770435 0.163189 0.770435 0.163189 0.770435 0.138749 0.842382 0.138749 0.842382 0.112012 0.842382 0.138749 0.770435 0.138749 0.770435 0.138749 0.770435 0.112012 0.842382 0.112012 0.770435 0.07736504 0.842382 0.07736504 0.842382 0.112012 0.842382 0.112012 0.770435 0.112012 0.770435 0.07736504 0.842382 0.04728651 0.842382 0.07736504 0.770435 0.07736504 0.770435 0.07736504 0.770435 0.04728651 0.842382 0.04728651 0.842382 0.02071702 0.842382 0.04728651 0.770435 0.04728651 0.770435 0.04728651 0.770435 0.02071702 0.842382 0.02071702 0.770435 0.451604 0.770435 0.478703 0.697898 0.478703 0.697898 0.478703 0.697898 0.451604 0.770435 0.451604 0.770435 0.4146401 0.770435 0.451604 0.697898 0.451604 0.697898 0.451604 0.697898 0.4146401 0.770435 0.4146401 0.770435 0.386596 0.770435 0.4146401 0.697898 0.4146401 0.697898 0.4146401 0.697898 0.386596 0.770435 0.386596 0.770435 0.36095 0.770435 0.386596 0.697898 0.386596 0.697898 0.386596 0.697898 0.36095 0.770435 0.36095 0.770435 0.335286 0.770435 0.36095 0.697898 0.36095 0.697898 0.36095 0.697898 0.335286 0.770435 0.335286 0.770435 0.163189 0.770435 0.335286 0.697898 0.335286 0.697898 0.335286 0.697898 0.163189 0.770435 0.163189 0.770435 0.138749 0.770435 0.163189 0.697898 0.163189 0.697898 0.163189 0.697898 0.138749 0.770435 0.138749 0.770435 0.112012 0.770435 0.138749 0.697898 0.138749 0.697898 0.138749 0.697898 0.112012 0.770435 0.112012 0.697898 0.07736504 0.770435 0.07736504 0.770435 0.112012 0.770435 0.112012 0.697898 0.112012 0.697898 0.07736504 0.770435 0.04728651 0.770435 0.07736504 0.697898 0.07736504 0.697898 0.07736504 0.697898 0.04728651 0.770435 0.04728651 0.770435 0.02071702 0.770435 0.04728651 0.697898 0.04728651 0.697898 0.04728651 0.697898 0.02071702 0.770435 0.02071702 0.697898 0.451604 0.697898 0.478703 0.625215 0.478703 0.625215 0.478703 0.625215 0.451604 0.697898 0.451604 0.697898 0.4146401 0.697898 0.451604 0.625215 0.451604 0.625215 0.451604 0.625215 0.4146401 0.697898 0.4146401 0.697898 0.386596 0.697898 0.4146401 0.625215 0.4146401 0.625215 0.4146401 0.625215 0.386596 0.697898 0.386596 0.697898 0.36095 0.697898 0.386596 0.625215 0.386596 0.625215 0.386596 0.625215 0.36095 0.697898 0.36095 0.697898 0.335286 0.697898 0.36095 0.625215 0.36095 0.625215 0.36095 0.625215 0.335286 0.697898 0.335286 0.697898 0.163189 0.697898 0.335286 0.625215 0.335286 0.625215 0.335286 0.625215 0.163189 0.697898 0.163189 0.697898 0.138749 0.697898 0.163189 0.625215 0.163189 0.625215 0.163189 0.625215 0.138749 0.697898 0.138749 0.697898 0.112012 0.697898 0.138749 0.625215 0.138749 0.625215 0.138749 0.625215 0.112012 0.697898 0.112012 0.625215 0.07736504 0.697898 0.07736504 0.697898 0.112012 0.697898 0.112012 0.625215 0.112012 0.625215 0.07736504 0.697898 0.04728651 0.697898 0.07736504 0.625215 0.07736504 0.625215 0.07736504 0.625215 0.04728651 0.697898 0.04728651 0.697898 0.02071702 0.697898 0.04728651 0.625215 0.04728651 0.625215 0.04728651 0.625215 0.02071702 0.697898 0.02071702 0.625215 0.451604 0.625215 0.478703 0.552513 0.478703 0.552513 0.478703 0.552513 0.451604 0.625215 0.451604 0.625215 0.4146401 0.625215 0.451604 0.552513 0.451604 0.552513 0.451604 0.552513 0.4146401 0.625215 0.4146401 0.625215 0.386596 0.625215 0.4146401 0.552513 0.4146401 0.552513 0.4146401 0.552513 0.386596 0.625215 0.386596 0.625215 0.36095 0.625215 0.386596 0.552513 0.386596 0.552513 0.386596 0.552513 0.36095 0.625215 0.36095 0.625215 0.335286 0.625215 0.36095 0.552513 0.36095 0.552513 0.36095 0.552513 0.335286 0.625215 0.335286 0.625215 0.163189 0.625215 0.335286 0.552513 0.335286 0.552513 0.335286 0.552513 0.163189 0.625215 0.163189 0.625215 0.138749 0.625215 0.163189 0.552513 0.163189 0.552513 0.163189 0.552513 0.138749 0.625215 0.138749 0.625215 0.112012 0.625215 0.138749 0.552513 0.138749 0.552513 0.138749 0.552513 0.112012 0.625215 0.112012 0.552513 0.07736504 0.625215 0.07736504 0.625215 0.112012 0.625215 0.112012 0.552513 0.112012 0.552513 0.07736504 0.625215 0.04728651 0.625215 0.07736504 0.552513 0.07736504 0.552513 0.07736504 0.552513 0.04728651 0.625215 0.04728651 0.625215 0.02071702 0.625215 0.04728651 0.552513 0.04728651 0.552513 0.04728651 0.552513 0.02071702 0.625215 0.02071702 0.552513 0.451604 0.552513 0.478703 0.479792 0.478703 0.479792 0.478703 0.479792 0.451604 0.552513 0.451604 0.552513 0.4146401 0.552513 0.451604 0.479792 0.451604 0.479792 0.451604 0.479792 0.4146401 0.552513 0.4146401 0.552513 0.386596 0.552513 0.4146401 0.479792 0.4146401 0.479792 0.4146401 0.479792 0.386596 0.552513 0.386596 0.552513 0.36095 0.552513 0.386596 0.479792 0.386596 0.479792 0.386596 0.479792 0.36095 0.552513 0.36095 0.552513 0.335286 0.552513 0.36095 0.479792 0.36095 0.479792 0.36095 0.479792 0.335286 0.552513 0.335286 0.552513 0.163189 0.552513 0.335286 0.479792 0.335286 0.479792 0.335286 0.479792 0.163189 0.552513 0.163189 0.552513 0.138749 0.552513 0.163189 0.479792 0.163189 0.479792 0.163189 0.479792 0.138749 0.552513 0.138749 0.552513 0.112012 0.552513 0.138749 0.479792 0.138749 0.479792 0.138749 0.479792 0.112012 0.552513 0.112012 0.479792 0.07736504 0.552513 0.07736504 0.552513 0.112012 0.552513 0.112012 0.479792 0.112012 0.479792 0.07736504 0.552513 0.04728651 0.552513 0.07736504 0.479792 0.07736504 0.479792 0.07736504 0.479792 0.04728651 0.552513 0.04728651 0.552513 0.02071702 0.552513 0.04728651 0.479792 0.04728651 0.479792 0.04728651 0.479792 0.02071702 0.552513 0.02071702 0.479792 0.451604 0.479792 0.478703 0.407064 0.478703 0.407064 0.478703 0.407064 0.451604 0.479792 0.451604 0.479792 0.4146401 0.479792 0.451604 0.407064 0.451604 0.407064 0.451604 0.407064 0.4146401 0.479792 0.4146401 0.479792 0.386596 0.479792 0.4146401 0.407064 0.4146401 0.407064 0.4146401 0.407064 0.386596 0.479792 0.386596 0.479792 0.36095 0.479792 0.386596 0.407064 0.386596 0.407064 0.386596 0.407064 0.36095 0.479792 0.36095 0.479792 0.335286 0.479792 0.36095 0.407064 0.36095 0.407064 0.36095 0.407064 0.335286 0.479792 0.335286 0.479792 0.163189 0.479792 0.335286 0.407064 0.335286 0.407064 0.335286 0.407064 0.163189 0.479792 0.163189 0.479792 0.138749 0.479792 0.163189 0.407064 0.163189 0.407064 0.163189 0.407064 0.138749 0.479792 0.138749 0.479792 0.112012 0.479792 0.138749 0.407064 0.138749 0.407064 0.138749 0.407064 0.112012 0.479792 0.112012 0.407064 0.07736504 0.479792 0.07736504 0.479792 0.112012 0.479792 0.112012 0.407064 0.112012 0.407064 0.07736504 0.479792 0.04728651 0.479792 0.07736504 0.407064 0.07736504 0.407064 0.07736504 0.407064 0.04728651 0.479792 0.04728651 0.479792 0.02071702 0.479792 0.04728651 0.407064 0.04728651 0.407064 0.04728651 0.407064 0.02071702 0.479792 0.02071702 0.407064 0.451604 0.407064 0.478703 0.334337 0.478703 0.334337 0.478703 0.334337 0.451604 0.407064 0.451604 0.407064 0.4146401 0.407064 0.451604 0.334337 0.451604 0.334337 0.451604 0.334337 0.4146401 0.407064 0.4146401 0.407064 0.386596 0.407064 0.4146401 0.334337 0.4146401 0.334337 0.4146401 0.334337 0.386596 0.407064 0.386596 0.407064 0.36095 0.407064 0.386596 0.334337 0.386596 0.334337 0.386596 0.334337 0.36095 0.407064 0.36095 0.407064 0.335286 0.407064 0.36095 0.334337 0.36095 0.334337 0.36095 0.334337 0.335286 0.407064 0.335286 0.407064 0.163189 0.407064 0.335286 0.334337 0.335286 0.334337 0.335286 0.334337 0.163189 0.407064 0.163189 0.407064 0.138749 0.407064 0.163189 0.334337 0.163189 0.334337 0.163189 0.334337 0.138749 0.407064 0.138749 0.407064 0.112012 0.407064 0.138749 0.334337 0.138749 0.334337 0.138749 0.334337 0.112012 0.407064 0.112012 0.334337 0.07736504 0.407064 0.07736504 0.407064 0.112012 0.407064 0.112012 0.334337 0.112012 0.334337 0.07736504 0.407064 0.04728651 0.407064 0.07736504 0.334337 0.07736504 0.334337 0.07736504 0.334337 0.04728651 0.407064 0.04728651 0.407064 0.02071702 0.407064 0.04728651 0.334337 0.04728651 0.334337 0.04728651 0.334337 0.02071702 0.407064 0.02071702 0.334337 0.451604 0.334337 0.478703 0.261647 0.478703 0.261647 0.478703 0.261647 0.451604 0.334337 0.451604 0.334337 0.4146401 0.334337 0.451604 0.261647 0.451604 0.261647 0.451604 0.261647 0.4146401 0.334337 0.4146401 0.334337 0.386596 0.334337 0.4146401 0.261647 0.4146401 0.261647 0.4146401 0.261647 0.386596 0.334337 0.386596 0.334337 0.36095 0.334337 0.386596 0.261647 0.386596 0.261647 0.386596 0.261647 0.36095 0.334337 0.36095 0.334337 0.335286 0.334337 0.36095 0.261647 0.36095 0.261647 0.36095 0.261647 0.335286 0.334337 0.335286 0.334337 0.163189 0.334337 0.335286 0.261647 0.335286 0.261647 0.335286 0.261647 0.163189 0.334337 0.163189 0.334337 0.138749 0.334337 0.163189 0.261647 0.163189 0.261647 0.163189 0.261647 0.138749 0.334337 0.138749 0.334337 0.112012 0.334337 0.138749 0.261647 0.138749 0.261647 0.138749 0.261647 0.112012 0.334337 0.112012 0.261647 0.07736504 0.334337 0.07736504 0.334337 0.112012 0.334337 0.112012 0.261647 0.112012 0.261647 0.07736504 0.334337 0.04728651 0.334337 0.07736504 0.261647 0.07736504 0.261647 0.07736504 0.261647 0.04728651 0.334337 0.04728651 0.334337 0.02071702 0.334337 0.04728651 0.261647 0.04728651 0.261647 0.04728651 0.261647 0.02071702 0.334337 0.02071702 0.261647 0.451604 0.261647 0.478703 0.1890529 0.478703 0.1890529 0.478703 0.1890529 0.451604 0.261647 0.451604 0.261647 0.4146401 0.261647 0.451604 0.1890529 0.451604 0.1890529 0.451604 0.1890529 0.4146401 0.261647 0.4146401 0.261647 0.386596 0.261647 0.4146401 0.1890529 0.4146401 0.1890529 0.4146401 0.1890529 0.386596 0.261647 0.386596 0.261647 0.36095 0.261647 0.386596 0.1890529 0.386596 0.1890529 0.386596 0.1890529 0.36095 0.261647 0.36095 0.261647 0.335286 0.261647 0.36095 0.1890529 0.36095 0.1890529 0.36095 0.1890529 0.335286 0.261647 0.335286 0.261647 0.163189 0.261647 0.335286 0.1890529 0.335286 0.1890529 0.335286 0.1890529 0.163189 0.261647 0.163189 0.261647 0.138749 0.261647 0.163189 0.1890529 0.163189 0.1890529 0.163189 0.1890529 0.138749 0.261647 0.138749 0.261647 0.112012 0.261647 0.138749 0.1890529 0.138749 0.1890529 0.138749 0.1890529 0.112012 0.261647 0.112012 0.1890529 0.07736504 0.261647 0.07736504 0.261647 0.112012 0.261647 0.112012 0.1890529 0.112012 0.1890529 0.07736504 0.261647 0.04728651 0.261647 0.07736504 0.1890529 0.07736504 0.1890529 0.07736504 0.1890529 0.04728651 0.261647 0.04728651 0.261647 0.02071702 0.261647 0.04728651 0.1890529 0.04728651 0.1890529 0.04728651 0.1890529 0.02071702 0.261647 0.02071702 0.1890529 0.451604 0.1890529 0.478703 0.117094 0.478703 0.117094 0.478703 0.117094 0.451604 0.1890529 0.451604 0.1890529 0.4146401 0.1890529 0.451604 0.117094 0.451604 0.117094 0.451604 0.117094 0.4146401 0.1890529 0.4146401 0.1890529 0.386596 0.1890529 0.4146401 0.117094 0.4146401 0.117094 0.4146401 0.117094 0.386596 0.1890529 0.386596 0.1890529 0.36095 0.1890529 0.386596 0.117094 0.386596 0.117094 0.386596 0.117094 0.36095 0.1890529 0.36095 0.1890529 0.335286 0.1890529 0.36095 0.117094 0.36095 0.117094 0.36095 0.117094 0.335286 0.1890529 0.335286 0.1890529 0.163189 0.1890529 0.335286 0.117094 0.335286 0.117094 0.335286 0.117094 0.163189 0.1890529 0.163189 0.1890529 0.138749 0.1890529 0.163189 0.117094 0.163189 0.117094 0.163189 0.117094 0.138749 0.1890529 0.138749 0.1890529 0.112012 0.1890529 0.138749 0.117094 0.138749 0.117094 0.138749 0.117094 0.112012 0.1890529 0.112012 0.117094 0.07736504 0.1890529 0.07736504 0.1890529 0.112012 0.1890529 0.112012 0.117094 0.112012 0.117094 0.07736504 0.1890529 0.04728651 0.1890529 0.07736504 0.117094 0.07736504 0.117094 0.07736504 0.117094 0.04728651 0.1890529 0.04728651 0.1890529 0.02071702 0.1890529 0.04728651 0.117094 0.04728651 0.117094 0.04728651 0.117094 0.02071702 0.1890529 0.02071702 0.117094 0.451604 0.117094 0.478703 0.04833996 0.478703 0.04833996 0.478703 0.04833996 0.451604 0.117094 0.451604 0.117094 0.4146401 0.117094 0.451604 0.04833996 0.451604 0.04833996 0.451604 0.04833996 0.4146401 0.117094 0.4146401 0.117094 0.386596 0.117094 0.4146401 0.04833996 0.4146401 0.04833996 0.4146401 0.04833996 0.386596 0.117094 0.386596 0.117094 0.36095 0.117094 0.386596 0.04833996 0.386596 0.04833996 0.386596 0.04833996 0.36095 0.117094 0.36095 0.117094 0.335286 0.117094 0.36095 0.04833996 0.36095 0.04833996 0.36095 0.04833996 0.335286 0.117094 0.335286 0.117094 0.163189 0.117094 0.335286 0.04833996 0.335286 0.04833996 0.335286 0.04833996 0.163189 0.117094 0.163189 0.117094 0.138749 0.117094 0.163189 0.04833996 0.163189 0.04833996 0.163189 0.04833996 0.138749 0.117094 0.138749 0.117094 0.112012 0.117094 0.138749 0.04833996 0.138749 0.04833996 0.138749 0.04833996 0.112012 0.117094 0.112012 0.04833996 0.07736504 0.117094 0.07736504 0.117094 0.112012 0.117094 0.112012 0.04833996 0.112012 0.04833996 0.07736504 0.117094 0.04728651 0.117094 0.07736504 0.04833996 0.07736504 0.04833996 0.07736504 0.04833996 0.04728651 0.117094 0.04728651 0.117094 0.02071702 0.117094 0.04728651 0.04833996 0.04728651 0.04833996 0.04728651 0.04833996 0.02071702 0.117094 0.02071702 0.04833996 0.539691 0.04833996 0.511837 0.11878 0.511837 0.11878 0.511837 0.11878 0.539691 0.04833996 0.539691 0.04833996 0.577656 0.04833996 0.539691 0.11878 0.539691 0.11878 0.539691 0.11878 0.577656 0.04833996 0.577656 0.04833996 0.606523 0.04833996 0.577656 0.11878 0.577656 0.11878 0.577656 0.11878 0.606523 0.04833996 0.606523 0.04833996 0.632879 0.04833996 0.606523 0.11878 0.606523 0.11878 0.606523 0.11878 0.632879 0.04833996 0.632879 0.04833996 0.659287 0.04833996 0.632879 0.11878 0.632879 0.11878 0.632879 0.11878 0.659287 0.04833996 0.659287 0.04833996 0.8360031 0.04833996 0.659287 0.11878 0.659287 0.11878 0.659287 0.11878 0.8360031 0.04833996 0.8360031 0.04833996 0.861191 0.04833996 0.8360031 0.11878 0.8360031 0.11878 0.8360031 0.11878 0.861191 0.04833996 0.861191 0.04833996 0.888715 0.04833996 0.861191 0.11878 0.861191 0.11878 0.861191 0.11878 0.888715 0.04833996 0.888715 0.11878 0.924409 0.04833996 0.924409 0.04833996 0.888715 0.04833996 0.888715 0.11878 0.888715 0.11878 0.924409 0.04833996 0.9553955 0.04833996 0.924409 0.11878 0.924409 0.11878 0.924409 0.11878 0.9553955 0.04833996 0.9553955 0.04833996 0.982736 0.04833996 0.9553955 0.11878 0.9553955 0.11878 0.9553955 0.11878 0.982736 0.04833996 0.982736 0.11878 0.539691 0.11878 0.511837 0.19255 0.511837 0.19255 0.511837 0.19255 0.539691 0.11878 0.539691 0.11878 0.577656 0.11878 0.539691 0.19255 0.539691 0.19255 0.539691 0.19255 0.577656 0.11878 0.577656 0.11878 0.606523 0.11878 0.577656 0.19255 0.577656 0.19255 0.577656 0.19255 0.606523 0.11878 0.606523 0.11878 0.632879 0.11878 0.606523 0.19255 0.606523 0.19255 0.606523 0.19255 0.632879 0.11878 0.632879 0.11878 0.659287 0.11878 0.632879 0.19255 0.632879 0.19255 0.632879 0.19255 0.659287 0.11878 0.659287 0.11878 0.8360031 0.11878 0.659287 0.19255 0.659287 0.19255 0.659287 0.19255 0.8360031 0.11878 0.8360031 0.11878 0.861191 0.11878 0.8360031 0.19255 0.8360031 0.19255 0.8360031 0.19255 0.861191 0.11878 0.861191 0.11878 0.888715 0.11878 0.861191 0.19255 0.861191 0.19255 0.861191 0.19255 0.888715 0.11878 0.888715 0.19255 0.924409 0.11878 0.924409 0.11878 0.888715 0.11878 0.888715 0.19255 0.888715 0.19255 0.924409 0.11878 0.9553955 0.11878 0.924409 0.19255 0.924409 0.19255 0.924409 0.19255 0.9553955 0.11878 0.9553955 0.11878 0.982736 0.11878 0.9553955 0.19255 0.9553955 0.19255 0.9553955 0.19255 0.982736 0.11878 0.982736 0.19255 0.539691 0.19255 0.511837 0.267017 0.511837 0.267017 0.511837 0.267017 0.539691 0.19255 0.539691 0.19255 0.577656 0.19255 0.539691 0.267017 0.539691 0.267017 0.539691 0.267017 0.577656 0.19255 0.577656 0.19255 0.606523 0.19255 0.577656 0.267017 0.577656 0.267017 0.577656 0.267017 0.606523 0.19255 0.606523 0.19255 0.632879 0.19255 0.606523 0.267017 0.606523 0.267017 0.606523 0.267017 0.632879 0.19255 0.632879 0.19255 0.659287 0.19255 0.632879 0.267017 0.632879 0.267017 0.632879 0.267017 0.659287 0.19255 0.659287 0.19255 0.8360031 0.19255 0.659287 0.267017 0.659287 0.267017 0.659287 0.267017 0.8360031 0.19255 0.8360031 0.19255 0.861191 0.19255 0.8360031 0.267017 0.8360031 0.267017 0.8360031 0.267017 0.861191 0.19255 0.861191 0.19255 0.888715 0.19255 0.861191 0.267017 0.861191 0.267017 0.861191 0.267017 0.888715 0.19255 0.888715 0.267017 0.924409 0.19255 0.924409 0.19255 0.888715 0.19255 0.888715 0.267017 0.888715 0.267017 0.924409 0.19255 0.9553955 0.19255 0.924409 0.267017 0.924409 0.267017 0.924409 0.267017 0.9553955 0.19255 0.9553955 0.19255 0.982736 0.19255 0.9553955 0.267017 0.9553955 0.267017 0.9553955 0.267017 0.982736 0.19255 0.982736 0.267017 0.539691 0.267017 0.511837 0.341664 0.511837 0.341664 0.511837 0.341664 0.539691 0.267017 0.539691 0.267017 0.577656 0.267017 0.539691 0.341664 0.539691 0.341664 0.539691 0.341664 0.577656 0.267017 0.577656 0.267017 0.606523 0.267017 0.577656 0.341664 0.577656 0.341664 0.577656 0.341664 0.606523 0.267017 0.606523 0.267017 0.632879 0.267017 0.606523 0.341664 0.606523 0.341664 0.606523 0.341664 0.632879 0.267017 0.632879 0.267017 0.659287 0.267017 0.632879 0.341664 0.632879 0.341664 0.632879 0.341664 0.659287 0.267017 0.659287 0.267017 0.8360031 0.267017 0.659287 0.341664 0.659287 0.341664 0.659287 0.341664 0.8360031 0.267017 0.8360031 0.267017 0.861191 0.267017 0.8360031 0.341664 0.8360031 0.341664 0.8360031 0.341664 0.861191 0.267017 0.861191 0.267017 0.888715 0.267017 0.861191 0.341664 0.861191 0.341664 0.861191 0.341664 0.888715 0.267017 0.888715 0.341664 0.924409 0.267017 0.924409 0.267017 0.888715 0.267017 0.888715 0.341664 0.888715 0.341664 0.924409 0.267017 0.9553955 0.267017 0.924409 0.341664 0.924409 0.341664 0.924409 0.341664 0.9553955 0.267017 0.9553955 0.267017 0.982736 0.267017 0.9553955 0.341664 0.9553955 0.341664 0.9553955 0.341664 0.982736 0.267017 0.982736 0.341664 0.539691 0.341664 0.511837 0.416434 0.511837 0.416434 0.511837 0.416434 0.539691 0.341664 0.539691 0.341664 0.577656 0.341664 0.539691 0.416434 0.539691 0.416434 0.539691 0.416434 0.577656 0.341664 0.577656 0.341664 0.606523 0.341664 0.577656 0.416434 0.577656 0.416434 0.577656 0.416434 0.606523 0.341664 0.606523 0.341664 0.632879 0.341664 0.606523 0.416434 0.606523 0.416434 0.606523 0.416434 0.632879 0.341664 0.632879 0.341664 0.659287 0.341664 0.632879 0.416434 0.632879 0.416434 0.632879 0.416434 0.659287 0.341664 0.659287 0.341664 0.8360031 0.341664 0.659287 0.416434 0.659287 0.416434 0.659287 0.416434 0.8360031 0.341664 0.8360031 0.341664 0.861191 0.341664 0.8360031 0.416434 0.8360031 0.416434 0.8360031 0.416434 0.861191 0.341664 0.861191 0.341664 0.888715 0.341664 0.861191 0.416434 0.861191 0.416434 0.861191 0.416434 0.888715 0.341664 0.888715 0.416434 0.924409 0.341664 0.924409 0.341664 0.888715 0.341664 0.888715 0.416434 0.888715 0.416434 0.924409 0.341664 0.9553955 0.341664 0.924409 0.416434 0.924409 0.416434 0.924409 0.416434 0.9553955 0.341664 0.9553955 0.341664 0.982736 0.341664 0.9553955 0.416434 0.9553955 0.416434 0.9553955 0.416434 0.982736 0.341664 0.982736 0.416434 0.539691 0.416434 0.511837 0.491256 0.511837 0.491256 0.511837 0.491256 0.539691 0.416434 0.539691 0.416434 0.577656 0.416434 0.539691 0.491256 0.539691 0.491256 0.539691 0.491256 0.577656 0.416434 0.577656 0.416434 0.606523 0.416434 0.577656 0.491256 0.577656 0.491256 0.577656 0.491256 0.606523 0.416434 0.606523 0.416434 0.632879 0.416434 0.606523 0.491256 0.606523 0.491256 0.606523 0.491256 0.632879 0.416434 0.632879 0.416434 0.659287 0.416434 0.632879 0.491256 0.632879 0.491256 0.632879 0.491256 0.659287 0.416434 0.659287 0.416434 0.8360031 0.416434 0.659287 0.491256 0.659287 0.491256 0.659287 0.491256 0.8360031 0.416434 0.8360031 0.416434 0.861191 0.416434 0.8360031 0.491256 0.8360031 0.491256 0.8360031 0.491256 0.861191 0.416434 0.861191 0.416434 0.888715 0.416434 0.861191 0.491256 0.861191 0.491256 0.861191 0.491256 0.888715 0.416434 0.888715 0.491256 0.924409 0.416434 0.924409 0.416434 0.888715 0.416434 0.888715 0.491256 0.888715 0.491256 0.924409 0.416434 0.9553955 0.416434 0.924409 0.491256 0.924409 0.491256 0.924409 0.491256 0.9553955 0.416434 0.9553955 0.416434 0.982736 0.416434 0.9553955 0.491256 0.9553955 0.491256 0.9553955 0.491256 0.982736 0.416434 0.982736 0.491256 0.539691 0.491256 0.511837 0.56611 0.511837 0.56611 0.511837 0.56611 0.539691 0.491256 0.539691 0.491256 0.577656 0.491256 0.539691 0.56611 0.539691 0.56611 0.539691 0.56611 0.577656 0.491256 0.577656 0.491256 0.606523 0.491256 0.577656 0.56611 0.577656 0.56611 0.577656 0.56611 0.606523 0.491256 0.606523 0.491256 0.632879 0.491256 0.606523 0.56611 0.606523 0.56611 0.606523 0.56611 0.632879 0.491256 0.632879 0.491256 0.659287 0.491256 0.632879 0.56611 0.632879 0.56611 0.632879 0.56611 0.659287 0.491256 0.659287 0.491256 0.8360031 0.491256 0.659287 0.56611 0.659287 0.56611 0.659287 0.56611 0.8360031 0.491256 0.8360031 0.491256 0.861191 0.491256 0.8360031 0.56611 0.8360031 0.56611 0.8360031 0.56611 0.861191 0.491256 0.861191 0.491256 0.888715 0.491256 0.861191 0.56611 0.861191 0.56611 0.861191 0.56611 0.888715 0.491256 0.888715 0.56611 0.924409 0.491256 0.924409 0.491256 0.888715 0.491256 0.888715 0.56611 0.888715 0.56611 0.924409 0.491256 0.9553955 0.491256 0.924409 0.56611 0.924409 0.56611 0.924409 0.56611 0.9553955 0.491256 0.9553955 0.491256 0.982736 0.491256 0.9553955 0.56611 0.9553955 0.56611 0.9553955 0.56611 0.982736 0.491256 0.982736 0.56611 0.539691 0.56611 0.511837 0.640925 0.511837 0.640925 0.511837 0.640925 0.539691 0.56611 0.539691 0.56611 0.577656 0.56611 0.539691 0.640925 0.539691 0.640925 0.539691 0.640925 0.577656 0.56611 0.577656 0.56611 0.606523 0.56611 0.577656 0.640925 0.577656 0.640925 0.577656 0.640925 0.606523 0.56611 0.606523 0.56611 0.632879 0.56611 0.606523 0.640925 0.606523 0.640925 0.606523 0.640925 0.632879 0.56611 0.632879 0.56611 0.659287 0.56611 0.632879 0.640925 0.632879 0.640925 0.632879 0.640925 0.659287 0.56611 0.659287 0.56611 0.8360031 0.56611 0.659287 0.640925 0.659287 0.640925 0.659287 0.640925 0.8360031 0.56611 0.8360031 0.56611 0.861191 0.56611 0.8360031 0.640925 0.8360031 0.640925 0.8360031 0.640925 0.861191 0.56611 0.861191 0.56611 0.888715 0.56611 0.861191 0.640925 0.861191 0.640925 0.861191 0.640925 0.888715 0.56611 0.888715 0.640925 0.924409 0.56611 0.924409 0.56611 0.888715 0.56611 0.888715 0.640925 0.888715 0.640925 0.924409 0.56611 0.9553955 0.56611 0.924409 0.640925 0.924409 0.640925 0.924409 0.640925 0.9553955 0.56611 0.9553955 0.56611 0.982736 0.56611 0.9553955 0.640925 0.9553955 0.640925 0.9553955 0.640925 0.982736 0.56611 0.982736 0.640925 0.539691 0.640925 0.511837 0.7057321 0.511837 0.7057321 0.511837 0.7057321 0.539691 0.640925 0.539691 0.640925 0.577656 0.640925 0.539691 0.7057321 0.539691 0.7057321 0.539691 0.7057321 0.577656 0.640925 0.577656 0.640925 0.606523 0.640925 0.577656 0.7057321 0.577656 0.7057321 0.577656 0.7057321 0.606523 0.640925 0.606523 0.640925 0.632879 0.640925 0.606523 0.7057321 0.606523 0.7057321 0.606523 0.7057321 0.632879 0.640925 0.632879 0.640925 0.659287 0.640925 0.632879 0.7057321 0.632879 0.7057321 0.632879 0.7057321 0.659287 0.640925 0.659287 0.640925 0.8360031 0.640925 0.659287 0.7057321 0.659287 0.7057321 0.659287 0.7057321 0.8360031 0.640925 0.8360031 0.640925 0.861191 0.640925 0.8360031 0.7057321 0.8360031 0.7057321 0.8360031 0.7057321 0.861191 0.640925 0.861191 0.640925 0.888715 0.640925 0.861191 0.7057321 0.861191 0.7057321 0.861191 0.7057321 0.888715 0.640925 0.888715 0.7057321 0.924409 0.640925 0.924409 0.640925 0.888715 0.640925 0.888715 0.7057321 0.888715 0.7057321 0.924409 0.640925 0.9553955 0.640925 0.924409 0.7057321 0.924409 0.7057321 0.924409 0.7057321 0.9553955 0.640925 0.9553955 0.640925 0.982736 0.640925 0.9553955 0.7057321 0.9553955 0.7057321 0.9553955 0.7057321 0.982736 0.640925 0.982736 0.7057321 0.539691 0.7057321 0.511837 0.772693 0.511837 0.772693 0.511837 0.772693 0.539691 0.7057321 0.539691 0.7057321 0.577656 0.7057321 0.539691 0.772693 0.539691 0.772693 0.539691 0.772693 0.577656 0.7057321 0.577656 0.7057321 0.606523 0.7057321 0.577656 0.772693 0.577656 0.772693 0.577656 0.772693 0.606523 0.7057321 0.606523 0.7057321 0.632879 0.7057321 0.606523 0.772693 0.606523 0.772693 0.606523 0.772693 0.632879 0.7057321 0.632879 0.7057321 0.659287 0.7057321 0.632879 0.772693 0.632879 0.772693 0.632879 0.772693 0.659287 0.7057321 0.659287 0.7057321 0.8360031 0.7057321 0.659287 0.772693 0.659287 0.772693 0.659287 0.772693 0.8360031 0.7057321 0.8360031 0.7057321 0.861191 0.7057321 0.8360031 0.772693 0.8360031 0.772693 0.8360031 0.772693 0.861191 0.7057321 0.861191 0.7057321 0.888715 0.7057321 0.861191 0.772693 0.861191 0.772693 0.861191 0.772693 0.888715 0.7057321 0.888715 0.772693 0.924409 0.7057321 0.924409 0.7057321 0.888715 0.7057321 0.888715 0.772693 0.888715 0.772693 0.924409 0.7057321 0.9553955 0.7057321 0.924409 0.772693 0.924409 0.772693 0.924409 0.772693 0.9553955 0.7057321 0.9553955 0.7057321 0.982736 0.7057321 0.9553955 0.772693 0.9553955 0.772693 0.9553955 0.772693 0.982736 0.7057321 0.982736 0.772693 0.539691 0.772693 0.511837 0.832878 0.511837 0.832878 0.511837 0.832878 0.539691 0.772693 0.539691 0.772693 0.577656 0.772693 0.539691 0.832878 0.539691 0.832878 0.539691 0.832878 0.577656 0.772693 0.577656 0.772693 0.606523 0.772693 0.577656 0.832878 0.577656 0.832878 0.577656 0.832878 0.606523 0.772693 0.606523 0.772693 0.632879 0.772693 0.606523 0.832878 0.606523 0.832878 0.606523 0.832878 0.632879 0.772693 0.632879 0.772693 0.659287 0.772693 0.632879 0.832878 0.632879 0.832878 0.632879 0.832878 0.659287 0.772693 0.659287 0.772693 0.8360031 0.772693 0.659287 0.832878 0.659287 0.832878 0.659287 0.832878 0.8360031 0.772693 0.8360031 0.772693 0.861191 0.772693 0.8360031 0.832878 0.8360031 0.832878 0.8360031 0.832878 0.861191 0.772693 0.861191 0.772693 0.888715 0.772693 0.861191 0.832878 0.861191 0.832878 0.861191 0.832878 0.888715 0.772693 0.888715 0.832878 0.924409 0.772693 0.924409 0.772693 0.888715 0.772693 0.888715 0.832878 0.888715 0.832878 0.924409 0.772693 0.9553955 0.772693 0.924409 0.832878 0.924409 0.832878 0.924409 0.832878 0.9553955 0.772693 0.9553955 0.772693 0.982736 0.772693 0.9553955 0.832878 0.9553955 0.832878 0.9553955 0.832878 0.982736 0.772693 0.982736 0.832878 0.539691 0.832878 0.511837 0.8873971 0.511837 0.8873971 0.511837 0.8873971 0.539691 0.832878 0.539691 0.832878 0.577656 0.832878 0.539691 0.8873971 0.539691 0.8873971 0.539691 0.8873971 0.577656 0.832878 0.577656 0.832878 0.606523 0.832878 0.577656 0.8873971 0.577656 0.8873971 0.577656 0.8873971 0.606523 0.832878 0.606523 0.832878 0.632879 0.832878 0.606523 0.8873971 0.606523 0.8873971 0.606523 0.8873971 0.632879 0.832878 0.632879 0.832878 0.659287 0.832878 0.632879 0.8873971 0.632879 0.8873971 0.632879 0.8873971 0.659287 0.832878 0.659287 0.832878 0.8360031 0.832878 0.659287 0.8873971 0.659287 0.8873971 0.659287 0.8873971 0.8360031 0.832878 0.8360031 0.832878 0.861191 0.832878 0.8360031 0.8873971 0.8360031 0.8873971 0.8360031 0.8873971 0.861191 0.832878 0.861191 0.832878 0.888715 0.832878 0.861191 0.8873971 0.861191 0.8873971 0.861191 0.8873971 0.888715 0.832878 0.888715 0.8873971 0.924409 0.832878 0.924409 0.832878 0.888715 0.832878 0.888715 0.8873971 0.888715 0.8873971 0.924409 0.832878 0.9553955 0.832878 0.924409 0.8873971 0.924409 0.8873971 0.924409 0.8873971 0.9553955 0.832878 0.9553955 0.832878 0.982736 0.832878 0.9553955 0.8873971 0.9553955 0.8873971 0.9553955 0.8873971 0.982736 0.832878 0.982736 + + + + + + + + + + + + + + +

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

+
+
+
+
+ + + + + 0.6859207 -0.3240135 0.6515582 7.481132 0.7276763 0.3054208 -0.6141704 -6.50764 0 0.8953956 0.4452714 5.343665 0 0 0 1 + + + + -0.2908646 -0.7711008 0.5663932 4.076245 0.9551712 -0.1998834 0.2183912 1.005454 -0.05518906 0.6045247 0.7946723 5.903862 0 0 0 1 + + + + 0.007171693 -0.006662763 -0.002043138 -0.719161 -8.48492e-4 0.002075142 -0.009745453 1.331931 0.006917144 0.007162497 9.22898e-4 -0.3358545 0 0 0 1 + + + + 0.003904327 0.008862034 -0.002494102 -6.228618 -0.008969716 0.003051496 -0.003198839 -2.221288 -0.002073748 0.00348607 0.009140398 2.118972 0 0 0 1 + + + + 0.01 0 0 -0.719161 0 -4.37114e-10 -0.01 1.331931 0 0.01 -4.37114e-10 -0.3358545 0 0 0 1 + + 1 1.66746e-15 3.8147e-8 -7.62939e-6 -4.0037e-8 1 -2.46379e-8 3.8147e-6 -1.58779e-7 0 1 1.52588e-5 0 0 0 1 + + 1 -3.8147e-8 0 -0.2125397 -4.0037e-8 -1.90735e-8 1 82.38411 -1.58779e-7 -1 -4.37114e-8 1.198044 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0 0 1 0 -1.52588e-5 0 0 1 3.8147e-6 0 0 0 1 + + + 1 0 0 0.03436279 0 1 0 2.443207 0 0 1 -47.67746 0 0 0 1 + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + + + + + + + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + + + + + + + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + + + + + + + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + + + + + + + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + 1 -3.8147e-8 0 0 -1.60263e-7 1 0 0 -4.05258e-10 0 1 0 0 0 0 1 + + + + + + + + + + +
\ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/package.xml b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/package.xml new file mode 100644 index 00000000000..04304304b7d --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/package.xml @@ -0,0 +1,25 @@ + + + vehicle_model + 0.0.0 + The vehicle_model package + + + yukihiro saito + + Apache 2 + + catkin + autoware_build_flags + gazebo_ros_control + position_controllers + transmission_interface + velocity_controllers + effort_controllers + gazebo_camera_description + gazebo_imu_description + velodyne_description + velodyne_gazebo_plugins + + + diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/actuator.xacro b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/actuator.xacro new file mode 100644 index 00000000000..c38a4604519 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/actuator.xacro @@ -0,0 +1,45 @@ + + + + + transmission_interface/SimpleTransmission + + hardware_interface/EffortJointInterface + + + hardware_interface/EffortJointInterface + 1 + + + + transmission_interface/SimpleTransmission + + hardware_interface/EffortJointInterface + + + hardware_interface/EffortJointInterface + 1 + + + + + transmission_interface/SimpleTransmission + + hardware_interface/VelocityJointInterface + + + hardware_interface/VelocityJointInterface + 1 + + + + transmission_interface/SimpleTransmission + + hardware_interface/VelocityJointInterface + + + hardware_interface/VelocityJointInterface + 1 + + + \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/body.xacro b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/body.xacro new file mode 100644 index 00000000000..bdfe702e6d9 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/body.xacro @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/steering.gazebo b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/steering.gazebo new file mode 100644 index 00000000000..1af159a6fa7 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/steering.gazebo @@ -0,0 +1,21 @@ + + + + Gazebo/Red + + + + + + + + + Gazebo/Red + + + + + + + + \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/steering.xacro b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/steering.xacro new file mode 100644 index 00000000000..e495b6e00a5 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/steering.xacro @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/vehicle.gazebo b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/vehicle.gazebo new file mode 100644 index 00000000000..d37d5062186 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/vehicle.gazebo @@ -0,0 +1,20 @@ + + + + + + + + /autoware_gazebo + gazebo_ros_control/DefaultRobotHWSim + + + + + wheel_left_rear_joint, wheel_right_rear_joint, steering_left_front_joint, steering_right_front_joint, wheel_left_front_joint, wheel_right_front_joint + 10.0 + /autoware_gazebo + false + + + \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/vehicle.xacro b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/vehicle.xacro new file mode 100644 index 00000000000..bb301beb243 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/vehicle.xacro @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/wheel.gazebo b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/wheel.gazebo new file mode 100644 index 00000000000..7ee8a42c9f1 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/wheel.gazebo @@ -0,0 +1,40 @@ + + + + + Gazebo/Red + + + + + + + + + Gazebo/Red + + + + + + + + + Gazebo/Red + + + + + + + + + Gazebo/Red + + + + + + + + \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/wheel.xacro b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/wheel.xacro new file mode 100644 index 00000000000..9bdc7347cd2 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/vehicle/vehicle_model/urdf/wheel.xacro @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/worlds/external/car_demo b/ros/src/simulation/gazebo_simulator/worlds/external/car_demo new file mode 160000 index 00000000000..94cb2492f62 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/worlds/external/car_demo @@ -0,0 +1 @@ +Subproject commit 94cb2492f627919eb2c82085fcb52061354a59e3 diff --git a/ros/src/simulation/gazebo_simulator/worlds/external/osrf_citysim b/ros/src/simulation/gazebo_simulator/worlds/external/osrf_citysim new file mode 160000 index 00000000000..53b8483d098 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/worlds/external/osrf_citysim @@ -0,0 +1 @@ +Subproject commit 53b8483d098999298498854f3795a9f01c5e8828 diff --git a/ros/src/simulation/gazebo_simulator/worlds/gazebo_world_description/CMakeLists.txt b/ros/src/simulation/gazebo_simulator/worlds/gazebo_world_description/CMakeLists.txt new file mode 100644 index 00000000000..2606b4b688a --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/worlds/gazebo_world_description/CMakeLists.txt @@ -0,0 +1,9 @@ +cmake_minimum_required(VERSION 2.8.3) +project(gazebo_world_description) + +find_package(catkin REQUIRED) + +catkin_package() + +install(DIRECTORY worlds + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) diff --git a/ros/src/simulation/gazebo_simulator/worlds/gazebo_world_description/package.xml b/ros/src/simulation/gazebo_simulator/worlds/gazebo_world_description/package.xml new file mode 100644 index 00000000000..403c3589678 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/worlds/gazebo_world_description/package.xml @@ -0,0 +1,15 @@ + + + gazebo_world_description + 0.0.0 + The gazebo_world_description package + + yukihiro saito + + Apache 2 + + catkin + + + + diff --git a/ros/src/simulation/gazebo_simulator/worlds/gazebo_world_description/worlds/.gitignore b/ros/src/simulation/gazebo_simulator/worlds/gazebo_world_description/worlds/.gitignore new file mode 100644 index 00000000000..3d919bfc9ff --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/worlds/gazebo_world_description/worlds/.gitignore @@ -0,0 +1 @@ +*.world \ No newline at end of file diff --git a/ros/src/simulation/gazebo_simulator/worlds/gazebo_world_description/worlds/autoware.world b/ros/src/simulation/gazebo_simulator/worlds/gazebo_world_description/worlds/autoware.world new file mode 100644 index 00000000000..5640e3127c5 --- /dev/null +++ b/ros/src/simulation/gazebo_simulator/worlds/gazebo_world_description/worlds/autoware.world @@ -0,0 +1,9498 @@ + + + + + 1 + 0 0 10 0 -0 0 + 0.8 0.8 0.8 1 + 0.1 0.1 0.1 1 + + 1000 + 0.9 + 0.01 + 0.001 + + -0.5 0.5 -1 + + + false + false + 0.592 0.624 0.635 1 + + + 12 + + + 0.35 0.35 0.35 1.0 + + + + -49.08 -1.911 6.95 0 0 -0.0159 + + + + 1 + + + + + 0 0 1 + 100 100 + + + + + + 100 + 50 + + + + + + + + + + + 10 + + + 0 + + + 0 0 1 + 100 100 + + + + + + + 0 + 0 + 1 + + + 0 0 -9.8 + 6e-06 2.3e-05 -4.2e-05 + + + 0.001 + 1 + 1000 + + + 0.4 0.4 0.4 1 + 0.7 0.7 0.7 1 + 1 + + + EARTH_WGS84 + 0 + 0 + 0 + 0 + + + 1 + + + + + model://house_1/meshes/house_1.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://house_1/meshes/house_1.dae + 1 1 1 + + + + + + House_1_Normal.png + + + + 0 + 0 + 1 + + -17.8912 11.6151 0 0 -0 0 + + + 1 + + + 0 0 4.28998 0 -0 0 + + + 13.037 13.037 8.57995 + + + 10 + + + + + + + + + + + + + + + 0 0 0.464086 0 -0 0 + + + 13.037 16.2446 0.928173 + + + 10 + + + + + + + + + + + + + + + + + model://police_station/meshes/police_station.dae + 1 1 1 + + + + 0 + 0 + 1 + + -3.86599 17.4497 0 0 -0 0 + + + + + 0 0 0.95 0 -0 0 + 80 + + 27.82 + 0 + 0 + 24.88 + 0 + 4.57 + + + + 0 0 0.01 0 -0 0 + + + 0.35 0.75 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 -0.02 0 -0 0 + + + model://person_walking/meshes/walking.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + 0 0 -0.02 0 -0 0 + + + model://person_walking/meshes/walking.dae + 1 1 1 + + + + 0 + 0 + 1 + + 10.8492 2.11673 0 0 -0 0 + + + + + 0 -0.1 0.95 0 -0 0 + 80 + + 24.88 + 0 + 0 + 25.73 + 0 + 2.48 + + + + 0 -0.1 0.01 0 -0 0 + + + 0.5 0.35 0.02 + + + 10 + + + + + + + + + + + + + + + 0 0 0.02 0.04 -0 0 + + + model://person_standing/meshes/standing.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + 0 0 0.02 0.04 -0 0 + + + model://person_standing/meshes/standing.dae + 1 1 1 + + + + 0 + 0 + 1 + + 18.9441 -0.912406 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 6.37821 0.583634 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 10.2031 18.113 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 25.6408 -0.761115 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 8.11641 -15.0475 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -13.5558 0.477425 0 0 -0 0 + + + 1 + + + + + model://fire_hydrant/meshes/fire_hydrant.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://fire_hydrant/meshes/fire_hydrant.dae + 1 1 1 + + + + 0 + 0 + 1 + + 6.06034 8.32453 0 0 -0 0 + + + 1 + + + 0 -0.135 5 0 -0 0 + + + 19.98 9.68 10 + + + 10 + + + + + + + + + + + + + + + 0 4.957 7 0 -0 0 + + + 20 0.515 6 + + + 10 + + + + + + + + + + + + + + + 9.333 4.957 2 0 -0 0 + + + 1.315 0.515 4 + + + 10 + + + + + + + + + + + + + + + 3.33 4.957 2 0 -0 0 + + + 2.63 0.515 4 + + + 10 + + + + + + + + + + + + + + + -3.33 4.957 2 0 -0 0 + + + 2.63 0.515 4 + + + 10 + + + + + + + + + + + + + + + -9.333 4.957 2 0 -0 0 + + + 1.315 0.515 4 + + + 10 + + + + + + + + + + + + + + + 0 -2.742 10.467 0.25 -0 0 + + + 21.47 6.12 0.28 + + + 10 + + + + + + + + + + + + + + + 0 3.12 10.467 -0.25 0 0 + + + 21.47 6.12 0.28 + + + 10 + + + + + + + + + + + + + + + 0 0.188 9.705 0 -0 0 + + + 21.47 11.86 0.28 + + + 10 + + + + + + + + + + + + + + + 0 0.188 9.985 0 -0 0 + + + 21.47 9.53 0.28 + + + 10 + + + + + + + + + + + + + + + 0 0.188 10.14 0 -0 0 + + + 21.47 8.41 0.28 + + + 10 + + + + + + + + + + + + + + + 0 0.188 10.42 0 -0 0 + + + 21.47 6.25 0.28 + + + 10 + + + + + + + + + + + + + + + 0 0.188 10.7 0 -0 0 + + + 21.47 4.05 0.28 + + + 10 + + + + + + + + + + + + + + + 0 0.188 10.98 0 -0 0 + + + 21.47 1.83 0.28 + + + 10 + + + + + + + + + + + + + + + + + model://fire_station/meshes/fire_station.dae + 1 1 1 + + + + 0 + 0 + 1 + + -11.6079 -17.8914 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -33.2201 -11.8855 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -34.8598 10.2922 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 22.7616 -13.2401 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 39.6937 -15.1768 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 40.924 -4.53814 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 42 10 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 26.888 -18.1786 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 29.6291 17.2251 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 40.1025 6.22208 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 41.0911 -11.5315 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -31.7511 -12.9041 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -33.0894 6.09046 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -10.8691 24.6966 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -3 30 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -29.326 25.3742 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 40.2279 21.9338 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 26.0127 32.4983 0 0 -0 0 + + + 1 + + 0 0 0 0 -0 0 + + + + model://gas_station/meshes/gas_station.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://gas_station/meshes/gas_station.dae + 1 1 1 + + + + + + GasStation_Normal.png + + + + 0 + 0 + 1 + + 28.7406 -23.5985 0 0 -0 0 + + + 1 + + + + + 1 1 1 + model://gazebo/meshes/gazebo.dae + + + 10 + + + + + + + + + + + + + + + + + 1 1 1 + model://gazebo/meshes/gazebo.dae + + + + 0 + 0 + 1 + + -40.778 1.97872 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -11.8014 -17.5637 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 41.4998 -29.7064 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 26.1918 -34.3701 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 41.1356 -40.2 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 22.9353 -40.6198 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 8.35018 -31.2659 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 6.27442 -40.183 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -10.7792 -33.517 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -29.9691 -28.748 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -30.2733 -40.503 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -12.4234 -43.1011 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -39.914 -12.9126 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 39.7398 39.4432 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -41.9881 6.39224 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -42.5242 24.9399 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -19.9765 38.1058 0 0 -0 0 + + + 1 + + + 0 0 6.96244 0 -0 0 + + + 6.84401 5.43165 13.9249 + + + 10 + + + + + + + + + + + + + + + + + model://law_office/meshes/law_office.dae + 1 1 1 + + + + 0 + 0 + 1 + + 9.0098 -10.5212 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 38.8642 -27.432 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 40.6151 -35.8737 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -28.0888 -12.0544 0 0 -0 0 + + + 1 + + + + + model://water_tower/meshes/water_tower.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://water_tower/meshes/water_tower.dae + 1 1 1 + + + + 0 + 0 + 1 + + -28.4756 -20.8424 0 0 -0 0 + + + + + + + model://stop_sign/meshes/stop_sign.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://stop_sign/meshes/stop_sign.dae + 1 1 1 + + + + + + + 0 + + + 1 + 0 + 0 + 1 + 0 + 1 + + 1 + + 0 + 1 + + 36.891 41.2024 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 24.1835 43.1447 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 40.5649 52.9156 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 7.57971 44.8403 0 0 -0 0 + + + 1 + + + 0 0 5.69469 0 -0 0 + + + 7.21297 5.43165 11.3894 + + + 10 + + + + + + + + + + + + + + + 0 -0.912491 0 0 -0 0 + + + model://thrift_shop/meshes/thrift_shop.dae + 1 1 1 + + + + 0 + 0 + 1 + + 47.3698 39.9222 0 0 -0 0 + + + 1 + + + + + model://school/meshes/school.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://school/meshes/school.dae + 1 1 1 + + + + 0 + 0 + 1 + + 29.7214 62.4134 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 24.047 56.8673 0 0 -0 0 + + + + 0 0 0.0117 0 -0 0 + + 0.11 + + 2.2901e-05 + 2.2901e-05 + 3.5764e-05 + 0 + 0 + 0 + + + + + + 0.0255 + 0.0234 + + + 10 + + + + + + + + + + + + + + + + + model://scanse_sweep/meshes/scanse_bottom.dae + 1 1 1 + + + + 0.25 0.25 0.25 1 + 0.25 0.25 0.25 1 + 0 0 0 0 + 0 0 0 0 + + + 0 + 0 + 1 + + + 0 0 0.04265 0 -0 0 + + 0.01 + + 1.1798e-05 + 1.1798e-05 + 2.1125e-05 + 0 + 0 + 0 + + + + + + 0.0325 + 0.0385 + + + 10 + + + + + + + + + + + + + + + + + model://scanse_sweep/meshes/scanse_top.dae + 1 1 1 + + + + 0.25 0.25 0.25 1 + 0.25 0.25 0.25 1 + 0 0 0 0 + 0 0 0 0 + + + + 0 0 -0.00105 0 -0 0 + 1 + 500 + + + gaussian + 0 + 0.001 + + + + 1 + 1 + 0 + 0 + + + 5 + 5 + -0.00436 + 0.00436 + + + + 0.05 + 40 + 0.01 + + + + 0 + 0 + 1 + + + 0 0 -0.01925 0 -0 0 + base + top + + 0 0 1 + + -1e+16 + 1e+16 + + 0 + + 0 + 0 + + + + -25.9707 102.557 0 0 -0 0 + + + 1 + + + + + model://postbox/meshes/postbox.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://postbox/meshes/postbox.dae + 1 1 1 + + + + 0 + 0 + 1 + + 46.7356 32.5011 0 0 -0 0 + + + 1 + + + + + model://post_office/meshes/post_office.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://post_office/meshes/post_office.dae + 1 1 1 + + + + 0 + 0 + 1 + + 50.257 24.5274 0 0 -0 0 + + + 1 + + + + + model://playground/meshes/playground.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://playground/meshes/playground.dae + 1 1 1 + + + + 0 + 0 + 1 + + -37.3888 38.8688 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 70.6531 -31.4961 0 0 -0 0 + + + + + + + model://mailbox/meshes/mailbox.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://mailbox/meshes/mailbox.dae + 1 1 1 + + + + + + + 0 + + + 1 + 0 + 0 + 1 + 0 + 1 + + 1 + + 0 + 1 + + -12.3238 6.78845 0 0 -0 0 + + + 1 + + + + + 8 10 0.2 + + + 10 + + + + + + + + + + + + + + + -2 2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + + 2 2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + + 2 -2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + + -2 -2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + 0 + 0 + 1 + + -33.5181 35.9736 0 0 -0 0 + + + 1 + + + + + 8 10 0.2 + + + 10 + + + + + + + + + + + + + + + -2 2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + + 2 2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + + 2 -2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + + -2 -2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + 0 + 0 + 1 + + -41.1763 35.9619 0 0 -0 0 + + + 1 + + + + + 8 10 0.2 + + + 10 + + + + + + + + + + + + + + + -2 2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + + 2 2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + + 2 -2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + + -2 -2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + 0 + 0 + 1 + + -41.1857 44.2721 0 0 -0 0 + + + 1 + + + + + 8 10 0.2 + + + 10 + + + + + + + + + + + + + + + -2 2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + + 2 2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + + 2 -2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + + -2 -2.5 0 0 -0 0 + 0 + + + 4 5 0.2 + + + + + + + 0 + 0 + 1 + + -33.5131 44.2491 0 0 -0 0 + + + 1 + + + 0 0 4.28998 0 -0 0 + + + 13.037 13.037 8.57995 + + + 10 + + + + + + + + + + + + + + + 0 0 0.464086 0 -0 0 + + + 13.037 16.2446 0.928173 + + + 10 + + + + + + + + + + + + + + + + + model://police_station/meshes/police_station.dae + 1 1 1 + + + + 0 + 0 + 1 + + 54.8849 12.3123 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 56.9752 20.2287 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 56.1858 33.8725 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 56.0408 50.4969 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 56.2979 -2.61646 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 19.6522 9.41119 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 41.6517 16.9039 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 41.9665 25.4999 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 42.5277 33.4506 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 42.7279 42.8609 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 26.1214 43.2608 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 25.5958 33.7953 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 25.3451 25.6808 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 25.0656 17.6919 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 25.0708 9.0417 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 8.9533 6.48508 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -1.32415 7.25542 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -10.0378 6.87625 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 42.8362 8.45209 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -18.4064 6.56842 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -26.2948 6.6754 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 11.1816 -7.351 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + 0.800423 -6.90609 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -8.41909 -6.99773 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -18.0551 -6.85845 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -27.32 -6.49185 0 0 -0 0 + + + 1 + + + + + model://osrf_first_office/meshes/osrf_first_office.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://osrf_first_office/meshes/osrf_first_office.dae + 1 1 1 + + + + 0 + 0 + 1 + + 61.5025 -28.5527 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + 59.3685 -40.0699 0 0 -0 0 + + + 1 + + + + + model://office_building/meshes/office_building.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://office_building/meshes/office_building.dae + 1 1 1 + + + + 0 + 0 + 1 + + 66.2638 31.348 0 0 -0 0 + + + 1 + + + + + model://parking_garage/meshes/parking_garage.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://parking_garage/meshes/parking_garage.dae + 1 1 1 + + + + 0 + 0 + 1 + + -15.8221 -53.0555 0 0 -0 0 + + + 0 + + 0 0 0 0 -0 0 + + + + model://monkey_wrench/meshes/monkey_wrench.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://monkey_wrench/meshes/monkey_wrench.dae + 1 1 1 + + + + 0 + + + 1 + 0 + 0 + 1 + 0 + 1 + + 1 + + 0 + 1 + + 19.114 -1.17383 0 0 -0 0 + + + 1 + + + + + model://apartment/meshes/apartment.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://apartment/meshes/apartment.dae + 1 1 1 + + + + 0 + 0 + 1 + + -57.4549 10.2909 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -44.401 -30.0859 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -52.1037 39.1152 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -8.09974 46.8393 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -23.7655 54.632 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -57.8809 25.5762 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -54.5213 -8.16502 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -53.4583 -22.1369 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -40.7343 56.2327 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -57.6009 54.3864 0 0 -0 0 + + + 1 + + + + + 20 20 0.1 + + + 10 + + + + + + + + + + + + + + + 0 + + + 20 20 0.1 + + + + + + + 0 + 0 + 1 + + -61.6017 40.7819 0 0 -0 0 + + + 1 + + + + + model://apartment/meshes/apartment.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://apartment/meshes/apartment.dae + 1 1 1 + + + + 0 + 0 + 1 + + 64.6575 55.6984 0 0 -0 0 + + + 1 + + + + + 1 1 1 + model://construction_cone/meshes/construction_cone.dae + + + 10 + + + + + + + + + + + + + + + + + 1 1 1 + model://construction_cone/meshes/construction_cone.dae + + + + 0 + 0 + 1 + + 37.0773 46.3885 0 0 -0 0 + + + 1 + + + + + 1 1 1 + model://construction_cone/meshes/construction_cone.dae + + + 10 + + + + + + + + + + + + + + + + + 1 1 1 + model://construction_cone/meshes/construction_cone.dae + + + + 0 + 0 + 1 + + 29.6802 46.186 0 0 -0 0 + + + 1 + + + + + model://fountain/meshes/fountain.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://fountain/meshes/fountain.dae + 1 1 1 + + + + 0 + 0 + 1 + + -30.2935 27.4254 0 0 -0 0 + + + 1 + + + + + 1 1 1 + model://gazebo/meshes/gazebo.dae + + + 10 + + + + + + + + + + + + + + + + + 1 1 1 + model://gazebo/meshes/gazebo.dae + + + + 0 + 0 + 1 + + -48.228 31.3018 0 0 -0 0 + + + 1 + + + 0 0 4.04605 0 -0 0 + + + 32.1985 17.5425 8.09209 + + + 10 + + + + + + + + + + + + + + + 0 -1.96155 0 0 -0 0 + + + model://grocery_store/meshes/grocery_store.dae + 1 1 1 + + + + 0 + 0 + 1 + + -69.8447 -25.3846 0 0 -0 0 + + + 1 + + + + + model://house_1/meshes/house_1.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://house_1/meshes/house_1.dae + 1 1 1 + + + + + + House_1_Normal.png + + + + 0 + 0 + 1 + + -22.6829 59.4372 0 0 -0 0 + + + 1 + + + + + model://house_3/meshes/house_3.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://house_3/meshes/house_3.dae + 1 1 1 + + + + + + + 0 + 0 + 1 + + -55.98 57.6872 0 0 -0 0 + + + 1 + + + + + model://office_building/meshes/office_building.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://office_building/meshes/office_building.dae + 1 1 1 + + + + 0 + 0 + 1 + + 55.3455 -53.9597 0 0 -0 0 + + + 1 + + + + + model://office_building/meshes/office_building.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://office_building/meshes/office_building.dae + 1 1 1 + + + + 0 + 0 + 1 + + -78.0686 38.8743 0 0 -0 0 + + + 1 + + + + + model://office_building/meshes/office_building.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://office_building/meshes/office_building.dae + 1 1 1 + + + + 0 + 0 + 1 + + 10.9609 35.7042 0 0 -0 0 + + + 1 + + + + + model://office_building/meshes/office_building.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://office_building/meshes/office_building.dae + 1 1 1 + + + + 0 + 0 + 1 + + -4.99796 57.6217 0 0 -0 0 + + + 1 + + + + + model://house_1/meshes/house_1.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://house_1/meshes/house_1.dae + 1 1 1 + + + + + + House_1_Normal.png + + + + 0 + 0 + 1 + + -51.3459 66.452 0 0 -0 0 + + + 1 + + + + + model://house_1/meshes/house_1.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://house_1/meshes/house_1.dae + 1 1 1 + + + + + + House_1_Normal.png + + + + 0 + 0 + 1 + + -67.8148 63.4032 0 0 -0 0 + + + 1 + + + + + model://house_2/meshes/house_2.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://house_2/meshes/house_2.dae + 1 1 1 + + + + + + + 0 + 0 + 1 + + -44.9975 55.8332 0 0 -0 0 + + + 1 + + + + + model://house_2/meshes/house_2.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://house_2/meshes/house_2.dae + 1 1 1 + + + + + + + 0 + 0 + 1 + + -70.1123 55.1751 0 0 -0 0 + + + 1 + + + + + model://house_3/meshes/house_3.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://house_3/meshes/house_3.dae + 1 1 1 + + + + + + + 0 + 0 + 1 + + -33.4672 55.9308 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -60.8281 50.7166 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -62.9242 27.0981 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -15.6439 39.5028 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -15.3983 32.1285 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -15.8405 22.7217 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -20.1234 50.4043 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -29.5066 21.5815 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -62.3164 41.8782 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -62.9134 33.7027 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -33.3129 63.4974 0 0 -0 0 + + + 1 + + + + + model://oak_tree/meshes/oak_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://oak_tree/meshes/oak_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -42.2669 67.9594 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -45.5495 48.5692 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -30.2369 48.7813 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -29.5233 31.075 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -51.8369 57.3475 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -51.8853 59.2657 0 0 -0 0 + + + 1 + + + + + model://pine_tree/meshes/pine_tree.dae + 1 1 1 + + + 10 + + + + + + + + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Branch + + 1 1 1 + + + + + + + + + + model://pine_tree/meshes/pine_tree.dae + + Bark + + 1 1 1 + + + + + + + 0 + 0 + 1 + + -29.4817 55.7591 0 0 -0 0 + + + 4119 372000000 + 4176 26179814 + 1546520791 158274505 + 4119372 + + 37.0773 46.3885 0 0 -0 0 + 1 1 1 + + 37.0773 46.3885 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 29.6802 46.186 0 0 -0 0 + 1 1 1 + + 29.6802 46.186 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 11.0018 -20.0112 0 0 -0 1.57 + 1 1 1 + + 11.0018 -20.0112 0 0 -0 1.57 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -19.4146 14.0954 0 0 -0 0 + 1 1 1 + + -19.4146 14.0954 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -22.6829 59.4372 0 0 -0 0 + 1 1 1 + + -22.6829 59.4372 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -51.3459 66.452 0 0 -0 0 + 1 1 1 + + -51.3459 66.452 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -67.8148 63.4032 0 0 -0 0 + 1 1 1 + + -67.8148 63.4032 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -44.9975 55.8332 0 0 -0 0 + 1 1 1 + + -44.9975 55.8332 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -70.1123 55.1751 0 0 -0 0 + 1 1 1 + + -70.1123 55.1751 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -55.98 57.6872 0 0 -0 0 + 1 1 1 + + -55.98 57.6872 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -33.4672 55.9308 0 0 -0 0 + 1 1 1 + + -33.4672 55.9308 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -12.3238 6.78845 0.05 5e-06 -2e-06 -1e-06 + 1 1 1 + + -12.3238 6.78845 0.05 5e-06 -2e-06 -1e-06 + 0 0 0 0 -0 0 + 0 0 -9.8 0 -0 0 + 0 0 -9.8 0 -0 0 + + + + 66.2638 31.348 0 0 -0 0 + 1 1 1 + + 66.2638 31.348 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 55.3455 -53.9597 0 0 -0 0 + 1 1 1 + + 55.3455 -53.9597 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -78.0686 38.8743 0 0 -0 0 + 1 1 1 + + -78.0686 38.8743 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 10.9609 35.7042 0 0 -0 0 + 1 1 1 + + 10.9609 35.7042 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -4.99796 57.6217 0 0 -0 0 + 1 1 1 + + -4.99796 57.6217 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 36.5702 45.15 0.049991 2e-06 -2e-06 -1e-06 + 1 1 1 + + 36.5702 45.15 0.049991 2e-06 -2e-06 -1e-06 + 0 0 0 0 -0 0 + 0 0 -9.8 0 -0 0 + 0 0 -9.8 0 -0 0 + + + + -57.4549 10.2909 0 0 -0 0 + 1 1 1 + + -57.4549 10.2909 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 64.6575 55.6984 0 0 -0 0 + 1 1 1 + + 64.6575 55.6984 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -13.5558 0.477425 0 0 -0 0 + 1 1 1 + + -13.5558 0.477425 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 6.37821 0.583634 0 0 -0 0 + 1 1 1 + + 6.37821 0.583634 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 10.2031 18.113 0 0 -0 0 + 1 1 1 + + 10.2031 18.113 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 24.8252 0.209919 0 0 -0 0 + 1 1 1 + + 24.8252 0.209919 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 26.888 -18.1786 0 0 -0 0 + 1 1 1 + + 26.888 -18.1786 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 29.6101 17.2232 0 0 -0 0 + 1 1 1 + + 29.6101 17.2232 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 40.1025 6.22208 0 0 -0 0 + 1 1 1 + + 40.1025 6.22208 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 41.0911 -11.5315 0 0 -0 0 + 1 1 1 + + 41.0911 -11.5315 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -31.7511 -12.9041 0 0 -0 0 + 1 1 1 + + -31.7511 -12.9041 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -11.8014 -17.5637 0 0 -0 0 + 1 1 1 + + -11.8014 -17.5637 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 41.4998 -29.7064 0 0 -0 0 + 1 1 1 + + 41.4998 -29.7064 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 26.1918 -34.3701 0 0 -0 0 + 1 1 1 + + 26.1918 -34.3701 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -39.914 -12.9126 0 0 -0 0 + 1 1 1 + + -39.914 -12.9126 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 39.7398 39.4432 0 0 -0 0 + 1 1 1 + + 39.7398 39.4432 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 24.1835 43.1447 0 0 -0 0 + 1 1 1 + + 24.1835 43.1447 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 40.5649 52.9156 0 0 -0 0 + 1 1 1 + + 40.5649 52.9156 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 24.047 56.8673 0 0 -0 0 + 1 1 1 + + 24.047 56.8673 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 7.57971 44.8403 0 0 -0 0 + 1 1 1 + + 7.57971 44.8403 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -41.9881 6.39224 0 0 -0 0 + 1 1 1 + + -41.9881 6.39224 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -44.401 -30.0859 0 0 -0 0 + 1 1 1 + + -44.401 -30.0859 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -52.1037 39.1152 0 0 -0 0 + 1 1 1 + + -52.1037 39.1152 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -8.09974 46.8393 0 0 -0 0 + 1 1 1 + + -8.09974 46.8393 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -23.7655 54.632 0 0 -0 0 + 1 1 1 + + -23.7655 54.632 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -57.8809 25.5762 0 0 -0 0 + 1 1 1 + + -57.8809 25.5762 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -54.5213 -8.16502 0 0 -0 0 + 1 1 1 + + -54.5213 -8.16502 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -53.3933 -22.1091 0 0 -0 0 + 1 1 1 + + -53.3933 -22.1091 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -40.7343 56.2327 0 0 -0 0 + 1 1 1 + + -40.7343 56.2327 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -57.6009 54.3864 0 0 -0 0 + 1 1 1 + + -57.6009 54.3864 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -61.6017 40.7819 0 0 -0 0 + 1 1 1 + + -61.6017 40.7819 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -42.5242 24.9399 0 0 -0 0 + 1 1 1 + + -42.5242 24.9399 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -19.9765 38.1058 0 0 -0 0 + 1 1 1 + + -19.9765 38.1058 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 38.8642 -27.432 0 0 -0 0 + 1 1 1 + + 38.8642 -27.432 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 41.1356 -40.2 0 0 -0 0 + 1 1 1 + + 41.1356 -40.2 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 59.3685 -40.0699 0 0 -0 0 + 1 1 1 + + 59.3685 -40.0699 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 22.9353 -40.6198 0 0 -0 0 + 1 1 1 + + 22.9353 -40.6198 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 8.35018 -31.2659 0 0 -0 0 + 1 1 1 + + 8.35018 -31.2659 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 6.27442 -40.183 0 0 -0 0 + 1 1 1 + + 6.27442 -40.183 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -10.7792 -33.517 0 0 -0 0 + 1 1 1 + + -10.7792 -33.517 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -29.9691 -28.748 0 0 -0 0 + 1 1 1 + + -29.9691 -28.748 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -30.2733 -40.503 0 0 -0 0 + 1 1 1 + + -30.2733 -40.503 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -12.4234 -43.1011 0 0 -0 0 + 1 1 1 + + -12.4234 -43.1011 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -33.0894 6.09046 0 0 -0 0 + 1 1 1 + + -33.0894 6.09046 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -10.8691 24.6966 0 0 -0 0 + 1 1 1 + + -10.8691 24.6966 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -3 30 0 0 -0 0 + 1 1 1 + + -3 30 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -29.326 25.3742 0 0 -0 0 + 1 1 1 + + -29.326 25.3742 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 40.2279 21.9338 0 0 -0 0 + 1 1 1 + + 40.2279 21.9338 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 21.4043 31.4114 0 0 -0 0 + 1 1 1 + + 21.4043 31.4114 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 8.11641 -15.0475 0 0 -0 0 + 1 1 1 + + 8.11641 -15.0475 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 60.0043 -19.8285 0 0 -0 0 + 1 1 1 + + 60.0043 -19.8285 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 56.9752 20.2287 0 0 -0 0 + 1 1 1 + + 56.9752 20.2287 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 56.1858 33.8725 0 0 -0 0 + 1 1 1 + + 56.1858 33.8725 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 56.0408 50.4969 0 0 -0 0 + 1 1 1 + + 56.0408 50.4969 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 56.2979 -2.61646 0 0 -0 0 + 1 1 1 + + 56.2979 -2.61646 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 16.5483 24.3805 0 0 -0 0 + 1 1 1 + + 16.5483 24.3805 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -13.6895 -13.7704 0 0 -0 0 + 1 1 1 + + -13.6895 -13.7704 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -31.3639 32.9982 0 0 -0 0 + 1 1 1 + + -31.3639 32.9982 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 48.5915 -11.6643 0 0 -0 0 + 1 1 1 + + 48.5915 -11.6643 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -48.228 31.3018 0 0 -0 0 + 1 1 1 + + -48.228 31.3018 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -69.8124 -25.3381 0 0 0 -1.56682 + 1 1 1 + + -69.8124 -25.3381 0 0 0 -1.56682 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 0 0 0 0 -0 0 + 1 1 1 + + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 1.68165 -12.0205 0 0 -0 3.14 + 1 1 1 + + 1.68165 -12.0205 0 0 -0 3.14 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 19.1119 -1.20111 0.057767 0.023201 0.021322 0.66395 + 1 1 1 + + 19.1119 -1.20111 0.057767 0.023201 0.021322 0.66395 + 0 0 0 0 -0 0 + 5.9e-05 5.3e-05 -9.66543 -0.006898 0.007585 0 + 5.9e-05 5.3e-05 -9.66543 0 -0 0 + + + + -33.5181 35.9736 0 0 -0 0 + 1 1 1 + + -33.5181 35.9736 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -41.1763 35.9619 0 0 -0 0 + 1 1 1 + + -41.1763 35.9619 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -41.1857 44.2721 0 0 -0 0 + 1 1 1 + + -41.1857 44.2721 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -33.5131 44.2491 0 0 -0 0 + 1 1 1 + + -33.5131 44.2491 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -33.2201 -11.8855 0 0 -0 0 + 1 1 1 + + -33.2201 -11.8855 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -34.8598 10.2922 0 0 -0 0 + 1 1 1 + + -34.8598 10.2922 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -60.8281 50.7166 0 0 -0 0 + 1 1 1 + + -60.8281 50.7166 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -62.9242 27.0981 0 0 -0 0 + 1 1 1 + + -62.9242 27.0981 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -15.6439 39.5028 0 0 -0 0 + 1 1 1 + + -15.6439 39.5028 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -15.3983 32.1285 0 0 -0 0 + 1 1 1 + + -15.3983 32.1285 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -15.8405 22.7217 0 0 -0 0 + 1 1 1 + + -15.8405 22.7217 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -20.1234 50.4043 0 0 -0 0 + 1 1 1 + + -20.1234 50.4043 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -29.5066 21.5815 0 0 -0 0 + 1 1 1 + + -29.5066 21.5815 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -62.3164 41.8782 0 0 -0 0 + 1 1 1 + + -62.3164 41.8782 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -62.9134 33.7027 0 0 -0 0 + 1 1 1 + + -62.9134 33.7027 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -33.3129 63.4974 0 0 -0 0 + 1 1 1 + + -33.3129 63.4974 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -42.2669 67.9594 0 0 -0 0 + 1 1 1 + + -42.2669 67.9594 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 38.405 -26.046 0 0 -0 0 + 1 1 1 + + 38.405 -26.046 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 40.6151 -35.8737 0 0 -0 0 + 1 1 1 + + 40.6151 -35.8737 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -28.0888 -12.0544 0 0 -0 0 + 1 1 1 + + -28.0888 -12.0544 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 41.0536 -14.3729 0 0 -0 0 + 1 1 1 + + 41.0536 -14.3729 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 43.4137 -7.15398 0 0 -0 0 + 1 1 1 + + 43.4137 -7.15398 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 51.0909 -2.79586 0 0 -0 0 + 1 1 1 + + 51.0909 -2.79586 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 61.5025 -28.5527 0 0 -0 0 + 1 1 1 + + 61.5025 -28.5527 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -15.8221 -53.0555 0 0 -0 0 + 1 1 1 + + -15.8221 -53.0555 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 29.5102 23.8732 0.05 -3e-06 -0 0.052895 + 1 1 1 + + 29.5102 23.8732 0.05 -3e-06 -0 0.052895 + 0 0 0 0 -0 0 + 0.05732 -1.51813 1.28972 1.59901 0.062462 0.008556 + 4.58562 -121.45 103.178 0 -0 0 + + + + 14.5566 3.48624 0.050001 -1e-06 1e-06 0.148736 + 1 1 1 + + 14.5566 3.48624 0.050001 -1e-06 1e-06 0.148736 + 0 0 0 0 -0 0 + -1.08848 -3.87026 2.90551 0.849868 -1.53689 2.74179 + -87.0787 -309.62 232.441 0 -0 0 + + + + 17.7688 6.39021 1.24969 0 -0 0 + 1 1 1 + + 17.7688 6.39021 1.24969 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 42.8991 16.7883 0 0 -0 0 + 1 1 1 + + 42.8991 16.7883 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 42.6929 25.5039 0 0 -0 0 + 1 1 1 + + 42.6929 25.5039 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 42.5277 33.4506 0 0 -0 0 + 1 1 1 + + 42.5277 33.4506 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 42.7279 42.8609 0 0 -0 0 + 1 1 1 + + 42.7279 42.8609 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 25.3733 43.3675 0 0 -0 0 + 1 1 1 + + 25.3733 43.3675 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 25.5958 33.7953 0 0 -0 0 + 1 1 1 + + 25.5958 33.7953 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 25.3451 25.6808 0 0 -0 0 + 1 1 1 + + 25.3451 25.6808 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 25.0656 17.6919 0 0 -0 0 + 1 1 1 + + 25.0656 17.6919 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 25.0708 9.0417 0 0 -0 0 + 1 1 1 + + 25.0708 9.0417 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 8.9533 6.48508 0 0 -0 0 + 1 1 1 + + 8.9533 6.48508 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -1.12714 6.4849 0 0 -0 0 + 1 1 1 + + -1.12714 6.4849 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -9.73685 6.35995 0 0 -0 0 + 1 1 1 + + -9.73685 6.35995 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -18.4064 6.56842 0 0 -0 0 + 1 1 1 + + -18.4064 6.56842 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -26.2948 6.6754 0 0 -0 0 + 1 1 1 + + -26.2948 6.6754 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -45.5495 48.5692 0 0 -0 0 + 1 1 1 + + -45.5495 48.5692 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -30.2369 48.7813 0 0 -0 0 + 1 1 1 + + -30.2369 48.7813 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -29.5233 31.075 0 0 -0 0 + 1 1 1 + + -29.5233 31.075 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -51.8369 57.3475 0 0 -0 0 + 1 1 1 + + -51.8369 57.3475 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -51.8853 59.2657 0 0 -0 0 + 1 1 1 + + -51.8853 59.2657 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -29.4817 55.7591 0 0 -0 0 + 1 1 1 + + -29.4817 55.7591 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 11.1816 -7.351 0 0 -0 0 + 1 1 1 + + 11.1816 -7.351 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 0.800423 -6.90609 0 0 -0 0 + 1 1 1 + + 0.800423 -6.90609 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -8.41909 -6.99773 0 0 -0 0 + 1 1 1 + + -8.41909 -6.99773 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -18.0551 -6.85845 0 0 -0 0 + 1 1 1 + + -18.0551 -6.85845 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -27.32 -6.49185 0 0 -0 0 + 1 1 1 + + -27.32 -6.49185 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 42.8362 8.45209 0 0 -0 0 + 1 1 1 + + 42.8362 8.45209 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -37.3888 38.8688 0 0 -0 0 + 1 1 1 + + -37.3888 38.8688 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -3.86599 17.4497 0 0 -0 0 + 1 1 1 + + -3.86599 17.4497 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 54.8849 12.3123 0 0 -0 0 + 1 1 1 + + 54.8849 12.3123 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 50.1371 29.367 0 0 -0 1.58242 + 1 1 1 + + 50.1371 29.367 0 0 -0 1.58242 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 46.7356 32.5011 0 0 -0 0 + 1 1 1 + + 46.7356 32.5011 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -25.9707 102.557 0 0 -0 0 + 1 1 1 + + -25.9707 102.557 0.0117 0 -0 0 + 0 0 0 0 -0 0 + -3e-06 0 0 0 -0.000222 0 + 0 0 0 0 -0 0 + + + -25.9707 102.557 0.04265 0 -0 0 + 0 0 0 0 -0 0 + -1e-05 0 0 0 -0.00022 0 + 0 0 0 0 -0 0 + + + + 29.7214 62.4134 0 0 -0 0 + 1 1 1 + + 29.7214 62.4134 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 47.3698 39.9222 0 0 0 -1.57 + 1 1 1 + + 47.3698 39.9222 0 0 0 -1.57 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + -28.4756 -20.8424 0 0 -0 0 + 1 1 1 + + -28.4756 -20.8424 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + 0 0 0 0 -0 0 + + + + 0 0 10 0 -0 0 + + + + + 6.47997 224.99 361.297 0 0.986045 -2.03136 + orbit + perspective + + + + diff --git a/ros/src/simulation/lgsvl_simulator_bridge/.gitignore b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/.gitignore similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/.gitignore rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/.gitignore diff --git a/ros/src/simulation/lgsvl_simulator_bridge/CHANGELOG.rst b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/CHANGELOG.rst similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/CHANGELOG.rst rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/CHANGELOG.rst diff --git a/ros/src/simulation/lgsvl_simulator_bridge/CMakeLists.txt b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/CMakeLists.txt similarity index 96% rename from ros/src/simulation/lgsvl_simulator_bridge/CMakeLists.txt rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/CMakeLists.txt index c6b5a40296a..49593885fac 100644 --- a/ros/src/simulation/lgsvl_simulator_bridge/CMakeLists.txt +++ b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/CMakeLists.txt @@ -38,7 +38,7 @@ foreach (programs) ) endforeach (programs) -foreach (dir launch rviz) +foreach (dir launch rviz config media) install(DIRECTORY ${dir}/ DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/${dir}) endforeach (dir) diff --git a/ros/src/simulation/lgsvl_simulator_bridge/README.md b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/README.md similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/README.md rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/README.md diff --git a/ros/src/simulation/lgsvl_simulator_bridge/bin/.gitignore b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/bin/.gitignore similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/bin/.gitignore rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/bin/.gitignore diff --git a/ros/src/simulation/lgsvl_simulator_bridge/config/sample.json b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/config/sample.json similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/config/sample.json rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/config/sample.json diff --git a/ros/src/simulation/lgsvl_simulator_bridge/launch/bridge.launch b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/launch/bridge.launch similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/launch/bridge.launch rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/launch/bridge.launch diff --git a/ros/src/simulation/lgsvl_simulator_bridge/launch/lgsvl_simulator.launch b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/launch/lgsvl_simulator.launch similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/launch/lgsvl_simulator.launch rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/launch/lgsvl_simulator.launch diff --git a/ros/src/simulation/lgsvl_simulator_bridge/media/autoware.png b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/media/autoware.png similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/media/autoware.png rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/media/autoware.png diff --git a/ros/src/simulation/lgsvl_simulator_bridge/media/lgsvl_simulator_bridge.png b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/media/lgsvl_simulator_bridge.png similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/media/lgsvl_simulator_bridge.png rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/media/lgsvl_simulator_bridge.png diff --git a/ros/src/simulation/lgsvl_simulator_bridge/package.xml b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/package.xml similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/package.xml rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/package.xml diff --git a/ros/src/simulation/lgsvl_simulator_bridge/plugin.xml b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/plugin.xml similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/plugin.xml rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/plugin.xml diff --git a/ros/src/simulation/lgsvl_simulator_bridge/quick_setup_sim.bash b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/quick_setup_sim.bash similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/quick_setup_sim.bash rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/quick_setup_sim.bash diff --git a/ros/src/simulation/lgsvl_simulator_bridge/resource/LgsvlSimulatorConfigratorPlugin.ui b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/resource/LgsvlSimulatorConfigratorPlugin.ui similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/resource/LgsvlSimulatorConfigratorPlugin.ui rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/resource/LgsvlSimulatorConfigratorPlugin.ui diff --git a/ros/src/simulation/lgsvl_simulator_bridge/rviz/lgsvl_simulator.rviz b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/rviz/lgsvl_simulator.rviz similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/rviz/lgsvl_simulator.rviz rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/rviz/lgsvl_simulator.rviz diff --git a/ros/src/simulation/lgsvl_simulator_bridge/scripts/launch_sim.bash b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/scripts/launch_sim.bash similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/scripts/launch_sim.bash rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/scripts/launch_sim.bash diff --git a/ros/src/simulation/lgsvl_simulator_bridge/scripts/rqt_lgsvl_simulator_configurator b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/scripts/rqt_lgsvl_simulator_configurator similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/scripts/rqt_lgsvl_simulator_configurator rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/scripts/rqt_lgsvl_simulator_configurator diff --git a/ros/src/simulation/lgsvl_simulator_bridge/setup.py b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/setup.py similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/setup.py rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/setup.py diff --git a/ros/src/simulation/lgsvl_simulator_bridge/src/lgsvl_simulator_bridge/__init__.py b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/src/lgsvl_simulator_bridge/__init__.py similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/src/lgsvl_simulator_bridge/__init__.py rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/src/lgsvl_simulator_bridge/__init__.py diff --git a/ros/src/simulation/lgsvl_simulator_bridge/src/lgsvl_simulator_bridge/configurator.py b/ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/src/lgsvl_simulator_bridge/configurator.py similarity index 100% rename from ros/src/simulation/lgsvl_simulator_bridge/src/lgsvl_simulator_bridge/configurator.py rename to ros/src/simulation/lgsvl_simulator/lgsvl_simulator_bridge/src/lgsvl_simulator_bridge/configurator.py diff --git a/ros/src/socket/packages/mqtt_socket/CMakeLists.txt b/ros/src/socket/packages/mqtt_socket/CMakeLists.txt index 258a93e1d6c..33fbd044544 100644 --- a/ros/src/socket/packages/mqtt_socket/CMakeLists.txt +++ b/ros/src/socket/packages/mqtt_socket/CMakeLists.txt @@ -8,42 +8,46 @@ find_package(autoware_msgs REQUIRED) find_package(tablet_socket_msgs REQUIRED) find_package(catkin REQUIRED COMPONENTS - roscpp - roslib - std_msgs - autoware_can_msgs - autoware_msgs -) + roscpp + roslib + std_msgs + autoware_can_msgs + autoware_msgs + ) catkin_package(CATKIN_DEPENDS - roscpp - roslib - std_msgs - autoware_msgs - autoware_can_msgs - tablet_socket_msgs -) + roscpp + roslib + std_msgs + autoware_msgs + autoware_can_msgs + tablet_socket_msgs + ) if (EXISTS /usr/include/mosquitto.h) - set(CMAKE_CXX_FLAGS "-O2 -Wall -fpermissive ${CMAKE_CXX_FLAGS}") - - include_directories( - include - ${catkin_INCLUDE_DIRS} - ${tablet_socket_msgs_INCLUDE_DIRS} - ${autoware_msgs_INCLUDE_DIRS} - ) - - add_executable(mqtt_sender nodes/mqtt_sender/mqtt_sender.cpp) - target_link_libraries(mqtt_sender -lmosquitto -lyaml-cpp ${catkin_LIBRARIES}) - add_dependencies(mqtt_sender - ${catkin_EXPORTED_TARGETS} - ) + set(CMAKE_CXX_FLAGS "-O2 -Wall -fpermissive ${CMAKE_CXX_FLAGS}") - add_executable(mqtt_receiver nodes/mqtt_receiver/mqtt_receiver.cpp) - target_link_libraries(mqtt_receiver -lmosquitto -lyaml-cpp ${catkin_LIBRARIES}) - add_dependencies(mqtt_receiver ${catkin_EXPORTED_TARGETS} + include_directories( + include + ${catkin_INCLUDE_DIRS} + ${tablet_socket_msgs_INCLUDE_DIRS} + ${autoware_msgs_INCLUDE_DIRS} ) + + add_executable(mqtt_sender nodes/mqtt_sender/mqtt_sender.cpp) + target_link_libraries(mqtt_sender -lmosquitto -lyaml-cpp ${catkin_LIBRARIES}) + add_dependencies(mqtt_sender + ${catkin_EXPORTED_TARGETS} + ) + + add_executable(mqtt_receiver nodes/mqtt_receiver/mqtt_receiver.cpp) + target_link_libraries(mqtt_receiver -lmosquitto -lyaml-cpp ${catkin_LIBRARIES}) #TODO: FIX THIS + add_dependencies(mqtt_receiver ${catkin_EXPORTED_TARGETS}) + + install(TARGETS mqtt_receiver mqtt_sender + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) else () - message("'libmosquitto-dev' is not installed. 'mqtt_sender' and 'mqtt_receiver' will not be built.") + message("'libmosquitto-dev' is not installed. 'mqtt_sender' and 'mqtt_receiver' will not be built.") endif () diff --git a/ros/src/socket/packages/oculus_socket/CMakeLists.txt b/ros/src/socket/packages/oculus_socket/CMakeLists.txt index a20c8cb7604..4013dfc194d 100644 --- a/ros/src/socket/packages/oculus_socket/CMakeLists.txt +++ b/ros/src/socket/packages/oculus_socket/CMakeLists.txt @@ -19,3 +19,12 @@ include_directories( add_executable(oculus_sender nodes/oculus_sender/oculus_sender.cpp) target_link_libraries(oculus_sender ${catkin_LIBRARIES}) + +install(TARGETS oculus_sender + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/socket/packages/tablet_socket/CMakeLists.txt b/ros/src/socket/packages/tablet_socket/CMakeLists.txt index 9803f021a9f..fdd7ca8ff31 100644 --- a/ros/src/socket/packages/tablet_socket/CMakeLists.txt +++ b/ros/src/socket/packages/tablet_socket/CMakeLists.txt @@ -40,3 +40,8 @@ add_dependencies(tablet_receiver ${catkin_EXPORTED_TARGETS}) add_executable(tablet_sender nodes/tablet_sender/tablet_sender.cpp) target_link_libraries(tablet_sender ${catkin_LIBRARIES}) add_dependencies(tablet_sender ${catkin_EXPORTED_TARGETS}) + +install(TARGETS tablet_receiver tablet_sender + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) \ No newline at end of file diff --git a/ros/src/socket/packages/udon_socket/CMakeLists.txt b/ros/src/socket/packages/udon_socket/CMakeLists.txt index 86114db8dd4..2ec390c8b67 100644 --- a/ros/src/socket/packages/udon_socket/CMakeLists.txt +++ b/ros/src/socket/packages/udon_socket/CMakeLists.txt @@ -33,3 +33,8 @@ target_link_libraries(udon_sender udon ${catkin_LIBRARIES}) add_dependencies(udon_sender ${catkin_EXPORTED_TARGETS} ) + +install(TARGETS udon udon_receiver udon_sender + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) \ No newline at end of file diff --git a/ros/src/socket/packages/vehicle_socket/CMakeLists.txt b/ros/src/socket/packages/vehicle_socket/CMakeLists.txt index 723f04e3971..73f1528c6b0 100644 --- a/ros/src/socket/packages/vehicle_socket/CMakeLists.txt +++ b/ros/src/socket/packages/vehicle_socket/CMakeLists.txt @@ -42,3 +42,8 @@ target_link_libraries(vehicle_sender ${catkin_LIBRARIES}) add_dependencies(vehicle_sender ${catkin_EXPORTED_TARGETS} ) + +install(TARGETS vehicle_sender vehicle_receiver + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/.gitignore b/ros/src/system/autoware_health_checker/.gitignore new file mode 100644 index 00000000000..602d1f8df27 --- /dev/null +++ b/ros/src/system/autoware_health_checker/.gitignore @@ -0,0 +1,2 @@ +data/node_depends.dot +data/node_depends.pdf \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/CMakeLists.txt b/ros/src/system/autoware_health_checker/CMakeLists.txt new file mode 100644 index 00000000000..b4c0f5051de --- /dev/null +++ b/ros/src/system/autoware_health_checker/CMakeLists.txt @@ -0,0 +1,88 @@ +cmake_minimum_required(VERSION 2.8.3) +project(autoware_health_checker) + +add_compile_options(-std=c++11) + +find_package(catkin REQUIRED COMPONENTS + autoware_system_msgs + roscpp + diagnostic_msgs + jsk_rviz_plugins + rostest + rosunit + rosgraph_msgs +) + +catkin_package( + INCLUDE_DIRS include + LIBRARIES node_status_publisher + CATKIN_DEPENDS autoware_system_msgs roscpp rosgraph_msgs +# DEPENDS system_lib +) + +include_directories( + include + ${catkin_INCLUDE_DIRS} + ${autoware_system_msgs_INCLUDE_DIRS} +) + +set(NODE_STATUS_PUBLISHER_SRC + src/node_status_publisher.cpp + src/diag_buffer.cpp + src/rate_checker.cpp +) +add_library(node_status_publisher + ${NODE_STATUS_PUBLISHER_SRC} +) +target_link_libraries(node_status_publisher ${catkin_LIBRARIES}) +add_dependencies(node_status_publisher ${catkin_EXPORTED_TARGETS} autoware_system_msgs_generate_messages_cpp) + +add_library(system_status_subscriber + src/system_status_subscriber.cpp +) +target_link_libraries(system_status_subscriber ${catkin_LIBRARIES}) +add_dependencies(system_status_subscriber ${catkin_EXPORTED_TARGETS} autoware_system_msgs_generate_messages_cpp) + +add_executable(health_aggregator + src/health_aggregator_node.cpp + src/health_aggregator.cpp +) +target_link_libraries(health_aggregator ${catkin_LIBRARIES}) +add_dependencies(health_aggregator ${catkin_EXPORTED_TARGETS} autoware_system_msgs_generate_messages_cpp) + +add_executable(health_analyzer + src/health_analyzer_node.cpp + src/health_analyzer.cpp +) +target_link_libraries(health_analyzer ${catkin_LIBRARIES}) +add_dependencies(health_analyzer ${catkin_EXPORTED_TARGETS} autoware_system_msgs_generate_messages_cpp) + +# CPP Execution programs +set(CPP_EXEC_NAMES health_aggregator health_analyzer) +foreach(cpp_exec_names ${CPP_EXEC_NAMES}) + install(TARGETS ${cpp_exec_names} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) +endforeach(cpp_exec_names) + +# include header files +install(DIRECTORY include/${PROJECT_NAME}/ + DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +) + +# Install library +install(TARGETS node_status_publisher system_status_subscriber + ARCHIVE DESTINATION lib + LIBRARY DESTINATION lib + RUNTIME DESTINATION bin +) + +if (CATKIN_ENABLE_TESTING) + find_package(rostest REQUIRED) + add_rostest_gtest(test-autoware_health_checker + test/test_autoware_health_checker.test + test/src/test_autoware_health_checker.cpp + ${NODE_STATUS_PUBLISHER_SRC}) + target_link_libraries(test-autoware_health_checker + ${catkin_LIBRARIES}) +endif () \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/data/generate_pdf.sh b/ros/src/system/autoware_health_checker/data/generate_pdf.sh new file mode 100644 index 00000000000..56b33905d5a --- /dev/null +++ b/ros/src/system/autoware_health_checker/data/generate_pdf.sh @@ -0,0 +1 @@ +dot -T pdf node_depends.dot -o node_depends.pdf \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/include/autoware_health_checker/constants.h b/ros/src/system/autoware_health_checker/include/autoware_health_checker/constants.h new file mode 100644 index 00000000000..de37415ee81 --- /dev/null +++ b/ros/src/system/autoware_health_checker/include/autoware_health_checker/constants.h @@ -0,0 +1,44 @@ +#ifndef CONSTANTS_H_INCLUDED +#define CONSTANTS_H_INCLUDED + +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +#include + +namespace autoware_health_checker { +constexpr uint8_t LEVEL_UNDEFINED = + autoware_system_msgs::DiagnosticStatus::UNDEFINED; +constexpr uint8_t LEVEL_OK = autoware_system_msgs::DiagnosticStatus::OK; +constexpr uint8_t LEVEL_WARN = autoware_system_msgs::DiagnosticStatus::WARN; +constexpr uint8_t LEVEL_ERROR = autoware_system_msgs::DiagnosticStatus::ERROR; +constexpr uint8_t LEVEL_FATAL = autoware_system_msgs::DiagnosticStatus::FATAL; + +constexpr uint8_t TYPE_UNDEFINED = + autoware_system_msgs::DiagnosticStatus::UNDEFINED; +constexpr uint8_t TYPE_OUT_OF_RANGE = + autoware_system_msgs::DiagnosticStatus::OUT_OF_RANGE; +constexpr uint8_t TYPE_RATE_IS_SLOW = + autoware_system_msgs::DiagnosticStatus::RATE_IS_SLOW; + +constexpr double BUFFER_LENGTH = 5.0; +constexpr double UPDATE_RATE = 10.0; +} + +#endif // CONSTANTS_H_INCLUDED \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/include/autoware_health_checker/diag_buffer.h b/ros/src/system/autoware_health_checker/include/autoware_health_checker/diag_buffer.h new file mode 100644 index 00000000000..390ce5528b2 --- /dev/null +++ b/ros/src/system/autoware_health_checker/include/autoware_health_checker/diag_buffer.h @@ -0,0 +1,62 @@ +#ifndef DIAG_BUFFER_H_INCLUDED +#define DIAG_BUFFER_H_INCLUDED + +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +// headers in Autoare +#include +#include + +// headers in STL +#include +#include +#include +#include + +// headers in ROS +#include + +namespace autoware_health_checker { +class DiagBuffer { +public: + DiagBuffer(std::string key, uint8_t type, std::string description, + double buffer_length); + ~DiagBuffer(); + void addDiag(autoware_system_msgs::DiagnosticStatus status); + autoware_system_msgs::DiagnosticStatusArray getAndClearData(); + const uint8_t type; + const std::string description; + +private: + std::mutex mtx_; + uint8_t getErrorLevel(); + void updateBuffer(); + std::string key_; + ros::Duration buffer_length_; + std::map buffer_; + autoware_system_msgs::DiagnosticStatusArray filterBuffer(ros::Time now, + uint8_t level); + ros::Publisher status_pub_; + bool isOlderTimestamp(const autoware_system_msgs::DiagnosticStatus &a, + const autoware_system_msgs::DiagnosticStatus &b); +}; +} + +#endif // DIAG_BUFFER_H_INCLUDED \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/include/autoware_health_checker/health_aggregator.h b/ros/src/system/autoware_health_checker/include/autoware_health_checker/health_aggregator.h new file mode 100644 index 00000000000..14d420686f2 --- /dev/null +++ b/ros/src/system/autoware_health_checker/include/autoware_health_checker/health_aggregator.h @@ -0,0 +1,81 @@ +#ifndef HEALTH_AGGREGATOR_H_INCLUDED +#define HEALTH_AGGREGATOR_H_INCLUDED + +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +// headers in ROS +#include +#include +#include + +// headers in Autoware +#include +#include +#include +#include + +// headers in boost +#include +#include +#include +#include +#include + +// headers in STL +#include +#include + +class HealthAggregator { +public: + HealthAggregator(ros::NodeHandle nh, ros::NodeHandle pnh); + ~HealthAggregator(); + void run(); + +private: + ros::NodeHandle nh_; + ros::NodeHandle pnh_; + ros::Publisher system_status_pub_; + std::map text_pub_; + ros::Subscriber node_status_sub_; + ros::Subscriber diagnostic_array_sub_; + ros::Subscriber topic_statistics_sub_; + void publishSystemStatus(); + void nodeStatusCallback(const autoware_system_msgs::NodeStatus::ConstPtr msg); + void + diagnosticArrayCallback(const diagnostic_msgs::DiagnosticArray::ConstPtr msg); + void + topicStatisticsCallback(const rosgraph_msgs::TopicStatistics::ConstPtr msg); + std::string + generateText(std::vector status); + jsk_rviz_plugins::OverlayText + generateOverlayText(autoware_system_msgs::SystemStatus status, uint8_t level); + std::vector + filterNodeStatus(autoware_system_msgs::SystemStatus status, uint8_t level); + boost::optional + convert(const diagnostic_msgs::DiagnosticArray::ConstPtr msg); + autoware_system_msgs::SystemStatus system_status_; + std::mutex mtx_; + void updateConnectionStatus(); + // key topic_name,publisher_node,subscriber_node + std::map, rosgraph_msgs::TopicStatistics> + topic_status_; + void updateTopicStatus(); +}; +#endif // HEALTH_AGGREGATOR_H_INCLUDED \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/include/autoware_health_checker/health_analyzer.h b/ros/src/system/autoware_health_checker/include/autoware_health_checker/health_analyzer.h new file mode 100644 index 00000000000..cc1355d7ea9 --- /dev/null +++ b/ros/src/system/autoware_health_checker/include/autoware_health_checker/health_analyzer.h @@ -0,0 +1,98 @@ +#ifndef HEALTH_ANALYZER_H_INCLUDED +#define HEALTH_ANALYZER_H_INCLUDED + +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +// headers in ROS +#include +#include + +// headers in STL +#include + +// headers in Autoware +#include +#include + +// headers in boost +#include +#include +#include +#include +#include +#include +#include + +struct topic_property { + std::string node_pub; + std::string node_sub; +}; + +struct node_property { + std::string node_name; +}; + +typedef boost::adjacency_list + graph_t; +typedef graph_t::vertex_descriptor vertex_t; +typedef graph_t::edge_descriptor edge_t; +typedef boost::graph_traits::adjacency_iterator adjacency_iterator_t; +typedef boost::graph_traits::out_edge_iterator out_edge_iterator_t; + +class HealthAnalyzer { +public: + HealthAnalyzer(ros::NodeHandle nh, ros::NodeHandle pnh); + ~HealthAnalyzer(); + +private: + ros::Subscriber system_status_sub_; + ros::Subscriber topic_statistics_sub_; + ros::Publisher system_status_summary_pub_; + ros::NodeHandle nh_; + ros::NodeHandle pnh_; + void + systemStatusCallback(const autoware_system_msgs::SystemStatus::ConstPtr msg); + void generateDependGraph(autoware_system_msgs::SystemStatus status); + void addDepend(rosgraph_msgs::TopicStatistics statistics); + autoware_system_msgs::SystemStatus + filterSystemStatus(autoware_system_msgs::SystemStatus status); + std::vector + findWarningNodes(autoware_system_msgs::SystemStatus status); + std::vector + findErrorNodes(autoware_system_msgs::SystemStatus status); + std::vector findRootNodes(std::vector target_nodes); + bool nodeAlreadyExistsInGraph(std::string target_node); + vertex_t getTargetNode(std::string target_node); + int countWarn(autoware_system_msgs::SystemStatus msg); + void writeDot(); + graph_t depend_graph_; + int warn_nodes_count_threshold_; + template bool isAlreadyExist(std::vector vector, T target) { + for (auto itr = vector.begin(); itr != vector.end(); itr++) { + if (target == *itr) { + return true; + } + } + return false; + }; +}; + +#endif // HEALTH_ANALYZER_H_INCLUDED \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/include/autoware_health_checker/node_status_publisher.h b/ros/src/system/autoware_health_checker/include/autoware_health_checker/node_status_publisher.h new file mode 100644 index 00000000000..a1f4a7583b5 --- /dev/null +++ b/ros/src/system/autoware_health_checker/include/autoware_health_checker/node_status_publisher.h @@ -0,0 +1,113 @@ +#ifndef NODE_STATUS_PUBLISHER_H_INCLUDED +#define NODE_STATUS_PUBLISHER_H_INCLUDED + +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +// headers in ROS +#include + +// headers in Autoware +#include +#include +#include +#include + +// headers in STL +#include +#include +#include +#include + +// headers in boost +#include +#include +#include +#include +#include +#include + +namespace autoware_health_checker { +class NodeStatusPublisher { +public: + NodeStatusPublisher(ros::NodeHandle nh, ros::NodeHandle pnh); + ~NodeStatusPublisher(); + void ENABLE(); + uint8_t CHECK_MIN_VALUE(std::string key, double value, double warn_value, + double error_value, double fatal_value, + std::string description); + uint8_t CHECK_MAX_VALUE(std::string key, double value, double warn_value, + double error_value, double fatal_value, + std::string description); + // std::pair first value is min value and second value is max + // value + uint8_t CHECK_RANGE(std::string key, double value, + std::pair warn_value, + std::pair error_value, + std::pair fatal_value, + std::string description); + template + uint8_t CHECK_VALUE( + std::string key, T value, std::function check_func, + std::function value_json_func, + std::string description) { + addNewBuffer(key, autoware_system_msgs::DiagnosticStatus::OUT_OF_RANGE, + description); + uint8_t check_result = check_func(value); + boost::property_tree::ptree pt = value_json_func(value); + std::stringstream ss; + write_json(ss, pt); + autoware_system_msgs::DiagnosticStatus new_status; + new_status.type = autoware_system_msgs::DiagnosticStatus::OUT_OF_RANGE; + new_status.level = check_result; + new_status.description = description; + new_status.value = ss.str(); + new_status.header.stamp = ros::Time::now(); + diag_buffers_[key]->addDiag(new_status); + return new_status.level; + } + void CHECK_RATE(std::string key, double warn_rate, double error_rate, + double fatal_rate, std::string description); + void NODE_ACTIVATE() { + std::lock_guard lock(mtx_); + node_activated_ = true; + }; + void NODE_DEACTIVATE() { + std::lock_guard lock(mtx_); + node_activated_ = false; + }; + bool getNodeStatus() { return node_activated_; }; + +private: + std::vector getKeys(); + std::vector getRateCheckerKeys(); + ros::NodeHandle nh_; + ros::NodeHandle pnh_; + std::map> diag_buffers_; + std::map> rate_checkers_; + ros::Publisher status_pub_; + bool keyExist(std::string key); + void addNewBuffer(std::string key, uint8_t type, std::string description); + std::string doubeToJson(double value); + void publishStatus(); + bool node_activated_; + std::mutex mtx_; +}; +} +#endif // NODE_STATUS_PUBLISHER_H_INCLUDED \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/include/autoware_health_checker/rate_checker.h b/ros/src/system/autoware_health_checker/include/autoware_health_checker/rate_checker.h new file mode 100644 index 00000000000..71707a91974 --- /dev/null +++ b/ros/src/system/autoware_health_checker/include/autoware_health_checker/rate_checker.h @@ -0,0 +1,59 @@ +#ifndef RATE_CHECKER_H_INCLUDED +#define RATE_CHECKER_H_INCLUDED + +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +// headers in ROS +#include + +// headers in STL +#include +#include + +// headers in Boost +#include + +// headers in Autoware +#include + +namespace autoware_health_checker { +class RateChecker { +public: + RateChecker(double buffer_length, double warn_rate, double error_rate, + double fatal_rate, std::string description); + ~RateChecker(); + void check(); + std::pair getErrorLevelAndRate(); + uint8_t getErrorLevel(); + boost::optional getRate(); + const std::string description; + +private: + ros::Time start_time_; + void update(); + std::vector data_; + const double buffer_length_; + const double warn_rate_; + const double error_rate_; + const double fatal_rate_; + std::mutex mtx_; +}; +} +#endif // RATE_CHECKER_H_INCLUDED \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/include/autoware_health_checker/system_status_subscriber.h b/ros/src/system/autoware_health_checker/include/autoware_health_checker/system_status_subscriber.h new file mode 100644 index 00000000000..b00f85a4991 --- /dev/null +++ b/ros/src/system/autoware_health_checker/include/autoware_health_checker/system_status_subscriber.h @@ -0,0 +1,55 @@ +#ifndef SYSTEM_STATUS_SUBSCRIBER_H_INCLUDED +#define SYSTEM_STATUS_SUBSCRIBER_H_INCLUDED + +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +// headers in Autoware +#include +#include + +// headers in ROS +#include + +// headers in STL +#include +#include + +namespace autoware_health_checker { +class SystemStatusSubscriber { +public: + SystemStatusSubscriber(ros::NodeHandle nh, ros::NodeHandle pnh); + ~SystemStatusSubscriber(); + void enable(); + void + addCallback(std::function func); + +private: + void + systemStatusCallback(const autoware_system_msgs::SystemStatus::ConstPtr msg); + std::mutex mtx_; + ros::Subscriber status_sub_; + ros::NodeHandle nh_; + ros::NodeHandle pnh_; + std::vector> + functions_; +}; +} + +#endif // SYSTEM_STATUS_SUBSCRIBER_H_INCLUDED \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/launch/health_checker.launch b/ros/src/system/autoware_health_checker/launch/health_checker.launch new file mode 100644 index 00000000000..6c69cd9b362 --- /dev/null +++ b/ros/src/system/autoware_health_checker/launch/health_checker.launch @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/package.xml b/ros/src/system/autoware_health_checker/package.xml new file mode 100644 index 00000000000..fefb55f7882 --- /dev/null +++ b/ros/src/system/autoware_health_checker/package.xml @@ -0,0 +1,32 @@ + + + autoware_health_checker + 0.0.0 + The autoware_health_checker package + + MasayaKataoka + + Apache 2.0 + + catkin + autoware_system_msgs + roscpp + diagnostic_msgs + rosgraph_msgs + rostest + rosunit + jsk_rviz_plugins + autoware_system_msgs + roscpp + diagnostic_msgs + jsk_rviz_plugins + rosgraph_msgs + autoware_system_msgs + diagnostic_msgs + roscpp + jsk_rviz_plugins + rosgraph_msgs + + + + diff --git a/ros/src/system/autoware_health_checker/src/diag_buffer.cpp b/ros/src/system/autoware_health_checker/src/diag_buffer.cpp new file mode 100644 index 00000000000..e93d38aa7ba --- /dev/null +++ b/ros/src/system/autoware_health_checker/src/diag_buffer.cpp @@ -0,0 +1,116 @@ +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +#include + +namespace autoware_health_checker { +DiagBuffer::DiagBuffer(std::string key, uint8_t type, std::string description, + double buffer_length) + : type(type), description(description) { + key_ = key; + buffer_length_ = ros::Duration(buffer_length); +} + +DiagBuffer::~DiagBuffer() {} + +void DiagBuffer::addDiag(autoware_system_msgs::DiagnosticStatus status) { + std::lock_guard lock(mtx_); + buffer_[status.level].status.emplace_back(status); + updateBuffer(); + return; +} + +autoware_system_msgs::DiagnosticStatusArray DiagBuffer::getAndClearData() { + std::lock_guard lock(mtx_); + autoware_system_msgs::DiagnosticStatusArray data; + data = buffer_[autoware_health_checker::LEVEL_FATAL]; + data.status.insert( + data.status.end(), + buffer_[autoware_health_checker::LEVEL_ERROR].status.begin(), + buffer_[autoware_health_checker::LEVEL_ERROR].status.end()); + data.status.insert( + data.status.end(), + buffer_[autoware_health_checker::LEVEL_WARN].status.begin(), + buffer_[autoware_health_checker::LEVEL_WARN].status.end()); + data.status.insert(data.status.end(), + buffer_[autoware_health_checker::LEVEL_OK].status.begin(), + buffer_[autoware_health_checker::LEVEL_OK].status.end()); + data.status.insert( + data.status.end(), + buffer_[autoware_health_checker::LEVEL_UNDEFINED].status.begin(), + buffer_[autoware_health_checker::LEVEL_UNDEFINED].status.end()); + std::sort(data.status.begin(), data.status.end(), + std::bind(&DiagBuffer::isOlderTimestamp, this, + std::placeholders::_1, std::placeholders::_2)); + buffer_.clear(); + return data; +} + +uint8_t DiagBuffer::getErrorLevel() { + std::lock_guard lock(mtx_); + updateBuffer(); + if (buffer_[autoware_health_checker::LEVEL_FATAL].status.size() != 0) { + return autoware_health_checker::LEVEL_FATAL; + } else if (buffer_[autoware_health_checker::LEVEL_ERROR].status.size() != 0) { + return autoware_health_checker::LEVEL_ERROR; + } else if (buffer_[autoware_health_checker::LEVEL_WARN].status.size() != 0) { + return autoware_health_checker::LEVEL_WARN; + } else { + return autoware_health_checker::LEVEL_OK; + } +} + +// filter data from timestamp and level +autoware_system_msgs::DiagnosticStatusArray +DiagBuffer::filterBuffer(ros::Time now, uint8_t level) { + autoware_system_msgs::DiagnosticStatusArray filterd_data; + autoware_system_msgs::DiagnosticStatusArray ret; + if (buffer_.count(level) != 0) { + filterd_data = buffer_[level]; + } + for (auto data_itr = filterd_data.status.begin(); + data_itr != filterd_data.status.end(); data_itr++) { + if (data_itr->header.stamp > (now - buffer_length_)) { + ret.status.push_back(*data_itr); + } + } + return ret; +} + +void DiagBuffer::updateBuffer() { + ros::Time now = ros::Time::now(); + buffer_[autoware_health_checker::LEVEL_FATAL] = + filterBuffer(now, autoware_health_checker::LEVEL_FATAL); + buffer_[autoware_health_checker::LEVEL_ERROR] = + filterBuffer(now, autoware_health_checker::LEVEL_ERROR); + buffer_[autoware_health_checker::LEVEL_WARN] = + filterBuffer(now, autoware_health_checker::LEVEL_WARN); + buffer_[autoware_health_checker::LEVEL_OK] = + filterBuffer(now, autoware_health_checker::LEVEL_OK); + buffer_[autoware_health_checker::LEVEL_UNDEFINED] = + filterBuffer(now, autoware_health_checker::LEVEL_UNDEFINED); + return; +} + +bool DiagBuffer::isOlderTimestamp( + const autoware_system_msgs::DiagnosticStatus &a, + const autoware_system_msgs::DiagnosticStatus &b) { + return a.header.stamp < b.header.stamp; +} +} \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/src/health_aggregator.cpp b/ros/src/system/autoware_health_checker/src/health_aggregator.cpp new file mode 100644 index 00000000000..682fc0098a3 --- /dev/null +++ b/ros/src/system/autoware_health_checker/src/health_aggregator.cpp @@ -0,0 +1,235 @@ +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +#include + +HealthAggregator::HealthAggregator(ros::NodeHandle nh, ros::NodeHandle pnh) { + nh_ = nh; + pnh_ = pnh; +} + +HealthAggregator::~HealthAggregator() {} + +void HealthAggregator::run() { + system_status_pub_ = + nh_.advertise("/system_status", 10); + text_pub_[autoware_health_checker::LEVEL_OK] = + pnh_.advertise("ok_text", 1); + text_pub_[autoware_health_checker::LEVEL_WARN] = + pnh_.advertise("warn_text", 1); + text_pub_[autoware_health_checker::LEVEL_ERROR] = + pnh_.advertise("error_text", 1); + text_pub_[autoware_health_checker::LEVEL_FATAL] = + pnh_.advertise("fatal_text", 1); + node_status_sub_ = nh_.subscribe("/node_status", 10, + &HealthAggregator::nodeStatusCallback, this); + diagnostic_array_sub_ = nh_.subscribe( + "/diagnostic_agg", 10, &HealthAggregator::diagnosticArrayCallback, this); + topic_statistics_sub_ = nh_.subscribe( + "/statistics", 1, &HealthAggregator::topicStatisticsCallback, this); + boost::thread publish_thread( + boost::bind(&HealthAggregator::publishSystemStatus, this)); + return; +} + +void HealthAggregator::topicStatisticsCallback( + const rosgraph_msgs::TopicStatistics::ConstPtr msg) { + std::array key = {msg->topic, msg->node_pub, msg->node_sub}; + topic_status_[key] = *msg; + return; +} + +void HealthAggregator::updateTopicStatus() { + ros::Time now = ros::Time::now(); + for (std::pair, rosgraph_msgs::TopicStatistics> + pair : topic_status_) { + if ((now - ros::Duration(autoware_health_checker::BUFFER_LENGTH)) < + pair.second.window_stop) { + system_status_.topic_statistics.push_back(pair.second); + } + } + return; +} + +void HealthAggregator::publishSystemStatus() { + ros::Rate rate = ros::Rate(autoware_health_checker::UPDATE_RATE); + while (ros::ok()) { + mtx_.lock(); + system_status_.header.stamp = ros::Time::now(); + updateConnectionStatus(); + updateTopicStatus(); + system_status_pub_.publish(system_status_); + text_pub_[autoware_health_checker::LEVEL_OK].publish( + generateOverlayText(system_status_, autoware_health_checker::LEVEL_OK)); + text_pub_[autoware_health_checker::LEVEL_WARN].publish(generateOverlayText( + system_status_, autoware_health_checker::LEVEL_WARN)); + text_pub_[autoware_health_checker::LEVEL_ERROR].publish(generateOverlayText( + system_status_, autoware_health_checker::LEVEL_ERROR)); + text_pub_[autoware_health_checker::LEVEL_FATAL].publish(generateOverlayText( + system_status_, autoware_health_checker::LEVEL_FATAL)); + system_status_.topic_statistics.clear(); + system_status_.node_status.clear(); + system_status_.hardware_status.clear(); + mtx_.unlock(); + rate.sleep(); + } + return; +} + +void HealthAggregator::updateConnectionStatus() { + std::vector detected_nodes; + ros::master::getNodes(detected_nodes); + system_status_.available_nodes = detected_nodes; + return; +} + +void HealthAggregator::nodeStatusCallback( + const autoware_system_msgs::NodeStatus::ConstPtr msg) { + mtx_.lock(); + system_status_.node_status.push_back(*msg); + mtx_.unlock(); + return; +} + +void HealthAggregator::diagnosticArrayCallback( + const diagnostic_msgs::DiagnosticArray::ConstPtr msg) { + mtx_.lock(); + boost::optional status = convert(msg); + if (status) { + system_status_.hardware_status.push_back(*status); + } + mtx_.unlock(); + return; +} + +std::string HealthAggregator::generateText( + std::vector status) { + std::string text; + for (auto itr = status.begin(); itr != status.end(); itr++) { + text = text + itr->description + "\n"; + // text = itr->key + " : " + itr->description + "\n"; + } + return text; +} + +jsk_rviz_plugins::OverlayText +HealthAggregator::generateOverlayText(autoware_system_msgs::SystemStatus status, + uint8_t level) { + jsk_rviz_plugins::OverlayText text; + text.action = text.ADD; + text.width = 640; + text.height = 640; + text.top = 0; + text.bg_color.r = 0; + text.bg_color.g = 0; + text.bg_color.b = 0; + text.bg_color.a = 0.7; + text.text_size = 20.0; + if (level == autoware_health_checker::LEVEL_OK) { + text.left = 0; + text.fg_color.r = 0.0; + text.fg_color.g = 0.0; + text.fg_color.b = 1.0; + text.fg_color.a = 1.0; + text.text = generateText(filterNodeStatus(status, level)); + } else if (level == autoware_health_checker::LEVEL_WARN) { + text.left = 640 * 1; + text.fg_color.r = 1.0; + text.fg_color.g = 1.0; + text.fg_color.b = 0.0; + text.fg_color.a = 1.0; + text.text = generateText(filterNodeStatus(status, level)); + } else if (level == autoware_health_checker::LEVEL_ERROR) { + text.left = 640 * 2; + text.fg_color.r = 1.0; + text.fg_color.g = 0.0; + text.fg_color.b = 0.0; + text.fg_color.a = 1.0; + text.text = generateText(filterNodeStatus(status, level)); + } else if (level == autoware_health_checker::LEVEL_FATAL) { + text.left = 640 * 3; + text.fg_color.r = 1.0; + text.fg_color.g = 1.0; + text.fg_color.b = 1.0; + text.fg_color.a = 1.0; + text.text = generateText(filterNodeStatus(status, level)); + } + return text; +} + +std::vector +HealthAggregator::filterNodeStatus(autoware_system_msgs::SystemStatus status, + uint8_t level) { + std::vector ret; + for (auto node_status_itr = status.node_status.begin(); + node_status_itr != status.node_status.end(); node_status_itr++) { + if (node_status_itr->node_activated) { + for (auto array_itr = node_status_itr->status.begin(); + array_itr != node_status_itr->status.end(); array_itr++) { + for (auto itr = array_itr->status.begin(); + itr != array_itr->status.end(); itr++) { + if (itr->level == level) { + ret.push_back(*itr); + } + } + } + } + } + return ret; +} + +boost::optional HealthAggregator::convert( + const diagnostic_msgs::DiagnosticArray::ConstPtr msg) { + autoware_system_msgs::HardwareStatus status; + if (msg->status.size() == 0) { + return boost::none; + } + status.header = msg->header; + for (auto diag_itr = msg->status.begin(); diag_itr != msg->status.end(); + diag_itr++) { + status.hardware_name = diag_itr->hardware_id; + autoware_system_msgs::DiagnosticStatus diag; + autoware_system_msgs::DiagnosticStatusArray diag_array; + diag.header = msg->header; + diag.key = diag_itr->hardware_id; + diag.description = diag_itr->message; + diag.type = autoware_system_msgs::DiagnosticStatus::HARDWARE; + if (diag_itr->level == diagnostic_msgs::DiagnosticStatus::OK) { + diag.level = autoware_health_checker::LEVEL_OK; + } else if (diag_itr->level == diagnostic_msgs::DiagnosticStatus::WARN) { + diag.level = autoware_health_checker::LEVEL_WARN; + } else if (diag_itr->level == diagnostic_msgs::DiagnosticStatus::ERROR) { + diag.level = autoware_health_checker::LEVEL_ERROR; + } else if (diag_itr->level == diagnostic_msgs::DiagnosticStatus::STALE) { + diag.level = autoware_health_checker::LEVEL_FATAL; + } + using namespace boost::property_tree; + std::stringstream ss; + ptree pt; + for (auto value_itr = diag_itr->values.begin(); + value_itr != diag_itr->values.end(); value_itr++) { + pt.put(value_itr->key + ".string", value_itr->value); + } + write_json(ss, pt); + diag.value = ss.str(); + diag_array.status.push_back(diag); + status.status.push_back(diag_array); + } + return status; +} \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/src/health_aggregator_node.cpp b/ros/src/system/autoware_health_checker/src/health_aggregator_node.cpp new file mode 100644 index 00000000000..802dcaeab9f --- /dev/null +++ b/ros/src/system/autoware_health_checker/src/health_aggregator_node.cpp @@ -0,0 +1,32 @@ +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +#include + +#include + +int main(int argc, char *argv[]) { + ros::init(argc, argv, "health_aggregator"); + ros::NodeHandle nh; + ros::NodeHandle pnh("~"); + HealthAggregator agg(nh, pnh); + agg.run(); + ros::spin(); + return 0; +} \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/src/health_analyzer.cpp b/ros/src/system/autoware_health_checker/src/health_analyzer.cpp new file mode 100644 index 00000000000..c4ed5e4546f --- /dev/null +++ b/ros/src/system/autoware_health_checker/src/health_analyzer.cpp @@ -0,0 +1,250 @@ +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +#include + +HealthAnalyzer::HealthAnalyzer(ros::NodeHandle nh, ros::NodeHandle pnh) { + nh_ = nh; + pnh_ = pnh; + pnh_.param("warn_nodes_count_threshold", warn_nodes_count_threshold_, 30); + system_status_summary_pub_ = + nh_.advertise( + "/system_status/summary", 1); + system_status_sub_ = nh_.subscribe( + "/system_status", 1, &HealthAnalyzer::systemStatusCallback, this); +} + +HealthAnalyzer::~HealthAnalyzer() { writeDot(); } + +int HealthAnalyzer::countWarn(autoware_system_msgs::SystemStatus msg) { + int count = 0; + for (auto node_status_itr = msg.node_status.begin(); + node_status_itr != msg.node_status.end(); node_status_itr++) { + for (auto status_itr = node_status_itr->status.begin(); + status_itr != node_status_itr->status.end(); status_itr++) { + for (auto itr = status_itr->status.begin(); + itr != status_itr->status.end(); itr++) { + if (itr->level == autoware_health_checker::LEVEL_WARN) { + count++; + } + } + } + } + for (auto hardware_status_itr = msg.hardware_status.begin(); + hardware_status_itr != msg.hardware_status.end(); + hardware_status_itr++) { + for (auto status_itr = hardware_status_itr->status.begin(); + status_itr != hardware_status_itr->status.end(); status_itr++) { + for (auto itr = status_itr->status.begin(); + itr != status_itr->status.end(); itr++) { + if (itr->level == autoware_health_checker::LEVEL_WARN) { + count++; + } + } + } + } + return count; +} + +std::vector +HealthAnalyzer::findWarningNodes(autoware_system_msgs::SystemStatus status) { + std::vector ret; + for (auto node_status_itr = status.node_status.begin(); + node_status_itr != status.node_status.end(); node_status_itr++) { + for (auto status_itr = node_status_itr->status.begin(); + status_itr != node_status_itr->status.end(); status_itr++) { + for (auto itr = status_itr->status.begin(); + itr != status_itr->status.end(); itr++) { + if ((itr->level == autoware_health_checker::LEVEL_WARN) && + (isAlreadyExist(ret, node_status_itr->node_name) == false)) { + ret.push_back(node_status_itr->node_name); + } else if ((itr->level == autoware_health_checker::LEVEL_ERROR) && + (isAlreadyExist(ret, node_status_itr->node_name) == false)) { + ret.push_back(node_status_itr->node_name); + } else if ((itr->level == autoware_health_checker::LEVEL_FATAL) && + (isAlreadyExist(ret, node_status_itr->node_name) == false)) { + ret.push_back(node_status_itr->node_name); + } + } + } + } + return ret; +} + +std::vector +HealthAnalyzer::findErrorNodes(autoware_system_msgs::SystemStatus status) { + std::vector ret; + for (auto node_status_itr = status.node_status.begin(); + node_status_itr != status.node_status.end(); node_status_itr++) { + for (auto status_itr = node_status_itr->status.begin(); + status_itr != node_status_itr->status.end(); status_itr++) { + for (auto itr = status_itr->status.begin(); + itr != status_itr->status.end(); itr++) { + if ((itr->level == autoware_health_checker::LEVEL_ERROR) && + (isAlreadyExist(ret, node_status_itr->node_name) == false)) { + if (isAlreadyExist(status.available_nodes, + node_status_itr->node_name)) { + ret.push_back(node_status_itr->node_name); + } + } else if ((itr->level == autoware_health_checker::LEVEL_FATAL) && + (isAlreadyExist(ret, node_status_itr->node_name) == false)) { + if (isAlreadyExist(status.available_nodes, + node_status_itr->node_name)) { + ret.push_back(node_status_itr->node_name); + } + } + } + } + } + return ret; +} + +std::vector +HealthAnalyzer::findRootNodes(std::vector target_nodes) { + std::vector ret; + for (auto itr = target_nodes.begin(); itr != target_nodes.end(); itr++) { + std::vector pub_nodes; + adjacency_iterator_t vi; + adjacency_iterator_t vi_end; + vertex_t target_node = getTargetNode(*itr); + bool depend_found = false; + for (boost::tie(vi, vi_end) = adjacent_vertices(target_node, depend_graph_); + vi != vi_end; ++vi) { + if (isAlreadyExist(target_nodes, depend_graph_[*vi].node_name)) { + depend_found = true; + } + } + if (!depend_found) { + ret.push_back(*itr); + // ROS_ERROR_STREAM("Autoware Health Analyzer detects something wrong in " + // << *itr << " node."); + } + } + return ret; +} + +autoware_system_msgs::SystemStatus +HealthAnalyzer::filterSystemStatus(autoware_system_msgs::SystemStatus status) { + int warn_count = countWarn(status); + autoware_system_msgs::SystemStatus filtered_status; + std::vector target_nodes; + if (warn_count >= warn_nodes_count_threshold_) { + filtered_status.detect_too_match_warning = true; + target_nodes = findWarningNodes(status); + } else { + filtered_status.detect_too_match_warning = false; + target_nodes = findErrorNodes(status); + } + std::vector root_nodes = findRootNodes(target_nodes); + for (auto node_status_itr = status.node_status.begin(); + node_status_itr != status.node_status.end(); node_status_itr++) { + if (isAlreadyExist(root_nodes, node_status_itr->node_name)) { + filtered_status.node_status.push_back(*node_status_itr); + } + } + filtered_status.header = status.header; + filtered_status.available_nodes = status.available_nodes; + filtered_status.hardware_status = status.hardware_status; + filtered_status.topic_statistics = status.topic_statistics; + return filtered_status; +} + +void HealthAnalyzer::systemStatusCallback( + const autoware_system_msgs::SystemStatus::ConstPtr msg) { + generateDependGraph(*msg); + system_status_summary_pub_.publish(filterSystemStatus(*msg)); + return; +} + +void HealthAnalyzer::generateDependGraph( + autoware_system_msgs::SystemStatus status) { + depend_graph_ = graph_t(); + for (auto itr = status.topic_statistics.begin(); + itr != status.topic_statistics.end(); itr++) { + addDepend(*itr); + } + return; +} + +void HealthAnalyzer::writeDot() { + std::string path = ros::package::getPath("autoware_health_checker") + + "/data/node_depends.dot"; + std::ofstream f(path.c_str()); + boost::write_graphviz( + f, depend_graph_, + boost::make_label_writer(get(&node_property::node_name, depend_graph_))); + return; +} + +bool HealthAnalyzer::nodeAlreadyExistsInGraph(std::string target_node) { + auto vertex_range = boost::vertices(depend_graph_); + for (auto first = vertex_range.first, last = vertex_range.second; + first != last; ++first) { + vertex_t v = *first; + if (depend_graph_[v].node_name == target_node) { + return true; + } + } + return false; +} + +vertex_t HealthAnalyzer::getTargetNode(std::string target_node) { + vertex_t ret; + auto vertex_range = boost::vertices(depend_graph_); + for (auto first = vertex_range.first, last = vertex_range.second; + first != last; ++first) { + vertex_t v = *first; + if (depend_graph_[v].node_name == target_node) { + ret = v; + return ret; + } + } + return ret; +} + +void HealthAnalyzer::addDepend(rosgraph_msgs::TopicStatistics statistics) { + if (statistics.node_pub == statistics.node_sub) { + return; + } + vertex_t node_sub; + vertex_t node_pub; + edge_t topic; + if (!nodeAlreadyExistsInGraph(statistics.node_pub)) { + vertex_t v = boost::add_vertex(depend_graph_); + depend_graph_[v].node_name = statistics.node_pub; + node_pub = v; + } else { + vertex_t v = getTargetNode(statistics.node_pub); + node_pub = v; + } + if (!nodeAlreadyExistsInGraph(statistics.node_sub)) { + vertex_t v = boost::add_vertex(depend_graph_); + depend_graph_[v].node_name = statistics.node_sub; + node_sub = v; + } else { + vertex_t v = getTargetNode(statistics.node_sub); + node_sub = v; + } + bool inserted = false; + boost::tie(topic, inserted) = + boost::add_edge(node_sub, node_pub, depend_graph_); + depend_graph_[topic].node_sub = statistics.node_sub; + depend_graph_[topic].node_pub = statistics.node_pub; + return; +} \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/src/health_analyzer_node.cpp b/ros/src/system/autoware_health_checker/src/health_analyzer_node.cpp new file mode 100644 index 00000000000..3c66c7e8a74 --- /dev/null +++ b/ros/src/system/autoware_health_checker/src/health_analyzer_node.cpp @@ -0,0 +1,31 @@ +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +#include + +#include + +int main(int argc, char *argv[]) { + ros::init(argc, argv, "health_analyzer"); + ros::NodeHandle nh; + ros::NodeHandle pnh("~"); + HealthAnalyzer analyzer(nh, pnh); + ros::spin(); + return 0; +} \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/src/node_status_publisher.cpp b/ros/src/system/autoware_health_checker/src/node_status_publisher.cpp new file mode 100644 index 00000000000..a088ee6bd6b --- /dev/null +++ b/ros/src/system/autoware_health_checker/src/node_status_publisher.cpp @@ -0,0 +1,222 @@ +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +#include + +namespace autoware_health_checker { +NodeStatusPublisher::NodeStatusPublisher(ros::NodeHandle nh, + ros::NodeHandle pnh) { + node_activated_ = false; + nh_ = nh; + pnh_ = pnh; + status_pub_ = + nh_.advertise("node_status", 10); +} + +NodeStatusPublisher::~NodeStatusPublisher() {} + +void NodeStatusPublisher::publishStatus() { + ros::Rate rate = ros::Rate(autoware_health_checker::UPDATE_RATE); + while (ros::ok()) { + mtx_.lock(); + autoware_system_msgs::NodeStatus status; + status.node_activated = node_activated_; + ros::Time now = ros::Time::now(); + status.header.stamp = now; + status.node_name = ros::this_node::getName(); + std::vector checker_keys = getRateCheckerKeys(); + // iterate Rate checker and publish rate_check result + for (auto key_itr = checker_keys.begin(); key_itr != checker_keys.end(); + key_itr++) { + autoware_system_msgs::DiagnosticStatusArray diag_array; + autoware_system_msgs::DiagnosticStatus diag; + diag.type = autoware_system_msgs::DiagnosticStatus::RATE_IS_SLOW; + std::pair result = + rate_checkers_[*key_itr]->getErrorLevelAndRate(); + diag.level = result.first; + diag.key = *key_itr; + diag.value = doubeToJson(result.second); + diag.description = rate_checkers_[*key_itr]->description; + diag.header.stamp = now; + diag_array.status.push_back(diag); + status.status.push_back(diag_array); + } + // iterate Diagnostic Buffer and publish all diagnostic data + std::vector keys = getKeys(); + for (auto key_itr = keys.begin(); key_itr != keys.end(); key_itr++) { + status.status.push_back(diag_buffers_[*key_itr]->getAndClearData()); + } + status_pub_.publish(status); + mtx_.unlock(); + rate.sleep(); + } + return; +} + +void NodeStatusPublisher::ENABLE() { + boost::thread publish_thread( + boost::bind(&NodeStatusPublisher::publishStatus, this)); + return; +} + +std::vector NodeStatusPublisher::getKeys() { + std::vector keys; + std::vector checker_keys = getRateCheckerKeys(); + std::pair> buf_itr; + BOOST_FOREACH (buf_itr, diag_buffers_) { + bool matched = false; + for (auto checker_key_itr = checker_keys.begin(); + checker_key_itr != checker_keys.end(); checker_key_itr++) { + if (*checker_key_itr == buf_itr.first) { + matched = true; + } + } + if (!matched) { + keys.push_back(buf_itr.first); + } + } + return keys; +} + +std::vector NodeStatusPublisher::getRateCheckerKeys() { + std::vector keys; + std::pair> checker_itr; + BOOST_FOREACH (checker_itr, rate_checkers_) { + keys.push_back(checker_itr.first); + } + return keys; +} + +bool NodeStatusPublisher::keyExist(std::string key) { + if (diag_buffers_.count(key) == 0) { + return false; + } + return true; +} + +// add New Diagnostic Buffer if the key does not exist +void NodeStatusPublisher::addNewBuffer(std::string key, uint8_t type, + std::string description) { + if (!keyExist(key)) { + std::shared_ptr buf_ptr = std::make_shared( + key, type, description, autoware_health_checker::BUFFER_LENGTH); + diag_buffers_[key] = buf_ptr; + } + return; +} + +uint8_t NodeStatusPublisher::CHECK_MIN_VALUE(std::string key, double value, + double warn_value, + double error_value, + double fatal_value, + std::string description) { + addNewBuffer(key, autoware_system_msgs::DiagnosticStatus::OUT_OF_RANGE, + description); + autoware_system_msgs::DiagnosticStatus new_status; + new_status.type = autoware_system_msgs::DiagnosticStatus::OUT_OF_RANGE; + if (value < fatal_value) { + new_status.level = autoware_system_msgs::DiagnosticStatus::FATAL; + } else if (value < error_value) { + new_status.level = autoware_system_msgs::DiagnosticStatus::ERROR; + } else if (value < warn_value) { + new_status.level = autoware_system_msgs::DiagnosticStatus::WARN; + } else { + new_status.level = autoware_system_msgs::DiagnosticStatus::OK; + } + new_status.description = description; + new_status.value = doubeToJson(value); + new_status.header.stamp = ros::Time::now(); + diag_buffers_[key]->addDiag(new_status); + return new_status.level; +} + +uint8_t NodeStatusPublisher::CHECK_MAX_VALUE(std::string key, double value, + double warn_value, + double error_value, + double fatal_value, + std::string description) { + addNewBuffer(key, autoware_system_msgs::DiagnosticStatus::OUT_OF_RANGE, + description); + autoware_system_msgs::DiagnosticStatus new_status; + new_status.type = autoware_system_msgs::DiagnosticStatus::OUT_OF_RANGE; + if (value > fatal_value) { + new_status.level = autoware_system_msgs::DiagnosticStatus::FATAL; + } else if (value > error_value) { + new_status.level = autoware_system_msgs::DiagnosticStatus::ERROR; + } else if (value > warn_value) { + new_status.level = autoware_system_msgs::DiagnosticStatus::WARN; + } else { + new_status.level = autoware_system_msgs::DiagnosticStatus::OK; + } + new_status.description = description; + new_status.value = doubeToJson(value); + new_status.header.stamp = ros::Time::now(); + diag_buffers_[key]->addDiag(new_status); + return new_status.level; +} + +uint8_t NodeStatusPublisher::CHECK_RANGE(std::string key, double value, + std::pair warn_value, + std::pair error_value, + std::pair fatal_value, + std::string description) { + addNewBuffer(key, autoware_system_msgs::DiagnosticStatus::OUT_OF_RANGE, + description); + autoware_system_msgs::DiagnosticStatus new_status; + new_status.type = autoware_system_msgs::DiagnosticStatus::OUT_OF_RANGE; + if (value < fatal_value.first || value > fatal_value.second) { + new_status.level = autoware_system_msgs::DiagnosticStatus::FATAL; + } else if (value < error_value.first || value > error_value.second) { + new_status.level = autoware_system_msgs::DiagnosticStatus::ERROR; + } else if (value < warn_value.first || value > warn_value.second) { + new_status.level = autoware_system_msgs::DiagnosticStatus::WARN; + } else { + new_status.level = autoware_system_msgs::DiagnosticStatus::OK; + } + new_status.value = doubeToJson(value); + new_status.description = description; + new_status.header.stamp = ros::Time::now(); + diag_buffers_[key]->addDiag(new_status); + return new_status.level; +} + +void NodeStatusPublisher::CHECK_RATE(std::string key, double warn_rate, + double error_rate, double fatal_rate, + std::string description) { + if (!keyExist(key)) { + std::shared_ptr checker_ptr = std::make_shared( + autoware_health_checker::BUFFER_LENGTH, warn_rate, error_rate, + fatal_rate, description); + rate_checkers_[key] = checker_ptr; + } + addNewBuffer(key, autoware_system_msgs::DiagnosticStatus::RATE_IS_SLOW, + description); + rate_checkers_[key]->check(); + return; +} + +std::string NodeStatusPublisher::doubeToJson(double value) { + using namespace boost::property_tree; + std::stringstream ss; + ptree pt; + pt.put("value.double", value); + write_json(ss, pt); + return ss.str(); +} +} \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/src/rate_checker.cpp b/ros/src/system/autoware_health_checker/src/rate_checker.cpp new file mode 100644 index 00000000000..9a7e22e8d1e --- /dev/null +++ b/ros/src/system/autoware_health_checker/src/rate_checker.cpp @@ -0,0 +1,99 @@ +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +#include + +namespace autoware_health_checker { +RateChecker::RateChecker(double buffer_length, double warn_rate, + double error_rate, double fatal_rate, + std::string description) + : buffer_length_(buffer_length), warn_rate_(warn_rate), + error_rate_(error_rate), fatal_rate_(fatal_rate), + description(description) { + start_time_ = ros::Time::now(); +} + +RateChecker::~RateChecker() {} + +std::pair RateChecker::getErrorLevelAndRate() { + std::pair ret; + boost::optional rate = getRate(); + if (!rate) { + ret = std::make_pair(autoware_health_checker::LEVEL_ERROR, 0); + } else if (rate.get() < fatal_rate_) { + ret = std::make_pair(autoware_health_checker::LEVEL_FATAL, rate.get()); + } else if (rate.get() < error_rate_) { + ret = std::make_pair(autoware_health_checker::LEVEL_ERROR, rate.get()); + } else if (rate.get() < warn_rate_) { + ret = std::make_pair(autoware_health_checker::LEVEL_WARN, rate.get()); + } else { + ret = std::make_pair(autoware_health_checker::LEVEL_OK, rate.get()); + } + return ret; +} + +uint8_t RateChecker::getErrorLevel() { + boost::optional rate = getRate(); + if (!rate) { + return autoware_health_checker::LEVEL_ERROR; + } + if (rate.get() < fatal_rate_) { + return autoware_health_checker::LEVEL_FATAL; + } + if (rate.get() < error_rate_) { + return autoware_health_checker::LEVEL_ERROR; + } + if (rate.get() < warn_rate_) { + return autoware_health_checker::LEVEL_WARN; + } + return autoware_health_checker::LEVEL_OK; +} + +void RateChecker::check() { + update(); + mtx_.lock(); + data_.push_back(ros::Time::now()); + mtx_.unlock(); +} + +void RateChecker::update() { + mtx_.lock(); + std::vector buffer; + for (auto data_itr = data_.begin(); data_itr != data_.end(); data_itr++) { + if (*data_itr > ros::Time::now() - ros::Duration(buffer_length_)) { + buffer.push_back(*data_itr); + } + } + data_ = buffer; + mtx_.unlock(); + return; +} + +boost::optional RateChecker::getRate() { + boost::optional rate; + if (ros::Time::now() - start_time_ < ros::Duration(buffer_length_)) { + return boost::none; + } + update(); + mtx_.lock(); + rate = data_.size() / buffer_length_; + mtx_.unlock(); + return rate; +} +} \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/src/system_status_subscriber.cpp b/ros/src/system/autoware_health_checker/src/system_status_subscriber.cpp new file mode 100644 index 00000000000..8139c9f2c8a --- /dev/null +++ b/ros/src/system/autoware_health_checker/src/system_status_subscriber.cpp @@ -0,0 +1,60 @@ +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ + +#include + +namespace autoware_health_checker { +SystemStatusSubscriber::SystemStatusSubscriber(ros::NodeHandle nh, + ros::NodeHandle pnh) { + nh_ = nh; + pnh_ = pnh; +} + +SystemStatusSubscriber::~SystemStatusSubscriber() {} + +void SystemStatusSubscriber::enable() { + ros::AsyncSpinner spinner(1); + spinner.start(); + ros::Rate rate(1); + status_sub_ = nh_.subscribe( + "system_status", 10, &SystemStatusSubscriber::systemStatusCallback, this); + while (ros::ok()) { + rate.sleep(); + } + spinner.stop(); + return; +} + +void SystemStatusSubscriber::systemStatusCallback( + const autoware_system_msgs::SystemStatus::ConstPtr msg) { + for (auto function_itr = functions_.begin(); function_itr != functions_.end(); + function_itr++) { + std::function func = + *function_itr; + func(*msg); + } + return; +} + +void SystemStatusSubscriber::addCallback( + std::function func) { + functions_.push_back(func); + return; +} +} \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/test/src/test_autoware_health_checker.cpp b/ros/src/system/autoware_health_checker/test/src/test_autoware_health_checker.cpp new file mode 100644 index 00000000000..be73533a9df --- /dev/null +++ b/ros/src/system/autoware_health_checker/test/src/test_autoware_health_checker.cpp @@ -0,0 +1,180 @@ +/* + * Copyright 2019 Autoware Foundation. All rights reserved. + * + * 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. + * + * + * v1.0 Masaya Kataoka + */ +#include +#include +#include + +class AutowareHealthCheckerTestSuite : public ::testing::Test { +public: + AutowareHealthCheckerTestSuite() {} + + ~AutowareHealthCheckerTestSuite() {} +}; + +class AutowareHealthCheckerTestClass { +public: + AutowareHealthCheckerTestClass() { + ros::NodeHandle nh; + ros::NodeHandle pnh("~"); + node_status_publisher_ptr = + std::make_shared(nh, pnh); + }; + std::shared_ptr + node_status_publisher_ptr; +}; + +TEST(TestSuite, CHECK_MIN_VALUE) { + AutowareHealthCheckerTestClass test_autoware_health_checker; + uint8_t ret_fatal = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_MIN_VALUE( + "test", 1, 6, 4, 2, "test"); + ASSERT_EQ(ret_fatal, autoware_health_checker::LEVEL_FATAL) + << "The value was self-diagnosed as fatal"; + uint8_t ret_error = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_MIN_VALUE( + "test", 3, 6, 4, 2, "test"); + ASSERT_EQ(ret_error, autoware_health_checker::LEVEL_ERROR) + << "The value was self-diagnosed as error"; + uint8_t ret_warn = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_MIN_VALUE( + "test", 5, 6, 4, 2, "test"); + ASSERT_EQ(ret_warn, autoware_health_checker::LEVEL_WARN) + << "The value was self-diagnosed as warn"; + uint8_t ret_ok = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_MIN_VALUE( + "test", 7, 6, 4, 2, "test"); + ASSERT_EQ(ret_ok, autoware_health_checker::LEVEL_OK) + << "The value was self-diagnosed as ok"; +} + +TEST(TestSuite, CHECK_MAX_VALUE) { + AutowareHealthCheckerTestClass test_autoware_health_checker; + uint8_t ret_fatal = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_MAX_VALUE( + "test", 7, 2, 4, 6, "test"); + ASSERT_EQ(ret_fatal, autoware_health_checker::LEVEL_FATAL) + << "The value was self-diagnosed as fatal"; + uint8_t ret_error = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_MAX_VALUE( + "test", 5, 2, 4, 6, "test"); + ASSERT_EQ(ret_error, autoware_health_checker::LEVEL_ERROR) + << "The value was self-diagnosed as error"; + uint8_t ret_warn = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_MAX_VALUE( + "test", 3, 2, 4, 6, "test"); + ASSERT_EQ(ret_warn, autoware_health_checker::LEVEL_WARN) + << "The value was self-diagnosed as warn"; + uint8_t ret_ok = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_MAX_VALUE( + "test", 1, 2, 4, 6, "test"); + ASSERT_EQ(ret_ok, autoware_health_checker::LEVEL_OK) + << "The value was self-diagnosed as ok"; +} + +TEST(TestSuite, CHECK_RANGE) { + AutowareHealthCheckerTestClass test_autoware_health_checker; + uint8_t ret_fatal = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_RANGE( + "test", 7.0, {2.0, 4.0}, {1.0, 5.0}, {0.0, 6.0}, "test"); + ASSERT_EQ(ret_fatal, autoware_health_checker::LEVEL_FATAL) + << "The value was self-diagnosed as fatal"; + uint8_t ret_error = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_RANGE( + "test", 5.5, {2.0, 4.0}, {1.0, 5.0}, {0.0, 6.0}, "test"); + ASSERT_EQ(ret_error, autoware_health_checker::LEVEL_ERROR) + << "The value was self-diagnosed as error"; + uint8_t ret_warn = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_RANGE( + "test", 4.5, {2.0, 4.0}, {1.0, 5.0}, {0.0, 6.0}, "test"); + ASSERT_EQ(ret_warn, autoware_health_checker::LEVEL_WARN) + << "The value was self-diagnosed as warn"; + uint8_t ret_ok = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_RANGE( + "test", 3.0, {2.0, 4.0}, {1.0, 5.0}, {0.0, 6.0}, "test"); + ASSERT_EQ(ret_ok, autoware_health_checker::LEVEL_OK) + << "The value was self-diagnosed as ok"; +} + +uint8_t test_function(double value) { + if (value == 0.0) { + return autoware_health_checker::LEVEL_FATAL; + } + if (value == 1.0) { + return autoware_health_checker::LEVEL_ERROR; + } + if (value == 2.0) { + return autoware_health_checker::LEVEL_WARN; + } + return autoware_health_checker::LEVEL_OK; +}; + +boost::property_tree::ptree test_value_json_func(double value) { + boost::property_tree::ptree tree; + tree.put("value", value); + return tree; +}; + +TEST(TestSuite, CHECK_VALUE) { + AutowareHealthCheckerTestClass test_autoware_health_checker; + std::function check_func = test_function; + std::function + check_value_json_func = test_value_json_func; + uint8_t ret_fatal = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_VALUE( + "test", 0.0, check_func, check_value_json_func, "test"); + ASSERT_EQ(ret_fatal, autoware_health_checker::LEVEL_FATAL) + << "The value was self-diagnosed as fatal"; + uint8_t ret_error = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_VALUE( + "test", 1.0, check_func, check_value_json_func, "test"); + ASSERT_EQ(ret_error, autoware_health_checker::LEVEL_ERROR) + << "The value was self-diagnosed as fatal"; + uint8_t ret_warn = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_VALUE( + "test", 2.0, check_func, check_value_json_func, "test"); + ASSERT_EQ(ret_warn, autoware_health_checker::LEVEL_WARN) + << "The value was self-diagnosed as fatal"; + uint8_t ret_ok = + test_autoware_health_checker.node_status_publisher_ptr->CHECK_VALUE( + "test", -1.0, check_func, check_value_json_func, "test"); + ASSERT_EQ(ret_ok, autoware_health_checker::LEVEL_OK) + << "The value was self-diagnosed as fatal"; + boost::optional value = + check_value_json_func(0.0).get_optional("value"); + ASSERT_EQ(value.get(), 0.0) + << "The value must be true, failed to get json value"; +} + +TEST(TestSuite, NODE_STATUS) { + AutowareHealthCheckerTestClass test_autoware_health_checker; + test_autoware_health_checker.node_status_publisher_ptr->NODE_ACTIVATE(); + uint8_t ret_active = + test_autoware_health_checker.node_status_publisher_ptr->getNodeStatus(); + ASSERT_EQ(ret_active, true) << "The value must be true"; + test_autoware_health_checker.node_status_publisher_ptr->NODE_DEACTIVATE(); + uint8_t ret_inactive = + test_autoware_health_checker.node_status_publisher_ptr->getNodeStatus(); + ASSERT_EQ(ret_inactive, false) << "The value must be true"; +} + +int main(int argc, char **argv) { + testing::InitGoogleTest(&argc, argv); + ros::init(argc, argv, "AutowareHealthCheckerTestNode"); + return RUN_ALL_TESTS(); +} \ No newline at end of file diff --git a/ros/src/system/autoware_health_checker/test/test_autoware_health_checker.test b/ros/src/system/autoware_health_checker/test/test_autoware_health_checker.test new file mode 100644 index 00000000000..d87a24411dd --- /dev/null +++ b/ros/src/system/autoware_health_checker/test/test_autoware_health_checker.test @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/ros/src/system/gazebo/catvehicle/.gitignore b/ros/src/system/gazebo/catvehicle/.gitignore deleted file mode 100644 index 512e65c10c7..00000000000 --- a/ros/src/system/gazebo/catvehicle/.gitignore +++ /dev/null @@ -1,48 +0,0 @@ -build/ -bin/ -lib/ -msg_gen/ -srv_gen/ -msg/*Action.msg -msg/*ActionFeedback.msg -msg/*ActionGoal.msg -msg/*ActionResult.msg -msg/*Feedback.msg -msg/*Goal.msg -msg/*Result.msg -msg/_*.py - -slprj/ -*_rtw/ -simulink/*.tgz - -# Generated by dynamic reconfigure -*.cfgc -/cfg/cpp/ -/cfg/*.py - -# Ignore generated docs -*.dox -*.wikidoc - -# eclipse stuff -.project -.cproject - -# qcreator stuff -CMakeLists.txt.user - -srv/_*.py -*.pcd -*.pyc -qtcreator-* -*.user - -/planning/cfg -/planning/docs -/planning/src - -*~ - -# Emacs -.#* \ No newline at end of file diff --git a/ros/src/system/gazebo/catvehicle/CHANGELOG.rst b/ros/src/system/gazebo/catvehicle/CHANGELOG.rst deleted file mode 100644 index f4e0c6bfb06..00000000000 --- a/ros/src/system/gazebo/catvehicle/CHANGELOG.rst +++ /dev/null @@ -1,77 +0,0 @@ -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Changelog for package catvehicle -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -1.6.3 (2018-03-06) ------------------- - -1.6.2 (2018-02-27) ------------------- -* Update CHANGELOG -* Contributors: Yusuke FUJII - -1.6.1 (2018-01-20) ------------------- -* update CHANGELOG -* Contributors: Yusuke FUJII - -1.6.0 (2017-12-11) ------------------- -* Prepare release for 1.6.0 -* Contributors: Yamato ANDO - -1.5.1 (2017-09-25) ------------------- -* Release/1.5.1 (`#816 `_) - * fix a build error by gcc version - * fix build error for older indigo version - * update changelog for v1.5.1 - * 1.5.1 -* Contributors: Yusuke FUJII - -1.5.0 (2017-09-21) ------------------- -* Update changelog -* fix version inconsistency -* Contributors: Yusuke FUJII - -1.4.0 (2017-08-04) ------------------- -* version number must equal current release number so we can start releasing in the future -* Contributors: Dejan Pangercic - -1.3.1 (2017-07-16) ------------------- - -1.3.0 (2017-07-14) ------------------- - -1.2.0 (2017-06-07) ------------------- -* Fix library dependency -* ROS Kinectic Upgrade tested on Ubuntu 16.04 and OpenCV 3.2.0 - Modules not included: - -orb_localizer - -dpm_ocv node and lib - Everything else working - Added some libraries for Gazebo on src/extras -* Update for kinetic -* Contributors: Yukihiro Saito, Yusuke Fujii, amc-nu - -1.1.2 (2017-02-27 23:10) ------------------------- - -1.1.1 (2017-02-27 22:25) ------------------------- - -1.1.0 (2017-02-24) ------------------- -* Tuned gazebo parameter -* Add Gazebo sim -* Contributors: Yukihiro Saito - -1.0.1 (2017-01-14) ------------------- - -1.0.0 (2016-12-22) ------------------- diff --git a/ros/src/system/gazebo/catvehicle/CMakeLists.txt b/ros/src/system/gazebo/catvehicle/CMakeLists.txt deleted file mode 100644 index 61c05bd8a82..00000000000 --- a/ros/src/system/gazebo/catvehicle/CMakeLists.txt +++ /dev/null @@ -1,77 +0,0 @@ -cmake_minimum_required(VERSION 2.8.3) -project(catvehicle) -set(ROS_VERSION $ENV{ROS_DISTRO}) - -## Find catkin macros and libraries -## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) -## is used, also find other catkin packages - -find_package(autoware_build_flags REQUIRED) -find_package(catkin REQUIRED COMPONENTS - controller_manager - gazebo_ros_control - geometry_msgs - position_controllers - roscpp - rospy - sensor_msgs - std_msgs - tf - transmission_interface - velocity_controllers - velodyne_pointcloud - ) - -set(CMAKE_CXX_FLAGS "-O2 -Wall ${CMAKE_CXX_FLAGS}") - -## System dependencies are found with CMake's conventions -find_package(Boost REQUIRED COMPONENTS system) - -# Need to have these in order to find/include boost stuff -include_directories(${Boost_INCLUDE_DIRS}) -link_directories(${Boost_LIBRARY_DIRS}) - -include(FindPkgConfig) -if (PKG_CONFIG_FOUND) - pkg_check_modules(GAZEBO gazebo) -endif () -include_directories(${GAZEBO_INCLUDE_DIRS}) -link_directories(${GAZEBO_LIBRARY_DIRS}) -include_directories(include) - -catkin_python_setup() - -catkin_package( - INCLUDE_DIRS include - LIBRARIES catvehicle - CATKIN_DEPENDS geometry_msgs roscpp rospy sensor_msgs std_msgs velodyne_pointcloud tf -) - -include_directories(include include/catvehicle) -include_directories( - ${catkin_INCLUDE_DIRS} -) - -add_library(catvehiclegazebo SHARED src/cont.cc ./include/catvehicle/cont.hh) -target_link_libraries(catvehiclegazebo ${GAZEBO_LIBRARIES} ${catkin_LIBRARIES} ${Boost_LIBRARIES}) - -add_executable(distanceEstimator src/distanceEstimator.cpp) -target_link_libraries(distanceEstimator ${catkin_LIBRARIES}) - -install(DIRECTORY launch - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) - -install(DIRECTORY meshes - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) - -install(DIRECTORY urdf - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) - -install(DIRECTORY worlds - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) - -## Mark executables and/or libraries for installation -install(TARGETS catvehiclegazebo - LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} - ) diff --git a/ros/src/system/gazebo/catvehicle/README.md b/ros/src/system/gazebo/catvehicle/README.md deleted file mode 100644 index 9f818693e9b..00000000000 --- a/ros/src/system/gazebo/catvehicle/README.md +++ /dev/null @@ -1,65 +0,0 @@ -# About -The catvehicle ROS package houses files that utilize the Gazebo simulator, and additional interfaces to the physical CAT Vehicle Testbed. - -# Dependencies -* ROS -* obstaclestopper - -# Catkin Workspace and Build -In order to use the catvehicle ROS package, you should work within a catkin workspace. If you do not already have one: -``` -cd ~ -mkdir -p catvehicle_ws/src -cd catvehicle_ws/src -catkin_init_workspace -cd .. -catkin_make -``` - -At this point, you can extract this package into your src directory: -``` -cd catvehicle_ws/src -tar xzf catvehicle-x.y.z.tgz -cd .. -catkin_make -``` - -# Simple Tutorial and Examples -Follow the tutorials on the CAT Vehicle Testbed group on the CPS Virtual Organization to see how to use the testbed. - -# Acknowledgements -## License -Copyright (c) 2013-2017 Arizona Board of Regents -All rights reserved - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE ARIZONA BOARD OF REGENTS BE LIABLE TO ANY PARTY -FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE ARIZONA BOARD OF REGENTS HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -THE ARIZONA BOARD OF REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER -IS ON AN "AS IS" BASIS, AND THE ARIZONA BOARD OF REGENTS HAS NO OBLIGATION -TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -## Authors and contributors -* Jonathan Sprinkle (sprinkjm@email.arizona.edu) -* Rahul Bhadani (rahulkumarbhadani@email.arizona.edu) -* Sam Taylor -* Kennon McKeever (kennondmckeever@email.arizona.edu) -* Alex Warren -* Swati Munjal (smunjal@email.arizona.edu) -* Ashley Kang (askang@email.arizona.edu) -* Matt Bunting (mosfet@email.arizona.edu) -* Sean Whitsitt - -## Support -This work was supported by the National Science Foundation and AFOSR under awards 1521617, 1446435, 1262960 and 1253334. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation. diff --git a/ros/src/system/gazebo/catvehicle/config/catvehicle_control.yaml b/ros/src/system/gazebo/catvehicle/config/catvehicle_control.yaml deleted file mode 100644 index 28a356b0496..00000000000 --- a/ros/src/system/gazebo/catvehicle/config/catvehicle_control.yaml +++ /dev/null @@ -1,71 +0,0 @@ -# Author: Jonathan Sprinkle -# Copyright (c) 2015 Arizona Board of Regents -# All rights reserved. -# -# Permission is hereby granted, without written agreement and without -# license or royalty fees, to use, copy, modify, and distribute this -# software and its documentation for any purpose, provided that the -# above copyright notice and the following two paragraphs appear in -# all copies of this software. -# -# IN NO EVENT SHALL THE ARIZONA BOARD OF REGENTS BE LIABLE TO ANY PARTY -# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -# ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -# IF THE ARIZONA BOARD OF REGENTS HAS BEEN ADVISED OF THE POSSIBILITY OF -# SUCH DAMAGE. -# -# THE ARIZONA BOARD OF REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, -# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -# AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER -# IS ON AN "AS IS" BASIS, AND THE ARIZONA BOARD OF REGENTS HAS NO OBLIGATION -# TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -# Summary: -# This YAML file includes the controller connectivity for ROS-based control -# through Gazebo. For more information and for the tutorials used to create -# this file, see -# http://gazebosim.org/tutorials/?tut=ros_control#Prerequisites - -# controls the rear two tires based on individual motors - # Publish all joint states ----------------------------------- - joint_state_controller: - type: joint_state_controller/JointStateController - publish_rate: 50 - - # Velocity Controllers --------------------------------------- - - # The left/right rear wheels are what moves the car. This - # controller set uses PID for velocity set points - joint1_velocity_controller: - type: velocity_controllers/JointVelocityController - joint: back_left_wheel_joint - pid: {p: 100.0, i: 0.01, d: 10.0} - joint2_velocity_controller: - type: velocity_controllers/JointVelocityController - joint: back_right_wheel_joint - pid: {p: 100.0, i: 0.01, d: 10.0} - - # we are no longer using these controllers for angular rate - # but we may reinstate them later - #front_left_steering_controller: - # type: velocity_controllers/JointVelocityController - # joint: front_left_steering_joint - # pid: {p: 100.0, i: 0.01, d: 10.0} - #front_right_steering_controller: - # type: velocity_controllers/JointVelocityController - # joint: front_right_steering_joint - # pid: {p: 100.0, i: 0.01, d: 10.0} - - # permits a set point for the steering (tire) angle, which - # is enforced by these position controllers. The value is - # set based on the dynamics of the controller, not an - # instantaneous set for the position - front_left_steering_position_controller: - type: position_controllers/JointPositionController - joint: front_left_steering_joint - pid: {p: 100.0, i: 0.01, d: 10.0} - front_right_steering_position_controller: - type: position_controllers/JointPositionController - joint: front_right_steering_joint - pid: {p: 100.0, i: 0.01, d: 10.0} - diff --git a/ros/src/system/gazebo/catvehicle/config/map.yaml b/ros/src/system/gazebo/catvehicle/config/map.yaml deleted file mode 100644 index 108c2a5cd93..00000000000 --- a/ros/src/system/gazebo/catvehicle/config/map.yaml +++ /dev/null @@ -1,6 +0,0 @@ -image: testmap.png -resolution: 0.1 -origin: [0.0, 0.0, 0.0] -occupied_thresh: 0.65 -free_thresh: 0.196 -negate: 0 diff --git a/ros/src/system/gazebo/catvehicle/dae/duck.dae b/ros/src/system/gazebo/catvehicle/dae/duck.dae deleted file mode 100644 index a5bebcf32a1..00000000000 --- a/ros/src/system/gazebo/catvehicle/dae/duck.dae +++ /dev/null @@ -1,198 +0,0 @@ - - - - - gcorson - Maya 8.0 | ColladaMaya v3.02 | FCollada v3.2 - Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0; -curveConstrainSampling=0;exportCameraAsLookat=0; -exportLights=1;exportCameras=1;exportJointsAndSkin=1; -exportAnimations=1;exportTriangles=1;exportInvisibleNodes=0; -exportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0; -exportTexTangents=0;exportConstraints=1;exportPhysics=0;exportXRefs=1; -dereferenceXRefs=0;cameraXFov=0;cameraYFov=1 - -Copyright 2006 Sony Computer Entertainment Inc. -Licensed under the SCEA Shared Source License, Version 1.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://research.scea.com/scea_shared_source_license.html -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. - - file:///C:/vs2005/sample_data/Complete_Packages/SCEA_Private/Maya_MoonLander/Moonlander/untitled - - 2006-08-23T22:29:59Z - 2007-02-21T22:52:44Z - - Y_UP - - - - - - - 37.8492 - 1.5 - 1 - 10000 - - - - - - - - - - 1 1 1 - - - - - - - duck.png - - - - - - - - - - - - - file2 - A8R8G8B8 - - - - - file2-surface - LINEAR_MIPMAP_LINEAR - LINEAR - - - - - - 0 0 0 1 - - - 0 0 0 1 - - - - - - 0 0 0 1 - - - 0.3 - - - 0 0 0 1 - - - 0.5 - - - 0 0 0 1 - - - 1 - - - 1 - - - - - - - - - - - 35.0226 89.3874 23.3732 19.5676 89.7173 22.4879 9.22909 91.5427 17.1037 4.33048 88.7008 4.57726 45.0571 89.4178 19.824 -30.5196 11.6272 25.1326 -15.6992 11.4278 34.2321 51.8411 17.7055 36.5602 65.7206 18.372 27.0862 56.0117 11.4345 22.6963 -23.2343 18.1488 41.0429 -40.9218 18.6322 29.6382 62.4487 11.3989 12.9806 60.2326 28.1944 39.5949 71.2984 29.0359 29.3335 -32.9737 29.6914 43.477 -48.95 28.9358 31.4102 73.8118 41.7425 29.8584 65.2513 41.3955 39.884 72.6597 55.003 29.2468 64.6263 55.4849 38.2648 66.5829 66.4165 27.9218 55.5179 67.734 35.7358 43.4971 75.6992 31.8699 56.934 75.0037 25.7495 14.7601 73.8701 35.1574 -12.1248 73.9991 28.9191 14.7016 78.8465 28.8886 -3.37962 78.0576 23.1953 -24.7824 78.2304 7.65121 4.94216 81.4267 15.8195 -54.7257 89.9761 8.84491 -53.6566 74.7375 26.9735 -44.1714 77.8938 26.1268 -64.7587 73.8997 7.15297 -61.5691 65.6958 25.2253 -42.9296 61.2502 39.4496 -64.9663 57.2673 21.7398 -48.9596 49.2561 39.8218 -58.3698 43.9468 28.036 -31.7993 70.8398 33.4366 -33.1153 82.3349 8.62471 48.2452 81.0789 22.327 34.1225 80.5718 26.6473 15.5527 81.3807 24.423 0.65596 81.0723 3.99376 15.1798 11.41 36.4164 17.2973 17.3674 43.2976 43.8649 67.7941 39.8677 55.9835 56.1625 42.7808 56.4187 41.7648 44.4371 46.9566 29.0085 44.2399 18.041 21.337 45.4158 -24.2634 29.7596 46.4694 -37.1346 44.6474 44.4312 -35.8668 57.8953 42.7333 -24.1626 66.8013 39.6298 -14.2645 43.4767 51.8892 10.1522 43.8267 53.9252 -10.3735 36.316 51.8336 -14.5047 52.2745 51.0455 9.35439 52.1796 53.5056 24.5685 36.9247 52.4691 11.2191 35.6243 52.5988 27.0248 44.5585 52.8835 25.4374 55.0852 52.0724 9.23132 59.258 51.2115 21.2751 61.6417 50.3945 -11.0645 57.3325 50.3033 -22.8339 53.8174 48.6047 -22.3883 43.3299 49.8488 -13.3437 34.4469 50.7719 -15.0193 59.7488 48.0109 12.3031 31.6369 51.4681 28.2 34.9703 51.4911 34.9314 44.1559 51.2583 33.7281 55.8993 50.0475 24.8495 63.37 48.6114 9.96162 62.8873 48.4038 6.73344 84.5266 2.83788 10.2211 84.9641 13.1445 19.05 85.0093 20.4734 35.2584 84.9759 22.0089 44.8651 85.199 18.7578 54.1484 90.1992 13.1393 25.84 89.3162 23.5593 14.5318 90.4728 20.5795 5.99276 89.5698 10.1098 59.1034 90.0324 3.37689 -23.9364 11.5353 30.6125 -11.459 10.0413 29.8243 -24.5326 10.1147 22.2069 -35.1528 11.6836 17.7191 61.5472 14.2726 25.2082 43.6854 11.43 30.0164 47.7677 14.1162 33.6212 -19.459 14.309 37.9267 -36.067 14.5054 27.6816 -32.9292 18.5574 36.7248 -46.1733 18.6604 20.5246 73.3418 18.3468 14.9194 68.8732 23.4107 28.4208 55.7803 22.4988 38.5465 -27.0171 23.4671 43.0366 -45.2302 23.6628 30.9246 -41.0731 29.3325 39.4763 79.4615 29.1894 16.0672 76.9844 23.4678 15.5749 72.8865 35.1223 29.8369 63.2406 34.5574 39.8307 81.8608 42.114 16.7292 80.9318 35.3877 16.409 66.0817 48.5555 39.2449 73.9987 48.5347 29.6857 80.1688 55.1853 16.948 81.5894 48.8387 16.9628 61.1927 62.0057 37.295 70.17 61.0152 28.6395 74.8647 66.3268 16.601 77.7874 61.0196 16.7611 61.7637 71.037 26.8557 67.1835 75.4493 16.6366 71.6321 71.1772 16.667 -7.40039 76.1581 26.3759 14.8335 76.3145 32.0471 -20.947 75.0059 21.3995 -9.30957 78.0917 17.6635 2.33308 81.2658 10.7014 -55.3055 81.4823 20.1865 -44.1025 82.8784 21.08 -48.3998 77.2606 26.9595 -63.8341 69.8359 17.705 -58.2579 70.6396 26.4175 -58.1459 60.4109 31.5845 -50.1918 68.7831 33.097 -53.5557 46.1592 34.9928 -63.069 52.729 24.0553 -63.6495 60.7883 23.3658 -54.4261 28.5392 21.6382 -12.4228 39.2454 51.9419 -52.1766 34.1006 30.9987 -39.3582 37.1753 42.8245 -63.2047 33.3562 7.77354 -14.9689 48.0973 51.5712 -13.2184 68.1588 38.5488 -20.841 71.9312 31.5875 -34.0814 73.6573 23.1685 39.0864 77.6536 29.4959 52.286 78.2905 24.2985 28.6752 75.0467 34.74 24.5284 79.4248 29.0977 58.2456 81.6454 14.9372 62.5867 78.8584 16.1198 -40.058 73.3058 29.0169 -62.4832 42.7738 19.6053 -66.2542 57.7677 16.0138 -46.3972 55.562 40.3341 46.1403 83.2928 20.059 52.8472 87.516 12.3304 24.3957 81.2413 26.4145 17.5457 83.2299 21.6568 35.0308 86.9496 21.9178 5.66061 83.0193 2.97282 39.2717 10.0042 25.9897 49.7414 9.99683 19.7068 14.6156 10.0124 31.7958 28.2119 11.4278 34.5791 55.179 10.0309 11.4214 16.1259 13.9798 40.2177 33.0793 17.7336 41.3765 18.9195 36.2041 52.5892 10.6044 39.6524 53.4314 18.2523 44.3116 53.7955 25.9535 39.9994 52.7745 9.73549 48.0914 53.8815 16.9236 53.6009 53.2898 26.8721 49.8693 52.6952 9.12603 55.8675 52.7181 15.9783 60.8706 50.8542 23.2428 59.2083 51.1997 15.2006 70.9348 38.4909 -38.0814 66.6122 37.6368 -31.4745 63.2943 41.295 -12.9337 55.4359 50.6592 -29.8093 42.9681 46.5354 -18.6612 31.1764 47.8255 -30.266 55.8423 44.7033 36.2897 31.2217 48.0605 46.511 42.7776 47.7899 45.6636 56.4673 46.2574 32.8524 66.1703 44.2955 12.3579 67.2602 43.2175 -19.149 38.1518 50.4005 -23.6628 48.8825 49.2194 21.1045 32.7401 51.4785 32.4268 38.9651 51.46 35.2465 50.0413 50.7771 17.9201 63.7837 48.4371 30.018 60.597 49.2453 -20.4236 57.6424 48.1257 -7.11345 60.5511 48.2081 -5.54756 57.4675 50.6459 -6.2067 51.4293 52.475 -5.95461 43.3855 53.166 -4.66971 35.7333 52.2177 -5.70251 32.445 51.1085 -8.3205 17.8723 43.3717 -2.69678 11.3425 36.4653 -27.2981 42.8866 48.0687 -27.8897 55.043 46.5161 -16.4436 32.2248 49.3054 -18.5848 62.3861 45.599 13.6265 28.0639 49.9986 41.3922 43.4352 49.4685 32.3868 32.7171 49.8711 40.4699 56.3449 48.0345 28.9733 65.0389 46.3945 11.0523 65.6624 45.6909 -37.9272 11.78 6.99728 -50.2675 18.389 7.36354 75.8256 18.3928 2.93945 64.2756 11.6576 2.65993 82.8128 29.1368 2.93945 85.8726 42.1384 2.93945 84.9147 55.2091 3.25752 79.936 66.2007 3.25752 72.9207 75.6569 3.11665 -13.2799 78.2816 6.78078 -42.4217 91.5301 9.02211 -66.2519 42.375 7.59116 -67.9758 58.5114 6.99802 8.76422 81.5601 20.2429 8.65004 83.1534 13.7124 6.16626 86.3527 3.3376 10.3479 87.4003 13.9949 7.91973 84.7475 8.18356 19.5238 87.0994 20.6484 13.8638 85.0248 17.2846 35.1961 83.043 23.5111 26.055 84.941 22.3278 44.4291 87.1742 18.6599 55.1672 83.7325 13.2216 53.3737 85.5572 12.3674 -18.7264 10.108 26.6814 -28.5504 10.1785 15.7995 -28.6467 14.412 33.9793 -40.9463 14.6426 19.2219 68.6182 14.2022 14.0757 -36.9819 23.7436 38.5844 48.5084 72.1529 33.9029 -14.7042 76.6096 19.7209 -49.515 83.8778 20.7678 -60.3339 76.3635 19.0618 -54.5522 64.8765 32.9243 -60.8158 55.9957 28.5728 -50.6442 23.4975 21.2438 -45.1383 35.1824 39.0803 -57.747 33.5446 21.51 -27.5531 73.6877 22.8942 26.6207 76.9559 31.9144 -39.393 77.9086 22.2647 -65.5928 51.6658 17.2594 -44.8336 71.3336 32.1213 -65.569 63.5509 16.5565 25.3055 83.1594 23.781 12.1192 83.2358 18.075 25.9631 10.0257 30.0393 30.5288 14.0969 38.2233 18.4628 39.992 53.2994 17.691 48.9863 53.8221 16.1429 57.6002 52.3171 32.2615 71.41 37.9727 51.4408 62.676 41.4618 57.6406 48.9151 43.8433 52.9177 35.0586 44.5773 36.217 23.1483 43.9056 -31.7681 36.6178 45.7769 -37.83 51.5724 43.6927 -25.9576 36.5644 47.2776 -31.2662 49.6491 45.6583 26.7542 27.5116 48.1161 23.2102 67.8126 43.5534 -9.81152 64.5785 42.5347 -5.73514 54.6841 51.8166 -6.34459 47.5345 53.0926 -5.18279 39.3551 52.8687 -13.0679 23.5531 45.6457 -5.21985 14.0791 40.2548 -0.679352 10.0168 31.8299 -28.752 49.271 47.2864 -23.8534 36.6519 48.7626 -24.6964 59.5316 45.8889 -7.15942 29.3978 49.7079 38.1551 37.5127 49.7814 23.9612 29.5453 49.9126 42.2701 49.9123 48.8776 35.8278 61.6884 47.1419 20.5055 66.243 45.9037 -8.95663 63.2617 45.5834 -31.1142 10.1703 6.38486 -44.1714 14.6552 7.27827 70.6407 14.3913 2.92833 79.9353 23.413 2.93945 84.5803 35.3544 2.93945 85.9631 48.8595 3.25752 82.8254 61.0226 3.25826 76.7546 71.3433 3.2553 -19.2017 77.8115 7.33611 -48.5489 92.2656 9.06511 -60.1596 84.4057 8.28143 -55.757 23.043 7.73055 -29.2013 79.6561 8.08569 -37.1064 88.1752 8.91461 -68.0046 51.5783 7.15372 -66.9147 65.618 7.07735 57.0756 10.1525 2.28551 6.64003 83.0734 8.64102 7.67061 86.759 8.63805 14.3983 87.2706 17.8748 26.21 86.9437 22.1654 62.3057 92.5874 2.9313 1.3848 69.2606 38.5873 1.56273 65.4519 43.0262 1.32251 64.1537 45.6605 4.95551 9.99831 32.3904 4.63076 11.3477 37.0599 4.48174 13.922 40.9628 4.08211 17.3859 43.9419 3.02928 21.4474 45.8963 3.07525 28.2293 49.9356 3.11009 31.6361 51.3265 3.03002 35.4574 52.4675 2.61333 39.4033 53.3009 2.11362 43.4389 53.8266 1.75772 47.519 53.7873 1.63762 51.3863 53.3032 1.70287 54.8295 52.4802 1.76736 58.0161 51.0099 1.52196 61.5001 48.3586 1.93642 72.8387 33.8763 3.64763 75.9142 30.548 5.31806 78.4269 26.9639 58.5778 87.5953 2.23361 59.1501 85.8263 2.11721 61.5583 84.2063 2.51758 64.9644 82.1214 2.892 69.0133 79.1475 3.00989 32.7991 89.7151 -30.4233 18.3501 89.4171 -27.9721 8.67525 89.5668 -20.9938 2.39314 90.3705 -9.85685 41.3633 90.1718 -28.7054 -31.106 11.4775 -32.9686 -16.1893 11.413 -41.8242 -37.8441 11.7199 -17.9362 51.1145 17.827 -43.7764 65.4167 18.372 -34.6672 55.5386 11.4663 -30.2365 -22.7101 18.3816 -48.1723 -41.2258 18.6322 -37.22 -49.9064 18.1281 -19.4546 62.0944 11.4196 -20.5393 59.314 28.4606 -46.5397 70.9277 29.0352 -36.8544 -33.1991 29.873 -50.7109 -49.3615 28.878 -39.0246 73.4812 41.7559 -37.3453 64.6226 41.5905 -46.5931 72.9066 55.0971 -37.0309 63.9264 55.2231 -45.5736 67.308 66.4328 -36.116 55.8026 66.7664 -44.1694 43.9561 74.6649 -39.815 57.8297 75.238 -34.1393 15.5401 73.1894 -42.5115 -12.2174 73.8819 -36.4385 15.3978 78.7998 -35.5147 -2.0421 78.412 -29.475 -24.7876 76.5792 -19.7267 -12.534 78.2897 -17.6678 4.34457 81.1227 -24.1642 -55.8163 87.2424 -22.0756 -43.7036 88.3494 -22.3158 -54.1303 74.7924 -34.6324 -44.4888 77.8752 -33.6648 -65.5053 72.5896 -18.5049 -61.9613 65.7536 -32.9553 -43.4634 60.448 -47.4894 -65.1954 57.0723 -29.5143 -59.2654 27.9119 -20.2361 -49.2087 49.1998 -47.3723 -58.9689 43.7199 -35.5858 -66.3446 42.1948 -19.4391 15.5861 70.0443 -46.0785 -33.1287 69.3852 -41.4713 -34.4892 80.0254 -21.5618 48.699 81.1865 -30.8689 34.2382 80.5703 -34.2498 16.5759 81.1153 -31.895 0.727875 81.1872 -12.4148 -68.018 58.2133 -17.8183 14.7802 11.3848 -44.0174 16.9221 17.4452 -50.8066 -13.0864 43.3447 -58.8481 10.4495 43.9097 -61.0858 -9.32663 36.6667 -59.0505 -14.22 51.903 -58.0496 9.45597 51.998 -60.0277 24.246 37.0634 -60.5519 11.3896 35.7436 -60.2776 26.5918 44.6467 -61.0071 25.4626 54.4929 -59.5273 9.00666 58.9948 -57.2808 21.3366 60.5555 -57.2059 -11.1972 57.2725 -56.9708 -22.2438 53.1256 -56.0203 -20.3457 43.0689 -57.3067 -12.1122 35.0371 -58.1689 -14.9222 59.3774 -55.2218 12.2904 31.7184 -59.1973 27.7581 35.2002 -59.4961 33.8971 44.4969 -59.5273 32.7486 55.5991 -57.9969 24.5692 62.5262 -55.8246 9.69026 62.3164 -55.2589 6.31009 84.6215 -9.59067 9.94086 84.9232 -20.0693 19.0219 85.0345 -27.4843 34.7653 85.0426 -29.4209 44.1941 85.119 -26.7866 50.8728 90.6708 -23.6459 25.0482 89.5646 -29.954 12.9607 89.423 -24.9078 5.25504 89.8204 -16.202 3.24726 88.5844 -2.72431 56.928 89.7848 -10.5352 -24.3405 11.4359 -38.3603 -12.0514 9.99387 -37.4698 -25.119 9.92937 -30.186 -35.4745 11.6324 -25.6774 -30.9667 10.1577 -16.9998 61 14.303 -32.6913 42.9826 11.5093 -37.4209 46.9722 14.2133 -40.7944 -19.5197 14.3549 -45.3897 -36.488 14.4595 -35.3605 -33.1887 18.5722 -44.2309 -44.1233 14.4447 -18.6976 -46.6619 18.3928 -28.2843 73.0378 18.3468 -22.5011 68.5692 23.4107 -36.0025 54.8395 22.7093 -45.7182 -26.8814 23.6917 -50.1401 -45.535 23.6628 -38.5063 -41.3718 29.3444 -46.7703 79.1575 29.1894 -23.6481 76.6804 23.4678 -23.1566 72.5633 35.1268 -37.3883 62.517 34.8109 -46.6606 81.5568 42.114 -24.311 80.6278 35.3877 -23.9899 65.2083 48.5511 -46.1149 73.84 48.5629 -37.3 80.6871 55.3477 -24.807 81.674 48.8988 -24.6283 60.7961 61.4452 -45.0316 70.7794 61.119 -36.7907 75.5475 66.5218 -24.6246 78.6126 61.265 -24.804 62.9885 71.049 -35.1951 66.8647 75.4648 -24.4251 71.4756 71.2009 -24.4489 -6.85692 76.1307 -33.2993 15.3904 76.124 -38.9186 -20.6749 74.9933 -28.8188 -18.659 77.1776 -18.9697 -8.319 78.3549 -24.2702 1.96458 81.2562 -18.3514 -55.843 81.314 -28.5504 -49.6254 89.3466 -22.4648 -44.4451 82.6048 -28.9686 -48.6808 77.2324 -34.5316 -64.3131 69.6573 -25.8984 -61.7107 81.899 -20.9783 -58.7835 70.7123 -34.1097 -58.4469 60.3879 -39.1736 -50.5077 68.7809 -40.6817 -54.183 45.9931 -42.2824 -63.8549 52.5711 -32.0063 -63.9335 60.729 -31.1655 -54.957 22.8131 -19.9766 -55.152 28.2115 -29.5499 -11.2032 39.4137 -59.029 -53.076 34.2815 -38.5249 -39.7533 37.3377 -50.1979 -63.1283 33.463 -20.1464 -14.2141 47.7244 -58.4915 -30.0695 77.3155 -20.5683 -21.5757 71.2928 -39.3886 -34.2579 73.9026 -30.84 39.2161 77.6454 -37.0836 52.7939 78.4766 -32.8685 29.7051 73.7336 -42.0511 25.218 79.3136 -35.8083 57.9394 81.7173 -23.2211 62.3879 78.9177 -24.2442 -40.3947 73.317 -36.5831 -38.6256 84.6334 -22.1512 -63.1328 42.5522 -27.8513 -68.0395 51.255 -18.387 -66.6864 57.5891 -24.6884 -46.719 55.3544 -48.0974 -67.0838 65.1042 -17.911 46.0958 83.2499 -28.6417 50.9529 87.3143 -20.6038 25.2513 81.0708 -33.3601 17.9216 83.2039 -29.0153 34.0372 87.1164 -29.0287 5.17719 83.0067 -10.4967 38.7965 10.0502 -33.6129 49.3922 10.0272 -27.3241 14.187 9.93604 -39.5629 27.7425 11.4278 -42.1534 55.0359 10.0176 -19.0023 15.6372 13.9546 -47.8631 32.7953 17.7996 -48.8099 18.8513 36.2745 -60.5645 10.861 39.7903 -60.8997 18.3879 44.3219 -61.3282 25.5709 40.1514 -60.9249 9.98461 48.0417 -60.7803 17.172 53.0256 -60.1664 26.7053 49.7018 -60.6231 9.02446 55.628 -58.8755 15.9709 59.969 -57.3289 23.2776 58.2326 -58.209 44.1377 66.4765 -47.442 32.9162 70.0487 -45.5996 -39.1943 64.8054 -45.7138 55.5401 55.5242 -49.7715 51.248 61.6595 -48.7462 56.0065 41.9561 -51.2803 57.0734 48.8091 -50.5693 46.5132 29.225 -51.505 52.5663 35.3329 -51.6029 17.5056 21.4015 -53.1414 35.7529 23.258 -51.4249 -24.8654 30.3579 -52.8774 -37.595 44.6801 -51.7631 -32.3879 37.056 -52.6379 -36.3175 56.5451 -50.6094 -38.0947 50.8613 -51.419 -25.0582 65.9138 -47.2878 -13.0315 55.2283 -57.5699 -29.5994 42.7331 -54.0504 -17.7196 32.1054 -55.3997 -31.0452 54.9518 -52.1567 14.4814 25.6447 -55.9766 35.6595 31.6265 -55.6473 45.0786 43.2372 -55.4835 44.2682 56.1306 -54.0718 32.613 65.3459 -51.8098 12.2638 66.6664 -50.3239 -16.8788 38.5536 -57.7812 -22.2779 48.1633 -56.692 20.9614 32.7638 -59.3975 31.7892 39.2914 -59.6303 34.2463 50.1711 -58.9927 17.7651 63.1379 -55.4049 29.3959 59.9275 -56.7944 -19.9928 57.0804 -55.4805 -7.23875 60.3598 -55.204 -5.65804 57.5512 -57.0761 -6.0065 51.3551 -59.049 -5.22208 43.4715 -59.8809 -3.96387 36.0409 -59.508 -5.15608 32.8988 -58.5686 -13.5854 23.9342 -52.6112 -9.06415 18.1577 -50.5723 -3.25877 11.387 -43.9714 -26.2193 42.6871 -55.6006 -28.5919 54.4558 -53.8865 -15.0875 33.3422 -56.7928 -18.825 61.9909 -52.8915 13.3618 27.7844 -57.7174 39.8055 43.952 -57.5439 31.8122 33.1212 -57.6826 38.9151 56.1492 -56.0878 28.5307 64.3375 -53.8731 10.8825 65.2576 -52.8604 -38.7872 11.7814 -10.3899 -51.3804 18.2081 -11.1306 75.9308 18.2734 -10.619 64.3713 11.5264 -10.1319 82.6956 29.1294 -10.748 85.6139 42.137 -11.5317 84.7924 55.3455 -12.4133 79.6343 66.3979 -12.9219 71.6684 75.6332 -12.7061 -25.2621 79.1542 -11.2952 -14.3624 78.3676 -10.5812 -55.4174 91.1379 -15.1558 -43.1913 92.0224 -14.9719 -65.5402 74.7902 -11.1558 -61.0434 28.0454 -11.3123 -32.6111 84.6875 -12.5304 -67.2833 42.4839 -10.9141 -68.8802 58.6841 -10.4374 0.543259 81.1205 -6.22162 9.52418 81.0708 -28.7966 8.37571 83.1824 -21.1125 5.53085 86.6678 -9.24443 6.35532 84.3783 -3.72153 9.91936 86.9399 -19.9543 7.46301 84.8157 -15.1358 19.1716 86.9829 -27.1848 13.7244 84.9789 -24.2465 35.0315 83.0667 -31.2656 26.1633 85.0641 -29.3275 42.8321 87.2394 -26.5835 54.4673 83.6613 -21.5529 52.1903 85.3592 -20.4029 -19.1772 9.97014 -34.5627 -29.0093 10.0524 -23.9684 -28.9966 14.3787 -41.6404 -41.4341 14.4313 -27.1351 68.2653 14.2141 -21.6559 -37.1724 23.751 -45.8917 49.1935 70.9503 -42.3484 -14.5648 76.6133 -27.0075 -49.8916 83.6109 -28.9872 -61.1227 76.1114 -27.2671 -55.0601 65.0337 -40.5186 -61.3029 55.8348 -36.2984 -51.2017 23.1727 -29.0783 -45.8464 35.4359 -46.3143 -58.6945 33.6906 -29.4149 -27.3062 73.8878 -30.3291 27.1279 76.7275 -38.8845 -39.6428 78.0687 -29.8339 -66.1326 51.3373 -25.8257 -45.1368 71.2869 -39.6934 -65.8464 63.4174 -25.0094 25.8474 83.1357 -30.877 12.1451 83.2039 -25.5855 25.4849 9.93826 -37.9992 30.078 14.1043 -45.7664 18.448 40.0625 -61.2347 17.9876 48.7616 -61.0605 16.2348 56.7727 -58.8674 -32.2767 62.0154 -49.2051 -13.9368 67.8282 -45.9206 -24.8684 37.0434 -54.8511 -31.525 48.8313 -53.174 26.4258 27.5071 -55.6637 23.2554 67.017 -50.8845 -10.1563 64.4547 -50.0444 -5.75739 54.7064 -58.2557 -5.8419 47.5145 -59.5984 -4.37907 39.5768 -59.8409 -5.9761 14.2111 -47.5917 -0.926239 9.96272 -39.5747 -28.5177 48.5533 -54.7769 -21.6936 37.4949 -56.2842 -25.4638 59.1765 -53.191 -6.8028 30.1029 -57.2111 37.0326 38.1125 -57.7227 23.7499 29.4563 -57.6722 40.6137 50.1599 -57.0286 34.858 61.1842 -54.92 20.4387 65.7863 -53.1414 -9.18353 63.1068 -52.8225 -31.7926 10.1666 -9.9777 -45.2866 14.5017 -10.8326 70.7816 14.2259 -10.5137 79.9368 23.3648 -10.642 84.3683 35.367 -11.0661 85.8037 48.9262 -12.0255 82.7112 61.2146 -12.6921 76.0168 71.4278 -13.3949 -20.2604 77.9924 -11.2248 -49.3845 92.9811 -15.3182 -60.8729 85.6046 -14.2238 -56.4851 22.8762 -11.2211 -64.3531 34.2467 -11.1677 -29.1309 81.0871 -11.445 -37.3177 89.3021 -14.5323 -69.0093 51.6317 -10.622 -67.6547 66.1837 -10.4878 5.71547 83.0356 -4.42811 57.0919 10.0917 -9.5929 6.03725 83.0742 -16.133 5.45968 86.1214 -3.26036 7.12048 86.8962 -15.0149 13.8867 86.9385 -24.0596 25.9809 87.0964 -28.959 -11.6043 122.781 8.68477 -11.2981 122.692 9.69681 -10.977 122.366 10.6888 -10.6656 121.82 11.586 -10.3765 121.078 12.3445 -10.1237 120.175 12.9302 -9.91827 119.156 13.3142 -9.77222 118.067 13.4803 -9.68768 116.96 13.4188 -9.67062 115.887 13.1341 -9.72327 114.899 12.6358 -9.85822 114.021 11.8907 -10.7227 112.914 8.71887 -11.1023 127.944 8.41562 -10.4921 127.767 10.4464 -9.85971 127.122 12.423 -9.24655 126.037 14.2114 -8.68082 124.561 15.7276 -8.18628 122.764 16.8946 -7.78964 120.733 17.6635 -7.49306 118.563 17.9719 -7.3344 116.363 17.8451 -7.30846 114.233 17.2735 -7.41818 112.273 16.2733 -7.69992 110.534 14.786 -8.2775 109.033 12.4727 -9.35776 108.08 8.5424 -9.95609 132.998 7.96262 -9.04932 132.737 10.981 -8.11142 131.781 13.9103 -7.20317 130.173 16.5602 -6.3661 127.988 18.8075 -5.64024 125.328 20.5468 -5.05821 122.318 21.6961 -4.64821 119.099 22.2025 -4.42282 115.824 22.0238 -4.39761 112.65 21.1845 -4.56294 109.746 19.6875 -4.97073 107.211 17.3891 -7.42485 103.383 8.21767 -8.20483 137.879 7.33685 -7.0141 137.537 11.2983 -5.78555 136.284 15.1374 -4.59557 134.176 18.611 -3.49826 131.313 21.5559 -2.54626 127.827 23.8351 -1.78407 123.883 25.3417 -1.24654 119.664 26.006 -0.958862 115.367 25.7954 -0.932175 111.202 24.7018 -1.15683 107.411 22.6977 -1.71957 104.094 19.6809 -4.90993 99.0215 7.7476 -5.87453 142.516 6.54797 -4.41762 142.098 11.3954 -2.91623 140.566 16.0879 -1.46082 137.989 20.3341 -0.119568 134.489 23.9337 1.04373 130.229 26.72 1.97571 125.407 28.5617 2.63261 120.249 29.3728 2.98405 114.998 29.1163 3.01297 109.897 27.8025 2.72233 105.248 25.381 2.00388 101.315 21.4907 -1.90344 95.1527 7.08847 -2.99854 146.84 5.6071 -1.29695 146.353 11.2694 0.45578 144.564 16.7478 2.15439 141.556 21.7035 3.72029 137.47 25.9059 5.07858 132.497 29.1585 6.16626 126.869 31.3079 6.93364 120.848 32.2555 7.3429 114.718 31.9552 7.37701 108.764 30.4219 7.02557 103.335 27.5927 6.15958 98.8146 22.9217 1.31064 91.5316 5.92221 0.38089 150.789 4.52833 2.30194 150.239 10.9231 4.28081 148.22 17.1066 6.19814 144.825 22.7007 7.96496 140.213 27.4444 9.49823 134.6 31.1152 10.7268 128.246 33.5419 11.592 121.45 34.611 12.0547 114.531 34.2722 12.0932 107.81 32.5417 11.6995 101.628 29.4492 10.7461 96.4739 24.1724 4.21408 154.305 3.32648 6.32714 153.7 10.3604 8.50323 151.481 17.1593 10.6111 147.749 23.3102 12.5537 142.677 28.5254 14.2397 136.505 32.5617 15.5905 129.519 35.2301 16.5418 122.048 36.4053 17.0504 114.439 36.0331 17.0919 107.05 34.1306 16.6589 100.258 30.74 15.7233 94.7279 25.791 8.4454 157.338 2.02082 10.7201 156.687 9.59079 13.0608 154.299 16.9057 15.3288 150.283 23.5229 17.4189 144.827 29.1348 19.2332 138.186 33.4774 20.6856 130.67 36.3481 21.7103 122.631 37.6123 22.2575 114.445 37.2119 22.3019 106.495 35.1648 21.8259 99.2209 31.4888 20.825 93.3985 26.5962 13.0133 159.842 0.628418 15.4163 159.154 8.62471 17.8875 156.633 16.3489 20.283 152.392 23.3369 22.4903 146.631 29.2623 24.4054 139.618 33.8481 25.9394 131.682 36.879 27.0211 123.193 38.2151 27.5987 114.549 37.7917 27.6461 106.153 35.6297 27.1561 98.4202 31.8069 26.2026 92.3353 26.7949 17.8512 161.781 -0.829224 20.3468 161.067 7.47549 22.9136 158.449 15.497 25.4011 154.045 22.7534 27.6929 148.063 28.9072 29.6814 140.78 33.6686 31.2747 132.539 36.8168 32.3972 123.724 38.2032 33.0378 114.732 37.7776 33.1394 106.004 35.5511 32.5863 97.9694 31.5919 31.965 91.3737 26.2299 28.0317 162.761 5.43213 30.6652 160.074 13.6627 33.218 155.556 21.1096 35.5698 149.416 27.4236 37.6109 141.943 32.3103 39.2458 133.487 35.5408 40.3779 124.44 36.8931 41.0778 115.182 36.3645 41.3685 106.251 34.3441 40.5714 98.0124 30.0964 39.483 90.8428 24.5869 25.47 163.494 -3.09354 33.2647 163.97 -5.38011 35.8181 163.241 3.11665 38.442 160.564 11.3176 40.9852 156.062 18.737 45.5605 150.164 24.1539 46.9596 143.512 28.5313 48.7731 136.143 30.9839 48.1273 125.112 34.1698 49.5294 116.289 34.2469 49.9179 107.113 32.426 48.6893 98.8206 27.8254 47.2243 91.628 22.178 38.4532 163.455 -6.88224 40.9503 162.742 1.42916 43.5171 160.123 9.45065 47.7967 155.173 17.3906 53.1913 129.392 30.4605 57.4434 120.187 30.353 57.7555 108.881 29.1971 56.501 100.349 24.8901 54.4406 93.4897 18.651 43.5401 162.322 -8.34137 45.9453 161.636 -0.335434 50.4154 158.124 9.95186 48.4521 160.589 -9.73451 50.7305 159.939 -2.15119 54.3182 157.614 6.23138 63.8033 119.565 25.3861 63.9101 110.06 24.7226 62.901 102.219 20.9027 60.7679 96.0876 14.7059 53.1171 158.28 -11.0416 55.2347 157.675 -3.99215 58.19 155.872 2.80748 67.2969 119.573 21.0355 67.7537 111.25 20.0049 67.3733 103.92 17.1459 65.043 98.1407 11.5222 57.4671 155.429 -12.245 59.394 154.879 -5.83163 62.1915 152.982 0.103493 69.6977 119.848 16.5973 70.8076 112.269 15.649 70.4413 106.039 12.8968 68.5447 100.725 8.19913 61.4382 152.077 -13.326 63.1457 151.59 -7.6422 65.78 149.427 -2.04368 72.9933 113.56 10.1899 72.6093 109.123 7.23009 71.4208 102.692 -5.93692 66.1158 146.314 -14.556 67.6306 145.656 -8.87371 68.937 144.641 -4.73136 71.1249 140.238 -3.87204 72.9303 135.432 -3.25369 73.955 129.872 0.956131 73.8222 124.051 6.88754 69.9913 140.169 -15.5436 71.876 138.749 -9.69077 -11.3759 117.634 8.77818 63.3644 132.244 19.7795 58.7861 144.777 19.4836 67.0122 129.764 16.8798 70.6155 138.855 5.83472 63.4756 148.383 9.49515 62.8195 133.184 17.464 65.3848 131.323 15.0306 58.8061 141.77 16.8434 60.1659 137.06 18.4575 67.3103 131.311 12.1873 59.8997 144.627 13.2097 68.6945 133.697 9.63008 62.6779 144.573 10.0134 68.5944 137.783 7.94185 66.1373 141.972 8.0323 63.5846 133.449 17.7798 66.1373 131.523 15.497 59.6002 142.393 17.3936 68.0977 131.472 12.4801 69.5345 133.885 9.64862 63.3399 145.241 10.1906 69.4233 138.273 7.76169 66.8358 142.631 7.99524 70.3049 128.194 12.73 72.5233 132.983 6.70811 70.8876 139.701 3.88477 57.3232 138.168 24.4749 62.3546 131.157 22.7541 67.3926 146.279 4.41341 62.6852 151.575 8.16354 58.5355 152.152 14.7897 56.0087 147.327 21.699 67.4163 128.203 18.5732 61.7689 138.738 16.9517 60.1192 142.066 15.9826 64.1066 135.62 16.4201 65.946 133.39 14.7222 67.2903 132.939 12.8657 68.2793 135.009 11.4955 67.7633 138.355 10.7993 65.6517 141.685 10.9157 62.861 143.967 11.7343 60.6115 144.197 13.6175 60.9733 137.35 18.8824 60.8999 145.33 13.6701 65.4233 132.097 14.9091 64.194 132.052 16.3667 63.0381 133.984 17.1452 60.5626 137.576 18.0038 59.2072 139.485 18.0623 59.179 141.815 16.5439 61.4122 134.887 18.1943 67.2154 132.019 12.4453 66.4087 131.047 13.613 59.0411 143.572 15.1678 60.1096 144.464 13.3409 68.5151 134.306 10.3248 68.0821 132.189 10.829 61.149 144.974 11.4258 62.7831 144.363 10.5976 68.2882 138.059 8.96576 68.9548 135.624 8.61655 64.3898 143.534 8.86493 66.015 141.892 9.0614 67.5801 139.948 7.72906 62.5229 143.343 13.2497 61.0674 143.946 13.8533 64.8184 141.126 13.1519 66.8854 138.187 12.9695 67.3889 133.651 13.1986 66.7994 134.635 14.1328 65.5909 137.242 14.9847 63.4504 140.109 15.2998 61.4471 142.587 14.915 69.5049 129.705 12.5735 72.1177 136.32 4.77299 71.5801 133.393 8.20432 59.2932 134.201 23.8217 59.9546 137.579 21.2023 65.0801 149.359 5.97188 67.3192 144.395 6.27661 56.9459 150.409 18.5398 60.5959 148.729 14.5628 56.1303 142.947 23.7928 65.2135 129.283 20.9902 68.9562 127.783 15.7988 69.2988 142.988 3.69571 60.547 152.61 11.1863 71.7477 130.025 9.56706 72.9533 131.626 4.33482 71.3592 125.34 12.6099 70.8958 140.288 0.80043 60.4142 128.485 25.3476 53.3566 137.368 28.099 60.1785 154.454 5.65604 66.8521 148.152 1.54631 50.4599 149.321 23.457 54.4777 155.19 14.0957 66.8083 125.61 19.6379 60.7657 140.445 16.6648 62.9418 137.1 16.8738 65.1157 134.361 15.6497 66.6044 132.832 13.8036 67.9094 133.728 12.0538 68.246 136.622 11.0736 66.8721 140.078 10.7355 64.2593 143.015 11.2634 61.6205 144.401 12.4393 60.0361 143.345 14.9402 62.2167 135.13 18.5205 60.0235 144.253 15.7061 59.9835 139.927 18.519 64.9258 132.28 16.7923 67.1776 131.236 14.0179 68.9044 132.335 10.9928 69.7696 135.952 8.50682 68.3794 140.573 7.55853 64.9874 144.212 8.9287 61.9957 145.611 11.7513 64.3364 132.866 16.125 59.6128 139.75 17.5893 61.7458 135.583 17.8214 66.3694 131.791 13.6738 59.3318 143.457 15.0788 67.9657 132.894 11.3154 61.3218 144.772 11.7684 68.6738 136.094 9.51442 64.4194 143.374 9.69681 67.3615 140.039 8.78485 61.7844 144.005 13.1407 63.6091 142.365 13.2305 65.9438 139.693 13.0347 67.4912 136.673 12.9257 66.9492 133.714 13.8169 66.3464 135.861 14.5969 64.5685 138.672 15.2167 62.3546 141.447 15.1878 60.8028 143.341 14.6881 70.7571 131.099 10.3129 71.4393 136.084 6.66586 61.5272 134.531 20.6551 65.2209 146.715 7.63861 59.5052 147.331 17.3142 58.8328 141.204 20.8056 65.3699 130.706 18.6303 68.3045 129.387 14.7556 69.1838 141.704 5.63008 61.9527 149.098 11.8158 72.6026 127.566 8.47568 72.3965 136.097 1.70497 56.5247 132.614 27.6949 63.6929 151.685 3.08774 52.022 153.009 18.9305 51.1249 144.226 26.8356 63.9865 126.508 22.5154 69.2202 125.238 16.535 69.0541 144.317 0.692924 57.2187 155.661 9.56113 67.741 135.282 12.8723 67.7907 134.283 12.7419 71.6609 136.111 -15.9358 72.3201 105.969 -15.2641 74.0417 117.157 -16.1597 75.2065 106.525 -16.2769 79.8634 107.308 -17.6552 91.3867 109.457 -21.1013 88.3001 106.164 -20.0804 79.2991 114.295 -17.6596 83.595 107.064 -18.7273 84.1132 113.461 -18.9875 85.3967 106.488 -19.2404 74.3568 135.883 -16.7173 78.9611 134.305 -18.0244 82.9529 133.126 -19.1618 84.9244 134.248 -19.7638 86.99 136.683 -20.4237 90.4947 139.433 -21.5114 93.7133 139.447 -22.4507 94.9967 133.968 -22.6969 95.4994 138.023 -22.9393 92.0955 130.536 -21.7701 88.3638 126.832 -20.5942 85.6599 124.96 -19.7608 81.4537 123.062 -18.4885 74.8654 115.813 -16.3999 75.0456 119.162 -16.437 77.3477 106.901 -16.9108 90.4702 107.067 -20.7351 76.8324 114.944 -16.9597 81.866 106.977 -18.232 81.8267 113.709 -18.3173 87.5994 113.172 -20.0641 72.8517 136.463 -16.4526 76.6211 135.168 -17.3616 81.0749 133.56 -18.6235 84.1259 133.478 -19.5125 85.7941 135.222 -20.0404 95.5972 136.005 -22.9201 93.7963 132.209 -22.3054 90.1255 128.604 -21.1495 87.0197 125.694 -20.1745 83.7714 124.169 -19.1907 77.8207 121.529 -17.3927 90.9181 111.196 -21.0087 72.5032 108.223 -2.09484 75.2258 128.38 -2.75545 73.0089 134.723 -11.6266 74.987 120.808 6.20024 75.9205 117.527 -9.42607 74.9633 116.553 -9.73895 78.1707 127.11 -4.45851 76.4373 109.876 3.38505 75.8359 108.157 -4.45555 81.7666 127.621 -5.91393 76.6804 114.045 7.19746 76.6345 120.205 6.07716 82.3917 119.936 3.28125 80.7256 108.785 -7.12913 83.5075 117.685 2.46864 82.9974 115.277 1.76725 92.4261 111.042 -14.8022 90.3783 110.634 -9.15768 95.4037 129.402 -7.5814 96.0984 136.789 -17.4832 82.3405 119.579 -9.26593 80.8413 115.369 -9.65369 85.2625 124.587 -1.81087 84.8272 129.21 -7.48057 85.7451 117.806 -3.52579 86.8232 121.414 -9.52765 85.9097 118.886 0.325172 87.199 131.776 -9.16064 88.7516 134.416 -11.1099 90.1003 121.341 -5.78863 94.2515 126.991 -9.62626 89.9564 123.624 -10.2795 92.7753 126.838 -11.8772 90.8128 122.536 -2.9371 84.8317 108.856 -9.63812 86.0135 114.746 -2.76731 86.5792 108.162 -11.0609 90.7371 125.097 -2.53673 73.043 106.875 -10.3143 75.0849 116.366 -9.04127 75.9716 116.037 -9.92357 74.6763 117.226 -13.3023 76.6107 127.495 -3.81347 75.8715 107.338 -10.9986 74.2945 131.787 -6.83849 77.6673 130.92 -7.97213 79.9509 127.383 -5.12654 76.4239 117.364 7.49699 79.6098 120.36 4.88643 79.5468 114.305 5.90663 78.3479 108.471 -5.80049 80.1169 108.117 -13.6233 81.3351 130.611 -9.06203 83.483 116.149 2.62879 83.0011 114.026 3.50368 91.761 108.672 -14.126 92.1266 109.889 -18.0081 93.8845 131.645 -7.45462 96.1799 134.037 -11.4887 81.9698 117.706 -6.57603 78.9833 118.659 -9.33636 78.2737 115.773 -9.7916 81.6235 116.026 -5.37269 79.8693 114.493 -14.8934 83.5372 128.01 -6.78511 83.5372 116.896 -3.09725 86.2686 119.313 -6.65833 84.7701 120.477 -9.37344 85.7155 117.814 -1.09836 82.8336 116.065 -0.2435 84.0376 118.31 1.24899 82.4806 122.05 -11.5955 87.1182 124.405 -12.0018 88.0999 133.229 -10.2009 92.2897 123.818 -7.20253 93.4241 126.82 -10.8934 91.5661 125.3 -11.0513 89.9394 122.25 -7.90022 90.4806 121.459 -4.05592 93.4426 125.358 -4.55564 95.0537 127.861 -8.4207 86.6067 133.598 -11.5288 88.5707 135.852 -12.9256 89.8207 126.465 -12.6372 92.9117 128.817 -13.9117 95.0404 130.344 -13.2941 82.9299 109.011 -8.36213 85.6702 113.376 -2.09262 83.9642 114.927 -0.734322 83.2265 115.122 -10.3417 85.751 115.129 -7.31301 84.1511 107.994 -14.6242 84.6693 113.83 -16.0203 88.6597 113.95 -5.64331 88.16 112.314 -5.20661 87.6284 114.616 -8.44739 91.1709 112.257 -10.1186 89.261 107.896 -12.7825 84.4929 131.425 -10.2884 88.4714 122.412 -9.79086 88.4424 120.148 -1.065 85.9995 121.323 0.560211 86.1099 130.434 -8.26055 87.8345 118.872 -4.42515 91.1968 133.419 -9.01013 88.8191 128.275 -4.56676 81.5976 122.873 0.828606 76.9644 122.205 2.94316 81.4612 110.902 -0.296883 85.7392 110.723 -3.63627 75.9894 134.176 -12.4407 80.1251 132.842 -13.5803 83.9442 132.485 -14.6398 85.946 134.022 -15.3694 88.0213 136.327 -16.4059 91.3103 138.582 -16.933 94.3976 138.399 -17.1755 95.3962 132.764 -17.8798 92.8436 130.018 -17.5358 89.2928 126.974 -16.3569 86.4413 124.91 -15.6051 82.4754 123.01 -14.5108 91.896 112.486 -14.9156 82.8751 115.658 -0.544518 86.2805 115.188 -4.50003 76.1644 116.572 -8.83145 75.4185 115.882 -13.8516 76.0488 119.438 -12.6624 75.6543 131.457 -7.41829 79.4986 117.656 6.72963 79.0322 110.008 1.65974 78.0128 107.635 -12.0211 79.5268 130.758 -8.47779 82.1877 117.111 4.66623 91.3177 107.267 -17.6789 94.3523 135.804 -11.3701 79.199 116.397 -7.74822 77.416 115.064 -14.3959 84.1318 118.571 -6.36101 83.3881 117.034 -0.32283 85.0712 123.225 -11.8706 91.807 124.332 -9.03386 92.9703 124.047 -5.59067 87.5542 134.782 -12.3095 91.394 127.808 -13.2948 94.0891 129.464 -13.8324 83.6906 111.07 -2.07482 83.6929 113.909 0.096817 83.6402 115.586 -6.22978 82.2292 108.145 -14.0185 82.2626 114.108 -15.3812 85.9475 107.439 -15.3597 88.2578 113.456 -17.1125 88.2163 114.084 -11.2463 88.9763 106.666 -16.7455 83.1168 130.614 -9.81607 88.5233 125.332 -12.2287 88.5596 122.718 -0.990116 88.1236 120.568 -7.14322 91.5424 136.545 -12.2591 90.1959 130.708 -6.46555 83.1835 123.375 -0.566017 79.5957 122.783 1.99635 74.3672 117.295 7.88031 87.5631 110.072 -6.37584 74.1744 134.769 -11.9588 77.8467 133.564 -12.9456 82.0565 132.388 -14.1586 85.1416 133.114 -14.9897 86.8728 135.108 -15.8513 96.088 134.721 -17.6366 94.3716 131.254 -17.9443 90.9752 128.478 -16.8885 87.8886 125.817 -15.9581 84.6456 124.017 -15.1551 78.798 121.528 -13.6567 91.6357 111.58 -17.9377 84.2971 115.519 -2.50114 83.7426 120.625 1.77541 88.5833 114.451 -6.97195 88.0828 118.976 -2.26166 92.4098 128.085 -4.46593 90.9233 113.198 -10.8133 95.8359 131.912 -12.44 88.8584 109.104 -9.27186 75.6269 121.857 3.65715 78.5266 120.452 -11.3783 85.7325 132.479 -10.7807 87.2109 126.227 -3.03349 82.3865 115.792 -3.39975 85.5323 114.683 -10.7629 88.5351 113.906 -14.361 85.1809 114.135 -13.5766 82.7372 114.618 -13.0324 80.3171 114.815 -12.4815 77.8096 115.265 -12.0804 75.7054 115.895 -11.7089 74.7512 116.96 -11.2522 75.744 118.732 -10.8711 69.843 141.836 -9.30819 67.9679 143.189 -15.0231 72.8213 119.941 10.9157 71.6506 104.986 0.684029 69.456 100.727 -14.47 73.995 114.29 6.9995 73.1142 110.85 3.56299 72.9748 136.288 -10.6843 71.3295 137.732 -15.8765 71.3963 104.177 -15.1099 74.1581 133.103 -5.27631 75.2109 128.825 -1.40012 75.073 122.123 6.21136 74.2901 118.616 8.83824 74.0083 114.133 7.99301 73.4597 110.347 4.91832 72.8198 106.93 -0.967873 82.4554 113.29 2.18171 79.572 111.521 3.2642 80.1607 112.304 4.14649 -10.1429 113.254 10.7089 72.7842 105.382 -7.25814 -5.83078 104.99 14.0223 -2.85619 101.143 15.3198 0.690811 97.9167 16.3207 4.67302 94.8688 16.9057 66.3361 95.2358 0.153168 -11.892 122.645 7.67271 -12.1529 122.274 6.67995 -12.3643 121.685 5.78059 -12.534 120.909 5.0184 -12.626 119.978 4.42898 -12.646 118.938 4.04047 -12.5956 117.84 3.87142 -12.4777 116.734 3.92851 -12.2953 115.674 4.20803 -12.0595 114.707 4.70033 -11.7659 113.862 5.43361 -11.6777 127.672 6.3856 -12.1989 126.934 4.40896 -12.6304 125.765 2.6199 -12.9514 124.219 1.10294 -13.1465 122.369 -0.071487 -13.2072 120.301 -0.848503 -13.1242 118.113 -1.18808 -12.8996 115.91 -1.07389 -12.5437 113.798 -0.511894 -12.0803 111.876 0.468269 -11.5131 110.201 1.90664 -10.7279 108.684 4.35558 -10.8109 132.596 4.94501 -11.5843 131.502 2.01563 -12.2226 129.769 -0.634972 -12.6979 127.479 -2.88298 -12.987 124.738 -4.62311 -13.0768 121.674 -5.77454 -12.9633 118.431 -6.28242 -12.6504 115.16 -6.12376 -12.1492 112.018 -5.30077 -11.4627 109.168 -3.83942 -10.636 106.694 -1.7434 -9.32736 137.352 3.37615 -10.3401 135.919 -0.462959 -11.1772 133.648 -3.93729 -11.8 130.646 -6.88298 -12.1796 127.054 -9.1636 -12.2968 123.039 -10.6717 -12.1477 118.789 -11.3375 -11.7385 114.502 -11.1299 -11.0883 110.379 -10.0578 -10.1881 106.649 -8.12857 -9.11383 103.415 -5.39493 -7.24765 141.871 1.70126 -8.48584 140.119 -2.99197 -9.509 137.344 -7.23812 -10.2704 133.674 -10.8392 -10.7339 129.283 -13.627 -10.8777 124.375 -15.4702 -10.6953 119.179 -16.2843 -10.1948 113.94 -16.03 -9.38 108.916 -14.6924 -8.24042 104.41 -12.2576 -6.81169 100.55 -8.6587 -4.60298 146.087 -0.054435 -6.04802 144.042 -5.53284 -7.24321 140.802 -10.4893 -8.13144 136.519 -14.6932 -8.67267 131.393 -17.9473 -8.84024 125.664 -20.0997 -8.62744 119.599 -21.0494 -8.04318 113.482 -20.7529 -7.08603 107.625 -19.1759 -5.77963 102.353 -16.3577 -4.12698 97.8226 -12.2769 -1.43115 149.939 -1.86574 -3.0623 147.631 -8.04924 -4.41095 143.974 -13.6441 -5.41411 139.139 -18.3892 -6.02504 133.353 -22.0622 -6.21411 126.886 -24.4919 -5.97388 120.04 -25.564 -5.31401 113.136 -25.2289 -4.25377 106.509 -23.4776 -2.81467 100.514 -20.3577 -0.857285 95.3878 -15.9247 2.22112 153.371 -3.70596 0.427597 150.832 -10.5049 -1.05525 146.812 -16.6565 -2.15849 141.496 -21.8739 -2.82948 135.134 -25.9124 -3.03783 128.024 -28.5838 -2.77313 120.497 -29.7627 -2.04877 112.906 -29.3942 -0.897324 105.606 -27.4954 0.658188 98.9955 -24.1115 2.66969 93.7269 -19.7623 6.30045 156.332 -5.54841 4.37052 153.602 -12.8633 2.77497 149.275 -19.4821 1.58868 143.556 -25.0954 0.866531 136.711 -29.4409 0.642624 129.061 -32.3147 0.926575 120.963 -33.5833 1.70657 112.796 -33.1866 2.9455 104.941 -31.144 4.64336 97.9398 -27.491 6.69341 92.8958 -23.465 10.7483 158.78 -7.36639 8.71009 155.896 -15.0906 7.02557 151.328 -22.08 5.77182 145.289 -28.0077 5.00963 138.061 -32.5957 4.77312 129.983 -35.6311 5.07339 121.431 -36.9701 5.89712 112.807 -36.5512 7.20499 104.513 -34.3944 9.05486 97.2925 -30.556 11.2406 92.5807 -26.9734 15.4979 160.678 -9.13321 13.3818 157.684 -17.1547 11.6321 152.94 -24.4125 10.3309 146.669 -30.5671 9.53901 139.163 -35.3323 9.29359 130.775 -38.4834 9.60574 121.895 -39.8743 10.4606 112.939 -39.4398 11.8189 104.326 -37.2 14.0588 96.9514 -33.3467 16.6434 92.4725 -29.9718 23.0545 162.362 -11.6177 20.8829 159.289 -19.8483 19.0871 154.421 -27.2967 17.7525 147.986 -33.6129 16.9392 140.284 -38.5019 16.6871 131.675 -41.736 17.0074 122.563 -43.1632 17.8853 113.373 -42.7169 19.2791 104.535 -40.4185 21.2106 97.0107 -36.2628 23.42 92.7149 -32.4103 30.8573 162.843 -13.8754 28.6938 159.781 -22.0763 26.9055 154.931 -29.4973 27.9242 148.749 -36.2635 26.8335 141.896 -40.4148 27.1308 134.403 -43.1558 24.8332 123.19 -45.306 25.7073 114.033 -44.8611 27.096 105.227 -42.5709 28.977 97.7766 -38.3173 31.01 93.1798 -33.7501 36.0984 162.352 -15.1936 33.9816 159.358 -23.2144 33.3826 154.015 -31.9877 31.2043 127.797 -45.1888 41.2721 161.261 -16.3458 39.5527 157.252 -27.2589 34.1114 118.081 -46.7154 35.274 106.958 -44.7195 36.8836 99.3018 -39.4702 38.9366 94.263 -33.7738 46.3034 159.583 -17.3163 44.8502 156.854 -26.2038 42.5748 117.521 -46.6924 42.9789 108.591 -45.2964 44.501 100.951 -40.6187 47.291 94.8665 -33.4268 51.1197 157.345 -18.0904 49.9772 155.213 -25.3275 48.2059 117.708 -45.7612 48.7168 109.961 -44.0908 50.3568 102.509 -40.027 53.4827 96.7468 -32.9174 55.6498 154.578 -18.6568 54.8409 152.392 -25.0769 52.7864 118.209 -43.2581 53.6228 111.351 -41.2941 55.2413 104.656 -38.0407 58.7364 99.47 -31.8202 59.8286 151.323 -19.0083 59.0656 148.888 -25.0487 58.6371 112.647 -37.2162 60.0213 108.358 -34.3455 66.7364 101.215 -23.2055 64.3461 145.393 -20.1264 63.2939 144.171 -24.2324 64.6093 139.563 -25.8976 66.0209 134.24 -27.224 64.8265 128.137 -31.0498 61.4092 121.344 -36.0211 68.4454 138.292 -21.5291 45.453 130.809 -41.5454 41.6524 143.401 -39.21 50.101 128.433 -40.9145 59.0129 137.957 -33.7931 50.9314 147.376 -33.4765 46.2433 131.854 -39.2708 49.7303 130.061 -38.4737 43.1271 140.511 -36.8678 43.4601 135.718 -38.774 52.9147 130.138 -37.0872 45.9668 143.509 -34.5197 55.443 132.636 -35.7653 50.0284 143.557 -33.3201 56.2208 136.784 -34.4582 54.0432 141.001 -33.4001 46.726 132.091 -39.9847 50.1181 130.245 -39.3182 43.4927 141.099 -37.7857 53.4219 130.291 -37.7879 56.1362 132.807 -36.2509 50.4828 144.208 -33.8546 57.0422 137.29 -34.817 54.643 141.653 -33.7723 55.0842 126.961 -39.0439 60.0643 131.807 -35.2485 60.3282 138.873 -32.42 37.8104 136.599 -42.3736 42.95 129.62 -43.6504 57.0126 145.449 -31.2322 50.941 150.632 -32.0693 43.8723 150.975 -35.442 38.0876 145.889 -39.6926 49.5108 126.802 -42.685 45.605 137.439 -38.4211 44.6923 140.828 -36.8618 47.893 134.316 -39.1277 50.3776 132.134 -38.6198 52.5225 131.75 -37.7278 54.0743 133.869 -37.1666 53.9713 137.248 -36.4482 52.0865 140.596 -35.554 49.2647 142.875 -34.8407 46.3531 143.052 -35.2278 43.9086 135.978 -39.5785 46.5533 144.179 -35.4761 49.8356 130.846 -38.4441 47.9983 130.76 -39.0142 46.6052 132.656 -39.1566 44.0339 136.249 -38.6168 42.8387 138.17 -38.0111 43.6017 140.564 -36.8188 44.6634 133.535 -39.1929 52.6931 130.851 -37.3023 51.3763 129.845 -37.8198 44.2029 142.382 -35.6615 46.0758 143.337 -34.7362 54.9106 133.214 -36.2776 54.299 131.078 -36.3859 47.9753 143.917 -33.7041 49.8059 143.321 -33.8591 55.4037 137.025 -35.1736 56.1837 134.599 -35.1328 52.1021 142.547 -33.2281 53.387 140.878 -34.1972 55.4482 138.973 -33.8331 48.1733 142.19 -35.9091 46.6141 142.785 -35.6607 50.1892 139.952 -36.9649 52.0658 136.997 -37.7961 52.4194 132.447 -38.0845 51.4089 133.398 -38.5931 49.903 135.983 -38.7555 47.893 138.861 -37.994 46.3798 141.377 -36.6995 54.5637 128.486 -38.5583 60.8235 135.305 -33.5811 58.5718 132.382 -36.0552 39.8159 132.627 -42.8845 41.7955 136.119 -41.0087 54.1663 148.483 -31.4153 55.9539 143.477 -32.6654 40.5373 149.092 -37.6693 45.7748 147.539 -36.2109 37.1201 141.421 -41.3319 46.3145 127.804 -43.6823 52.3171 126.477 -40.9857 59.1168 142.133 -31.5495 47.4993 151.562 -33.5084 58.2159 128.907 -37.3334 61.9319 130.28 -33.5996 55.9843 124.214 -39.8068 61.9357 139.512 -29.8517 40.0547 127.159 -44.8752 32.5262 135.693 -43.2641 50.1396 153.648 -28.7343 58.0699 147.457 -28.6001 32.4395 147.874 -38.275 40.7865 154.09 -32.8062 48.5485 123.891 -44.2502 44.8917 139.171 -37.7145 46.6541 135.791 -38.9245 49.1683 133.076 -38.9875 51.4356 131.609 -38.169 53.4767 132.569 -37.389 54.253 135.498 -36.8633 53.2321 138.983 -35.9892 50.709 141.926 -35.1558 47.8345 143.294 -34.7866 45.1675 142.152 -35.9951 45.1713 133.754 -39.9113 44.7331 143.025 -36.6728 43.2421 138.583 -38.8326 48.3979 130.967 -39.812 51.8085 130.009 -38.6079 54.898 131.214 -36.9842 56.9414 134.926 -35.5317 56.2052 139.595 -34.146 52.5633 143.214 -33.6329 48.5055 144.528 -34.4611 48.2504 131.567 -38.9341 43.4311 138.451 -37.8428 45.1446 134.246 -39.058 51.3088 130.573 -37.8872 44.498 142.267 -35.7379 53.9312 131.767 -36.7632 47.939 143.698 -34.0771 55.4586 135.033 -35.7586 51.6817 142.351 -33.9384 54.6942 139.021 -34.6087 47.6009 142.867 -35.4487 49.1112 141.201 -36.4341 51.2183 138.511 -37.4098 52.6196 135.479 -38.0192 51.7129 132.488 -38.381 50.7646 134.609 -38.7822 48.8984 137.414 -38.4633 47.013 140.215 -37.3683 45.949 142.148 -36.1946 56.8747 130.003 -37.3653 59.271 135.122 -34.8148 43.4222 133.063 -41.3875 53.4219 145.768 -32.7803 43.3933 146.037 -37.8806 41.0259 139.775 -40.1938 47.7811 129.312 -41.5937 52.3542 128.12 -39.7631 57.9468 140.752 -33.0391 48.3905 148.009 -34.6435 59.466 126.101 -36.8574 62.769 134.918 -31.1499 35.337 130.917 -44.7544 54.5184 150.949 -28.3414 36.1436 151.734 -35.4628 31.2473 142.63 -41.2578 44.4825 124.75 -45.068 52.223 123.767 -42.08 60.3461 143.735 -29.0309 45.5294 154.723 -30.4826 52.8762 134.088 -38.0496 52.9993 133.095 -37.9288 65.4323 107.528 -26.9171 67.9487 126.833 -28.5074 70.5081 134.319 -20.2732 62.6749 119.616 -35.7438 72.6589 117.278 -23.098 72.2444 116.442 -22.3254 71.3889 125.795 -28.3703 65.5901 109.029 -33.5959 69.3603 107.637 -26.6398 75.0515 126.757 -29.2103 63.5342 113.12 -36.9642 64.2148 119.206 -36.4696 70.5985 118.958 -37.1681 74.9121 108.319 -27.0453 71.9998 116.742 -36.9872 71.9612 114.391 -36.0381 88.8094 110.578 -26.9527 84.1169 110.131 -30.6072 87.2695 128.749 -35.4465 93.0867 136.547 -27.8016 77.576 118.913 -26.6205 76.2215 114.981 -25.3972 75.678 123.817 -34.645 78.3012 128.686 -29.8368 77.0845 117.097 -33.174 81.2906 120.822 -28.8656 75.1464 118.021 -36.546 81.172 131.293 -29.8079 83.4949 133.994 -29.1154 81.9364 120.685 -33.7567 87.4282 126.444 -33.002 84.2007 123.162 -29.9962 87.3956 126.405 -30.3062 80.9881 121.747 -36.5927 79.7217 108.446 -27.144 76.8458 113.737 -33.7746 81.9683 107.792 -26.8548 80.6767 124.289 -36.9998 70.1714 106.645 -20.1493 72.022 116.241 -22.9037 72.8888 115.884 -22.6383 73.3892 117.141 -19.0068 69.7533 125.895 -28.1175 72.9185 107.101 -21.1147 69.1965 130.484 -24.8144 72.6997 129.897 -25.4795 73.1742 126.294 -28.81 63.1531 116.358 -37.3542 67.3688 119.359 -37.0517 66.7935 113.286 -37.5877 72.197 107.977 -26.8719 77.8994 107.939 -21.2215 76.3201 129.88 -26.4826 71.9026 115.225 -37.0598 71.0463 113.066 -37.4483 87.9791 108.369 -27.0824 90.3568 109.787 -24.1197 85.8919 131.003 -34.834 89.9668 133.538 -32.7744 75.3807 117.261 -28.6335 74.2589 118.273 -24.8974 74.5081 115.555 -23.9173 74.7186 115.201 -29.2771 78.273 114.414 -20.2702 76.9377 127.337 -29.5447 74.9877 116.19 -32.3036 79.228 118.61 -30.8741 79.7455 119.59 -27.752 75.7618 117.015 -35.1966 72.8947 115.268 -34.2906 73.0867 117.445 -36.2917 78.8617 122.15 -25.111 82.7305 124.079 -27.0743 82.4725 132.777 -29.4795 84.5114 123.193 -33.8509 87.4141 126.338 -31.4821 85.952 124.849 -30.2847 82.9247 121.687 -31.9314 81.3232 120.724 -35.4257 84.0399 124.603 -36.7655 87.4445 127.25 -34.4856 81.9223 133.222 -27.574 84.3016 135.509 -27.551 85.3181 126.104 -28.0604 88.5803 128.469 -28.7521 90.0231 129.941 -30.4819 77.43 108.57 -27.2025 76.3149 112.625 -34.143 74.121 114.113 -34.4307 78.5236 114.752 -26.0741 79.2235 114.861 -29.7308 81.84 107.809 -22.5419 82.8432 113.477 -21.7471 80.6945 113.198 -32.7484 80.1006 111.667 -32.8137 81.4167 114.445 -29.7768 85.2891 111.653 -30.1957 85.1586 107.567 -26.8363 79.5016 131.024 -27.3879 82.7149 121.901 -29.5647 78.0128 119.311 -36.7914 75.0649 120.445 -36.8974 79.7863 129.926 -29.9221 79.3229 118.187 -33.5803 84.4402 132.877 -32.1553 80.111 127.576 -34.3959 71.2569 121.989 -34.7844 66.2834 120.958 -33.9154 71.8315 110.129 -33.2852 77.2358 110.04 -32.7655 73.4782 133.884 -21.131 77.6228 132.464 -22.2276 81.3655 132.277 -23.4746 83.426 133.82 -24.0033 85.7036 136.141 -24.3458 88.7308 138.375 -25.7679 91.4667 138.163 -27.2159 92.7583 132.552 -26.9171 90.4562 129.827 -25.7152 86.8669 126.78 -24.6669 84.0844 124.721 -23.6771 80.1888 122.834 -22.3988 88.4224 111.98 -26.642 73.0971 114.872 -34.0422 78.0365 114.257 -32.4652 72.6559 116.366 -23.6348 74.0565 115.738 -18.8756 74.3546 119.371 -20.3332 70.6786 130.252 -24.9797 66.3234 116.559 -38.424 68.7427 109.182 -33.5877 75.2695 107.415 -21.4172 74.5162 129.923 -26.0103 69.7229 116.044 -38.0771 89.5331 107.124 -23.792 88.3401 135.32 -31.9677 74.1388 115.95 -26.0645 75.9612 114.948 -19.4391 77.1416 118.114 -30.0044 73.3922 116.231 -34.5642 80.9955 123.121 -26.1556 85.0815 123.793 -32.0715 84.2148 123.344 -35.5836 83.1264 134.427 -27.4776 86.9811 127.454 -28.4118 89.522 129.098 -29.4795 74.6652 110.346 -32.9938 73.4634 113.087 -34.946 76.8228 114.888 -29.5521 79.8915 107.956 -22.0252 80.6122 114.073 -21.0487 83.7573 107.262 -22.8645 86.4999 113.195 -22.8837 83.3651 113.698 -27.6845 87.0649 106.513 -23.293 78.1729 130.027 -26.8719 84.0191 124.97 -27.6585 78.0395 121.874 -37.0279 80.9955 119.953 -31.531 86.4391 136.135 -29.7404 82.2626 130.071 -33.6418 73.3188 122.63 -34.5204 68.9993 121.598 -34.5597 61.1201 116.288 -36.4563 80.2549 109.485 -31.4116 71.6743 134.356 -20.764 75.3384 133.298 -21.6337 79.5527 132.054 -22.774 82.5547 132.906 -23.8513 84.4528 134.914 -24.1434 93.1861 134.488 -27.5777 91.9487 131.059 -26.2461 88.5515 128.283 -25.1888 85.4827 125.624 -24.1983 82.3397 123.833 -23.052 76.6708 121.456 -21.1288 89.869 111.457 -23.9848 75.2791 114.471 -33.131 72.5418 119.712 -36.6595 81.3907 113.876 -31.5584 78.3679 118.196 -35.5399 83.0864 127.336 -36.4037 85.4308 112.541 -29.518 90.2145 131.46 -31.6971 82.9166 108.627 -29.6277 64.7835 120.521 -33.7531 75.2428 120.861 -23.2937 80.7976 132.083 -27.6852 77.9572 125.484 -34.7339 74.1796 115.013 -31.4161 80.9021 114.638 -26.7177 85.1483 113.312 -25.263 82.0676 114.019 -24.0982 79.6802 114.358 -23.3746 77.3173 114.669 -22.6413 75.2124 115.161 -21.7041 73.588 115.837 -21.0027 72.7523 116.861 -20.956 73.4137 118.581 -21.8902 66.4762 141.604 -20.8641 58.3546 118.743 -38.2809 63.6573 103.164 -29.6181 61.2017 113.464 -35.2759 62.603 110.079 -31.8602 69.9438 135.891 -21.1621 68.2393 131.67 -26.2038 67.4378 127.136 -29.5202 62.8091 120.687 -35.9907 60.5767 117.653 -37.3935 60.7761 113.247 -36.1998 62.0921 109.556 -33.1525 65.2417 105.935 -28.1842 71.3073 112.394 -36.0092 68.3164 110.617 -35.2945 68.3445 111.331 -36.3747 -11.3552 113.133 6.63324 68.4684 104.805 -22.5375 -9.45044 104.401 1.95409 -7.56053 100.492 -0.627556 -5.0686 97.2087 -3.46945 -1.8849 93.9531 -6.38548 56.808 93.3547 -23.3279 61.9223 96.6682 -23.3508 59.4081 140.566 19.6623 60.4639 137.464 20.042 61.8763 134.831 19.5882 63.4845 132.857 18.7674 59.1931 143.585 18.4382 65.1653 131.503 17.6961 59.7648 145.792 16.5098 66.574 130.654 16.1776 60.7479 147.03 14.1165 67.7426 130.322 14.3856 61.9742 147.354 11.7839 68.7983 130.581 12.5261 63.4081 146.812 9.84286 69.823 131.736 10.6896 65.1046 145.464 8.28365 70.6207 133.636 8.99838 67.079 143.51 7.13741 70.6489 135.976 7.7083 68.7916 141.109 6.6273 70.0306 138.529 6.87865 46.0899 131.451 -40.7647 44.2964 133.408 -40.6498 42.8521 136.048 -40.2939 42.1344 139.179 -39.5132 48.0895 130.139 -40.7032 42.5725 142.25 -38.4974 50.1107 129.339 -40.116 44.0636 144.531 -37.2763 52.0814 129.065 -39.1855 46.164 145.859 -35.8431 53.992 129.384 -38.172 48.4484 146.268 -34.5523 55.8478 130.62 -37.1918 50.7075 145.792 -33.6656 57.2832 132.639 -36.2405 52.9926 144.492 -33.2066 58.0113 135.002 -35.2811 55.2984 142.565 -33.2185 57.9772 137.569 -34.3714 57.0771 140.172 -33.5929 1.38182 68.9774 -45.9569 1.47894 65.0285 -50.2728 1.09637 63.909 -52.87 4.59888 9.97681 -40.0908 4.56625 11.4122 -44.5415 4.27933 14.0176 -48.351 3.6239 17.5846 -51.2515 2.5518 21.6054 -53.3934 2.81797 25.9316 -56.0077 3.01964 28.3271 -57.5284 3.3214 31.8267 -58.9081 3.45486 35.6754 -59.9047 3.14198 39.6169 -60.4303 2.63558 43.6332 -60.5215 2.15143 47.625 -60.2798 1.8074 51.4352 -59.6459 1.64281 54.9177 -58.6553 1.54494 58.1214 -57.1999 1.24614 61.2169 -55.2299 2.20258 72.8765 -41.2252 4.0999 75.8378 -37.4454 6.18702 78.5203 -33.435 56.4936 87.4619 -10.08 57.7629 85.6098 -10.3506 59.9983 84.0135 -10.7406 63.4852 82.0057 -11.5406 67.5801 79.1089 -12.265 -10.1652 108.262 6.21582 -11.0734 112.965 7.57632 -0.481384 91.8178 -0.502998 -8.62003 103.705 4.73889 -6.45135 99.499 2.95057 -3.73181 95.6969 0.985786 -60.1092 28.2359 7.92776 -8.84988 108.395 10.4182 -10.438 113.006 9.67531 2.73864 92.5778 10.975 -6.7205 103.892 10.9765 -4.01207 99.6658 11.3213 -0.806137 95.8341 11.3643 64.3527 94.8043 -12.5052 60.0369 91.4033 -11.0824 -11.539 10.151 19.9241 -5.49863 10.1436 21.8177 -15.9268 10.1577 16.38 -19.33 10.1651 11.6357 -22.5381 10.1681 4.40154 32.719 10.1303 18.5309 40.266 10.1244 13.6679 14.2263 10.1377 23.0462 22.7994 10.1333 21.7028 2.70157 10.137 23.1159 44.4157 10.1281 7.56966 6.82094 10.137 23.6438 46.5807 10.1555 0.804138 -22.7316 10.1651 -8.79883 46.5392 10.1481 -8.35619 -6.5737 10.1422 -30.0845 -12.5993 10.151 -28.2717 -18.4966 10.1644 -25.6115 -21.6988 10.1659 -20.5282 -21.6462 10.1607 -14.2928 40.6619 10.1362 -21.951 32.9614 10.1496 -27.1618 22.9625 10.1599 -31.832 13.8408 10.1637 -33.647 2.11658 10.1488 -32.443 44.7679 10.1347 -15.5147 6.04318 10.1488 -32.526 12.5907 10.1733 -3.80531 59.1887 91.8044 8.95242 -37.1383 88.9529 -2.97714 -31.8022 10.0858 -1.97102 -25.1531 10.1622 -2.2068 -48.967 94.3801 -3.43312 -42.7435 92.7505 -3.24479 -45.2458 14.541 -1.9814 -38.8006 11.688 -1.94433 -51.5643 18.2037 -2.1067 -56.8395 22.9229 -2.04294 -61.3273 28.167 -2.00068 -64.683 34.1592 -1.92802 -67.7244 42.676 -1.88947 -69.2985 52.0358 -1.98363 -69.0782 59.0674 -1.98585 -68.0128 66.587 -1.96361 -66.3149 75.4782 -2.11857 -61.6254 86.6775 -2.9586 -55.4464 92.4777 -3.38715 -32.8632 83.5116 -1.95249 -29.1664 80.3716 -1.67964 -25.0219 78.6923 -1.82199 -19.731 77.9019 -1.94433 -13.8211 78.3245 -1.89985 0.599609 81.0967 -1.11393 5.68803 83.0274 -0.72765 6.50954 84.4391 -0.967133 5.72511 86.2104 -0.331726 3.73808 88.5303 1.10886 0.442429 91.5093 2.82008 -2.82133 95.1602 4.04714 -5.66766 99.1208 5.2742 -8.03503 103.465 6.34038 -9.79816 108.128 7.22415 -10.9333 112.931 8.02786 -26.7479 60.7542 43.6698 -20.1774 63.8423 42.5992 -8.42801 27.4619 48.2347 14.9477 25.7121 48.3904 3.09452 25.896 48.4757 42.6645 36.5214 48.0598 47.7344 49.638 47.1827 40.5551 62.2549 45.2372 -20.4769 63.1994 -50.3046 -27.628 60.1306 -51.1217 -8.33606 28.1588 -55.7549 41.6947 37.0493 -55.6696 46.1069 49.7648 -54.9594 39.661 61.5616 -52.9449 -28.2701 61.5994 42.6785 -21.096 64.5792 41.7131 -10.6093 65.5757 41.2676 1.58052 66.8139 41.2357 -20.6037 30.6107 47.064 -27.9498 36.4747 46.6355 -32.0076 43.3195 45.7562 -33.3289 50.1288 44.8568 -9.84192 26.1273 47.153 -32.1367 56.4888 43.8329 40.1118 30.266 46.5139 29.9349 25.9004 46.5236 16.4046 23.9305 47.0581 3.12344 24.0639 47.2805 46.8217 35.817 46.5762 50.7757 42.2756 46.3478 52.0569 49.3051 45.7651 50.1277 56.399 44.7582 45.0638 62.5551 43.5645 13.7088 68.7742 41.1082 26.4851 69.2584 41.2994 37.1171 66.9377 42.3456 1.53827 66.2289 -48.7276 -11.1349 65.489 -48.6957 -21.7418 64.0098 -49.2903 -29.2399 60.7943 -50.2557 -33.7448 49.2984 -52.3954 -32.2894 43.1438 -53.1362 -27.8334 36.8602 -53.862 -20.3917 31.2343 -54.2831 -10.0503 26.5855 -54.5085 -32.8298 55.3737 -51.4331 2.729 24.1781 -54.8289 15.8893 23.9164 -54.731 29.5034 26.0458 -54.0829 39.6795 30.5618 -53.8806 46.253 36.21 -53.7901 50.0128 42.5536 -53.5439 51.139 49.2547 -52.9597 49.321 55.8341 -52.0848 44.6241 61.6202 -51.0127 37.1431 65.7944 -49.8316 26.732 68.0261 -48.7847 13.6339 67.8667 -48.6371 - - - - - - - - - - -0.192109 -0.934569 0.299458 -0.06315 -0.993623 0.093407 -0.038767 -0.993005 0.111528 -0.11695 -0.921313 0.370816 -0.085264 -0.993927 0.06957 -0.25821 -0.942076 0.214058 -0.305238 -0.944237 0.123473 -0.103012 -0.993873 0.04007 -0.109849 -0.993698 0.02232 -0.319871 -0.945464 0.061492 0.322015 -0.653105 0.68539 0.238016 -0.809438 0.536805 0.39559 -0.829362 0.394547 0.547107 -0.665777 0.50736 0.149283 -0.925897 0.34703 0.227375 -0.943129 0.242504 -0.182106 -0.7902 0.585167 -0.310544 -0.820667 0.479654 -0.418246 -0.841388 0.342252 -0.407245 -0.671943 0.618582 -0.544891 -0.711903 0.443045 -0.234371 -0.618101 0.750347 -0.474249 -0.857348 0.200104 -0.472515 -0.875412 0.101901 -0.601129 -0.750567 0.274396 -0.593419 -0.791427 0.146617 0.282256 -0.953514 0.105559 0.497204 -0.845385 0.195227 0.680184 -0.678639 0.277127 0.475425 -0.378716 0.794069 0.394699 -0.508097 0.765539 0.651796 -0.507567 0.563506 0.728714 -0.35445 0.585953 -0.280085 -0.456993 0.844222 -0.472084 -0.52749 0.706322 -0.629949 -0.5896 0.505505 -0.525528 -0.402813 0.749375 -0.688269 -0.483465 0.540877 -0.345696 -0.333643 0.877027 0.797494 -0.502759 0.333521 0.868857 -0.332163 0.36709 0.779236 -0.208323 0.591094 0.556733 -0.232343 0.797537 0.611419 -0.086952 0.786515 0.805975 -0.07802 0.586786 0.901017 -0.198547 0.385677 0.912954 -0.073233 0.401437 0.587309 0.31693 0.74473 0.626298 0.112282 0.771455 0.807598 0.10215 0.580819 0.767563 0.296279 0.568389 0.905959 0.097128 0.412074 0.868972 0.273148 0.412646 0.369046 0.664292 0.650016 0.498279 0.502362 0.706648 0.692864 0.459155 0.555982 0.584348 0.597963 0.548615 0.813067 0.415121 0.408163 0.751114 0.515121 0.41289 0.19627 0.766932 0.610977 0.270011 0.7156 0.644213 0.477417 0.672112 0.565984 0.38089 0.730939 0.56626 0.665617 0.613839 0.424448 0.5601 0.712938 0.42191 -0.142237 0.892596 0.427833 -0.115435 0.801937 0.586149 -0.145778 0.823148 0.548795 -0.183731 0.901347 0.392196 -0.170598 0.892172 0.418242 -0.198923 0.94046 0.275618 -0.083913 0.784617 0.614276 -0.104776 0.836925 0.537195 -0.07128 0.762805 0.642687 -0.083732 0.95816 0.273711 -0.152017 0.963903 0.218593 -0.043758 0.995476 0.084341 0.11433 0.983142 0.142691 -0.188565 0.971095 0.146345 -0.153667 0.986837 0.050398 -0.277878 0.955105 0.102752 -0.278528 0.959779 0.035299 -0.266228 0.943946 0.195163 -0.494465 0.642119 0.585822 -0.123678 0.744163 0.656449 -0.094312 0.919596 0.381378 -0.521981 0.776809 0.352284 0.287464 0.72515 0.625717 0.35104 0.866307 0.355363 -0.085399 0.659129 0.747166 0.224013 0.689809 0.688464 -0.41145 0.564912 0.715251 -0.896437 0.304297 0.322186 -0.755967 0.475931 0.449448 -0.804069 0.52634 0.276477 -0.929837 0.307416 0.202235 -0.651421 0.428251 0.626301 -0.812838 0.261118 0.520685 -0.700828 0.14352 0.698743 -0.528973 0.340042 0.777534 -0.323564 0.505566 0.799819 -0.384671 0.217738 0.897005 -0.26768 0.410295 0.871783 -0.51729 -0.021456 0.855541 -0.703157 -0.1848 0.686599 -0.802326 -0.033833 0.595927 -0.877917 -0.14451 0.456484 -0.806047 -0.267053 0.528176 -0.89323 0.116397 0.434273 -0.92976 -0.00252 0.368157 -0.693473 -0.636086 0.338364 -0.705373 -0.68381 0.186692 -0.75587 -0.532488 0.380943 -0.796546 -0.566484 0.211211 -0.077417 -0.240522 0.967551 -0.089798 -0.134723 0.986806 -0.168487 -0.121841 0.978145 -0.138523 -0.221426 0.965289 -0.113525 -0.038943 0.992772 -0.195995 -0.017488 0.980449 -0.602195 -0.290799 0.743503 -0.742439 -0.374894 0.555193 -0.432918 -0.200289 0.878901 -0.818103 -0.413906 0.399236 -0.879805 -0.419705 0.22314 -0.8832 -0.285146 0.372357 -0.940384 -0.263381 0.215195 -0.205308 0.092751 0.974293 -0.12459 0.080228 0.988959 -0.122228 0.178941 0.976238 -0.196017 0.189929 0.962031 -0.04789 0.778827 0.625407 -0.065661 0.712179 0.698921 -0.086279 0.666075 0.740878 -0.054107 0.736647 0.674109 0.32735 0.918436 0.222077 0.038245 0.947019 0.318892 -0.067436 0.912058 0.404479 0.299059 0.868082 0.396229 0.020777 0.864061 0.502958 0.601008 0.74983 0.276665 0.10013 0.787789 0.607752 0.137884 0.80072 0.582954 0.293157 0.782715 0.549014 0.251535 0.793724 0.553834 0.033793 0.760625 0.648311 0.012829 0.792843 0.609291 -0.001462 0.805911 0.592035 0.470195 0.782277 0.408607 0.406592 0.824118 0.394351 -0.228092 0.919665 0.319673 -0.149194 0.877198 0.45636 0.221981 0.775644 0.590848 0.477153 0.718896 0.505483 0.642223 0.702693 0.306223 -0.941954 -0.151996 0.299365 -0.977272 -0.097629 0.18817 -0.969667 0.027366 0.242894 -0.984274 0.065087 0.16422 -0.081923 0.660823 0.746057 -0.143863 0.635643 0.75846 -0.950758 0.179022 0.253002 -0.969441 0.180582 0.166057 0.433741 0.791171 0.431182 0.286611 0.730746 0.619568 0.635928 0.49935 0.588427 0.410194 0.41588 0.811655 -0.030936 0.832088 0.553781 -0.063268 0.738092 0.671727 -0.236437 0.785277 0.572222 -0.098454 0.365739 0.925495 -0.356861 0.365039 0.859882 0.116456 0.704283 0.700303 0.160354 0.369389 0.915335 -0.380395 0.81813 0.431235 -0.491132 0.823545 0.283836 -0.59916 0.341103 0.724332 -0.798743 0.301719 0.520552 0.047573 -0.992573 0.111966 0.069354 -0.994739 0.075398 0.015592 -0.990695 0.135202 0.028503 -0.991144 0.129693 0.0864 -0.911356 0.402449 0.046371 -0.905885 0.420977 -0.018844 -0.991895 0.125654 -0.057065 -0.909815 0.411073 0.087743 -0.99576 0.027619 0.126144 -0.779499 0.613571 0.067151 -0.760559 0.645787 0.153713 -0.607983 0.778928 0.075394 -0.57677 0.81342 -0.085238 -0.760064 0.644234 -0.102578 -0.566247 0.817827 0.045094 -0.227711 0.972684 0.047131 -0.133922 0.98987 0.005657 -0.158915 0.987276 0.006376 -0.238835 0.971039 0.058631 -0.040878 0.997442 0.002975 -0.056704 0.998387 0.127635 -0.116289 0.98498 0.152279 -0.014755 0.988227 0.100619 -0.20516 0.973543 0.059288 0.068169 0.995911 -0.006745 0.055506 0.998436 0.05032 0.180626 0.982264 -0.021925 0.163036 0.986376 0.163736 0.099069 0.981517 0.156175 0.220652 0.962768 0.020684 0.317842 0.947918 -0.050294 0.316731 0.947181 -0.025411 0.533931 0.845146 -0.086911 0.5228 0.848014 0.127716 0.356862 0.925385 0.071441 0.516034 0.853584 -0.061054 0.766638 0.63917 0.078289 0.741306 0.666586 0.208508 0.671416 0.711144 0.313289 0.499706 0.807554 0.378689 0.310587 0.871855 0.400342 0.118619 0.908656 0.381543 -0.070384 0.921668 0.331083 -0.22771 0.915714 0.260306 -0.364971 0.893889 0.178111 -0.473128 0.862802 0.071351 -0.485088 0.87155 -0.127917 -0.411323 0.902469 -0.217134 -0.272275 0.9374 -0.28612 -0.114565 0.95132 -0.297833 0.014133 0.954513 -0.259212 0.153056 0.953616 -0.214461 0.319798 0.922895 -0.151901 0.528641 0.835144 -0.103669 0.295387 0.949736 -0.165776 0.313209 0.935104 -0.083675 0.492895 0.866056 -0.119834 0.470121 0.874429 -0.087588 0.774585 0.626376 -0.256922 -0.123444 0.958516 -0.282852 0.013185 0.959073 -0.378724 -0.276752 0.883163 -0.438423 -0.070607 0.895991 -0.437651 -0.063548 0.896897 -0.390678 -0.27619 0.878117 -0.251518 -0.431278 0.866451 -0.276371 -0.456203 0.845871 -0.19905 -0.303218 0.9319 -0.274611 0.135247 0.951996 -0.249887 0.293965 0.922573 -0.442099 0.099565 0.891423 -0.416837 0.295755 0.859521 -0.412837 0.32408 0.851198 -0.438351 0.113033 0.891668 0.156401 -0.497394 0.85331 0.061408 -0.535686 0.842181 0.119454 -0.452018 0.883974 0.032667 -0.468626 0.882793 0.050048 -0.559259 0.827481 0.150699 -0.524664 0.837865 0.208739 -0.361482 0.908713 0.238743 -0.413555 0.878621 0.232419 -0.391651 0.890276 -0.125806 -0.451337 0.883441 -0.128663 -0.465603 0.875591 -0.150994 -0.530967 0.833832 0.284031 -0.235212 0.929517 0.269401 -0.199777 0.942079 0.293517 -0.238502 0.925724 0.286186 -0.032306 0.957629 0.310905 -0.056264 0.948774 0.312743 -0.062252 0.947795 0.322676 0.120164 0.938851 0.286685 0.125421 0.94978 0.312932 0.123775 0.941676 0.279716 0.294166 0.913907 0.303905 0.313656 0.89959 0.309104 0.311381 0.898608 0.037576 0.808415 0.587412 0.169817 0.698638 0.69503 -0.000992 0.780213 0.625514 0.138259 0.681294 0.718834 0.161529 0.715447 0.679738 0.018778 0.826522 0.562592 -0.09996 0.801388 0.589733 -0.098648 0.85295 0.512587 -0.076807 0.814801 0.574631 0.262922 0.511395 0.818137 0.242579 0.49202 0.836105 0.262895 0.521513 0.811733 -0.185749 0.495789 0.848346 -0.322481 0.52883 0.785076 -0.160242 0.722224 0.672841 -0.146317 0.772841 0.617501 -0.312096 0.577251 0.754571 -0.076559 0.797941 0.597853 -0.071594 0.840171 0.537576 -0.107376 0.806238 0.581766 -0.112987 0.848782 0.51653 -0.287568 -0.01818 0.957588 -0.246849 -0.15606 0.956405 -0.173556 -0.290795 0.940913 -0.283237 0.22681 0.931844 -0.297529 0.100463 0.949412 0.014537 -0.330354 0.943745 0.072188 -0.329168 0.941508 0.150177 -0.268878 0.951394 -0.091484 -0.341365 0.935468 0.211928 -0.141481 0.96699 0.233591 -0.009434 0.972289 0.24083 0.120366 0.963075 0.233787 0.260424 0.936762 0.102888 0.613185 0.78321 -0.030399 0.694019 0.719314 -0.098708 0.675427 0.730791 0.204918 0.428836 0.879834 -0.132475 0.557408 0.819602 -0.232943 0.388015 0.89173 -0.075386 0.634728 0.769049 -0.09685 0.652599 0.751489 -0.092397 0.509504 0.855493 -0.081276 0.316551 0.945087 -0.068265 0.172012 0.982727 -0.054553 0.065325 0.996372 -0.043341 -0.055449 0.99752 -0.033383 -0.160096 0.986537 -0.028874 -0.24536 0.969002 -0.033304 -0.336054 0.941254 -0.042357 -0.467717 0.882863 -0.046567 -0.556118 0.829798 -0.037674 -0.519487 0.853647 -0.022566 -0.457423 0.888963 -0.012961 -0.556886 0.830488 -0.007732 -0.753873 0.656974 -0.003792 -0.90729 0.420489 -0.001149 -0.991208 0.132304 0.512335 -0.857386 0.049017 0.70555 -0.704425 0.077354 0.297092 -0.954566 0.023258 0.84286 -0.528889 0.09931 0.930258 -0.348816 0.113782 0.968103 -0.21837 0.122848 0.986591 -0.093131 0.134031 0.985676 0.081564 0.147617 0.95281 0.259757 0.157095 0.894834 0.417704 0.157465 0.844113 0.514896 0.149516 0.774064 0.618654 0.134508 0.673761 0.729252 0.119321 0.59429 0.795832 0.116061 0.5205 0.84585 0.116695 0.525074 0.841884 0.124616 0.765546 0.621669 0.16573 0.097097 -0.995263 0.004896 -0.565407 0.809464 0.158374 -0.611313 0.789337 0.056957 -0.920895 0.236324 0.310006 -0.979363 0.144989 0.140806 -0.738247 -0.362498 0.568846 -0.830423 -0.418752 0.367485 -0.844491 -0.498578 0.195588 -0.637358 -0.672695 0.37584 -0.668066 -0.709833 0.223216 -0.553902 -0.635855 0.537476 -0.346188 -0.291036 0.891881 -0.564224 -0.330618 0.756534 -0.436173 -0.617389 0.654663 -0.266348 -0.628612 0.730688 -0.097978 -0.251576 0.962865 -0.086895 -0.643915 0.760146 0.176816 -0.222898 0.958672 0.120695 -0.699248 0.704617 0.465192 -0.190422 0.864486 0.373032 -0.681742 0.629345 0.749171 -0.141411 0.647105 0.57208 -0.682024 0.455597 0.984143 0.023025 0.175875 0.738366 -0.656556 0.154109 -0.095635 0.76965 0.631263 -0.315057 -0.948903 0.017974 -0.110306 -0.993886 0.004918 -0.457702 -0.888528 0.032039 -0.589111 -0.807168 0.037792 0.510058 -0.858624 -0.051043 0.70623 -0.703125 -0.082786 0.294439 -0.955391 -0.023102 0.843862 -0.525198 -0.109834 0.928966 -0.346434 -0.130403 0.964683 -0.219414 -0.145751 0.981881 -0.104853 -0.157847 0.98501 0.058597 -0.162241 0.95819 0.238399 -0.158234 0.897823 0.414043 -0.149942 0.829346 0.538002 -0.150797 0.747675 0.644543 -0.159833 0.659153 0.734437 -0.161615 0.265044 0.963485 0.038059 0.039034 0.999086 0.017437 0.018622 0.997848 -0.062875 0.244836 0.962544 -0.116463 -0.130658 0.991351 0.012349 -0.138096 0.990164 -0.022449 -0.273293 0.96189 0.008822 -0.274255 0.961657 0.000421 -0.053579 0.998129 0.029453 -0.515915 0.855204 0.049583 0.344116 0.89883 -0.271457 -0.055876 0.956544 -0.286182 0.365283 0.930753 0.01632 -0.828131 0.557888 0.054409 -0.952772 0.299578 0.049783 -0.711727 -0.701459 0.037422 -0.905755 -0.418034 -0.069676 -0.8121 -0.578723 -0.074656 -0.818385 -0.573492 0.036778 -0.910268 -0.412077 0.040054 0.709552 0.701423 0.067393 0.515618 0.854187 0.067105 0.52626 0.835416 -0.158524 0.711562 0.67733 -0.186822 0.587221 0.793907 -0.157743 0.504751 0.849895 -0.151344 0.655685 0.754174 0.036026 0.627882 0.742251 -0.234154 -0.995755 -0.076042 0.051857 -0.966252 -0.253074 0.048064 -0.995208 0.084624 0.048994 -0.98245 0.180559 0.046801 0.500696 0.849415 -0.166726 0.699452 0.674292 -0.236847 -0.644888 0.764208 0.010314 -0.658085 0.75262 0.022063 -0.996997 0.052783 0.056672 -0.999004 0.031144 0.031952 0.095211 -0.995451 -0.003478 -0.828476 -0.551185 0.099113 -0.83354 -0.552229 0.015914 -0.680841 -0.722996 0.117184 -0.70438 -0.709823 0.000289 0.942473 0.130036 -0.307954 0.760792 -0.603232 -0.239387 -0.191598 -0.926128 -0.324926 -0.11404 -0.910397 -0.397707 -0.034523 -0.992382 -0.118262 -0.056307 -0.993628 -0.097639 -0.08229 -0.99447 -0.065257 -0.263919 -0.93806 -0.224478 -0.301453 -0.945273 -0.124839 -0.10268 -0.994176 -0.032728 -0.109842 -0.993816 -0.016268 -0.306215 -0.95011 -0.059356 0.319117 -0.647606 -0.691933 0.534285 -0.666968 -0.519319 0.385251 -0.83007 -0.403195 0.239592 -0.805165 -0.542499 0.228594 -0.939199 -0.256224 0.158278 -0.918607 -0.362089 -0.178484 -0.75672 -0.628902 -0.309497 -0.797477 -0.51792 -0.420841 -0.831771 -0.362009 -0.538657 -0.700909 -0.467519 -0.394197 -0.64598 -0.653696 -0.222745 -0.580396 -0.783278 -0.463953 -0.858375 -0.218951 -0.461429 -0.880375 -0.109649 -0.599801 -0.782405 -0.167575 -0.59309 -0.744341 -0.306921 0.280118 -0.952342 -0.120743 0.489162 -0.845976 -0.212238 0.674722 -0.67782 -0.292079 0.467443 -0.364911 -0.805194 0.712309 -0.345361 -0.611018 0.641575 -0.494023 -0.586791 0.39121 -0.489528 -0.779305 -0.257887 -0.431057 -0.864687 -0.450347 -0.520374 -0.725533 -0.610796 -0.588414 -0.529809 -0.665056 -0.488467 -0.56489 -0.505193 -0.408993 -0.759938 -0.312897 -0.314982 -0.896037 0.796286 -0.495922 -0.346396 0.865739 -0.328626 -0.377493 0.760432 -0.204661 -0.616326 0.545204 -0.224716 -0.807623 0.593644 -0.079984 -0.800743 0.783915 -0.086134 -0.614865 0.896384 -0.199742 -0.395726 0.906271 -0.095045 -0.411874 0.551478 0.253954 -0.794594 0.749758 0.226635 -0.62169 0.783116 0.056593 -0.619295 0.5969 0.085909 -0.797703 0.90526 0.04554 -0.42241 0.880719 0.218398 -0.420282 0.336343 0.599609 -0.726183 0.572035 0.582293 -0.577677 0.679985 0.408785 -0.6087 0.461982 0.425407 -0.778204 0.822759 0.398489 -0.405308 0.73865 0.550111 -0.389581 0.158279 0.713924 -0.6821 0.37644 0.723509 -0.578643 0.467127 0.676077 -0.569835 0.228363 0.685665 -0.691168 0.648361 0.657528 -0.383777 0.564637 0.73282 -0.379684 -0.132948 0.895471 -0.424801 -0.16783 0.911023 -0.376656 -0.12755 0.841928 -0.524298 -0.095044 0.810733 -0.577649 -0.191234 0.937857 -0.289574 -0.161097 0.88789 -0.430929 -0.099619 0.831047 -0.547207 -0.068866 0.782563 -0.618751 -0.042804 0.75673 -0.652324 -0.106611 0.95728 -0.268792 0.061832 0.967519 -0.24512 -0.090989 0.984179 -0.152028 -0.171442 0.958937 -0.225938 -0.170146 0.982001 -0.081999 -0.195635 0.967138 -0.16239 -0.282706 0.95847 -0.037576 -0.282545 0.952356 -0.114834 -0.262642 0.936921 -0.230646 -0.457702 0.605028 -0.651498 -0.494691 0.715297 -0.493589 -0.076223 0.822259 -0.563986 -0.087936 0.702019 -0.706709 0.319664 0.765998 -0.557729 0.294833 0.694844 -0.655946 0.224172 0.682804 -0.695361 -0.063717 0.649517 -0.757673 -0.387084 0.558006 -0.734027 -0.896043 0.261582 -0.358722 -0.944002 0.274393 -0.183216 -0.810194 0.488173 -0.324457 -0.742944 0.435424 -0.508371 -0.645648 0.412332 -0.642745 -0.811086 0.243382 -0.531887 -0.699157 0.136155 -0.701885 -0.530892 0.331786 -0.77979 -0.30426 0.511436 -0.803654 -0.248492 0.408629 -0.878222 -0.387347 0.198969 -0.900208 -0.511763 -0.033699 -0.858465 -0.688173 -0.178311 -0.703294 -0.790784 -0.260454 -0.553917 -0.872048 -0.112083 -0.476413 -0.794394 -0.013341 -0.607256 -0.920109 0.042291 -0.389372 -0.884532 0.127633 -0.44868 -0.676964 -0.636735 -0.369174 -0.702442 -0.678564 -0.214769 -0.78028 -0.57775 -0.239514 -0.733839 -0.540713 -0.41123 -0.092147 -0.181509 -0.979062 -0.144369 -0.166467 -0.975421 -0.159435 -0.079334 -0.984015 -0.094565 -0.065989 -0.993329 -0.168501 -0.000101 -0.985701 -0.104493 0.01153 -0.994459 -0.726284 -0.369697 -0.579514 -0.588438 -0.292192 -0.753899 -0.407291 -0.20071 -0.890971 -0.869486 -0.42871 -0.245363 -0.799739 -0.41079 -0.4378 -0.938755 -0.260153 -0.225963 -0.869609 -0.274794 -0.410206 -0.170534 0.079532 -0.982137 -0.161151 0.169743 -0.972223 -0.090409 0.181448 -0.979236 -0.10396 0.092065 -0.990311 -0.061474 0.779505 -0.623373 -0.054952 0.743789 -0.666152 -0.103099 0.66864 -0.736404 -0.089248 0.714186 -0.694242 0.313646 0.879357 -0.358269 0.027421 0.941997 -0.334499 -0.080622 0.891857 -0.445073 0.022338 0.831019 -0.555795 0.289168 0.850636 -0.43909 0.556005 0.699289 -0.449281 0.050624 0.773712 -0.631511 0.231632 0.808083 -0.541616 0.288863 0.771715 -0.566581 0.103245 0.744807 -0.659244 0.031939 0.724546 -0.688486 0.003268 0.749951 -0.661485 -0.026171 0.792703 -0.609046 0.482137 0.794981 -0.36817 0.398207 0.851469 -0.34122 -0.221077 0.901734 -0.371484 -0.143622 0.850839 -0.505417 0.234374 0.743588 -0.626216 0.46128 0.703836 -0.540218 0.562017 0.649813 -0.511741 -0.977474 -0.09123 -0.19032 -0.936551 -0.12725 -0.326619 -0.984003 0.070682 -0.163533 -0.961337 0.050417 -0.270718 -0.12138 0.620783 -0.774529 -0.05521 0.647511 -0.760053 -0.944461 0.162933 -0.285388 -0.972855 0.171501 -0.15537 0.237565 0.800499 -0.55024 0.395586 0.847721 -0.353385 0.35269 0.570432 -0.741766 0.568049 0.652016 -0.502191 -0.054488 0.806873 -0.588206 -0.221404 0.774347 -0.592762 -0.082141 0.728443 -0.680164 -0.34248 0.449493 -0.825023 -0.1184 0.432945 -0.893611 0.102358 0.477975 -0.872389 0.062161 0.735187 -0.675008 -0.351621 0.822971 -0.446186 -0.453177 0.839825 -0.298872 -0.753559 0.408132 -0.515341 -0.56556 0.457673 -0.686059 0.070662 -0.994095 -0.082354 0.053046 -0.991548 -0.1184 0.013209 -0.990078 -0.139895 0.042006 -0.899343 -0.435221 0.096965 -0.90473 -0.414802 0.032991 -0.99044 -0.133938 -0.056118 -0.897897 -0.436614 -0.016738 -0.990736 -0.134764 0.086464 -0.995644 -0.034877 0.061043 -0.750045 -0.658564 0.137198 -0.774505 -0.61751 0.069229 -0.578014 -0.813085 0.165722 -0.607498 -0.776841 -0.08926 -0.735213 -0.671934 -0.114239 -0.544747 -0.830783 0.019911 -0.230638 -0.972836 -0.030593 -0.214954 -0.976145 -0.045955 -0.097756 -0.994149 0.002659 -0.095509 -0.995425 -0.052141 0.011297 -0.998576 0.002127 0.01818 -0.999832 0.120697 0.01473 -0.99258 0.113372 -0.110702 -0.987366 0.096736 -0.223211 -0.969958 -0.055442 0.119889 -0.991238 -0.003618 0.136061 -0.990694 -0.057352 0.236947 -0.969828 -0.01353 0.263616 -0.964533 0.087309 0.294367 -0.951696 0.113304 0.153076 -0.981697 -0.061332 0.359879 -0.930981 -0.028754 0.371752 -0.927887 -0.069217 0.479884 -0.874597 -0.04309 0.485197 -0.873342 0.017067 0.479437 -0.87741 0.052641 0.398131 -0.915817 -0.034654 0.760876 -0.647972 0.07156 0.732098 -0.67743 0.191934 0.634425 -0.748777 0.303753 0.458556 -0.835141 0.384402 0.282027 -0.879031 0.419845 0.110042 -0.9009 0.406427 -0.062856 -0.911518 0.353955 -0.220425 -0.908916 0.281504 -0.354287 -0.89176 0.067511 -0.500136 -0.863311 0.193668 -0.469971 -0.861174 -0.14958 -0.414815 -0.897527 -0.228363 -0.298833 -0.926579 -0.288297 -0.161724 -0.943785 -0.298702 -0.022525 -0.954081 -0.190826 0.301532 -0.934165 -0.246409 0.126265 -0.960906 -0.15017 0.520238 -0.840715 -0.129702 0.309072 -0.942153 -0.066417 0.305119 -0.949995 -0.055085 0.462192 -0.885067 -0.090042 0.449004 -0.888981 -0.071733 0.766958 -0.637675 -0.283007 -0.028509 -0.958694 -0.281863 -0.191917 -0.940065 -0.351312 -0.084797 -0.932411 -0.309888 -0.241843 -0.919501 -0.329877 -0.256795 -0.908426 -0.371873 -0.083592 -0.924512 -0.244245 -0.370528 -0.896133 -0.261882 -0.399787 -0.878401 -0.239012 -0.350966 -0.905371 -0.228514 0.26963 -0.935457 -0.253264 0.114721 -0.960571 -0.387754 0.261515 -0.883887 -0.38213 0.068912 -0.921536 -0.395833 0.087229 -0.914171 -0.400411 0.295266 -0.867461 0.059717 -0.537384 -0.841221 0.170799 -0.490618 -0.854471 0.023673 -0.491984 -0.870282 0.138029 -0.482666 -0.864859 0.172547 -0.546798 -0.819292 0.048051 -0.585369 -0.809342 0.24535 -0.391127 -0.88703 0.271557 -0.425603 -0.863203 0.253362 -0.383231 -0.888224 -0.16392 -0.464478 -0.870282 -0.156074 -0.43633 -0.886147 -0.174103 -0.495914 -0.85074 0.311338 -0.234144 -0.921002 0.314452 -0.22765 -0.921573 0.331844 -0.253055 -0.908759 0.334948 -0.047443 -0.941041 0.358791 -0.06942 -0.930833 0.352034 -0.064094 -0.93379 0.370008 0.120956 -0.921121 0.325861 0.13785 -0.935314 0.365501 0.126808 -0.922133 0.293842 0.331419 -0.896559 0.345775 0.339247 -0.874843 0.349666 0.318511 -0.88107 0.181191 0.722006 -0.667741 0.050427 0.826013 -0.561391 0.124911 0.682336 -0.720288 -8.3e-005 0.771418 -0.636329 0.029371 0.862647 -0.504953 0.172441 0.753171 -0.634821 -0.088449 0.796983 -0.597491 -0.084759 0.878493 -0.470177 -0.056365 0.816918 -0.573992 0.28721 0.527283 -0.799677 0.229314 0.522426 -0.821271 0.28443 0.557632 -0.779838 -0.184783 0.47937 -0.857939 -0.159072 0.705689 -0.690434 -0.306838 0.513915 -0.801088 -0.313651 0.56677 -0.761837 -0.157757 0.765176 -0.624195 -0.073978 0.778021 -0.623867 -0.070331 0.835642 -0.544753 -0.087799 0.795672 -0.599331 -0.090591 0.859197 -0.503561 -0.232887 -0.144487 -0.961711 -0.244705 -0.029472 -0.96915 -0.189644 -0.261806 -0.946305 -0.251478 0.075314 -0.964928 -0.245154 0.195506 -0.949567 0.069738 -0.345456 -0.93584 -0.006898 -0.32309 -0.946343 0.169707 -0.300933 -0.938424 -0.116208 -0.315517 -0.941778 0.239122 -0.166926 -0.956533 0.255866 -0.011563 -0.966643 0.242809 0.152646 -0.957989 0.202267 0.315072 -0.927264 -0.032641 0.607102 -0.793953 0.060458 0.564272 -0.823372 -0.076278 0.598808 -0.797252 0.144831 0.45396 -0.879173 -0.202967 0.364176 -0.908945 -0.116061 0.523868 -0.843856 -0.061288 0.585836 -0.808109 -0.069247 0.590821 -0.803825 -0.06147 0.471147 -0.87991 -0.062087 0.339494 -0.938557 -0.069753 0.213116 -0.974534 -0.075711 0.106988 -0.991373 -0.074759 0.010224 -0.997149 -0.065915 -0.084862 -0.99421 -0.056359 -0.195476 -0.979088 -0.058264 -0.312594 -0.948098 -0.069962 -0.465689 -0.882179 -0.071195 -0.557949 -0.826815 -0.045754 -0.47841 -0.876944 -0.060646 -0.52652 -0.847997 -0.029989 -0.553187 -0.832517 -0.018388 -0.737572 -0.675018 -0.009087 -0.897441 -0.441041 -0.00158 -0.989993 -0.141109 -0.308322 -0.951065 -0.020322 -0.110713 -0.99381 -0.009215 -0.455221 -0.889796 -0.032191 -0.596471 -0.800898 -0.052761 -0.511407 0.823202 -0.246578 -0.952243 0.291325 -0.09145 -0.828387 0.538442 -0.154449 -0.712918 -0.697663 -0.070811 -0.964192 -0.256036 -0.069136 -0.99426 -0.077609 -0.073642 -0.993521 0.085088 -0.075342 -0.980403 0.180699 -0.07847 -0.618484 0.785248 -0.029371 -0.985065 0.143698 -0.094851 -0.540296 0.826158 -0.159823 -0.899944 0.302263 -0.314224 -0.858864 -0.489238 -0.15165 -0.711588 -0.680949 -0.173063 -0.767866 -0.270651 -0.580629 -0.848883 -0.383401 -0.36387 -0.671939 -0.656576 -0.342645 -0.602072 -0.614193 -0.510173 -0.382168 -0.137855 -0.913752 -0.607476 -0.181274 -0.773377 -0.492091 -0.563373 -0.66367 -0.327921 -0.53701 -0.777231 -0.13782 -0.132667 -0.981532 -0.138241 -0.548212 -0.824835 0.069946 -0.573914 -0.815923 0.11889 -0.117351 -0.985948 0.269629 -0.627654 -0.730309 0.418909 -0.085153 -0.904027 0.751138 0.018205 -0.659894 0.495888 -0.698066 -0.516526 -0.95931 0.034968 0.280182 -0.952229 0.032635 0.303636 -0.93144 0.167086 0.323268 -0.946666 0.171861 0.272557 -0.944846 0.025037 0.326557 -0.91551 0.150958 0.372899 -0.937578 0.012119 0.347564 -0.899986 0.12397 0.417919 -0.930687 -0.005661 0.365772 -0.885622 0.08696 0.456193 -0.924746 -0.02703 0.379623 -0.873384 0.042333 0.485189 -0.919713 -0.051956 0.389139 -0.863691 -0.010116 0.503919 -0.915891 -0.078133 0.39375 -0.857075 -0.064545 0.511132 -0.913924 -0.104134 0.392301 -0.854193 -0.116994 0.506623 -0.913686 -0.130204 0.385001 -0.854276 -0.170718 0.490986 -0.915221 -0.154787 0.372036 -0.856986 -0.224754 0.463745 -0.918574 -0.175545 0.354127 -0.862661 -0.271395 0.426803 -0.924357 -0.190998 0.330279 -0.874699 -0.302741 0.378484 -0.93489 -0.202027 0.291831 -0.900162 -0.32556 0.289342 -0.890596 -0.319641 0.323525 -0.930807 -0.199874 0.306022 -0.896 0.289458 0.336747 -0.918721 0.296141 0.261252 -0.872107 0.26593 0.410745 -0.848724 0.226438 0.477905 -0.827137 0.172709 0.534805 -0.80861 0.10747 0.578446 -0.794368 0.032855 0.606547 -0.785336 -0.046853 0.617294 -0.781515 -0.12666 0.610894 -0.781913 -0.208771 0.58739 -0.785856 -0.293485 0.544332 -0.793937 -0.361184 0.489091 -0.811021 -0.403504 0.423592 -0.835242 -0.430573 0.342022 -0.847345 0.403795 0.3449 -0.876998 0.412515 0.246384 -0.816114 0.373023 0.441375 -0.785473 0.321444 0.528872 -0.757102 0.251755 0.60284 -0.732492 0.167285 0.659903 -0.71285 0.071993 0.697612 -0.699448 -0.030237 0.714044 -0.693366 -0.135002 0.707826 -0.694705 -0.244186 0.676579 -0.700161 -0.36004 0.616559 -0.706167 -0.453566 0.543697 -0.723583 -0.510419 0.464651 -0.757493 -0.546167 0.357639 -0.786239 0.510828 0.347683 -0.822283 0.521471 0.227858 -0.748188 0.473296 0.464978 -0.710816 0.41044 0.571208 -0.676265 0.32557 0.66081 -0.646313 0.222825 0.729815 -0.622397 0.107069 0.775344 -0.605751 -0.016281 0.795488 -0.597541 -0.142104 0.789146 -0.599072 -0.273389 0.752576 -0.605625 -0.422009 0.67463 -0.607323 -0.542234 0.580639 -0.62045 -0.60942 0.493609 -0.663091 -0.648882 0.373178 -0.713977 0.609147 0.34522 -0.755821 0.6215 0.206088 -0.669772 0.565403 0.481378 -0.626414 0.492206 0.604433 -0.58635 0.393512 0.708055 -0.551603 0.274208 0.787746 -0.523909 0.140003 0.84019 -0.504656 -0.002861 0.863316 -0.494725 -0.148092 0.856339 -0.496885 -0.296649 0.81554 -0.511217 -0.470298 0.719359 -0.523448 -0.603062 0.601929 -0.54514 -0.6692 0.504969 -0.589688 -0.712391 0.380483 -0.632092 0.697412 0.337752 -0.679083 0.71125 0.181575 -0.582478 0.648166 0.490511 -0.533908 0.565768 0.62837 -0.489063 0.454778 0.744308 -0.450216 0.320826 0.833293 -0.419311 0.170384 0.891711 -0.397828 0.010371 0.917402 -0.386738 -0.152189 0.909545 -0.388906 -0.314579 0.865905 -0.416834 -0.497637 0.760662 -0.460989 -0.625959 0.629018 -0.542107 0.774681 0.32556 -0.593506 0.78981 0.15476 -0.487909 0.720672 0.492521 -0.434921 0.630341 0.64305 -0.3861 0.508756 0.769476 -0.343913 0.362223 0.866325 -0.310381 0.197869 0.929791 -0.287052 0.023243 0.957633 -0.274984 -0.154056 0.949026 -0.274153 -0.330443 0.903132 -0.301736 -0.514601 0.802584 -0.360883 -0.638403 0.679857 -0.445437 0.840329 0.308923 -0.50045 0.856542 0.126038 -0.387543 0.782319 0.487634 -0.331043 0.685354 0.648614 -0.279115 0.554987 0.783636 -0.234323 0.398047 0.886934 -0.198766 0.222238 0.954517 -0.174032 0.035606 0.984096 -0.161146 -0.153806 0.974872 -0.161623 -0.341915 0.925728 -0.183322 -0.527132 0.829774 -0.220903 -0.657095 0.720714 -0.343523 0.893833 0.288192 -0.401399 0.910874 0.095845 -0.282773 0.832684 0.476106 -0.223681 0.730476 0.645269 -0.169508 0.593188 0.787016 -0.122852 0.428085 0.895349 -0.085869 0.24334 0.966133 -0.060478 0.047525 0.997037 -0.048298 -0.151042 0.987347 -0.051169 -0.346801 0.936542 -0.071334 -0.536879 0.840638 -0.087789 -0.68823 0.720162 -0.21986 0.940431 0.259327 -0.28005 0.958152 0.059303 -0.156918 0.876718 0.454689 -0.095926 0.770248 0.630489 -0.040164 0.627316 0.777728 0.007734 0.455603 0.890149 0.046891 0.262808 0.963708 0.076503 0.059129 0.995315 0.087975 -0.141662 0.985998 0.082632 -0.346525 0.934394 0.066735 -0.543112 0.837004 0.044893 -0.70688 0.705907 -0.074449 0.972485 0.220751 -0.13589 0.990587 0.016451 -0.0105 0.907325 0.420298 0.052421 0.798072 0.600278 0.112271 0.651463 0.750327 0.17284 0.475296 0.862682 0.224622 0.286559 0.931359 0.237263 0.088989 0.967361 0.218281 -0.113 0.969322 0.208533 -0.342413 0.916116 0.208343 -0.548433 0.809824 0.177566 -0.726111 0.664254 0.072457 0.981536 0.17702 0.011184 0.999581 -0.026697 0.13045 0.91774 0.375149 0.17379 0.810665 0.559124 0.202259 0.677497 0.70717 0.281823 0.466274 0.838549 0.389486 0.279956 0.877454 0.38011 0.146887 0.913204 0.357385 -0.040932 0.93306 0.345941 -0.321259 0.881543 0.34413 -0.559385 0.754098 0.331752 -0.740685 0.584232 0.196145 0.971318 0.134422 0.140044 0.988072 -0.064045 0.22226 0.915547 0.335221 0.215212 0.826522 0.520139 0.485045 0.203691 0.850436 0.549186 0.085396 0.831326 0.51886 -0.274121 0.809717 0.494351 -0.559544 0.665228 0.486216 -0.716967 0.499552 0.288962 0.953069 0.090338 0.249176 0.963756 -0.09532 0.279421 0.910567 0.304618 0.388152 0.921065 0.031265 0.355698 0.926134 -0.125519 0.404067 0.903782 0.141097 0.68549 -0.217008 0.69499 0.702569 0.095581 0.705167 0.629523 -0.529053 0.569037 0.593718 -0.693079 0.408828 0.496683 0.867503 -0.027267 0.458279 0.875316 -0.154276 0.528047 0.848543 0.03378 0.806768 -0.152023 0.570977 0.808457 0.086821 0.582116 0.751952 -0.463847 0.468417 0.679141 -0.659907 0.321388 0.597185 0.799146 -0.068811 0.555473 0.811556 -0.181181 0.641605 0.76683 -0.017718 0.890943 -0.106367 0.441483 0.8665 0.068021 0.494522 0.874776 -0.373384 0.30879 0.812876 -0.546789 0.200637 0.713003 0.692155 -0.112017 0.675208 0.706006 -0.213658 0.760001 0.64795 -0.050575 0.881663 0.086627 0.463859 0.915057 -0.143088 0.377089 0.91943 -0.337729 0.201463 0.893271 -0.433495 0.118948 0.740476 -0.66906 0.063675 0.859379 -0.511092 0.015908 0.647012 -0.745143 -0.161672 0.622061 -0.770384 0.139818 0.519697 -0.840964 -0.150645 0.82048 0.555122 -0.136569 0.782459 0.574043 -0.241314 0.857424 0.511442 -0.057009 0.806681 0.536729 -0.247364 0.862468 0.496193 -0.099707 0.878972 0.473396 -0.057475 0.818208 0.516312 -0.252897 -0.95504 -0.087036 0.283414 0.458007 0.336509 0.822795 0.548647 0.436829 0.712858 0.498793 0.508214 0.702085 0.40895 0.438856 0.800103 0.458788 0.419381 0.783347 0.488579 0.295919 0.820806 0.338496 0.547557 0.765246 0.40128 0.540787 0.739273 0.447903 0.573978 0.685516 0.572577 0.090453 0.814846 0.659971 0.242585 0.711049 0.600793 0.356629 0.715446 0.507798 0.222804 0.832165 0.525407 0.175386 0.832579 0.592642 0.076696 0.801806 0.696495 -0.160757 0.699323 0.747071 -0.060562 0.66198 0.716368 0.089686 0.691935 0.643654 -0.044528 0.76402 0.679875 -0.004061 0.733317 0.751902 -0.071444 0.655392 0.836517 -0.293072 0.462977 0.828132 -0.230473 0.510959 0.762807 -0.199352 0.61513 0.753672 -0.259258 0.603957 0.803598 -0.130297 0.580735 0.857252 -0.175255 0.484153 0.916775 -0.199713 0.345889 0.913851 -0.163134 0.371839 0.958882 -0.051876 0.279022 0.954667 -0.015331 0.297282 0.878559 0.023718 0.477045 0.887732 -0.142315 0.437811 0.881622 0.374121 0.287709 0.786275 0.361357 0.501191 0.845764 0.203036 0.493417 0.938392 0.191581 0.287606 0.964699 0.141352 0.222208 0.919874 0.344658 0.187198 0.735833 0.601185 0.31165 0.66518 0.53777 0.518014 0.724119 0.464664 0.509645 0.811286 0.503396 0.297333 0.847399 0.503007 0.169996 0.757311 0.630422 0.170435 0.55095 0.766953 0.328993 0.550236 0.662384 0.508417 0.604139 0.603421 0.520479 0.650213 0.6874 0.32358 0.647232 0.739853 0.183595 0.52066 0.823219 0.226328 0.232539 0.84106 0.48841 0.333081 0.772484 0.540672 0.4542 0.75815 0.467879 0.390892 0.846896 0.360515 0.372475 0.869089 0.325495 0.285053 0.827495 0.483733 0.339781 0.673393 0.656575 0.238562 0.704887 0.668 0.320797 0.691569 0.647164 0.829927 0.324203 0.453996 0.78816 0.413058 0.456275 0.818961 0.437724 0.37108 0.868606 0.367447 0.332424 0.594766 0.761672 -0.257117 0.732865 0.586033 -0.345649 0.753901 0.533838 0.38295 0.862991 0.204761 0.461865 0.867214 0.193679 0.458725 0.940858 -0.000486 0.3388 0.908483 -0.022324 0.417326 0.966409 -0.169051 -0.193584 0.923393 -0.383468 0.01723 0.951149 0.102662 0.291162 0.867316 0.198019 0.456675 0.856872 0.261318 0.444391 0.920131 0.262219 0.290862 0.845974 0.375555 -0.378531 0.934245 0.115443 -0.337429 0.724297 0.540152 0.42852 0.705159 0.593618 0.387773 0.719293 0.595991 0.356949 0.405662 0.913937 -0.012545 0.486535 0.862055 -0.141935 0.71787 0.605721 0.343167 0.730039 0.584407 0.354276 0.725686 0.562032 0.396862 0.693853 0.591752 0.410363 0.217331 0.868422 0.445659 0.312452 0.932842 0.179389 0.629841 0.545507 0.552922 0.214362 0.527633 0.821981 0.173015 0.7023 0.690536 0.57713 0.459556 0.675077 0.602476 0.389152 0.696838 0.688167 0.493994 0.531411 0.689409 0.382203 0.615335 0.751692 0.33439 0.568456 0.797599 0.361585 0.482797 0.671211 0.364963 0.645196 0.411128 0.319273 0.853838 0.313319 0.402291 0.860228 0.718031 0.380064 0.58308 0.802641 0.402836 0.439876 0.786668 0.41629 0.455912 0.7261 0.396288 0.561903 0.493842 0.121551 0.861014 0.469657 0.240907 0.849345 0.710366 0.36318 0.602894 0.767343 0.380847 0.515888 0.773688 0.31236 0.551215 0.718919 0.257235 0.645744 0.615801 -0.251493 0.746687 0.530844 -0.044491 0.846301 0.775459 0.113009 0.621203 0.81328 0.246247 0.527199 0.846491 0.212923 0.487972 0.849483 0.012404 0.52747 0.842402 -0.47405 0.256193 0.735809 -0.426295 0.526173 0.762121 0.060604 0.644592 0.762121 0.060604 0.644592 0.670388 0.105094 0.734531 0.670388 0.105094 0.734531 0.53593 0.35712 0.765013 0.53593 0.35712 0.765013 0.519593 0.470857 0.712963 0.519593 0.470857 0.712963 0.592721 0.147272 0.791829 0.592721 0.147272 0.791829 0.539402 0.227876 0.810628 0.539402 0.227876 0.810628 0.838046 -0.041961 0.543984 0.838046 -0.041961 0.543984 0.805134 0.024108 0.592603 0.805134 0.024108 0.592603 0.458987 0.56981 0.681651 0.458987 0.56981 0.681651 0.36131 0.737053 0.571146 0.36131 0.737053 0.571146 0.930114 -0.106536 0.351481 0.930114 -0.106536 0.351481 0.880661 -0.11099 0.460561 0.880661 -0.11099 0.460561 0.320732 0.857422 0.402441 0.320732 0.857422 0.402441 0.44726 0.859353 0.247932 0.44726 0.859353 0.247932 0.95182 0.231775 0.200795 0.95182 0.231775 0.200795 0.964167 0.021103 0.264456 0.964167 0.021103 0.264456 0.579093 0.8006 0.153919 0.579093 0.8006 0.153919 0.697437 0.705567 0.12553 0.697437 0.705567 0.12553 0.814036 0.566095 0.129927 0.814036 0.566095 0.129927 0.890074 0.43096 0.148464 0.890074 0.43096 0.148464 0.029208 0.881474 -0.471328 0.029208 0.881474 -0.471328 0.096449 0.728365 -0.678368 0.096449 0.728365 -0.678368 0.4685 0.04873 -0.882118 0.4685 0.04873 -0.882118 0.638087 -0.253445 -0.727056 0.638087 -0.253445 -0.727056 0.178322 0.511529 -0.840559 0.178322 0.511529 -0.840559 0.316697 0.307225 -0.897394 0.316697 0.307225 -0.897394 -0.229597 0.97301 0.023188 -0.229597 0.97301 0.023188 -0.099111 0.961282 -0.257125 -0.099111 0.961282 -0.257125 0.690989 -0.552351 -0.466307 0.690989 -0.552351 -0.466307 0.614728 -0.774975 -0.146708 0.614728 -0.774975 -0.146708 -0.213285 0.674612 0.706689 -0.213285 0.674612 0.706689 -0.277125 0.880387 0.384865 -0.277125 0.880387 0.384865 0.522099 -0.831492 0.189823 0.522099 -0.831492 0.189823 0.41303 -0.701304 0.581016 0.41303 -0.701304 0.581016 0.016451 0.304495 0.952372 0.016451 0.304495 0.952372 -0.102423 0.482133 0.87009 -0.102423 0.482133 0.87009 0.321342 -0.449506 0.833477 0.321342 -0.449506 0.833477 0.240502 -0.251619 0.937468 0.240502 -0.251619 0.937468 0.177609 -0.048219 0.982919 0.177609 -0.048219 0.982919 0.113264 0.143803 0.983103 0.113264 0.143803 0.983103 0.856752 0.237426 0.457827 0.923385 0.210649 0.320917 0.807841 0.342573 0.479622 0.926355 0.306361 0.219111 0.893024 0.401372 0.203491 0.707489 0.350542 0.613661 0.690028 0.404138 0.600445 0.701459 0.296818 0.647962 0.79174 0.518629 0.322757 0.756722 0.567339 0.324806 0.829456 0.472735 0.297531 0.598529 0.538416 0.593188 0.611969 0.432342 0.662249 0.636119 0.597396 0.488334 0.661695 0.3349 0.670821 0.723255 0.374582 0.580165 0.790325 0.34767 0.504491 0.811959 0.371822 0.449969 0.863778 0.442517 0.24097 0.701135 0.600411 0.384599 0.932766 0.160597 0.322732 0.970845 0.170441 0.168552 0.883636 0.175716 0.433947 0.958137 0.275993 0.076165 0.918477 0.391142 0.058382 0.596042 0.268924 0.756581 0.631692 0.23949 0.737299 0.526233 0.296752 0.79688 0.713347 0.696389 0.078601 0.607873 0.785114 0.118686 0.815341 0.574919 0.068466 0.317442 0.747572 0.583409 0.328784 0.607429 0.72314 0.382484 0.824581 0.416859 0.421264 0.422347 0.802596 0.694449 0.183029 0.695875 0.790988 0.142639 0.594973 0.851498 0.154648 0.501034 0.88206 0.467139 0.061249 0.494106 0.834447 0.244044 0.898388 0.239427 0.368203 0.928433 0.290662 0.231361 0.927907 0.362185 0.088373 0.90613 0.422899 -0.009252 0.502343 -0.531378 -0.68212 0.481433 0.034979 -0.875785 0.821621 0.007587 -0.569984 0.601173 0.059321 -0.796914 0.288385 0.93379 -0.211824 0.988457 0.045901 -0.144378 0.606647 0.786641 -0.114787 0.631147 0.75431 -0.180748 0.972584 0.01879 -0.231792 0.50542 0.85821 -0.089584 0.979429 0.125423 -0.158074 0.681238 -0.704485 -0.199036 0.649817 -0.670326 -0.358331 0.486326 -0.865845 -0.117473 0.446328 -0.866561 -0.223303 0.749936 -0.639396 -0.169616 0.164446 0.814374 0.556554 0.230868 0.7458 0.624886 0.513037 0.656869 0.552553 0.434017 0.729299 0.528916 0.753221 0.48407 0.445347 0.753221 0.48407 0.445347 0.124146 -0.973254 0.193296 0.136691 -0.979344 0.149 0.136691 -0.979344 0.149 0.184839 -0.973906 0.131688 0.16227 -0.986484 -0.022769 0.212195 -0.968006 0.133929 0.212195 -0.968006 0.133929 0.404326 0.749489 0.524201 0.579587 0.654669 0.485269 0.579587 0.654669 0.485269 0.267339 0.835446 0.480167 0.245983 0.889628 0.38478 0.267339 0.835446 0.480167 0.316456 0.757992 0.570354 0.349573 0.870764 0.345787 0.299173 0.736411 0.60679 0.210334 0.763548 0.610536 0.173912 0.765408 0.619601 0.197207 0.7873 0.584182 0.208134 0.150701 0.966421 0.45413 0.145812 0.878922 0.34138 0.606573 0.718004 0.193961 0.656473 0.728987 0.702212 0.014831 0.711813 0.629702 0.408791 0.660579 0.464374 -0.299888 0.833321 0.195845 -0.470873 0.860188 0.247334 -0.957018 0.151467 0.40013 -0.846054 0.352263 0.156142 -0.842984 0.51478 0.487382 -0.796965 0.356799 0.24234 -0.955279 0.169453 0.220077 -0.968074 0.119991 0.144759 -0.978459 0.147185 0.183204 -0.982603 -0.03045 0.067622 -0.997704 0.003667 0.333609 0.885237 0.324131 0.26257 0.786829 0.558531 0.249027 0.818022 0.518484 0.310909 0.905688 0.288211 0.981618 -0.064667 0.179569 0.953472 -0.110057 0.280676 0.829047 -0.397145 0.393645 0.92859 0.156172 0.336647 0.777747 -0.421784 0.466056 0.769156 -0.579058 0.270354 0.995933 0.044395 0.078399 0.452986 -0.772336 0.445309 0.25562 -0.911562 0.322045 0.985612 -0.013881 -0.168452 0.7241 -0.689125 0.028032 0.669094 -0.721471 -0.178308 0.959852 -0.03757 -0.277979 0.142983 -0.970854 0.192352 0.080246 -0.996775 0.00032 0.399717 0.880195 0.255896 0.376418 0.74386 0.552252 0.932941 0.251988 0.257146 0.923519 0.376658 0.072404 0.341071 0.563945 0.752088 0.901143 0.06264 0.428972 0.473307 -0.704975 -0.528197 0.53861 0.034196 -0.841861 0.284747 -0.650038 -0.704536 0.28859 -0.717857 -0.633559 0.66476 -0.69131 -0.283167 0.687122 0.601648 -0.407288 0.19454 0.943367 -0.268726 0.142669 0.967481 -0.20887 0.158097 0.977372 -0.140534 0.267227 0.956959 -0.113221 0.206618 0.964826 -0.16254 0.111176 0.975912 -0.187714 0.29006 0.951394 -0.103509 0.197728 0.977642 -0.071559 0.133329 0.730763 0.669484 -0.021072 0.776457 0.629818 -0.048861 0.692427 0.719831 -0.267381 0.736738 0.621067 0.502201 -0.841758 -0.198082 0.347489 -0.823244 -0.44891 0.323269 -0.832159 -0.450565 0.365532 -0.909977 -0.195774 0.278989 -0.744812 -0.606152 0.310543 -0.724294 -0.615598 0.470573 -0.845704 0.251686 0.639991 -0.751749 0.159014 0.847528 -0.526779 -0.064814 0.931762 0.360605 -0.042234 0.731131 -0.37377 0.57074 0.545828 -0.440059 0.713036 0.28654 -0.807827 -0.515083 0.336227 -0.798398 -0.499512 0.390344 -0.778946 -0.490791 0.394888 -0.900382 -0.182694 0.453746 -0.877199 -0.156959 0.356802 -0.910855 -0.207449 -0.344161 0.695104 0.631176 -0.149439 0.640429 0.753338 -0.149043 0.665502 0.731364 -0.349826 0.693839 0.629452 -0.136209 0.702366 0.698663 -0.323407 0.705435 0.63069 0.682989 -0.682468 -0.260315 0.59895 -0.703991 -0.381648 0.629914 -0.656157 -0.415531 0.77097 -0.571238 -0.281588 0.426971 -0.693708 -0.580055 0.470882 -0.685627 -0.555145 0.547183 -0.735019 -0.400422 0.403878 -0.692278 -0.598025 0.639219 -0.729933 -0.242067 0.756317 -0.646196 0.102054 0.818345 -0.573567 0.036491 0.814869 -0.159464 0.557279 0.753505 -0.300809 0.584589 0.916322 -0.395282 -0.064085 -0.552229 0.717565 0.424433 -0.549898 0.723485 0.417351 -0.689114 0.695621 0.20306 -0.692124 0.693865 0.198787 -0.449937 0.772191 0.44864 -0.582332 0.776773 0.23982 0.4591 -0.736156 -0.497294 0.428557 -0.75507 -0.496193 0.470093 -0.756298 -0.455001 0.604445 -0.773438 -0.190894 0.573109 -0.784752 -0.236031 0.620477 -0.767507 -0.161065 -0.154659 0.830449 0.535196 -0.208047 0.933434 0.292262 0.839948 -0.488026 -0.237313 0.649751 -0.668884 -0.361136 0.686328 -0.685198 -0.243841 0.870409 -0.456272 -0.184943 0.113928 -0.971144 0.209524 0.420169 -0.778433 0.466369 0.36716 -0.763202 0.531711 -0.02591 -0.968892 0.246125 0.735247 0.502746 0.454597 0.760736 -0.231899 0.60622 0.709739 -0.164748 0.68493 0.677088 0.518341 0.522374 0.150157 0.985896 -0.073902 0.110758 0.979195 -0.170028 0.14924 0.977328 -0.150193 0.102024 0.980668 -0.166976 0.092901 0.976521 -0.194362 0.035026 -0.981694 0.187218 -0.094184 -0.972517 0.212932 -0.040179 -0.998571 0.035247 -0.134425 -0.988935 0.062742 0.104938 0.981244 -0.161707 0.151335 0.986059 -0.069173 0.069929 0.986197 -0.150086 0.095076 0.992657 -0.074781 -0.031932 -0.959846 0.278703 0.3959 -0.771292 0.498369 0.753955 -0.269659 0.599029 0.811465 0.345679 0.471202 0.245701 0.963498 -0.106314 0.226774 0.963215 -0.144187 -0.201856 -0.975954 0.082263 -0.144695 -0.963786 0.22401 0.238399 0.953876 -0.182445 0.263237 0.957272 -0.119739 0.137189 0.954008 0.266548 0.004047 0.860303 0.509766 -0.324412 0.82325 0.46585 -0.221133 0.946632 0.234497 0.552688 -0.819889 -0.14939 0.435697 -0.752668 -0.493618 0.365249 -0.701895 -0.611504 0.358271 0.298744 0.88453 0.369064 0.261778 0.891776 0.680582 -0.368671 0.633159 0.35026 0.27383 0.895732 -0.101362 0.652868 0.750659 -0.31403 0.712829 0.627104 0.528306 -0.819128 -0.223433 0.448996 -0.780542 -0.434921 0.341896 0.423686 0.838807 0.504935 0.340193 0.79329 0.181522 0.411952 0.892942 0.181522 0.411952 0.892942 0.465736 -0.606641 0.644264 -0.0363 0.939717 0.340021 0.06455 0.996125 -0.059741 -0.0363 0.939717 0.340021 0.286421 0.951044 -0.116095 0.288616 0.950349 -0.116354 0.275757 0.953921 -0.118292 0.150003 0.985457 -0.079833 -0.160278 0.98687 0.019962 -0.557805 0.804225 0.205125 -0.528811 0.837981 0.134713 -0.689987 0.699784 0.184985 -0.704052 0.684413 0.189445 -0.639015 0.750411 0.168948 -0.301208 0.951297 0.065638 0.321965 0.939617 -0.116016 0.978366 -0.179418 -0.103002 0.950511 -0.146462 -0.274005 0.864752 0.428163 -0.262451 0.86448 -0.440579 -0.242001 0.720676 -0.665351 -0.194768 0.631835 -0.756962 -0.166709 0.640249 -0.749264 -0.169365 0.627443 -0.760901 -0.165364 0.541996 -0.828837 -0.138816 0.434754 -0.894291 -0.105989 0.396475 -0.913174 -0.094449 0.3782 -0.921198 -0.091428 0.733887 0.635327 -0.240355 0.720343 0.687761 -0.089944 0.744559 0.62451 -0.235838 0.345736 0.9286 0.13479 0.993133 0.093733 0.070012 0.356159 0.925036 0.132136 0.187307 0.978163 -0.09007 0.502357 0.858922 0.099456 0.251333 0.962401 -0.103033 0.65335 -0.735934 0.17758 0.65112 0.755621 0.071276 0.96166 -0.25776 -0.093651 0.209729 0.846026 0.490157 0.369985 -0.806261 -0.461579 -0.486759 0.759504 0.431532 0.951681 0.185976 -0.24437 0.902737 0.332183 -0.273352 0.941165 0.315326 -0.121568 0.951681 0.185976 -0.24437 0.956675 0.290442 0.020395 0.999368 -0.03479 -0.007251 0.964422 0.229761 0.130768 0.952504 0.13236 0.274258 0.999368 -0.03479 -0.007251 0.940577 -0.003262 0.339566 0.985356 -0.047323 -0.163812 0.973149 -0.138935 0.183517 0.98634 -0.163979 0.015638 0.985356 -0.047323 -0.163812 0.800077 -0.569905 -0.187309 0.874318 -0.431977 -0.221278 0.945305 -0.32607 -0.008707 0.031586 -0.183913 0.982435 0.031586 -0.183913 0.982435 -0.030751 -0.950601 0.30889 -0.030751 -0.950601 0.30889 0.985137 -0.170059 0.024169 -0.138803 -0.672288 0.727161 -0.138803 -0.672288 0.727161 0.909257 -0.407951 -0.082632 0.909257 -0.407951 -0.082632 0.975975 0.172973 -0.132486 0.975975 0.172973 -0.132486 0.980139 0.18814 -0.062699 0.980139 0.18814 -0.062699 0.977763 -0.075286 0.195733 0.977763 -0.075286 0.195733 0.989301 -0.108793 0.097195 0.989301 -0.108793 0.097195 0.977445 0.124096 -0.170885 0.977445 0.124096 -0.170885 0.998153 0.056019 0.023506 0.998153 0.056019 0.023506 0.796335 -0.523715 0.302611 0.474101 -0.734714 0.485204 -0.961031 0.165053 0.221757 -0.966015 0.031778 0.256527 -0.974186 0.146597 0.171671 -0.972365 0.022683 0.232362 -0.984794 0.118521 0.127015 -0.97678 0.011602 0.213931 -0.992779 0.080892 0.088578 -0.980405 -0.006081 0.1969 -0.997692 0.034776 0.058321 -0.983084 -0.030932 0.180525 -0.999084 -0.01652 0.039467 -0.983546 -0.055798 0.171824 -0.996955 -0.071034 0.03217 -0.982323 -0.081459 0.168542 -0.991355 -0.12588 0.037019 -0.979425 -0.107879 0.170556 -0.982538 -0.178319 0.053122 -0.975168 -0.132497 0.177459 -0.97118 -0.224992 0.078667 -0.9699 -0.153567 0.188972 -0.957807 -0.263848 0.113978 -0.963903 -0.170188 0.204763 -0.939615 -0.29636 0.171153 -0.955655 -0.183417 0.230396 -0.916192 -0.318352 0.243403 -0.943673 -0.194814 0.26745 -0.940074 0.285894 0.18581 -0.959445 0.258862 0.111609 -0.975323 0.216319 0.04416 -0.986978 0.160325 -0.013014 -0.993968 0.093475 -0.057363 -0.996059 0.018754 -0.086686 -0.993227 -0.06055 -0.099163 -0.985628 -0.140582 -0.09367 -0.972899 -0.220345 -0.070116 -0.955697 -0.29262 -0.031897 -0.933885 -0.356815 0.023271 -0.904554 -0.412768 0.106793 -0.874187 -0.443341 0.198105 -0.904883 0.399162 0.14784 -0.930066 0.363832 0.051015 -0.950616 0.308169 -0.036885 -0.965592 0.235032 -0.111317 -0.974471 0.147814 -0.168987 -0.976979 0.05078 -0.207202 -0.973161 -0.05162 -0.224262 -0.963025 -0.155851 -0.219756 -0.94516 -0.263631 -0.192798 -0.918341 -0.367435 -0.147108 -0.884469 -0.46033 -0.076225 -0.846414 -0.531736 0.028979 -0.81683 -0.561478 0.132408 -0.856198 0.505244 0.107954 -0.886734 0.462178 -0.009715 -0.911564 0.394322 -0.116455 -0.92955 0.305236 -0.206801 -0.940103 0.199203 -0.276631 -0.942966 0.081326 -0.322801 -0.938215 -0.042948 -0.343377 -0.925514 -0.170798 -0.338011 -0.90304 -0.303133 -0.304351 -0.869126 -0.43109 -0.242446 -0.825613 -0.542663 -0.154533 -0.78679 -0.615366 -0.04782 -0.763783 -0.641746 0.069265 -0.795208 0.602633 0.06691 -0.830597 0.552504 -0.069627 -0.85928 0.473551 -0.193358 -0.879991 0.369951 -0.297914 -0.892055 0.246859 -0.378547 -0.895219 0.110198 -0.431786 -0.889617 -0.03377 -0.455457 -0.87547 -0.181874 -0.447743 -0.852671 -0.3311 -0.404135 -0.819795 -0.473097 -0.322669 -0.773161 -0.597383 -0.21297 -0.732323 -0.672114 -0.109388 -0.703802 -0.710148 0.018793 -0.723285 0.690084 0.025367 -0.762965 0.633675 -0.127835 -0.79508 0.544841 -0.266451 -0.818228 0.428382 -0.383395 -0.831653 0.290204 -0.47343 -0.835118 0.137002 -0.532737 -0.828804 -0.024239 -0.559013 -0.813771 -0.188224 -0.549862 -0.79107 -0.350428 -0.501406 -0.757687 -0.507139 -0.410755 -0.712161 -0.640658 -0.287028 -0.672656 -0.725938 0.143347 -0.641851 0.766661 -0.016075 -0.68527 0.704796 -0.183489 -0.720395 0.607414 -0.334782 -0.745674 0.479891 -0.46225 -0.760327 0.328783 -0.560182 -0.764125 0.161453 -0.624537 -0.757252 -0.014499 -0.652962 -0.740618 -0.191819 -0.643964 -0.713493 -0.368156 -0.596145 -0.67319 -0.539525 -0.505696 -0.633594 -0.66652 -0.392824 -0.552217 0.831757 -0.056883 -0.598779 0.765354 -0.236001 -0.636491 0.660838 -0.397708 -0.663675 0.524103 -0.533716 -0.679467 0.362301 -0.638015 -0.683616 0.18334 -0.706439 -0.676308 -0.004709 -0.736604 -0.658096 -0.193709 -0.72759 -0.624976 -0.385418 -0.678866 -0.57331 -0.567527 -0.590956 -0.539712 -0.669892 -0.509859 -0.455829 0.884817 -0.096532 -0.504906 0.814845 -0.284776 -0.544771 0.704701 -0.454557 -0.573584 0.560728 -0.597148 -0.59041 0.390539 -0.706325 -0.594941 0.202476 -0.777849 -0.58738 0.005005 -0.809296 -0.568315 -0.193377 -0.799765 -0.531724 -0.399254 -0.746904 -0.472063 -0.588647 -0.65624 -0.438252 -0.663694 -0.606173 -0.336649 0.931055 -0.140727 -0.387856 0.858178 -0.336301 -0.429627 0.743452 -0.512543 -0.459974 0.593597 -0.660353 -0.477869 0.416607 -0.773356 -0.482921 0.221168 -0.847273 -0.475295 0.016124 -0.879678 -0.455543 -0.189817 -0.869741 -0.417917 -0.406061 -0.812687 -0.353552 -0.60422 -0.714086 -0.307968 -0.666598 -0.678825 -0.193714 0.962913 -0.187815 -0.246267 0.8884 -0.387424 -0.288613 0.77069 -0.568101 -0.317008 0.616998 -0.720292 -0.324374 0.435579 -0.839674 -0.320365 0.248902 -0.91401 -0.326185 0.041175 -0.944409 -0.317893 -0.181748 -0.930544 -0.279515 -0.404386 -0.870829 -0.213288 -0.614544 -0.759503 -0.156721 -0.682515 -0.713871 -0.046463 0.971992 -0.230375 -0.103325 0.898972 -0.425645 -0.164362 0.783516 -0.59924 -0.218293 0.643744 -0.733446 -0.220032 0.426957 -0.877094 -0.163378 0.257767 -0.952294 -0.189104 0.091231 -0.97771 -0.196106 -0.137994 -0.970824 -0.15848 -0.395997 -0.904473 -0.068774 -0.626707 -0.776214 0.011498 -0.702817 -0.711278 0.080842 0.962059 -0.260588 -0.004368 0.897342 -0.441313 -0.108637 0.80053 -0.589364 -0.077282 0.160772 -0.983961 -0.047366 -0.005136 -0.998864 -0.055321 -0.376835 -0.924627 0.024205 -0.64051 -0.767568 0.122657 -0.746286 -0.654227 0.182989 0.944565 -0.272601 0.060296 0.892968 -0.446064 0.298773 0.913904 -0.274797 0.253313 0.891687 -0.375137 0.114854 -0.338324 -0.933994 0.102232 0.013353 -0.994671 0.151765 -0.614693 -0.774028 0.247572 -0.789545 -0.561539 0.422501 0.861523 -0.281553 0.416333 0.839555 -0.34902 0.37199 -0.274879 -0.886603 0.353485 0.017625 -0.935274 0.378321 -0.507369 -0.774242 0.386435 -0.730111 -0.563565 0.530382 0.793788 -0.297652 0.540498 0.759214 -0.362568 0.588887 -0.200332 -0.782994 0.56861 0.014756 -0.822475 0.582449 -0.344028 -0.736476 0.575726 -0.569224 -0.586961 0.65241 0.687716 -0.318445 0.658927 0.642592 -0.391012 0.527988 0.032741 -0.848621 0.572271 -0.222348 -0.789346 0.647447 -0.270239 -0.712589 0.71954 -0.352064 -0.598592 0.761452 -0.51329 -0.395884 0.588683 -0.724004 -0.359542 0.425419 -0.825843 -0.370137 0.75829 0.548346 -0.35258 0.752446 0.495489 -0.433954 0.762878 0.455469 -0.458873 0.774527 0.480972 -0.410821 -0.059483 0.299655 -0.952191 -0.090596 0.399221 -0.912368 0.036545 0.471124 -0.881309 0.07364 0.399264 -0.913874 -0.030114 0.266255 -0.963432 -0.038844 0.381241 -0.923659 -0.13284 0.509742 -0.85001 -0.066453 0.503298 -0.861554 0.001768 0.538105 -0.842876 0.050754 0.065758 -0.996544 -0.019181 0.193572 -0.980899 0.117727 0.320417 -0.939933 0.173089 0.209675 -0.962329 0.073986 0.047418 -0.996131 -0.002861 0.154045 -0.98806 0.22268 -0.189591 -0.956279 0.142047 -0.070696 -0.987332 0.235945 0.061061 -0.969846 0.284019 -0.085242 -0.955022 0.284187 -0.119522 -0.95129 0.18495 -0.046926 -0.981627 0.469944 -0.314762 -0.824668 0.324898 -0.286474 -0.901318 0.327435 -0.220891 -0.918691 0.436096 -0.251459 -0.864054 0.473624 -0.209127 -0.855538 0.371679 -0.174482 -0.911817 0.593781 -0.220328 -0.773873 0.64569 -0.038921 -0.762607 0.659388 -0.074842 -0.748068 0.577338 -0.188497 -0.794449 0.520053 -0.164818 -0.838081 0.486574 -0.003404 -0.873633 0.583694 0.350278 -0.732535 0.633952 0.167061 -0.755112 0.445809 0.172583 -0.878333 0.388775 0.329865 -0.860258 0.670839 0.324639 -0.666772 0.692093 0.11947 -0.711852 0.445222 0.577844 -0.684013 0.517686 0.479897 -0.708308 0.330597 0.433029 -0.838565 0.275479 0.50654 -0.817024 0.53871 0.612813 -0.578145 0.616696 0.484403 -0.620516 0.278003 0.744964 -0.606418 0.365453 0.664551 -0.651779 0.221829 0.57283 -0.789087 0.182217 0.632878 -0.752504 0.306851 0.80584 -0.506422 0.437533 0.722967 -0.534681 -0.077112 0.816166 -0.572649 0.125172 0.825515 -0.550324 0.121846 0.731498 -0.670868 -0.019603 0.743964 -0.667932 -0.030227 0.802231 -0.596248 0.128031 0.849287 -0.512171 -0.166759 0.672289 -0.721262 -0.074919 0.639876 -0.764817 -0.086363 0.65898 -0.747185 0.419268 0.406688 -0.811677 0.45283 0.31045 -0.835802 0.550354 0.354523 -0.755926 0.488995 0.426269 -0.761038 0.798505 0.589542 -0.121777 0.629664 0.764854 -0.136094 0.428097 0.516657 -0.741484 0.481992 0.162651 -0.860946 0.476625 0.173666 -0.861782 0.541781 -0.051837 -0.83892 0.610962 -0.026965 -0.7912 0.77405 -0.395398 -0.494477 0.920958 -0.172543 -0.349378 0.643893 0.078074 -0.761122 0.480736 0.233816 -0.845117 0.483133 0.167149 -0.859444 0.616661 0.240115 -0.749715 0.967736 0.117908 -0.222674 0.913198 0.379905 -0.147451 0.390578 0.591083 -0.705741 0.382839 0.535126 -0.753044 0.414139 0.577573 -0.70349 0.47634 0.860797 -0.179246 0.340392 0.907818 -0.24495 0.421549 0.584377 -0.693397 0.405414 0.540989 -0.736865 0.431518 0.576007 -0.694268 0.364935 0.56563 -0.739517 0.160295 0.921034 -0.354968 -0.063838 0.850342 -0.522343 0.231853 0.516573 -0.824255 -0.234963 0.674542 -0.699847 -0.263787 0.488611 -0.831671 0.143761 0.349005 -0.926028 0.121957 0.430188 -0.894463 0.244238 0.368175 -0.897104 0.286839 0.465666 -0.837185 0.431825 0.308888 -0.847417 0.349106 0.306214 -0.88564 0.242828 0.317447 -0.916658 -0.193183 0.358321 -0.913393 -0.108882 0.280328 -0.953709 0.308743 0.342271 -0.887428 0.400235 0.380025 -0.833902 0.437071 0.358464 -0.824907 0.306876 0.362809 -0.879885 -0.062544 0.201463 -0.977497 -0.04802 0.0781 -0.995788 0.266858 0.326827 -0.906626 0.350138 0.278047 -0.894479 0.354862 0.347322 -0.868009 0.255429 0.219947 -0.941477 -0.006971 -0.087812 -0.996113 0.120653 -0.291438 -0.94895 0.318338 0.07641 -0.944893 0.448609 0.180967 -0.875215 0.399034 0.212972 -0.89186 0.432397 -0.02109 -0.901437 0.342686 -0.457883 -0.820311 0.578434 -0.49519 -0.648229 0.296419 -0.000702 -0.955058 0.296419 -0.000702 -0.955058 0.172523 0.052896 -0.983584 0.172523 0.052896 -0.983584 0.039158 0.322577 -0.945733 0.039158 0.322577 -0.945733 0.047516 0.433082 -0.900101 0.047516 0.433082 -0.900101 0.073663 0.121903 -0.989805 0.073663 0.121903 -0.989805 0.020637 0.212144 -0.977021 0.020637 0.212144 -0.977021 0.424054 -0.091556 -0.900997 0.424054 -0.091556 -0.900997 0.357272 -0.03225 -0.933444 0.357272 -0.03225 -0.933444 0.012525 0.534209 -0.84526 0.012525 0.534209 -0.84526 -0.011494 0.7071 -0.707021 -0.011494 0.7071 -0.707021 0.597526 -0.131026 -0.791072 0.597526 -0.131026 -0.791072 0.505826 -0.146625 -0.850083 0.505826 -0.146625 -0.850083 0.043082 0.835064 -0.548463 0.043082 0.835064 -0.548463 0.232892 0.841802 -0.486962 0.232892 0.841802 -0.486962 0.692441 0.211038 -0.689919 0.692441 0.211038 -0.689919 0.670034 -0.002279 -0.742327 0.670034 -0.002279 -0.742327 0.395537 0.785831 -0.475416 0.395537 0.785831 -0.475416 0.511415 0.69064 -0.511342 0.511415 0.69064 -0.511342 0.608864 0.549501 -0.572131 0.608864 0.549501 -0.572131 0.665886 0.412472 -0.621662 0.665886 0.412472 -0.621662 0.267718 0.900516 0.342634 0.267718 0.900516 0.342634 0.434491 0.763425 0.477912 0.434491 0.763425 0.477912 0.869912 0.076138 0.487294 0.869912 0.076138 0.487294 0.932155 -0.229683 0.279881 0.932155 -0.229683 0.279881 0.602872 0.538559 0.588642 0.602872 0.538559 0.588642 0.752279 0.323048 0.574209 0.752279 0.323048 0.574209 -0.213672 0.974192 0.072768 -0.213672 0.974192 0.072768 0.039021 0.973056 0.227243 0.039021 0.973056 0.227243 0.840289 -0.540248 0.045233 0.840289 -0.540248 0.045233 0.606818 -0.775669 -0.17352 0.606818 -0.775669 -0.17352 -0.573632 0.648601 -0.500262 -0.573632 0.648601 -0.500262 -0.459052 0.865899 -0.198721 -0.459052 0.865899 -0.198721 0.348772 -0.845309 -0.404736 0.348772 -0.845309 -0.404736 0.044107 -0.731158 -0.680781 0.044107 -0.731158 -0.680781 -0.526631 0.262875 -0.808429 -0.526631 0.262875 -0.808429 -0.572583 0.444835 -0.688673 -0.572583 0.444835 -0.688673 -0.171813 -0.489749 -0.854767 -0.171813 -0.489749 -0.854767 -0.298216 -0.294897 -0.907801 -0.298216 -0.294897 -0.907801 -0.378075 -0.092709 -0.921121 -0.378075 -0.092709 -0.921121 -0.44719 0.096281 -0.889242 -0.44719 0.096281 -0.889242 0.612429 0.206829 -0.762989 0.464886 0.248405 -0.849809 0.407407 0.351958 -0.842701 0.648197 0.357749 -0.672202 0.671753 0.259933 -0.693674 0.260779 0.444292 -0.857088 0.266283 0.359019 -0.894538 0.239549 0.282383 -0.928911 0.456076 0.54318 -0.704947 0.484975 0.494828 -0.721072 0.523431 0.452679 -0.721874 0.154432 0.395601 -0.905345 0.17883 0.504716 -0.84456 0.266157 0.567731 -0.779001 0.193307 0.300033 -0.934138 0.427534 0.439385 -0.790035 0.307666 0.464115 -0.830626 0.465664 0.419078 -0.779442 0.586011 0.418412 -0.693919 0.376686 0.574397 -0.726757 0.72401 0.167928 -0.669036 0.615211 0.144276 -0.775048 0.538442 0.194451 -0.81992 0.755996 0.352652 -0.551458 0.765047 0.251817 -0.592698 0.104303 0.251884 -0.96212 0.084593 0.265317 -0.960443 0.005837 0.281933 -0.959416 0.438714 0.77153 -0.460728 0.549094 0.684577 -0.479427 0.639111 0.567102 -0.51955 -0.119349 0.571474 -0.811895 -0.055497 0.717664 -0.694175 0.087893 0.80095 -0.592244 -0.082255 0.383999 -0.919662 0.371981 0.25099 -0.893663 0.168173 0.254214 -0.952414 0.515832 0.244885 -0.820943 0.711746 0.448691 -0.540457 0.274747 0.816832 -0.507247 0.645705 0.281916 -0.70964 0.539281 0.220414 -0.812769 0.769022 0.394085 -0.503292 0.726749 0.338639 -0.597628 0.910687 0.132665 0.391214 0.999599 0.019627 0.020427 0.95412 0.024299 0.298438 0.445708 0.894704 -0.029136 0.965917 0.00636 -0.258774 0.63813 0.749781 -0.174984 0.564478 0.808758 -0.165152 0.955888 0.074409 -0.28415 0.833027 -0.550995 -0.049699 0.747769 -0.638876 -0.180774 0.496269 -0.862279 -0.100952 -0.207933 0.848115 -0.487303 0.067624 0.763984 -0.641681 0.12728 0.626188 -0.769213 -0.218784 0.728379 -0.649305 0.477035 0.407812 -0.778542 0.477035 0.407812 -0.778542 0.017333 -0.981177 -0.192329 0.100697 -0.980826 -0.166857 0.066985 -0.985016 -0.158922 0.066985 -0.985016 -0.158922 0.113176 -0.977596 -0.177477 0.113176 -0.977596 -0.177477 0.260639 0.584649 -0.768279 0.260639 0.584649 -0.768279 0.016554 0.67435 -0.738226 -0.106362 0.750404 -0.652366 -0.106362 0.750404 -0.652366 -0.052394 0.836039 -0.546163 0.073173 0.824552 -0.561034 -0.11046 0.686583 -0.718611 -0.155032 0.743111 -0.650962 -0.209657 0.806439 -0.552901 -0.277141 0.74834 -0.602644 -0.254322 0.755762 -0.603444 -0.358109 0.092557 -0.929081 -0.250923 0.673348 -0.695442 -0.112663 0.603179 -0.789609 -0.09202 0.089713 -0.991708 0.154625 0.382352 -0.910988 0.205405 -0.026468 -0.978319 -0.072607 -0.353019 -0.932795 -0.315135 -0.516218 -0.796372 0.137801 -0.96591 -0.219155 -0.147037 -0.862058 -0.485012 0.15353 -0.866566 -0.474859 0.229098 -0.817711 -0.528075 0.125194 -0.964684 -0.231758 0.055128 -0.985656 -0.159509 0.133227 -0.975043 -0.1776 0.08158 0.845691 -0.5274 0.078804 0.875247 -0.477213 -0.135909 0.78308 -0.606889 -0.14307 0.731129 -0.667069 0.652262 -0.134271 -0.746006 0.728452 -0.084587 -0.679855 0.489926 -0.423017 -0.762253 0.604152 0.140091 -0.784458 0.789901 0.036981 -0.612119 0.511155 -0.597093 -0.618224 0.41548 -0.442463 -0.794735 0.053874 -0.927755 -0.369281 0.152238 -0.796477 -0.58519 0.917433 -0.01634 -0.397554 0.60325 -0.699086 -0.383887 0.029478 -0.980033 -0.196639 0.188278 0.863211 -0.468421 0.734878 0.361526 -0.573806 0.645074 0.228829 -0.729052 0.011092 0.714503 -0.699544 0.528285 0.032629 -0.84844 -0.123905 0.526586 -0.841044 0.709036 -0.679127 0.189881 0.54884 -0.680148 0.485977 0.696633 -0.536154 0.476698 0.937025 0.142119 0.319041 0.883729 -0.390989 0.257199 0.771856 0.621298 -0.135006 0.80244 -0.582305 -0.130427 0.360455 0.931906 0.040288 0.246781 0.968966 0.014261 0.199409 0.979909 0.003657 0.20259 0.97835 0.042279 0.297397 0.954751 0.002279 0.296878 0.953346 -0.054732 -0.448272 0.750301 -0.485901 -0.299256 0.711329 -0.635969 -0.449932 0.662013 -0.599417 -0.604373 0.702658 -0.375506 0.543677 -0.837776 -0.05046 0.41825 -0.908309 0.006481 0.525642 -0.828016 0.195167 0.513327 -0.837473 0.187441 0.632445 -0.690176 0.351668 0.562937 -0.723503 0.399556 0.270888 -0.860723 -0.431018 0.466072 -0.760826 -0.451575 0.785817 -0.470274 -0.401664 0.806986 0.379916 -0.452147 0.311722 -0.406116 -0.859011 0.08011 -0.476468 -0.875534 0.492226 -0.783275 0.379728 0.564196 -0.75938 0.324076 0.615425 -0.747397 0.250297 0.467281 -0.880804 -0.076373 0.423525 -0.905139 -0.036738 0.388235 -0.921287 -0.022439 -0.638353 0.671458 -0.376365 -0.642083 0.670375 -0.371923 -0.527289 0.635121 -0.564436 -0.53912 0.609156 -0.581618 -0.499354 0.673213 -0.545371 -0.620665 0.681581 -0.387585 0.724403 -0.679107 -0.118553 0.808578 -0.568186 -0.152862 0.76273 -0.645516 0.039393 0.719046 -0.694329 0.029644 0.704086 -0.666952 0.243799 0.68063 -0.673335 0.288725 0.675478 -0.668555 0.311069 0.688796 -0.721756 0.068031 0.678689 -0.726051 -0.110594 0.590821 -0.659388 -0.464906 0.324614 -0.335183 -0.884465 0.389368 -0.193616 -0.900503 0.677507 -0.584788 -0.446103 0.811911 -0.403641 -0.421752 -0.702864 0.705439 -0.091315 -0.699069 0.693346 0.174852 -0.698884 0.694843 0.169571 -0.697074 0.711711 -0.08692 -0.629707 0.772938 0.077689 -0.630257 0.757744 -0.169115 0.665495 -0.718329 0.202779 0.637554 -0.7383 0.220087 0.650398 -0.741869 0.163133 0.619906 -0.781037 -0.075482 0.62189 -0.772088 -0.130895 0.619404 -0.767547 -0.164959 -0.428525 0.808484 -0.403384 -0.344282 0.922494 -0.174568 0.841854 -0.487833 -0.230867 0.838993 -0.458769 -0.292613 0.718357 -0.682624 -0.134116 0.750372 -0.66081 -0.016469 -0.004385 -0.980634 -0.195802 0.11327 -0.803082 -0.585003 0.033162 -0.790045 -0.612151 -0.142029 -0.978203 -0.151482 0.398848 0.500353 -0.768484 0.284867 0.522124 -0.803889 0.240759 -0.182234 -0.953324 0.326055 -0.256882 -0.90978 0.106126 0.992625 0.058596 0.101925 0.991712 -0.078227 0.185058 0.981762 0.043548 0.161241 0.98316 0.086007 0.203627 0.976108 0.075821 -0.181266 -0.979622 -0.086502 -0.058418 -0.989239 -0.134139 0.18691 0.981774 0.034418 0.16088 0.98655 0.028917 -0.164751 -0.970502 -0.176023 0.075477 -0.797038 -0.599194 0.41959 0.332341 -0.844685 0.322606 -0.288805 -0.901397 0.338129 0.937695 -0.079978 0.299596 0.953203 -0.040569 -0.230271 -0.970692 -0.068787 0.273756 0.960659 -0.046809 -0.093554 0.935084 -0.341855 -0.357811 0.927392 -0.109158 -0.580229 0.784645 -0.218327 -0.370232 0.823908 -0.429073 0.555442 -0.82035 -0.136052 0.648256 -0.730721 0.214037 0.665073 -0.670138 0.329534 -0.177345 0.255741 -0.950339 0.237945 -0.404121 -0.883215 -0.171659 0.218398 -0.960643 -0.191232 0.22974 -0.95428 -0.611039 0.688951 -0.389844 -0.497376 0.621066 -0.605717 0.578572 -0.812132 -0.075471 0.636769 -0.760919 0.124606 -0.168096 0.382717 -0.908445 -0.01579 0.29859 -0.954251 -0.354497 0.372019 -0.857866 -0.354497 0.372019 -0.857866 0.030753 -0.642052 -0.766044 -0.28865 0.899627 -0.327645 -0.28865 0.899627 -0.327645 -0.590748 0.801531 0.092551 0.882451 -0.187177 -0.431561 0.631213 0.690214 -0.3538 0.716773 0.651128 -0.249539 0.810085 0.079366 -0.580916 0.218435 0.918014 -0.330963 0.140919 0.983259 -0.115515 0.178425 0.905077 -0.386006 0.364259 0.817074 -0.446884 0.299785 0.939825 -0.163886 0.464631 -0.750462 -0.470027 0.536199 0.720631 -0.439525 0.864301 -0.265631 -0.427112 -0.127859 0.902899 -0.410396 0.648779 -0.746777 0.14632 -0.65206 0.746179 -0.134292 0.932257 0.179954 -0.313868 0.932257 0.179954 -0.313868 0.85443 0.301563 -0.423095 0.797829 0.26596 -0.541049 0.873116 -0.177098 -0.454207 0.873116 -0.177098 -0.454207 0.649289 0.072699 -0.757059 0.753442 0.191783 -0.628923 0.6043 -0.0704 -0.793641 0.921298 -0.001363 -0.388856 0.921298 -0.001363 -0.388856 0.805464 -0.09727 -0.584608 0.710857 -0.181827 -0.679427 0.859553 -0.250977 -0.445172 -0.504833 -0.252405 -0.825491 -0.504833 -0.252405 -0.825491 -0.176988 -0.95937 -0.219738 -0.176988 -0.95937 -0.219738 0.838581 -0.043777 -0.543014 -0.50884 -0.695521 -0.507279 -0.50884 -0.695521 -0.507279 0.843621 -0.371969 -0.387224 0.843621 -0.371969 -0.387224 0.897769 0.154532 -0.41247 0.897769 0.154532 -0.41247 0.883068 0.157461 -0.442037 0.883068 0.157461 -0.442037 0.71598 -0.20424 -0.667576 0.71598 -0.20424 -0.667576 0.84052 -0.139279 -0.523572 0.84052 -0.139279 -0.523572 0.889164 0.201883 -0.410647 0.889164 0.201883 -0.410647 0.844759 0.094819 -0.526679 0.844759 0.094819 -0.526679 0.516769 -0.546521 -0.658988 0.137687 -0.761356 -0.633545 -0.073521 0.769689 -0.634171 -0.902895 -0.325759 0.280467 -0.936415 -0.200727 0.287811 -0.858832 -0.448083 0.248252 -0.80054 -0.564124 0.202238 -0.740856 -0.649577 0.170825 -0.640499 -0.727822 0.245023 -0.852262 -0.443442 0.277505 -0.785146 -0.561254 0.261802 -0.709343 -0.657204 0.254784 0.578683 -0.759785 0.2964 -0.000115 -0.99999 -0.004589 -0.00051 -0.999977 -0.006811 -3.4e-005 -0.999995 -0.003095 -0.0006 -0.999998 -0.001658 0.001309 -0.999998 0.001288 -0.003465 -0.999976 -0.006061 -0.004195 -0.999979 -0.004981 -0.000633 -0.99997 -0.007748 -0.001948 -0.999974 -0.00693 -6e-006 -0.999971 -0.007673 -0.00264 -0.99998 -0.005704 -6.6e-005 -0.999967 -0.008151 -0.00142 -0.999996 -0.002481 0.003645 -0.999993 4.6e-005 -0.002686 -0.999991 0.003221 0.002724 -0.999944 0.010221 0.004946 -0.999932 0.010546 0.006765 -0.99992 0.010688 0.004595 -0.999966 0.006817 0.001146 -0.999997 0.002298 -0.004822 -0.999982 0.003527 -0.003588 -0.999964 0.00771 -0.00298 -0.999888 0.014663 -0.001243 -0.999863 0.016531 0.001848 -0.999933 0.011451 -0.004415 -0.999984 0.003674 0.001118 -0.999907 0.013595 0.001334 -0.999999 -0.000699 -0.00033 -1 -0.000292 - - - - - - - - - - 0.245158 0.423975 0.25011 0.468112 0.150442 0.543685 0.148569 0.498875 0.302841 0.416173 0.345064 0.636086 0.339502 0.673242 0.260986 0.672117 0.283208 0.642063 0.331126 0.714598 0.241009 0.71553 0.233372 0.762934 0.302959 0.373132 0.224027 0.289653 0.23558 0.359702 0.143764 0.429085 0.134156 0.320572 0.298228 0.319321 0.288073 0.263566 0.326898 0.757163 0.328393 0.797118 0.23841 0.805793 0.60087 0.640918 0.866606 0.398924 0.510699 0.676291 0.517366 0.634965 0.871384 0.397619 0.505796 0.719121 0.878048 0.397558 0.87416 0.398826 0.86606 0.397625 0.86057 0.399008 0.501279 0.762876 0.856321 0.39906 0.497144 0.804816 0.862375 0.397683 0.860024 0.397676 0.853776 0.399148 0.494669 0.842655 0.936097 0.40457 0.495808 0.877438 0.932361 0.401286 0.944998 0.401429 0.333511 0.830512 0.255441 0.838224 0.335539 0.859065 0.275714 0.857682 0.13703 0.645509 0.099669 0.709478 0.072436 0.710311 0.114209 0.64461 0.217381 0.600094 0.193334 0.589335 0.083907 0.774978 0.093256 0.834193 0.067488 0.842396 0.056643 0.778851 0.948825 0.405179 0.543475 0.557405 0.5578 0.533271 0.685834 0.551732 0.928618 0.398828 0.939922 0.398832 0.318062 0.571086 0.304302 0.551225 0.870712 0.401462 0.862287 0.401557 0.855482 0.401642 0.85836 0.405349 0.85103 0.405417 0.86725 0.404976 0.851008 0.401767 0.84805 0.401779 0.618068 0.949096 0.595914 0.442419 0.701364 0.36472 0.704143 0.312403 0.595493 0.387203 0.757075 0.288915 0.749567 0.262372 0.79867 0.019963 0.720188 0.090411 0.342229 0.232442 0.353643 0.285267 0.846214 0.405443 0.84246 0.405195 0.945825 0.3988 0.51556 0.94314 0.529717 0.959537 0.951482 0.401365 0.955814 0.405156 0.355112 0.336459 0.416748 0.23909 0.409212 0.301844 0.412385 0.174765 0.722678 0.141004 0.371257 0.129527 0.316583 0.183819 0.278107 0.146712 0.815355 0.094326 0.586596 0.164171 0.31201 0.090946 0.272238 0.213152 0.591566 0.221736 0.775513 0.183818 0.258385 0.177707 0.714664 0.225413 0.594393 0.311859 0.803506 0.201004 0.853165 0.100422 0.240207 0.064107 0.220228 0.127313 0.134162 0.116701 0.137886 0.045291 0.20962 0.176711 0.132836 0.176022 0.393776 0.367451 0.346805 0.380154 0.21424 0.228892 0.133514 0.241035 0.127886 0.880246 0.194162 0.909528 0.176891 0.924466 0.105635 0.892789 0.298575 0.918513 0.289302 0.932026 0.41004 0.927663 0.412647 0.940987 0.152917 0.714025 0.188039 0.660899 0.251002 0.622891 0.148083 0.821618 0.139091 0.770988 0.529124 0.59406 0.624566 0.605374 0.943792 0.414167 0.33386 0.602351 0.939709 0.408955 0.951716 0.40979 0.95394 0.414936 0.863781 0.409841 0.854643 0.410095 0.847079 0.410021 0.50373 0.914675 0.043999 0.560029 0.039161 0.51728 0.035514 0.442488 0.02836 0.327681 0.57657 0.399149 0.579657 0.45714 0.483058 0.467543 0.484696 0.402538 0.027211 0.11532 0.026409 0.041836 0.027231 0.176259 0.027041 0.244825 0.496033 0.232082 0.498386 0.171519 0.545104 0.178866 0.55478 0.242428 0.486973 0.320445 0.572701 0.32584 0.253473 0.42034 0.198325 0.471074 0.201641 0.514357 0.257191 0.464291 0.304409 0.414784 0.305266 0.371658 0.230885 0.286168 0.167912 0.306331 0.188981 0.401339 0.242536 0.354324 0.300813 0.31779 0.290984 0.262458 0.644363 0.422582 0.643061 0.366324 0.70337 0.314326 0.703499 0.366966 0.745969 0.26707 0.75382 0.293297 0.343946 0.231017 0.355397 0.284532 0.356783 0.335152 0.414764 0.29281 0.419941 0.236001 0.413771 0.173263 0.370421 0.125545 0.313385 0.086563 0.282902 0.142155 0.319456 0.18046 0.261679 0.175104 0.275739 0.211488 0.247515 0.05956 0.175872 0.043369 0.166908 0.113803 0.230266 0.122298 0.162066 0.173298 0.220575 0.173418 0.399643 0.347472 0.348371 0.378515 0.850892 0.415208 0.23283 0.882474 0.174218 0.860862 0.318561 0.890705 0.412205 0.900441 0.414872 0.864697 0.414169 0.832004 0.413463 0.796679 0.414763 0.757 0.418623 0.715141 0.424042 0.67374 0.797949 0.022112 0.816816 0.093012 0.720595 0.147032 0.715991 0.092651 0.636546 0.210325 0.627672 0.148444 0.772502 0.189202 0.711355 0.231084 0.641706 0.289174 0.223314 0.226619 0.162858 0.235961 0.139391 0.505963 0.140772 0.546375 0.105327 0.324975 0.131454 0.436403 0.855305 0.0942 0.800674 0.205793 0.103269 0.042003 0.100779 0.11305 0.099208 0.173793 0.099637 0.242841 0.428561 0.633258 0.429426 0.594048 0.429051 0.559095 0.429259 0.535162 0.35272 0.639241 0.294558 0.645659 0.274212 0.673847 0.348213 0.675519 0.253789 0.714174 0.339072 0.715472 0.241562 0.759109 0.241492 0.801977 0.330569 0.796358 0.332348 0.756954 0.843668 0.414845 0.519216 0.636196 0.513483 0.677706 0.858319 0.415536 0.509018 0.719971 0.595108 0.724198 0.959154 0.409842 0.961426 0.415077 0.955396 0.420505 0.503982 0.762367 0.946551 0.419988 0.498249 0.80295 0.581926 0.813498 0.948394 0.426244 0.956245 0.426562 0.493564 0.840197 0.962774 0.420748 0.49337 0.874734 0.5689 0.884732 0.963626 0.426902 0.947821 0.439136 0.254385 0.836095 0.333265 0.830744 0.334347 0.859927 0.274272 0.857068 0.111374 0.707428 0.160452 0.654158 0.126019 0.649524 0.074711 0.707898 0.232092 0.611555 0.203545 0.598866 0.085639 0.828171 0.086444 0.767612 0.053832 0.770468 0.05904 0.833261 0.5406 0.554531 0.653253 0.57169 0.949156 0.432796 0.552741 0.532581 0.956416 0.432776 0.955188 0.438695 0.321928 0.578317 0.3053 0.558373 0.963377 0.433055 0.962074 0.438861 0.939469 0.450342 0.944673 0.445101 0.952905 0.444195 0.949616 0.449137 0.959891 0.444199 0.95721 0.449055 0.928445 0.45763 0.933041 0.454385 0.647892 0.957038 0.945196 0.453364 0.513713 0.938992 0.528694 0.953445 0.940767 0.456994 0.954246 0.453493 0.191556 0.905473 0.119561 0.876603 0.09609 0.886393 0.173642 0.917872 0.296111 0.916924 0.285563 0.930752 0.407594 0.925155 0.699705 0.808301 0.767751 0.813767 0.770203 0.857847 0.710393 0.859091 0.67046 0.86001 0.652167 0.800156 0.732575 0.902022 0.706983 0.910753 0.776574 0.894725 0.709069 0.706824 0.772884 0.721001 0.769128 0.766819 0.69961 0.756109 0.650715 0.739559 0.665169 0.685443 0.747389 0.629544 0.781976 0.645207 0.777571 0.679447 0.726035 0.663915 0.69251 0.641696 0.7256 0.608173 0.800842 0.598447 0.800844 0.613722 0.782354 0.62203 0.77064 0.606739 0.761516 0.586356 0.801211 0.57812 0.833474 0.606525 0.843418 0.585771 0.884582 0.608278 0.861681 0.62927 0.826927 0.645008 0.821482 0.621769 0.901508 0.709495 0.841154 0.721344 0.835351 0.679466 0.88519 0.664947 0.920582 0.64464 0.946246 0.692573 0.905321 0.811872 0.840491 0.814502 0.842749 0.767471 0.908491 0.759591 0.957769 0.748636 0.953229 0.808266 0.87648 0.901039 0.832824 0.894364 0.83647 0.858222 0.893987 0.860506 0.934495 0.863509 0.904941 0.908789 0.811165 0.93926 0.808557 0.928096 0.833115 0.918674 0.850764 0.928355 0.866017 0.939324 0.815782 0.955298 0.781351 0.919619 0.767445 0.930389 0.756778 0.947206 0.874321 0.260529 0.87457 0.258357 0.870642 0.262514 0.870232 0.260129 0.875205 0.262091 0.87418 0.274349 0.878088 0.275377 0.879128 0.284194 0.875282 0.284248 0.876451 0.268146 0.87176 0.26763 0.879196 0.270887 0.875496 0.265391 0.893101 0.28442 0.892287 0.271326 0.879947 0.284131 0.862255 0.219399 0.877309 0.242158 0.869772 0.241647 0.855575 0.218438 0.862432 0.239621 0.84944 0.210845 0.867315 0.244511 0.849901 0.240235 0.863194 0.266321 0.876212 0.265675 0.880423 0.283451 0.866718 0.283089 0.870498 0.254293 0.863904 0.253791 0.870234 0.270504 0.864805 0.270607 0.879852 0.25405 0.878645 0.27023 0.884908 0.221559 0.894641 0.243235 0.885819 0.242521 0.87478 0.219802 0.853855 0.205189 0.868038 0.204565 0.870975 0.210424 0.856654 0.209577 0.882303 0.208527 0.885027 0.21281 0.869343 0.207181 0.855354 0.205901 0.879862 0.246326 0.872817 0.221463 0.859409 0.2185 0.885826 0.225344 0.891813 0.248223 0.886742 0.266822 0.897889 0.269881 0.890434 0.283337 0.902191 0.283202 0.887267 0.269985 0.888486 0.253806 0.897003 0.253871 0.897865 0.269734 0.890567 0.21382 0.890889 0.214313 0.887336 0.211472 0.940502 0.247339 0.935827 0.245027 0.948386 0.259727 0.952135 0.261243 0.929477 0.246937 0.935892 0.257903 0.955141 0.271935 0.951237 0.271687 0.951697 0.282445 0.956107 0.282705 0.939971 0.271031 0.941535 0.28252 0.963745 0.266939 0.955791 0.248173 0.96377 0.246708 0.971434 0.266214 0.948554 0.235961 0.955224 0.234835 0.896396 0.245174 0.886107 0.251776 0.887306 0.25714 0.901578 0.253513 0.893935 0.234459 0.893306 0.241625 0.88488 0.259333 0.895682 0.256287 0.898524 0.274248 0.887363 0.275119 0.885952 0.26722 0.897217 0.265981 0.888292 0.284017 0.899782 0.283788 0.893557 0.224473 0.903384 0.244263 0.904117 0.226402 0.909834 0.245212 0.898452 0.232315 0.90536 0.242289 0.914901 0.24109 0.908475 0.23147 0.912117 0.251402 0.92111 0.249824 0.905103 0.223634 0.894105 0.223477 0.891627 0.223783 0.892209 0.224715 0.894785 0.217728 0.904032 0.218825 0.905292 0.26092 0.916745 0.259188 0.925679 0.257542 0.919312 0.270264 0.927598 0.269904 0.909165 0.270372 0.922229 0.248254 0.923018 0.231732 0.931448 0.236491 0.927474 0.250713 0.939132 0.243721 0.931475 0.252998 0.941395 0.236759 0.941774 0.24318 0.951181 0.24757 0.953028 0.242625 0.943442 0.249961 0.949719 0.251412 0.932269 0.241398 0.935522 0.24909 0.930136 0.234395 0.929446 0.228394 0.942151 0.230847 0.942787 0.227016 0.929372 0.224433 0.954848 0.237908 0.922857 0.256527 0.927955 0.258098 0.929776 0.270263 0.925166 0.269641 0.93313 0.259066 0.935431 0.270899 0.938091 0.256867 0.945703 0.257403 0.953024 0.257866 0.948714 0.269472 0.957575 0.269677 0.940805 0.269454 0.944953 0.253898 0.950208 0.269278 0.961307 0.253711 0.957956 0.256418 0.964661 0.269455 0.96896 0.268209 0.902892 0.249987 0.897745 0.228849 0.908596 0.231834 0.912735 0.252197 0.897122 0.224227 0.89485 0.22181 0.90624 0.226903 0.908607 0.228742 0.903082 0.242361 0.906809 0.256103 0.917237 0.255133 0.919494 0.264606 0.908311 0.265315 0.907454 0.269025 0.916487 0.269043 0.911531 0.283044 0.919593 0.2829 0.909419 0.273405 0.911476 0.28336 0.920571 0.273041 0.922157 0.283218 0.922114 0.255039 0.920062 0.238863 0.921052 0.234472 0.923775 0.23538 0.929369 0.253983 0.934895 0.263753 0.927988 0.282737 0.92516 0.269608 0.937386 0.272947 0.938515 0.283177 0.906903 0.269654 0.905634 0.25451 0.912156 0.254648 0.915624 0.269303 0.934262 0.269581 0.931993 0.256855 0.928513 0.24901 0.928512 0.223212 0.917128 0.220406 0.916725 0.220767 0.9041 0.217973 0.914088 0.228391 0.916363 0.246441 0.918617 0.23227 0.923487 0.240784 0.938248 0.22777 0.892821 0.216321 0.844542 0.206031 0.874322 0.212263 0.870581 0.286403 0.864795 0.285932 0.877377 0.285736 0.887924 0.285532 0.898823 0.285311 0.908672 0.285115 0.917425 0.284957 0.921216 0.269224 0.922914 0.284906 0.926665 0.284912 0.930758 0.284928 0.936388 0.28496 0.952837 0.284936 0.967867 0.284724 0.971593 0.266723 0.976556 0.284338 0.976161 0.284497 0.973686 0.284223 0.968029 0.284169 0.960033 0.284154 0.950775 0.284138 0.942494 0.284121 0.936182 0.284123 0.929809 0.284158 0.920968 0.284223 0.910111 0.284292 0.952943 0.272204 0.950019 0.262148 0.953976 0.282879 0.900909 0.229617 0.889642 0.217102 0.912068 0.234085 0.913562 0.243735 0.925227 0.239763 0.92311 0.245509 0.916786 0.225007 0.940372 0.24984 0.963568 0.250138 0.888081 0.264217 0.918118 0.254988 0.844126 0.209259 0.844951 0.221286 0.886769 0.216308 0.872985 0.215718 0.879346 0.309871 0.875833 0.306046 0.875654 0.308144 0.879007 0.306407 0.876295 0.294136 0.878977 0.293033 0.879812 0.300399 0.876175 0.301094 0.880254 0.30345 0.882198 0.297454 0.893175 0.297687 0.865817 0.349629 0.859181 0.350621 0.872916 0.327332 0.880252 0.326495 0.865713 0.330422 0.852822 0.359205 0.869257 0.322943 0.877097 0.301439 0.864055 0.301093 0.852819 0.327816 0.866118 0.317194 0.872679 0.31623 0.865658 0.301152 0.871305 0.301562 0.879516 0.300927 0.881998 0.315802 0.888262 0.347411 0.878301 0.348969 0.888479 0.326114 0.897047 0.325511 0.857019 0.363938 0.860381 0.359999 0.874655 0.358691 0.872015 0.364197 0.888629 0.3558 0.886097 0.359632 0.872907 0.361011 0.858128 0.36229 0.881706 0.320824 0.862423 0.349295 0.875903 0.346079 0.888714 0.341972 0.893556 0.318638 0.898554 0.296744 0.887564 0.300041 0.888147 0.300674 0.898715 0.300283 0.89883 0.31539 0.89048 0.315686 0.894383 0.353795 0.894065 0.354129 0.890921 0.356254 0.942171 0.318343 0.9529 0.304272 0.949521 0.305533 0.937705 0.320863 0.937122 0.30759 0.931259 0.318903 0.955735 0.293528 0.951772 0.293299 0.940544 0.294181 0.964624 0.302435 0.972337 0.302695 0.965634 0.321964 0.957594 0.320997 0.957663 0.333351 0.950951 0.332759 0.897685 0.323309 0.904388 0.314564 0.887892 0.312338 0.888936 0.316243 0.699423 0.809253 0.710111 0.860044 0.769921 0.8588 0.767468 0.81472 0.651885 0.801109 0.669688 0.860514 0.732293 0.902975 0.706453 0.911484 0.776292 0.895678 0.708787 0.707777 0.699329 0.757062 0.768846 0.767772 0.772602 0.721954 0.664887 0.686395 0.650433 0.740512 0.747107 0.630497 0.725753 0.664868 0.777288 0.6804 0.781693 0.64616 0.725318 0.609127 0.692228 0.642648 0.80056 0.5994 0.770358 0.607692 0.782072 0.622983 0.800562 0.614675 0.800928 0.579073 0.761234 0.587309 0.833192 0.607478 0.861399 0.630223 0.8843 0.609231 0.843136 0.586725 0.8212 0.622722 0.826645 0.645961 0.901226 0.710448 0.884907 0.6659 0.835069 0.680418 0.840872 0.722297 0.945964 0.693526 0.920299 0.645594 0.905039 0.812825 0.908209 0.760544 0.842467 0.768423 0.840209 0.815454 0.952947 0.809219 0.957487 0.749588 0.876198 0.901993 0.893705 0.861459 0.836187 0.859175 0.832541 0.895317 0.904659 0.909742 0.934213 0.864462 0.810883 0.940213 0.850482 0.929308 0.832833 0.919627 0.808275 0.929049 0.815494 0.955807 0.865735 0.940277 0.767163 0.931342 0.781069 0.920572 0.878641 0.308129 0.757688 0.947696 0.89571 0.326063 0.896265 0.333541 0.887647 0.308911 0.896958 0.311973 0.898883 0.293285 0.897963 0.301935 0.887703 0.301029 0.887878 0.29293 0.905567 0.324686 0.896731 0.344468 0.906991 0.342485 0.911791 0.324251 0.900908 0.335596 0.911043 0.336295 0.917143 0.326675 0.907054 0.325968 0.923285 0.31808 0.915184 0.316034 0.908088 0.344187 0.897103 0.344536 0.894607 0.344154 0.895142 0.343144 0.898106 0.350443 0.90726 0.349181 0.907871 0.308374 0.918398 0.309598 0.927049 0.310818 0.928305 0.298442 0.920004 0.298182 0.909927 0.298243 0.924036 0.321254 0.929162 0.318872 0.933826 0.332572 0.925629 0.337191 0.941158 0.32555 0.933051 0.316658 0.943727 0.330971 0.955075 0.325269 0.952983 0.320359 0.943791 0.324629 0.951332 0.316568 0.945126 0.31796 0.937248 0.318798 0.934373 0.326359 0.932584 0.333273 0.932192 0.3393 0.932318 0.343421 0.945607 0.340893 0.944776 0.336887 0.957129 0.33006 0.924262 0.313255 0.925922 0.300164 0.930502 0.299579 0.929283 0.311724 0.936126 0.298969 0.93441 0.310774 0.939442 0.311396 0.947027 0.310849 0.954323 0.310334 0.958291 0.298597 0.94944 0.298819 0.941532 0.298832 0.946483 0.315703 0.950981 0.300512 0.962811 0.314479 0.969751 0.300159 0.965388 0.298807 0.959326 0.311738 0.904541 0.316598 0.900452 0.33816 0.911146 0.334819 0.914268 0.314088 0.900043 0.343367 0.910827 0.338483 0.909045 0.340214 0.897918 0.345703 0.907714 0.311836 0.905082 0.324826 0.918749 0.311513 0.909052 0.30192 0.920236 0.301846 0.91718 0.297035 0.908155 0.297332 0.909931 0.29344 0.92041 0.293444 0.923496 0.310879 0.922253 0.327378 0.925923 0.331262 0.923469 0.332076 0.930583 0.312153 0.934974 0.302503 0.925817 0.29614 0.93758 0.293425 0.907706 0.300101 0.916398 0.300537 0.913653 0.315103 0.907277 0.314776 0.934984 0.298714 0.933344 0.311407 0.930312 0.318902 0.931529 0.345055 0.919853 0.347075 0.920283 0.347817 0.907379 0.350402 0.918259 0.323025 0.916863 0.340467 0.921166 0.335346 0.925584 0.327014 0.941044 0.340685 0.896265 0.352186 0.847118 0.363087 0.877923 0.355511 0.921992 0.300554 0.972463 0.301867 0.950828 0.303658 0.953466 0.293583 0.892951 0.350759 0.90326 0.337983 0.915596 0.322974 0.91417 0.333036 0.927312 0.326701 0.92504 0.320904 0.919699 0.342662 0.941871 0.316003 0.965254 0.318221 0.889956 0.306147 0.919598 0.314755 0.845891 0.359181 0.847322 0.346695 0.890112 0.35133 0.87636 0.352039 0.950166 0.457401 0.877438 0.456074 0.890333 0.455013 0.891902 0.457826 0.881771 0.45805 0.893433 0.460126 0.885457 0.459788 0.90216 0.458193 0.902038 0.46051 0.902093 0.455956 0.869348 0.456995 0.875073 0.458463 0.870949 0.459563 0.865831 0.459946 0.88002 0.459819 0.876379 0.459992 0.890696 0.462723 0.889158 0.462546 0.893089 0.46287 0.842115 0.409869 0.837426 0.409453 0.838646 0.414482 0.833434 0.414204 0.847163 0.42056 0.840709 0.41957 0.839445 0.430603 0.83503 0.428579 0.852464 0.422383 0.843659 0.433436 0.835601 0.419062 0.830596 0.418889 0.831257 0.427506 0.827802 0.427141 0.876435 0.450731 0.866399 0.449489 0.869211 0.447456 0.878828 0.448367 0.861778 0.461251 0.86329 0.45579 0.869445 0.454182 0.919848 0.462088 0.9244 0.459418 0.936505 0.460001 0.932799 0.462552 0.914853 0.457033 0.912969 0.45878 0.983064 0.742705 0.970242 0.681277 0.978343 0.807461 0.961861 0.871181 0.925 0.920764 0.93957 0.629718 0.896636 0.591965 0.87816 0.953598 0.820182 0.969676 0.849136 0.56846 0.801508 0.561342 0.753635 0.961316 0.693916 0.922274 0.756457 0.570463 0.715065 0.59271 0.62759 0.729278 0.628526 0.797321 0.647916 0.672373 0.648988 0.865355 0.678001 0.627321 0.970524 0.680324 0.983346 0.741752 0.978626 0.806509 0.962143 0.870229 0.925282 0.919811 0.896919 0.591012 0.939853 0.628765 0.878442 0.952645 0.819304 0.969461 0.80179 0.560389 0.849419 0.567507 0.753465 0.960832 0.694447 0.921544 0.715348 0.591757 0.756739 0.569509 0.628808 0.796368 0.627873 0.728326 0.648199 0.671421 0.648584 0.866073 0.678283 0.626368 0.411737 0.936637 0.212659 0.665019 0.175067 0.711347 0.264355 0.628942 0.154113 0.763611 0.154483 0.81452 0.911051 0.461039 0.528987 0.594894 0.945951 0.460521 0.339791 0.607004 0.94197 0.46307 0.896594 0.462992 0.902819 0.462828 0.939147 0.46498 0.588358 0.917245 0.930869 0.464578 0.500784 0.908814 0.937502 0.466649 0.178893 0.855096 0.23388 0.878659 0.317203 0.888741 0.409219 0.897533 0.412456 0.865776 0.413517 0.832907 0.415303 0.797177 0.41903 0.758087 0.424284 0.717135 0.429773 0.675932 0.433166 0.635493 0.431719 0.596003 0.42845 0.560105 0.426262 0.535529 0.166927 0.932027 0.089131 0.90146 0.412839 0.954955 0.280654 0.94225 0.092604 0.643694 0.172265 0.583534 0.034269 0.783775 0.048602 0.713913 0.288973 0.53753 0.047197 0.849027 0.9297 0.466322 0.910929 0.462701 0.429574 0.516361 0.573602 0.514995 0.911763 0.464455 0.904647 0.46452 0.91245 0.466086 0.906026 0.466148 0.920833 0.464349 0.682918 0.980037 0.544365 0.975068 0.92089 0.466118 0.274953 0.94136 0.412382 0.948959 0.078614 0.893197 0.159929 0.926191 0.045546 0.712112 0.029763 0.775258 0.174568 0.589926 0.093871 0.647648 0.286715 0.542233 0.039682 0.837587 0.568016 0.514851 0.425296 0.517534 0.89967 0.464526 0.715649 0.536695 0.89649 0.46445 0.90127 0.466162 0.89793 0.466107 0.92457 0.397524 0.934172 0.397517 0.90196 0.397532 0.543555 0.96576 0.912366 0.397543 0.914428 0.398827 0.902477 0.39881 0.887934 0.397535 0.886084 0.398748 0.939158 0.397548 0.916553 0.401268 0.903345 0.401161 0.918892 0.404595 0.904419 0.40426 0.88377 0.401252 0.880927 0.404722 0.905294 0.428912 0.905488 0.424961 0.912357 0.424967 0.91334 0.429138 0.905906 0.421495 0.911087 0.422154 0.904076 0.437412 0.90478 0.43319 0.913199 0.433998 0.911884 0.43877 0.90321 0.444063 0.903361 0.441071 0.909872 0.442542 0.908067 0.444769 0.902496 0.453271 0.918142 0.453706 0.928783 0.450398 0.93573 0.445715 0.939896 0.439756 0.941415 0.433124 0.940295 0.426582 0.937084 0.420446 0.931618 0.414911 0.921769 0.409549 0.905101 0.407893 0.876573 0.40992 0.866307 0.415598 0.859425 0.421874 0.854503 0.429219 0.846009 0.439206 0.853866 0.435555 0.855666 0.44134 0.849189 0.44441 0.859693 0.44628 0.853635 0.449316 0.859396 0.453185 0.889827 0.45174 0.862926 0.421743 0.859205 0.428005 0.869662 0.416377 0.857993 0.434235 0.859086 0.440054 0.916008 0.412068 0.903601 0.410265 0.918257 0.418305 0.91053 0.415402 0.913091 0.413541 0.921836 0.416936 0.92534 0.416062 0.879532 0.412275 0.931494 0.42114 0.923547 0.422692 0.927682 0.421785 0.926515 0.428111 0.931209 0.427509 0.93512 0.42705 0.936295 0.433481 0.92732 0.434037 0.932331 0.433786 0.925669 0.439922 0.930432 0.440034 0.934525 0.439972 0.912845 0.451737 0.922595 0.449614 0.907361 0.448978 0.915126 0.447877 0.918684 0.448912 0.909842 0.450414 0.901128 0.451294 0.929882 0.445604 0.921412 0.444811 0.925747 0.445329 0.862632 0.44473 0.90791 0.418325 0.914417 0.420366 0.918293 0.424021 0.92059 0.42877 0.920879 0.434155 0.919487 0.439514 0.911345 0.446349 0.90499 0.446728 0.916084 0.443813 0.891421 0.410387 0.891335 0.407994 0.8923 0.404278 0.892667 0.401108 0.892803 0.398753 0.893101 0.397518 0.953337 0.401538 0.958091 0.405199 0.9475 0.399036 0.96186 0.409791 0.964499 0.415028 0.96612 0.420717 0.967305 0.426924 0.967388 0.433074 0.966427 0.438883 0.96451 0.444202 0.961861 0.44894 0.958944 0.453645 0.955428 0.457592 0.951844 0.460785 0.948132 0.463506 0.945008 0.465414 0.9428 0.466896 0.940897 0.39766 0.894646 0.464377 0.893748 0.464327 0.895819 0.465909 0.894732 0.465707 0.898046 0.468336 0.895591 0.467749 0.894211 0.467377 0.894053 0.470321 0.892528 0.469525 0.89702 0.472125 0.906461 0.46806 0.901761 0.468217 0.901883 0.471147 0.906501 0.470456 0.912592 0.467918 0.912253 0.470089 0.920682 0.467923 0.920674 0.470154 0.9293 0.468129 0.929876 0.470181 0.93702 0.468441 0.938213 0.470896 0.942275 0.468514 0.942757 0.470744 0.890006 0.4495 0.852976 0.399065 0.859393 0.397599 0.847065 0.401675 0.84127 0.405026 0.953466 0.401386 0.958188 0.405089 0.947588 0.398916 0.961862 0.409747 0.964391 0.415022 0.965926 0.420729 0.967068 0.426923 0.967242 0.433135 0.966314 0.439008 0.964406 0.444378 0.961584 0.44912 0.958267 0.453722 0.954279 0.457569 0.865611 0.460368 0.870463 0.459645 0.869977 0.459728 0.865391 0.460791 0.875883 0.460032 0.875386 0.460071 0.889107 0.462568 0.889055 0.46259 0.836433 0.409343 0.829542 0.419704 0.832578 0.41403 0.832317 0.414141 0.82924 0.419624 0.86181 0.461905 0.861843 0.46256 0.95053 0.46075 0.946775 0.4634 0.943577 0.465237 0.941527 0.466697 0.893773 0.464335 0.893798 0.464342 0.894526 0.465626 0.894385 0.465571 0.940912 0.397604 0.893807 0.467247 0.893563 0.467166 0.891985 0.469369 0.891535 0.469419 0.940364 0.468392 0.940762 0.470517 0.866236 0.398834 0.873711 0.398813 0.877506 0.397514 0.870971 0.397493 0.865522 0.397455 0.860032 0.398872 0.856026 0.399014 0.861954 0.397568 0.860159 0.397664 0.853853 0.399094 0.935431 0.404681 0.948546 0.405179 0.944496 0.401457 0.931632 0.401375 0.939488 0.398861 0.927974 0.398901 0.870657 0.401504 0.861966 0.401526 0.855096 0.4016 0.850751 0.405417 0.858121 0.405363 0.867731 0.405188 0.850561 0.401575 0.848094 0.401586 0.842791 0.404957 0.845766 0.405198 0.9455 0.398818 0.951158 0.401375 0.955535 0.405156 0.94295 0.41441 0.9536 0.414936 0.951437 0.40979 0.938847 0.409148 0.863906 0.410047 0.854469 0.410101 0.8468 0.410021 0.843291 0.414792 0.850618 0.415218 0.858112 0.415702 0.958875 0.409842 0.961147 0.415077 0.9551 0.420509 0.945887 0.42022 0.947818 0.426423 0.955942 0.426574 0.962495 0.420748 0.963347 0.426902 0.947179 0.438896 0.955415 0.438781 0.95627 0.432802 0.948355 0.432791 0.963455 0.433109 0.96255 0.43901 0.93973 0.449457 0.950281 0.449152 0.953464 0.44429 0.944309 0.444589 0.960647 0.444424 0.957836 0.449233 0.928866 0.456683 0.941589 0.457208 0.946319 0.453375 0.933669 0.453285 0.954103 0.453514 0.949874 0.457416 0.877353 0.455968 0.882269 0.458025 0.892317 0.457757 0.890577 0.455047 0.886684 0.460112 0.89423 0.460211 0.902677 0.460467 0.90267 0.458019 0.902808 0.455334 0.869597 0.456984 0.865825 0.458435 0.871446 0.458982 0.8752 0.458466 0.877063 0.46 0.880928 0.46006 0.889224 0.462652 0.890358 0.462714 0.892541 0.462593 0.841603 0.409572 0.838159 0.409243 0.834209 0.413908 0.837981 0.414182 0.839885 0.419736 0.846514 0.420792 0.834481 0.428371 0.838869 0.430451 0.84343 0.433385 0.852102 0.422532 0.830666 0.418987 0.834732 0.419195 0.827717 0.426976 0.830662 0.427303 0.875777 0.450429 0.878346 0.448288 0.868619 0.446935 0.865577 0.448677 0.860982 0.459109 0.863516 0.455972 0.868771 0.453598 0.919955 0.462087 0.933215 0.46265 0.936971 0.460171 0.92452 0.45941 0.915797 0.455832 0.913434 0.458571 0.911682 0.460937 0.945768 0.460575 0.941689 0.463136 0.897291 0.462545 0.903757 0.462585 0.930828 0.464538 0.938505 0.464915 0.929084 0.466249 0.936418 0.466469 0.911714 0.462545 0.904992 0.464496 0.91226 0.464434 0.906001 0.466171 0.912549 0.466198 0.920438 0.466178 0.920682 0.464371 0.899694 0.464496 0.896238 0.464476 0.897673 0.46607 0.901142 0.46612 0.933851 0.397545 0.924135 0.397565 0.901567 0.397461 0.902111 0.398787 0.913998 0.398826 0.911927 0.397463 0.885568 0.398789 0.887707 0.397486 0.939027 0.397536 0.902897 0.401138 0.916139 0.401275 0.904075 0.404332 0.918631 0.404656 0.883077 0.401373 0.880245 0.404983 0.905419 0.428922 0.912942 0.429219 0.912006 0.425106 0.905474 0.425025 0.910791 0.422281 0.905844 0.421559 0.904305 0.436885 0.911907 0.438227 0.913047 0.433844 0.905052 0.432984 0.903203 0.443238 0.908124 0.443775 0.909903 0.441649 0.903445 0.440313 0.90285 0.452456 0.918742 0.45246 0.929033 0.449192 0.935553 0.444785 0.939489 0.439171 0.940895 0.433027 0.939916 0.426757 0.936762 0.420698 0.931211 0.415109 0.90461 0.407951 0.921344 0.40965 0.876099 0.410269 0.865754 0.416146 0.858856 0.422274 0.85408 0.42925 0.845714 0.439016 0.8487 0.443676 0.855252 0.440105 0.853622 0.434905 0.852614 0.447663 0.858958 0.44511 0.858176 0.451853 0.889824 0.45148 0.858947 0.427844 0.863033 0.422095 0.869857 0.416948 0.858451 0.439034 0.857612 0.433475 0.903128 0.410252 0.915613 0.4122 0.910336 0.415321 0.91773 0.418674 0.921258 0.417307 0.91279 0.413538 0.924944 0.416332 0.879341 0.412694 0.930972 0.4215 0.922517 0.423241 0.926792 0.422268 0.92506 0.428584 0.929895 0.42793 0.93442 0.427304 0.935453 0.433435 0.925801 0.434263 0.930838 0.433902 0.924243 0.439743 0.929152 0.439726 0.933786 0.439455 0.922618 0.448568 0.913071 0.450609 0.91472 0.447235 0.9073 0.44856 0.909883 0.449686 0.918464 0.448158 0.90106 0.450464 0.929479 0.444749 0.920523 0.44435 0.924927 0.444695 0.861743 0.443993 0.907779 0.418347 0.914012 0.420577 0.917709 0.42432 0.919641 0.429082 0.919962 0.434273 0.918588 0.43924 0.904848 0.446138 0.911088 0.445577 0.915514 0.4432 0.890897 0.408138 0.891059 0.410492 0.89188 0.404459 0.892481 0.401195 0.892744 0.398811 0.892774 0.397499 0.852987 0.39915 0.859402 0.397672 0.847027 0.401638 0.84144 0.40503 0.836758 0.409301 0.826856 0.427241 0.893304 0.464316 0.894343 0.465793 0.894093 0.464377 0.895401 0.465971 0.893628 0.467665 0.890751 0.471053 0.897653 0.467915 0.895086 0.467874 0.893376 0.47055 0.896513 0.470318 0.906138 0.467954 0.901291 0.467913 0.900442 0.470186 0.905385 0.470181 0.912382 0.468058 0.911527 0.470316 0.918635 0.470453 0.91977 0.468076 0.926488 0.470872 0.927835 0.468189 0.935282 0.468257 0.935209 0.471328 0.877915 0.500707 0.878197 0.500625 0.878935 0.505269 0.878376 0.50543 0.87849 0.500327 0.879515 0.504678 0.878776 0.499827 0.880077 0.503685 0.879041 0.499148 0.880596 0.502336 0.879273 0.498323 0.88105 0.500691 0.879461 0.49739 0.881414 0.498833 0.879595 0.496393 0.881685 0.496848 0.879673 0.495381 0.881831 0.494834 0.879688 0.4944 0.881855 0.492886 0.879641 0.493495 0.881754 0.491093 0.879517 0.492692 0.881496 0.489502 0.879256 0.49199 0.880966 0.488128 0.878724 0.491679 0.879976 0.487255 0.880441 0.487544 0.878985 0.491764 0.880259 0.509816 0.879427 0.510054 0.881118 0.508941 0.881951 0.507469 0.882719 0.50547 0.883385 0.503037 0.883918 0.500283 0.884295 0.497337 0.884501 0.494341 0.884524 0.491438 0.884373 0.488781 0.883999 0.486461 0.88321 0.484429 0.882394 0.483424 0.882124 0.514208 0.881033 0.51452 0.883251 0.513061 0.884343 0.511133 0.885349 0.508513 0.886222 0.505324 0.886921 0.501715 0.887414 0.497854 0.887677 0.493924 0.887702 0.490113 0.887496 0.486645 0.88698 0.48361 0.885938 0.48091 0.884878 0.479558 0.884506 0.51838 0.88317 0.518762 0.885883 0.516979 0.887217 0.514621 0.888447 0.511419 0.889514 0.507521 0.890369 0.503109 0.890971 0.49839 0.891293 0.493586 0.89132 0.488919 0.891054 0.484665 0.890395 0.481066 0.88919 0.477958 0.887817 0.476052 0.887367 0.522273 0.885807 0.522719 0.888975 0.520637 0.890533 0.517885 0.891968 0.514147 0.893214 0.509596 0.894212 0.504446 0.894915 0.498938 0.895291 0.493329 0.895322 0.487882 0.895 0.482915 0.894205 0.478779 0.892842 0.475169 0.891068 0.473073 0.890668 0.525829 0.888906 0.526332 0.892483 0.523982 0.894241 0.520876 0.895861 0.516656 0.897267 0.51152 0.898394 0.505707 0.899187 0.499489 0.899612 0.493158 0.899646 0.487009 0.899286 0.481354 0.898411 0.476638 0.894359 0.528996 0.892421 0.529549 0.896354 0.526965 0.898288 0.52355 0.900069 0.518911 0.901615 0.513263 0.902854 0.506872 0.903726 0.500036 0.904193 0.493075 0.904231 0.486314 0.903834 0.4801 0.902975 0.47504 0.898388 0.531728 0.896302 0.532323 0.900534 0.529543 0.902614 0.525869 0.904531 0.520877 0.906194 0.514801 0.907527 0.507925 0.908466 0.50057 0.908967 0.493081 0.909009 0.485806 0.908572 0.479151 0.907654 0.473824 0.902694 0.533986 0.900491 0.534614 0.90496 0.531679 0.907157 0.527799 0.909181 0.522528 0.910937 0.516111 0.912345 0.50885 0.913336 0.501084 0.913866 0.493175 0.913909 0.485494 0.91346 0.478418 0.912585 0.472851 0.907215 0.535736 0.904927 0.536388 0.909569 0.53334 0.91185 0.529311 0.913952 0.523838 0.915776 0.517175 0.917237 0.509635 0.918266 0.50157 0.918854 0.493342 0.918947 0.485357 0.91844 0.478006 0.91787 0.471971 0.914263 0.537286 0.911914 0.537955 0.916678 0.534827 0.919019 0.530693 0.921175 0.525076 0.923047 0.518239 0.924546 0.510502 0.925585 0.502224 0.926227 0.493754 0.926493 0.485583 0.925762 0.478045 0.924764 0.471485 0.921403 0.537724 0.919062 0.538392 0.92381 0.535275 0.926142 0.531156 0.930338 0.525761 0.93162 0.519674 0.933283 0.512932 0.932692 0.502839 0.933977 0.494768 0.934333 0.486371 0.933206 0.478784 0.931863 0.472204 0.92611 0.537268 0.92382 0.53792 0.928464 0.534872 0.932388 0.530343 0.937335 0.506755 0.941235 0.498334 0.941521 0.487989 0.940371 0.480184 0.938481 0.473907 0.930691 0.536256 0.928485 0.536884 0.934789 0.533043 0.935078 0.534703 0.932989 0.535298 0.938368 0.532576 0.947164 0.489068 0.947066 0.497764 0.946239 0.481893 0.944283 0.476284 0.939209 0.532632 0.937267 0.533185 0.941919 0.530982 0.950689 0.490156 0.950271 0.497772 0.95034 0.48345 0.948203 0.478162 0.943023 0.530074 0.941256 0.530577 0.945589 0.528338 0.95349 0.491089 0.952472 0.498024 0.953154 0.485389 0.951415 0.480527 0.946464 0.527065 0.944898 0.52751 0.948879 0.525086 0.955336 0.498108 0.955494 0.49227 0.955142 0.488211 0.954263 0.484425 0.949389 0.475505 0.954052 0.482326 0.94757 0.475109 0.945693 0.473082 0.943613 0.471998 0.950577 0.521636 0.949187 0.522238 0.951775 0.520708 0.950886 0.519379 0.952605 0.518141 0.95447 0.515316 0.952742 0.516616 0.878125 0.495997 0.943537 0.514246 0.944979 0.511457 0.945299 0.511731 0.944004 0.514141 0.946866 0.510467 0.945612 0.512005 0.946775 0.509925 0.944125 0.524447 0.943125 0.523168 0.943363 0.52176 0.944265 0.522893 0.943213 0.51865 0.9436 0.520352 0.942839 0.519741 0.942465 0.520831 0.942508 0.517563 0.943036 0.516979 0.944472 0.514036 0.943564 0.516394 0.946664 0.509365 0.948503 0.507957 0.948316 0.508687 0.949207 0.508705 0.948096 0.509397 0.949608 0.50791 0.950009 0.507096 0.951195 0.506751 0.950679 0.507606 0.951005 0.508659 0.950161 0.508443 0.951647 0.507843 0.952323 0.510866 0.951744 0.509448 0.952587 0.5089 0.953318 0.510638 0.952296 0.507042 0.953444 0.508317 0.954198 0.510416 0.954069 0.512878 0.953344 0.512779 0.95222 0.51488 0.952538 0.512757 0.952777 0.515115 0.953314 0.515413 0.952001 0.51802 0.951641 0.517475 0.949848 0.518868 0.951263 0.516984 0.950071 0.519673 0.950291 0.520481 0.948367 0.522605 0.94826 0.52146 0.946642 0.521256 0.948152 0.520315 0.946704 0.522693 0.946766 0.524131 0.94537 0.524785 0.945389 0.52319 0.944404 0.521338 0.945409 0.521595 0.948517 0.508521 0.947425 0.509189 0.946164 0.510225 0.943731 0.513771 0.942852 0.515989 0.942484 0.51808 0.944874 0.511783 0.950283 0.508511 0.949456 0.508269 0.942699 0.51973 0.943487 0.520694 0.951552 0.510694 0.95099 0.509314 0.944633 0.521012 0.946034 0.520645 0.951461 0.514432 0.951791 0.512457 0.947604 0.519694 0.949207 0.518265 0.95053 0.516413 0.954352 0.507334 0.955064 0.51004 0.953029 0.50566 0.954691 0.513093 0.953563 0.516187 0.942931 0.511155 0.945738 0.50837 0.941124 0.514785 0.948237 0.525023 0.946042 0.527051 0.950358 0.522206 0.940778 0.525984 0.939919 0.523165 0.942236 0.527579 0.940031 0.519157 0.94836 0.506655 0.95038 0.505668 0.951792 0.505283 0.952106 0.519194 0.94408 0.527997 0.955136 0.505085 0.955458 0.508799 0.953996 0.503048 0.954947 0.51289 0.953571 0.516724 0.940392 0.509704 0.943959 0.505926 0.937487 0.514053 0.946965 0.527152 0.943743 0.529685 0.949863 0.52392 0.936263 0.528363 0.934831 0.524989 0.938515 0.530358 0.93544 0.520327 0.947235 0.504116 0.949823 0.503295 0.952034 0.502955 0.951882 0.52041 0.941028 0.53079 0.956255 0.501869 0.956376 0.507194 0.955436 0.512282 0.95378 0.516679 0.954272 0.512902 0.953969 0.514386 0.955477 0.513065 0.955509 0.511632 0.956562 0.510151 0.957541 0.50583 0.957528 0.506237 0.957401 0.500104 0.957323 0.498901 0.956684 0.496896 0.956413 0.492938 0.956425 0.492794 0.955922 0.48933 0.955605 0.489791 0.952251 0.480529 0.95403 0.483685 0.955302 0.484788 0.955335 0.486204 0.955539 0.486154 0.954877 0.485325 0.956687 0.508947 0.956754 0.495687 0.955045 0.487387 0.877848 0.505182 0.877652 0.500582 0.87737 0.504506 0.877412 0.500243 0.876974 0.503437 0.877218 0.499703 0.87668 0.502023 0.877063 0.498994 0.876501 0.50033 0.876979 0.498142 0.876446 0.498438 0.87696 0.497191 0.876522 0.496436 0.877006 0.496186 0.876728 0.49442 0.877115 0.495174 0.877054 0.492488 0.877281 0.494204 0.877479 0.49073 0.877498 0.49332 0.877999 0.489197 0.877767 0.492546 0.878719 0.487808 0.878144 0.491879 0.879235 0.487423 0.878402 0.491725 0.878643 0.509686 0.877934 0.508686 0.877348 0.507101 0.876912 0.505005 0.876647 0.502497 0.876565 0.499694 0.876669 0.496727 0.876956 0.493734 0.877416 0.490859 0.878045 0.488251 0.878803 0.485988 0.879891 0.48389 0.880652 0.483253 0.880004 0.514038 0.879075 0.512727 0.878307 0.510649 0.877736 0.507903 0.877388 0.504616 0.87728 0.500942 0.877417 0.497054 0.877793 0.493132 0.878389 0.48936 0.879214 0.485947 0.880199 0.482989 0.881623 0.480314 0.882641 0.479405 0.881911 0.518172 0.880775 0.516569 0.879836 0.51403 0.879138 0.510673 0.878713 0.506655 0.878582 0.502165 0.878749 0.497412 0.879208 0.492618 0.879955 0.488021 0.881001 0.483899 0.88231 0.480367 0.883909 0.47731 0.885135 0.475926 0.884336 0.52203 0.883011 0.520159 0.881915 0.517195 0.8811 0.513276 0.880604 0.508586 0.88045 0.503344 0.880646 0.497795 0.881181 0.492199 0.882059 0.48684 0.883257 0.482017 0.884772 0.477872 0.886828 0.474331 0.888116 0.472377 0.887245 0.525554 0.885749 0.523442 0.884512 0.520096 0.883592 0.515673 0.883032 0.510379 0.882858 0.504462 0.883079 0.498199 0.883683 0.491882 0.884656 0.485819 0.885976 0.480334 0.887771 0.475644 0.888962 0.472096 0.890594 0.528694 0.888949 0.526372 0.887589 0.522693 0.886578 0.51783 0.885962 0.512009 0.885771 0.505504 0.886014 0.498617 0.886678 0.491672 0.887734 0.484992 0.889161 0.478945 0.891005 0.474124 0.894335 0.531403 0.892565 0.528905 0.891102 0.524947 0.890014 0.519714 0.889351 0.513452 0.889146 0.506453 0.889407 0.499043 0.890122 0.491571 0.891258 0.484384 0.892815 0.477978 0.894695 0.473363 0.898413 0.533643 0.896544 0.531004 0.894999 0.526825 0.89385 0.5213 0.893151 0.514687 0.892934 0.507295 0.893209 0.499472 0.893965 0.491581 0.895164 0.483992 0.89686 0.477387 0.898865 0.473076 0.902769 0.53538 0.900829 0.53264 0.899224 0.5283 0.898031 0.522562 0.897305 0.515695 0.897079 0.50802 0.897366 0.499895 0.89815 0.491701 0.899396 0.483821 0.901449 0.477074 0.903819 0.472976 0.909699 0.53692 0.907707 0.534109 0.906061 0.529655 0.904836 0.523767 0.904091 0.516721 0.90386 0.508844 0.904153 0.500507 0.904958 0.492099 0.906237 0.484012 0.908008 0.477129 0.910034 0.473198 0.916854 0.53736 0.91487 0.534559 0.91323 0.530122 0.914164 0.524465 0.913164 0.518196 0.913437 0.51134 0.91133 0.50108 0.912131 0.492703 0.913405 0.484646 0.91513 0.47783 0.916994 0.473623 0.92166 0.536911 0.919719 0.534172 0.91917 0.529284 0.917172 0.505296 0.919838 0.496406 0.920904 0.486229 0.92238 0.479225 0.924263 0.474614 0.926405 0.535913 0.924828 0.532245 0.931019 0.534378 0.929686 0.53188 0.92797 0.487724 0.927599 0.495894 0.929366 0.480734 0.931925 0.475167 0.935435 0.53233 0.934387 0.530379 0.933232 0.488977 0.932764 0.496065 0.934736 0.482159 0.937602 0.476887 0.93959 0.529799 0.938848 0.527798 0.937731 0.490249 0.936964 0.496523 0.939215 0.484123 0.942421 0.479379 0.943421 0.526821 0.942722 0.524593 0.94207 0.497013 0.942329 0.491435 0.943599 0.487511 0.946933 0.482758 0.949756 0.480976 0.945342 0.476815 0.940652 0.473783 0.947564 0.521395 0.9466 0.520277 0.951324 0.514898 0.949518 0.517928 0.928377 0.510114 0.926885 0.51291 0.927854 0.512845 0.929178 0.51043 0.92998 0.510746 0.931406 0.509225 0.930823 0.508639 0.92835 0.521984 0.930534 0.523359 0.930891 0.521821 0.928964 0.520607 0.929579 0.519229 0.928441 0.517467 0.927597 0.51852 0.926179 0.516255 0.926753 0.519573 0.927195 0.51571 0.928211 0.515165 0.928823 0.512781 0.932374 0.506682 0.930239 0.508053 0.932657 0.507439 0.93294 0.508196 0.934517 0.507536 0.93451 0.506707 0.936567 0.505592 0.934502 0.505878 0.936317 0.506456 0.936067 0.50732 0.937546 0.507578 0.93807 0.506748 0.938901 0.508422 0.940036 0.50988 0.941088 0.509726 0.939772 0.507879 0.940713 0.507314 0.938594 0.505926 0.942911 0.511998 0.942269 0.509491 0.941755 0.511888 0.940774 0.511818 0.940867 0.513981 0.941724 0.514237 0.941696 0.517149 0.942674 0.514592 0.940898 0.516619 0.940099 0.51609 0.938667 0.517973 0.939267 0.518807 0.937547 0.521739 0.939868 0.519641 0.937153 0.52057 0.936759 0.519402 0.934851 0.520311 0.935057 0.52176 0.932933 0.523788 0.935263 0.523209 0.932985 0.522196 0.933038 0.520604 0.931248 0.520284 0.932573 0.508007 0.934161 0.507367 0.930964 0.509008 0.927841 0.514787 0.928411 0.512543 0.928106 0.516928 0.929515 0.510546 0.935671 0.507169 0.937081 0.507438 0.929093 0.51864 0.93071 0.519671 0.938351 0.508298 0.9394 0.509723 0.932552 0.520045 0.934434 0.519715 0.940079 0.511519 0.940113 0.513519 0.936336 0.518792 0.938116 0.517377 0.939405 0.515521 0.943638 0.508965 0.941943 0.506311 0.939071 0.504531 0.94388 0.51543 0.944335 0.512165 0.927944 0.506963 0.925069 0.509715 0.923231 0.513349 0.935271 0.526189 0.938229 0.524222 0.940839 0.521447 0.923484 0.521848 0.925731 0.524779 0.928789 0.526502 0.922597 0.517761 0.93396 0.504385 0.931029 0.505302 0.936534 0.504088 0.942769 0.518413 0.932116 0.527039 0.945351 0.507568 0.943089 0.503744 0.939896 0.502018 0.945354 0.516015 0.946118 0.511811 0.925289 0.504712 0.920962 0.50815 0.918385 0.51252 0.934537 0.528948 0.938552 0.526478 0.941809 0.523283 0.918305 0.523665 0.921702 0.527196 0.925959 0.529352 0.917212 0.518867 0.933078 0.501722 0.929349 0.502508 0.936447 0.501609 0.943896 0.519878 0.930309 0.529931 0.948005 0.505607 0.944871 0.499392 0.947806 0.516062 0.9491 0.511191 0.953215 0.511264 0.952698 0.512701 0.951135 0.50884 0.950868 0.504414 0.946032 0.497811 0.946155 0.49879 0.9504 0.504692 0.944108 0.496015 0.944681 0.492183 0.945966 0.489086 0.945497 0.488606 0.944291 0.491984 0.951345 0.48426 0.948386 0.485293 0.952907 0.485943 0.952013 0.507755 0.944606 0.494766 0.94856 0.486751 0.889967 0.448966 0.879572 0.4873 0.878531 0.491695 0.881189 0.483034 0.883359 0.479059 0.88597 0.475436 0.826451 0.427416 0.889758 0.472115 0.881748 0.482959 0.884054 0.478968 0.886811 0.475429 0.942835 0.472365 0.877975 0.397658 0.883515 0.397651 0.873951 0.397664 0.870831 0.397671 0.867889 0.397674 0.918562 0.397639 0.925482 0.397634 0.901603 0.397646 0.909465 0.397642 0.891034 0.397645 0.929288 0.397637 0.894812 0.397645 0.931273 0.397662 0.86549 0.397668 0.931235 0.397655 0.882529 0.39765 0.877003 0.397658 0.871595 0.397671 0.868659 0.397671 0.868707 0.397667 0.925845 0.397644 0.918784 0.397657 0.909614 0.397666 0.901249 0.39767 0.890498 0.397656 0.92961 0.397643 0.894099 0.397656 0.867711 0.397671 0.900103 0.397679 0.595916 0.679782 0.593633 0.724091 0.587548 0.772055 0.579229 0.819401 0.570764 0.860428 0.56898 0.893979 0.055194 0.327681 0.056512 0.244825 0.056323 0.176259 0.056343 0.11532 0.057144 0.041836 0.468306 0.320445 0.459246 0.232082 0.470583 0.402538 0.456894 0.171519 0.044392 0.51728 0.04804 0.442488 0.039555 0.560029 0.472222 0.467543 0.655545 0.572596 0.685594 0.967391 0.590033 0.92387 0.595756 0.680499 0.590769 0.76975 0.682275 0.551691 0.647404 0.965201 0.571758 0.851938 0.600135 0.64164 0.623018 0.605621 0.617347 0.944413 0.720327 0.535205 - - - - - - - - - - - - - - -

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

-
-
-
-
- - - - 0 0 1 0 - 0 1 0 0 - 1 0 0 0 - - - - - - - - - - - - 400.113 463.264 -431.078 - 0 0 1 0 - 0 1 0 -223.2 - 1 0 0 -38.4 - - - - 148.654 183.672 -292.179 - 0 0 1 -12.8709 - 0 1 0 -191.679 - 1 0 0 -45.6358 - - - - - - - -
diff --git a/ros/src/system/gazebo/catvehicle/dae/duck.png b/ros/src/system/gazebo/catvehicle/dae/duck.png deleted file mode 100644 index 6656eb5f5dd..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/dae/duck.png and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/include/catvehicle/cmd_vel.hh b/ros/src/system/gazebo/catvehicle/include/catvehicle/cmd_vel.hh deleted file mode 100644 index 26a689270d6..00000000000 --- a/ros/src/system/gazebo/catvehicle/include/catvehicle/cmd_vel.hh +++ /dev/null @@ -1,48 +0,0 @@ -#include -#include -#include -#include -#include -#include "ros/ros.h" -#include "geometry_msgs/Twist.h" -#include -#include -//#include - - -namespace gazebo -{ -class CmdVelController : public ModelPlugin -{ -public: - void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/); - void OnUpdate(const common::UpdateInfo & /*_info*/); -// void SteeringSmooth(); -private: - void CatVehicleSimROSThread(); - void Callback(const geometry_msgs::Twist::ConstPtr& msg); - - //ROS - ros::Subscriber sub_; - boost::thread ros_spinner_thread_; - ros::NodeHandle* rosnode_; - - //variables - double u1; // commanded velocity - double u2; // commanded tire angle - double x1; // actual velocity - double x2; // actual tire angle -// double difference; -// double prev_angle; -// double cur_angle; - - //Gazebo - physics::JointPtr steering_joints[2]; - physics::JointPtr velocity_joints[2]; -// ros::NodeHandle* rosnode_; - physics::JointController *steering_cont; - physics::JointVelocityController *rearWheel_cont; - event::ConnectionPtr updateConnection; - physics::ModelPtr model; -}; -} diff --git a/ros/src/system/gazebo/catvehicle/include/catvehicle/cont.hh b/ros/src/system/gazebo/catvehicle/include/catvehicle/cont.hh deleted file mode 100644 index dd269da3da3..00000000000 --- a/ros/src/system/gazebo/catvehicle/include/catvehicle/cont.hh +++ /dev/null @@ -1,65 +0,0 @@ -#include -#include -#include -#include -#include -#include "ros/ros.h" -#include "geometry_msgs/Twist.h" -#include -#include -//#include -#include - -namespace gazebo -{ - class CatSteering : public ModelPlugin - { - public: - CatSteering(); - void Load(physics::ModelPtr _parent, sdf::ElementPtr _sdf); - //void OnUpdate(const common::UpdateInfo & _info); - - private: - void CatVehicleSimROSThread(); - void modelRead(const gazebo_msgs::ModelStates::ConstPtr& msg); - - physics::PhysicsEnginePtr physicsEngine; - //to read the name space from urdf file - std::string robotNamespace; - //to read the name space from urdf file - std::string tfScope; - //Name of the speed topic being published - std::string speedTopic; - // Name of the tire angle topic being published - std::string tireTopic; - // Name of the odometry topic being published - std::string odomTopic; - //ROS - ros::Subscriber sub_; - ros::Publisher ros_pub; - ros::Publisher steering_pub; - ros::Publisher odom_pub; - boost::thread ros_spinner_thread_; - ros::NodeHandle* rosnode_; - - //velocity vector to fetch velocity from model entity - math::Vector3 linear_vel; - math::Vector3 angular_vel; - //Gazebo - physics::JointPtr steering_joints[2]; - physics::JointController *j_cont; - event::ConnectionPtr updateConnection; - - - //Pointer to the model entity - physics::ModelPtr model; - //Pointer to the world in which the model exists - physics::WorldPtr world; - - - //rate at which to update the catsteering - double updateRate; - //Previous time when the catsteering was updated. - ros::Time prevUpdateTime; - }; -} diff --git a/ros/src/system/gazebo/catvehicle/include/catvehicle/cont_lead.hh b/ros/src/system/gazebo/catvehicle/include/catvehicle/cont_lead.hh deleted file mode 100644 index 5fb9835bd39..00000000000 --- a/ros/src/system/gazebo/catvehicle/include/catvehicle/cont_lead.hh +++ /dev/null @@ -1,43 +0,0 @@ -#include -#include -#include -#include -#include -#include "ros/ros.h" -#include "geometry_msgs/Twist.h" -#include -#include -//#include - - -namespace gazebo -{ -class LeadSteering : public ModelPlugin -{ -public: - void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/); - void OnUpdate(const common::UpdateInfo & /*_info*/); -// void SteeringSmooth(); -private: - void LeadVehicleSimROSThread(); - void Callback(const geometry_msgs::Twist::ConstPtr& msg); - - //ROS - ros::Subscriber sub_; - boost::thread ros_spinner_thread_; - ros::NodeHandle* rosnode_; - - //variables - double angle; -// double difference; -// double prev_angle; -// double cur_angle; - - //Gazebo - physics::JointPtr steering_joints[2]; -// ros::NodeHandle* rosnode_; - physics::JointController *j_cont; - event::ConnectionPtr updateConnection; - physics::ModelPtr model; -}; -} diff --git a/ros/src/system/gazebo/catvehicle/include/catvehicle/gps_controller.hh b/ros/src/system/gazebo/catvehicle/include/catvehicle/gps_controller.hh deleted file mode 100644 index dca8dd266d7..00000000000 --- a/ros/src/system/gazebo/catvehicle/include/catvehicle/gps_controller.hh +++ /dev/null @@ -1,40 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include "ros/ros.h" -#include "nav_msgs/Odometry.h" -#include - - -namespace gazebo -{ -class CatGPS : public ModelPlugin -{ -public: - void Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/); - void OnUpdate(const common::UpdateInfo & /*_info*/); -private: - void CatVehicleSimROSThread(); - void Callback(const nav_msgs::Odometry::ConstPtr& msg); - - - //ROS - ros::Subscriber sub_; - boost::thread ros_spinner_thread_; - ros::NodeHandle* rosnode_; - - //gazebo - event::ConnectionPtr updateConnection; - physics::ModelPtr model; - - //variables - int k; - double x , y , z , x_ang , y_ang , z_ang , omega , x_new , y_new , offset_x , offset_y , car_height; - math::Vector3 vector; - math::Pose _pose; - math::Quaternion quaternion; -}; -} diff --git a/ros/src/system/gazebo/catvehicle/launch/catvehicle.launch b/ros/src/system/gazebo/catvehicle/launch/catvehicle.launch deleted file mode 100644 index a89234fdf67..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/catvehicle.launch +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - -true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/catvehicle_canyonview.launch b/ros/src/system/gazebo/catvehicle/launch/catvehicle_canyonview.launch deleted file mode 100644 index 28956dffa96..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/catvehicle_canyonview.launch +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/catvehicle_custom.launch b/ros/src/system/gazebo/catvehicle/launch/catvehicle_custom.launch deleted file mode 100644 index a95114849f2..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/catvehicle_custom.launch +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/catvehicle_empty.launch b/ros/src/system/gazebo/catvehicle/launch/catvehicle_empty.launch deleted file mode 100644 index 589b6bbf8db..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/catvehicle_empty.launch +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/catvehicle_follower.launch b/ros/src/system/gazebo/catvehicle/launch/catvehicle_follower.launch deleted file mode 100644 index 6ea11d9692c..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/catvehicle_follower.launch +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/catvehicle_neighborhood.launch b/ros/src/system/gazebo/catvehicle/launch/catvehicle_neighborhood.launch deleted file mode 100644 index d8dd1b6d235..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/catvehicle_neighborhood.launch +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/catvehicle_skidpan.launch b/ros/src/system/gazebo/catvehicle/launch/catvehicle_skidpan.launch deleted file mode 100644 index bf509e9c9be..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/catvehicle_skidpan.launch +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/distanceEstimator.launch b/ros/src/system/gazebo/catvehicle/launch/distanceEstimator.launch deleted file mode 100644 index 6f016f2b246..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/distanceEstimator.launch +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/distanceEstimator_simulator.launch b/ros/src/system/gazebo/catvehicle/launch/distanceEstimator_simulator.launch deleted file mode 100644 index a312ffce59b..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/distanceEstimator_simulator.launch +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/distanceEstimator_standalone.launch b/ros/src/system/gazebo/catvehicle/launch/distanceEstimator_standalone.launch deleted file mode 100644 index c9cba3c97b6..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/distanceEstimator_standalone.launch +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/hectorslam-sicktest.launch b/ros/src/system/gazebo/catvehicle/launch/hectorslam-sicktest.launch deleted file mode 100644 index 951bef383a2..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/hectorslam-sicktest.launch +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/hectorslam.launch b/ros/src/system/gazebo/catvehicle/launch/hectorslam.launch deleted file mode 100644 index e039c09f791..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/hectorslam.launch +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/humancar.launch b/ros/src/system/gazebo/catvehicle/launch/humancar.launch deleted file mode 100644 index e78268dbf37..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/humancar.launch +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/joystick.launch b/ros/src/system/gazebo/catvehicle/launch/joystick.launch deleted file mode 100644 index 5729f15db00..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/joystick.launch +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/robotviz.launch b/ros/src/system/gazebo/catvehicle/launch/robotviz.launch deleted file mode 100644 index 8e8736960e5..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/robotviz.launch +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/sick.launch b/ros/src/system/gazebo/catvehicle/launch/sick.launch deleted file mode 100644 index 9ef76ca2ae1..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/sick.launch +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/launch/sickTest.launch b/ros/src/system/gazebo/catvehicle/launch/sickTest.launch deleted file mode 100644 index b25e9537edd..00000000000 --- a/ros/src/system/gazebo/catvehicle/launch/sickTest.launch +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/matlab files/DistanceEstimation.m b/ros/src/system/gazebo/catvehicle/matlab files/DistanceEstimation.m deleted file mode 100644 index c79a715dd69..00000000000 --- a/ros/src/system/gazebo/catvehicle/matlab files/DistanceEstimation.m +++ /dev/null @@ -1,28 +0,0 @@ -% Put the directory lisiting here where ROSbag Files are stored -% This file reads rosbag file that has topic named /DistanceEstimator/dist -% and convert them to .mat file -% Developer: Rahul Kumar Bhadani -% rahulbhadani@email.arizona.edu - -DIRPath = './'; -Files=dir(DIRPath); -cd(DIRPath); -for k=1:length(Files) - FileNames=Files(k).name; - - if ((strcmp(FileNames,'.') == 0 || strcmp(FileNames,'..') == 0 ) && length(FileNames) > 3) - if strcmp(FileNames(end-2:end),'bag') - bag = rosbag(FileNames); - bagselect1 = select(bag, 'Topic','/DistanceEstimator/dist'); - msgs = readMessages(bagselect1); - Distance = zeros(1,length(msgs)); - for i = 1:length(msgs) - Distance(i) = msgs{i}.Data; - end - ts = timeseries(bagselect1, 'Data'); - matFile = FileNames(1:end-4); - matFile = strcat(matFile,'.mat'); - save(matFile,'ts','Distance'); - end - end -end \ No newline at end of file diff --git a/ros/src/system/gazebo/catvehicle/matlab files/follower_profile.m b/ros/src/system/gazebo/catvehicle/matlab files/follower_profile.m deleted file mode 100644 index 08694bd20f4..00000000000 --- a/ros/src/system/gazebo/catvehicle/matlab files/follower_profile.m +++ /dev/null @@ -1,84 +0,0 @@ -%Implementation of follower algorithm - -%Developed by Rahul Kumar Bhadani - -%ROS_IP = IP Address of ROS Master -%lead = name of the model of leader AV Car -%follower = name of the model of follower car - -function follower_profile(ROS_IP, lead, follower) - -%If number of argument is not two, flag message and exit. -if nargin < 2 - sprintf('Usage: velocityProfiler(192.168.0.32, catvehicle)'); - return; -end - -rosshutdown; -close all; -modelname1 = strcat('/',lead); -modelname2 = strcat('/',follower); -%Connect to ROS master -master_uri= strcat('http://',ROS_IP); -master_uri = strcat(master_uri,':11311'); -rosinit(master_uri); - -%get handle for cmd_vel topic for publishing the data -velpub1 = rospublisher(strcat(modelname1,'/cmd_vel'),rostype.geometry_msgs_Twist); -velpub2 = rospublisher(strcat(modelname2,'/cmd_vel'),rostype.geometry_msgs_Twist); - -%get handle for speed topic for subscribing to the data -speedsub1 = rossubscriber(strcat(modelname1,'/vel')); -speedsub2 = rossubscriber(strcat(modelname2,'/vel')); - -%get handle for /DistanceEstimator -distanceEstimaterSub = rossubscriber('/DistanceEstimator/dist'); - -%Discretize timestamp -t = 0:0.05:150; -v1 = 3; -v2 = 6; -v3 = 0; - -%Velocity profile -input = v1.*(t<50) + v2.*(t>=50).*(t<100) + v3.*(t>= 100); - -%Velocity profile will be sine -%input = abs(2*sin(t)); - -%Variable to store output velocity -output1 = zeros(length(t),1); -output2 = zeros(length(t),1); - -%handle for rosmessage object for velpub topic -velMsgs1 = rosmessage(velpub1); -velMsgs2 = rosmessage(velpub2); -for i=1:length(t) - velMsgs1.Linear.X = input(i); - velMsgs1.Angular.Z = 0.0; - %Publish on the topic /catvehicle/cmd_vel - send(velpub1, velMsgs1); - %Read from the topic /catvehicle/speed - speedata1 = receive(speedsub1,10); - distance = receive(distanceEstimaterSub,10); - x = distance.Data; - - %Follower control rule - velMsgs2.Linear.X = (1/30.*x + 2/3).*speedata1.Linear.X; - velMsgs2.Angular.Z = 0.0; - send(velpub2, velMsgs2); - speedata2 = receive(speedsub2,10); - output1(i) = speedata1.Linear.X; - output2(i) = speedata2.Linear.X; -end - -%Plot the input and output velocity profile -[n, p] = size(output1); -T = 1:n; -plot(T, input'); -hold on; -plot(T, output1); -plot(T, output2); -title('Original Data'); -legend('Input function', 'Output response of lead','Output response of follower'); -grid on; diff --git a/ros/src/system/gazebo/catvehicle/matlab files/matlabTutorial.m b/ros/src/system/gazebo/catvehicle/matlab files/matlabTutorial.m deleted file mode 100644 index fbac49b3405..00000000000 --- a/ros/src/system/gazebo/catvehicle/matlab files/matlabTutorial.m +++ /dev/null @@ -1,65 +0,0 @@ -% Author: Jonathan Sprinkle -% Copyright (c) 2016 Arizona Board of Regents -% See copyright file - -% load the bagfile -bagfile=rosbag('catvehicle_tutorial.bag'); -% select only the /catvehicle/odom topic -odomBag=select(bagfile,'Topic','/catvehicle/odom'); -% extract timeseries data (this will take some time) -odom = timeseries(odomBag,'Pose.Pose.Position.X','Pose.Pose.Position.Y'); - -figure -% plot x,y vs. time -plot(odom.Time,odom.Data(:,1),odom.Time,odom.Data(:,2)) -% legend information -legend({'X position','Y position'}) - -%% Select the commanded input value -% where are data interesting? Let's look at the cmd_vel_safe inputs -cmd_vel_safeBag=select(bagfile,'Topic','/catvehicle/cmd_vel_safe'); -% this will take some time -cmd_vel_safe=timeseries(cmd_vel_safeBag,'Linear.X','Angular.Z'); - -%% Plot raw cmd_vel_safe data -% let's plot these data too -figure -% plot x,y vs. time -plot(cmd_vel_safe.Time,cmd_vel_safe.Data(:,1),cmd_vel_safe.Time,cmd_vel_safe.Data(:,2)) -% legend information -legend({'Commanded velocity','Commanded steering'}) - -%% Find where interesting data start appearing -veldiffs = diff(cmd_vel_safe.Data(:,1)); -vindices = find(veldiffs); -cmd_vel_safe.Data(veldiffs(1)-5:veldiffs(1)+5,1) -deltadiffs = diff(cmd_vel_safe.Data(:,2)); -dindices=find(deltadiffs); -cmd_vel_safe.Data(indices(1)-10:indices(1)+10,2) - -disp('Note that the values within two time series will not necessarily'); -disp(' match up wrt one another'); -cmd_vel_safe.Time(vindices(1)) -odom.Time(vindices(1)) - -%% find the index nearest to a certain time -interestingTime=cmd_vel_safe.Time(vindices(1)); -odomTmp = odom.Time > interestingTime; -odomIndex = max(0,find(odomTmp)-5); % back up 5 indices, if they exist; - - -%% now, we plot side-by-side from our relative indices -figure -plot(odom.Time(odomIndex(1):end),odom.Data(odomIndex(1):end,1),... - odom.Time(odomIndex(1):end),odom.Data(odomIndex(1):end,2),... - cmd_vel_safe.Time(vindices(1):end),cmd_vel_safe.Data(vindices(1):end,1),... - cmd_vel_safe.Time(vindices(1):end),cmd_vel_safe.Data(vindices(1):end,2)); -legend({'X position','Y position','cmd velocity','cmd steering'}) - -%% visualize the (x,y) position only -figure -plot(odom.Data(:,1),odom.Data(:,2)) -axis equal -legend('(x,y) position'); -xlabel('X position') -ylabel('Y position') diff --git a/ros/src/system/gazebo/catvehicle/matlab files/profileByMatrix.m b/ros/src/system/gazebo/catvehicle/matlab files/profileByMatrix.m deleted file mode 100644 index f6c122576d4..00000000000 --- a/ros/src/system/gazebo/catvehicle/matlab files/profileByMatrix.m +++ /dev/null @@ -1,73 +0,0 @@ -%Implementation of follower algorithm - -%Developed by Rahul Kumar Bhadani - -%ROS_IP = IP Address of ROS Master -%lead = name of the model of leader AV Car -%follower = name of the model of follower car - -function profileByMatrix(ROS_IP, roboname, vel_input, time_input, tire_angle) - - - -%If number of argument is not two, flag message and exit. -if nargin < 4 - sprintf('Uage: velocityProfiler(192.168.0.32, catvehicle, velmatfile, timematfile)'); - return; -end - -if nargin < 5 - tire_angle = 0.0; -end -rosshutdown; -close all; -modelname = strcat('/',roboname); -%Connect to ROS master -master_uri= strcat('http://',ROS_IP); -master_uri = strcat(master_uri,':11311'); -rosinit(master_uri); - -%get handle for /catvehicle/cmd_vel topic for publishing the data -velpub = rospublisher(strcat(modelname,'/cmd_vel'),rostype.geometry_msgs_Twist); - -%get handle for /catvehicle/vel topic for subscribing to the data -speedsub = rossubscriber(strcat(modelname,'/vel')); - -vmat = load(vel_input); -tmat = load(time_input); -t = tmat.t; -%Velocity profile -input = vmat.Vel; -%Velocity profile will be sine -%input = abs(2*sin(t)); - -%Variable to store output velocity -output = zeros(length(t),1); - -%handle for rosmessage object for velpub topic -velMsgs = rosmessage(velpub); -for i=1:length(t) - velMsgs.Linear.X = input(i); - velMsgs.Angular.Z = tire_angle; - %Publish on the topic /catvehicle/cmd_vel - send(velpub, velMsgs); - %Read from the topic /catvehicle/speed - speedata = receive(speedsub,10); - output(i) = speedata.Linear.X; - pause(0.1); - if i == 3000 - break; - end -end - -%Plot the input and output velocity profile -[n, p] = size(output); -T = 1:n; -plot(T, input'); -hold on; -plot(T, output); -title('Original Data'); -legend('Input function', 'Output response'); -grid on; - -save input.mat input output diff --git a/ros/src/system/gazebo/catvehicle/matlab files/speed_plot.m b/ros/src/system/gazebo/catvehicle/matlab files/speed_plot.m deleted file mode 100644 index d600c89e095..00000000000 --- a/ros/src/system/gazebo/catvehicle/matlab files/speed_plot.m +++ /dev/null @@ -1,117 +0,0 @@ -% Author: Rahul Kumar Bhadani -% rahulbhadani@email.arizona.edu -% This file will read the velocity data from the ascii file and clip the -% portion of data that are recorded before the input time so that we can -% shift graph at t = t0 when experiment starts - - - -% Load the data from file into matlab variable assuming that current -% directory has the data file named vData.mat. If you are working with file -% that has different name, please change the script - -%Another assumption has been made that output start from zero and slowly -%gain the value. -data = load('vData.mat','-ascii'); -%Step Input: Change the value as required -A =1; - -[n, p] = size(data); -t = 1:n; -Input=repmat(A,1,n); -figure(1); -plot(t, Input'); -hold on; -plot(t, data); -title('Original Data'); -legend('Input Step function', 'Output response'); -grid on; - -%determine the size of data file -first_zero = 0; -last_zero = 0; -final_time = 0; - -%Clip the region before the start of the experiment -for t=1:length(data) - if( data(t) > 0.0 && data (t) < 0.0001) - first_zero = t; - end -end - -data = data(first_zero:length(data)); - -for t=1:length(data) - if( data(t+5) - data (t) > 0.0005) - last_zero = t; - break; - end -end - -data = data(last_zero:length(data)); - -for t=1:length(data) - if( abs(data(t+10) - data (t)) < 0.000001) - final_time = t+10; - break; - end -end - -data = data(1:final_time); - -%At this point we have the data that are from experiment. -[n, p] = size(data); -t = 1:n; -Input=repmat(A,1,n); -figure(2); -plot(t, Input'); -hold on; -plot(t, data); -title('Clean Data'); -legend('Input Step function', 'Output response'); -grid on; - - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -%Approximation of data as second order system to determine the transfer -%function -%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -%Get the peak time. -[maxVal, maxTime] = max(data); -peakTime = maxTime; -hold on; -plot(peakTime, maxVal,'*'); -text(peakTime, maxVal,'Y_{peak}'); -finalVal = 0; -finalTime = 0; -%Find the final value. If the amplitude has not changed more than threshold -%within last 50 -%unit of time, treat the latter amplitude as final value. - for t=peakTime:length(data) - if( abs(data(t) - data (t-25)) < A*0.0001) - finalVal = data(t); - finalTime = t; - break; - end - end - -plot(finalTime, finalVal,'*'); -text(finalTime, finalVal,'Y_{final}'); - -%Overshoot -Overshoot = (maxVal - finalVal)/finalVal; -%Damping Coefficient -Zeta = sqrt( (log(Overshoot)^2) / ( (log(Overshoot)^2) +(pi^2) ) ); - -Wd = pi/peakTime; -Wn = Wd/( sqrt ( 1 - (Zeta^2) ) ); - -denom = [1 2*Zeta*Wn Wn*Wn]; -sys = tf(A, denom); -t = [0:0.01:1000]; -figure(3); -title('Approximation of response as second order system'); -step(sys,t); -grid on; diff --git a/ros/src/system/gazebo/catvehicle/matlab files/velCapture.m b/ros/src/system/gazebo/catvehicle/matlab files/velCapture.m deleted file mode 100644 index 44ec1ee215d..00000000000 --- a/ros/src/system/gazebo/catvehicle/matlab files/velCapture.m +++ /dev/null @@ -1,39 +0,0 @@ -% Function to capture catvehicle velocity and plotting live graph -function velCapture(ROS_IP, roboname) -%If number of argument is not two, flag message and exit. -if nargin < 2 - disp('Uage: velocityProfiler(192.168.0.32, catvehicle)'); - return; -end -close all; -%rosshutdown; -modelname = strcat('/',roboname); -%Connect to ROS master -master_uri= strcat('http://',ROS_IP); -master_uri = strcat(master_uri,':11311'); -%rosinit(master_uri); - -%get handle for /catvehicle/vel topic for subscribing to the data -speedsub = rossubscriber(strcat(modelname,'/vel')); -dt = datestr(now,'mmmm-dd-yyyy-HH-MM-SS'); -sprintf('Velocity capture starts at %s',dt) - -t = 0:0.05:50; -output = zeros(length(t),1); -figure; -grid on; -title('Velocity [m/s]'); -for i = 1:length(t) - speedata = receive(speedsub,10); - output(i) = speedata.Linear.X; - - plot([max(i-1,1),i], output([max(i-1,1),i]),'b-'); - hold on; - drawnow; -end -dt = datestr(now,'mmmm-dd-yyyy-HH-MM-SS'); -file = strcat(dt,'.mat'); - save(file, 'output'); -grid on; -title('Velocity [m/s]'); -end diff --git a/ros/src/system/gazebo/catvehicle/matlab files/velocityProfiler.m b/ros/src/system/gazebo/catvehicle/matlab files/velocityProfiler.m deleted file mode 100644 index 23915f693df..00000000000 --- a/ros/src/system/gazebo/catvehicle/matlab files/velocityProfiler.m +++ /dev/null @@ -1,69 +0,0 @@ -%Matlab scripto to publish velocity on /catvehicle/cmd_vel topic and -%subscribe to catvehicle/speed topic - -%Developed by Rahul Kumar Bhadani - -%ROS_IP = IP Address of ROS Master -%roboname = name of the model -function velocityProfiler(ROS_IP, roboname, tire_angle) - - -%If number of argument is not two, flag message and exit. -if nargin < 2 - sprintf('Uage: velocityProfiler(192.168.0.32, catvehicle)'); - return; -end - -if nargin < 3 - tire_angle = 0.0; -end -rosshutdown; -close all; -modelname = strcat('/',roboname); -%Connect to ROS master -master_uri= strcat('http://',ROS_IP); -master_uri = strcat(master_uri,':11311'); -rosinit(master_uri); - -%get handle for /catvehicle/cmd_vel topic for publishing the data -velpub = rospublisher(strcat(modelname,'/cmd_vel'),rostype.geometry_msgs_Twist); - -%get handle for /catvehicle/vel topic for subscribing to the data -speedsub = rossubscriber(strcat(modelname,'/vel')); - -%Discretize timestamp -t = 0:0.01:150; -v1 = 3; -v2 = 6; -v3 = 0; - -%Velocity profile -input = v1.*(t<50) + v2.*(t>=50).*(t<100) + v3.*(t>= 100); - -%Velocity profile will be sine -%input = abs(2*sin(t)); - -%Variable to store output velocity -output = zeros(length(t),1); - -%handle for rosmessage object for velpub topic -velMsgs = rosmessage(velpub); -for i=1:length(t) - velMsgs.Linear.X = input(i); - velMsgs.Angular.Z = tire_angle; - %Publish on the topic /catvehicle/cmd_vel - send(velpub, velMsgs); - %Read from the topic /catvehicle/speed - speedata = receive(speedsub,10); - output(i) = speedata.Linear.X; -end - -%Plot the input and output velocity profile -[n, p] = size(output); -T = 1:n; -plot(T, input'); -hold on; -plot(T, output); -title('Original Data'); -legend('Input function', 'Output response'); -grid on; diff --git a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2.dae b/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2.dae deleted file mode 100644 index 47961d22988..00000000000 --- a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2.dae +++ /dev/null @@ -1,8870 +0,0 @@ - - - - - SketchUp 13.0.4124 - - 2013-07-29T07:45:51Z - 2013-07-29T07:45:51Z - - Z_UP - - - - - - 1.94289e-016 -1 0 47.37728 1 1.94289e-016 0 33.99154 -0 0 1 -7.819158 0 0 0 1 - - 1 0 0 0.3649486 0 -1 0 17.94522 -0 0 1 0 0 0 0 1 - - - - - - - - - - - - 1 0 0 0 0 -1 0 2.516006 -0 0 1 16.06713 0 0 0 1 - - - - - - - - - - - - - 1.94289e-016 -1 0 -202.1279 1 1.94289e-016 0 409.5009 -0 0 1 -38.70076 0 0 0 1 - - - - 1.94289e-016 -1 0 -297.753 1 1.94289e-016 0 445.6458 -0 0 1 -37.32736 0 0 0 1 - - - - 1.94289e-016 -1 0 -354.5011 1 1.94289e-016 0 409.5004 -0 0 1 -18.21459 0 0 0 1 - - - - -2.220446e-016 -1 0 -276.7707 -1 2.220446e-016 0 -439.3344 0 0 1 -30.70365 0 0 0 1 - - - - -2.220446e-016 -1 0 -257.944 -1 2.220446e-016 0 -435.0538 0 0 1 -26.78728 0 0 0 1 - - - - 1.94289e-016 -1 0 -196.4178 1 1.94289e-016 0 409.501 -0 0 1 -33.66773 0 0 0 1 - - - - 1.94289e-016 -1 0 -361.61 1 1.94289e-016 0 409.499 -0 0 1 -22.17064 0 0 0 1 - - - - 1.94289e-016 -1 0 -196.4178 1 1.94289e-016 0 409.501 -0 0 1 -33.66773 0 0 0 1 - - - - 1.94289e-016 -1 0 -203.0378 1 1.94289e-016 0 409.501 -0 0 1 -36.51307 0 0 0 1 - - - - 1.94289e-016 -1 0 -204.2705 1 1.94289e-016 0 409.2489 -0 0 1 -44.08922 0 0 0 1 - - - - 1.94289e-016 -1 0 -276.7707 1 1.94289e-016 0 440.9868 -0 0 1 -30.70365 0 0 0 1 - - - - 1.94289e-016 -1 0 -257.944 1 1.94289e-016 0 436.7062 -0 0 1 -26.78728 0 0 0 1 - - - - 1.94289e-016 -1 0 -297.753 1 1.94289e-016 0 373.3557 -0 0 1 -37.32736 0 0 0 1 - - - - 1.94289e-016 -1 0 -352.5913 1 1.94289e-016 0 409.5004 -0 0 1 -11.31236 0 0 0 1 - - - - 1.94289e-016 -1 0 -361.4751 1 1.94289e-016 0 409.5003 -0 0 1 -10.03368 0 0 0 1 - - - - 1.94289e-016 -1 0 -203.7646 1 1.94289e-016 0 409.5008 -0 0 1 -13.07739 0 0 0 1 - - - - 1.94289e-016 -1 0 -337.6961 1 1.94289e-016 0 409.5004 -0 0 1 -31.66469 0 0 0 1 - - - - 1.94289e-016 -1 0 -201.2903 1 1.94289e-016 0 412.0337 -0 0 1 -45.50504 0 0 0 1 - - - - 1.94289e-016 -1 0 -198.7845 1 1.94289e-016 0 429.5517 -0 0 1 -39.20166 0 0 0 1 - - - - 1.94289e-016 -1 0 -278.4926 1 1.94289e-016 0 410.7837 -0 0 1 -31.50618 0 0 0 1 - - - - 1.94289e-016 -1 0 -276.0804 1 1.94289e-016 0 409.5009 -0 0 1 -27.79183 0 0 0 1 - - - - 1.94289e-016 -1 0 -251.9373 1 1.94289e-016 0 409.5006 -0 0 1 -53.759 0 0 0 1 - - - - 1.94289e-016 -1 0 -196.7328 1 1.94289e-016 0 409.501 -0 0 1 -28.58899 0 0 0 1 - - - - 1.94289e-016 -1 0 -201.0698 1 1.94289e-016 0 409.5009 -0 0 1 -44.43829 0 0 0 1 - - - - 1.94289e-016 -1 0 -354.5011 1 1.94289e-016 0 409.5004 -0 0 1 -18.21459 0 0 0 1 - - - - 1.94289e-016 -1 0 -202.1279 1 1.94289e-016 0 409.5009 -0 0 1 -28.41277 0 0 0 1 - - - - 1.94289e-016 -1 0 -235.4794 1 1.94289e-016 0 381.6771 -0 0 1 -44.57892 0 0 0 1 - - - - 1.94289e-016 -1 0 -292.3184 1 1.94289e-016 0 381.0661 -0 0 1 -42.69098 0 0 0 1 - - - - 1.94289e-016 -1 0 -291.9231 1 1.94289e-016 0 408.4581 -0 0 1 -45.29719 0 0 0 1 - - - - 1.94289e-016 -1 0 -292.3184 1 1.94289e-016 0 436.6305 -0 0 1 -43.0461 0 0 0 1 - - - - 1.94289e-016 -1 0 -235.4794 1 1.94289e-016 0 437.3253 -0 0 1 -44.57892 0 0 0 1 - - - - 1.94289e-016 -1 0 -306.3436 1 1.94289e-016 0 442.9134 -0 0 1 -21.03356 0 0 0 1 - - - - 1.94289e-016 -1 0 -196.5811 1 1.94289e-016 0 409.501 -0 0 1 -23.52599 0 0 0 1 - - - - - - - - - - 0 0.04231452 0 0.2839991 9.126645 1.823922 0.1425252 9.168997 0.2007523 0.1425252 9.168997 0.2007523 0.2839991 9.126645 1.823922 0 0.04231452 0 0 0.04231452 0 0.1414364 0 1.623178 0.2839991 9.126645 1.823922 0.2839991 9.126645 1.823922 0.1414364 0 1.623178 0 0.04231452 0 - - - - - - - - - - 0.9960997 -0.0136379 -0.08717494 0.9960997 -0.0136379 -0.08717494 0.9960997 -0.0136379 -0.08717494 -0.9960997 0.0136379 0.08717494 -0.9960997 0.0136379 0.08717494 -0.9960997 0.0136379 0.08717494 0.9961017 -0.01364268 -0.08715144 0.9961017 -0.01364268 -0.08715144 0.9961017 -0.01364268 -0.08715144 -0.9961017 0.01364268 0.08715144 -0.9961017 0.01364268 0.08715144 -0.9961017 0.01364268 0.08715144 - - - - - - - - - - 0.965332 0.6196289 0.02490234 0.9462891 0.0234375 0.6362305 9.170089 0.2014689 9.129677 1.830842 0.04231055 -5.049925e-005 0.965332 0.6196289 0.9667969 0.9301758 0.02490234 0.9462891 9.129678 1.830838 0.001936941 1.629327 0.04231055 -5.050323e-005 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11

-
-
-
- - - - 0.2503578 2.516006 0 0.2503202 0 4.69327e-006 0 2.516006 1.550943 0 2.516006 1.550943 0.2503202 0 4.69327e-006 0.2503578 2.516006 0 0.2503202 0 4.69327e-006 0 0 1.55094 0 2.516006 1.550943 0 2.516006 1.550943 0 0 1.55094 0.2503202 0 4.69327e-006 - - - - - - - - - - 0.9872205 -1.443495e-005 0.1593601 0.9872205 -1.443495e-005 0.1593601 0.9872205 -1.443495e-005 0.1593601 -0.9872205 1.443495e-005 -0.1593601 -0.9872205 1.443495e-005 -0.1593601 -0.9872205 1.443495e-005 -0.1593601 0.9872242 -1.486113e-007 0.1593375 0.9872242 -1.486113e-007 0.1593375 0.9872242 -1.486113e-007 0.1593375 -0.9872242 1.486113e-007 -0.1593375 -0.9872242 1.486113e-007 -0.1593375 -0.9872242 1.486113e-007 -0.1593375 - - - - - - - - - - 0.6958008 0.06738281 0.9780273 0.06738281 0.6958008 0.4233398 2.516006 1.531128 3.660135e-006 -0.03988642 2.516009 -0.03989117 0.9780273 0.06738281 0.9780273 0.4233398 0.6958008 0.4233398 2.516006 1.531128 0 1.531126 3.768184e-008 -0.03988076 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11

-
-
-
- - - - -383.2387 -129.2302 41.86956 -378.2644 -130.4287 40.78638 -383.445 -128.8699 40.83091 -378.2644 -130.4287 40.78638 -383.4254 -128.7024 40.83091 -383.445 -128.8699 40.83091 -383.4254 -128.7024 40.83091 -383.2387 -129.2302 41.86956 -383.445 -128.8699 40.83091 -382.9127 -129.4592 44.85257 -378.1736 -130.3158 40.78639 -383.4254 -128.7024 40.83091 -383.2883 -129.0653 41.90201 -383.2387 -129.2302 41.86956 -383.2387 -129.2302 41.86956 -382.8905 -129.3125 44.85257 -382.9127 -129.4592 44.85257 -379.1683 -129.9099 44.83143 -376.2595 -135.9804 40.8187 -382.8905 -129.3125 44.85257 -382.3762 -129.6321 48.66614 -379.1683 -129.9099 44.83143 -382.9127 -129.4592 44.85257 -382.9465 -131.7731 44.85043 -379.1683 -129.9099 44.83143 -377.533 -131.5674 44.85922 -378.2644 -130.4287 40.78638 -378.2644 -130.4287 40.78638 -377.0779 -133.0302 44.85446 -376.2595 -135.9804 40.8187 -376.1318 -135.9419 40.8187 -382.3958 -129.7605 48.66613 -382.9465 -131.7731 44.85043 -379.9782 -134.3525 44.85821 -377.533 -131.5674 44.85922 -377.533 -131.5674 44.85922 -376.9894 -133.4002 44.94261 -376.4012 -138.0912 46.98351 -376.1318 -135.9419 40.8187 -376.2595 -135.9804 40.8187 -382.2383 -129.7177 49.68814 -382.4325 -132.0926 48.66401 -382.4325 -132.0926 48.66401 -379.9782 -134.3525 44.85821 -382.9465 -131.7731 44.85043 -377.0779 -133.0302 44.85446 -376.9894 -133.4002 44.94261 -376.4012 -138.0912 46.98351 -376.2734 -138.0689 46.99126 -382.2568 -129.8383 49.68813 -379.0581 -130.0723 48.6766 -382.4325 -132.0926 48.66401 -382.3958 -129.7605 48.66613 -380.0062 -134.8307 48.67446 -380.0062 -134.8307 48.67446 -376.9894 -133.4002 44.94261 -379.9782 -134.3525 44.85821 -376.9025 -134.3487 48.3222 -376.7369 -139.0495 50.79771 -381.9484 -129.4855 51.03191 -382.2568 -129.8383 49.68813 -379.0581 -130.0723 48.6766 -382.3958 -129.7605 48.66613 -380.0062 -134.8307 48.67446 -376.9025 -134.3487 48.3222 -376.7369 -139.0495 50.79771 -376.6089 -139.033 50.80824 -381.9424 -129.6085 51.03193 -381.9424 -129.6085 51.03193 -377.4539 -132.2042 48.68849 -380.0062 -134.8307 48.67446 -377.0064 -134.0583 48.66631 -376.9025 -134.3487 48.3222 -377.0064 -134.0583 48.66631 -376.9194 -138.8487 51.82809 -376.6089 -139.033 50.80824 -376.7369 -139.0495 50.79771 -381.2825 -129.8425 52.1701 -381.2771 -129.9585 52.16774 -379.0581 -130.0723 48.6766 -381.9424 -129.6085 51.03193 -379.0581 -130.0723 48.6766 -377.7451 -132.8202 52.31161 -377.4539 -132.2042 48.68849 -377.0064 -134.0583 48.66631 -376.9194 -138.8487 51.82809 -376.7714 -138.8194 51.83452 -381.2771 -129.9585 52.16774 -378.9832 -131.2109 52.3092 -377.4539 -132.2042 48.68849 -377.7451 -132.8202 52.31161 -377.0134 -138.1085 52.17462 -378.9832 -131.2109 52.3092 -376.7714 -138.8194 51.83452 -376.9194 -138.8487 51.82809 -376.8794 -138.0791 52.17289 -378.9299 -131.1095 52.31164 -381.2771 -129.9585 52.16774 -381.2825 -129.8425 52.1701 -378.9832 -131.2109 52.3092 -376.8794 -138.0791 52.17289 -377.0134 -138.1085 52.17462 -377.7451 -132.8202 52.31161 -377.0134 -138.1085 52.17462 -377.6743 -132.7542 52.31163 - - - - - - - - - - 0.2633665 0.9519692 0.1561816 0.1926073 0.9812008 0.01214498 0.2799437 0.9228535 0.264524 0.0006295186 -0.000545736 0.9999997 0.008274599 -0.001056107 0.9999652 0.008301717 -0.0009750307 0.9999651 0.9662329 -0.1134834 -0.2313343 0.9662329 -0.1134834 -0.2313343 0.9662329 -0.1134834 -0.2313343 0.1922675 0.9812403 -0.0141627 0.001335433 -0.001116079 0.9999985 0.9561154 0.2920522 -0.02342949 0.9524175 0.2984767 -0.06174506 0.9519787 0.2990798 -0.06548191 0.9816797 -0.1490364 -0.1187144 0.9801174 -0.1487992 -0.1312583 0.985419 -0.1056276 -0.1333876 0.1183298 0.9878984 -0.1002732 -0.001602283 0.005162097 0.9999854 0.9469328 0.3047725 -0.1021374 0.9781362 -0.1496216 -0.1444403 -0.001420513 0.004876247 0.9999871 0.005524232 -0.00100567 0.9999842 0.003837245 0.002415272 0.9999897 0.7096141 0.7012405 0.06862655 0.7096141 0.7012405 0.06862655 0.7096141 0.7012405 0.06862655 0.9422041 0.3287579 -0.06457292 0.9554133 0.292723 -0.03871131 0.9680354 0.2506578 0.008841238 -0.001557575 0.005177205 0.9999854 0.9845052 -0.1035746 -0.1414986 0.9907065 -0.01474084 -0.1352157 -0.006202231 0.01632663 0.9998475 -0.004727239 0.003789669 0.9999816 0.9510615 0.2962159 -0.08796676 0.9814257 0.1879724 0.03834125 -0.1816963 0.9456571 0.2696649 -0.2730377 0.912029 0.3060287 -0.2742899 0.911709 0.3058624 0.9749171 -0.1493588 -0.1650111 0.9907474 -0.01547691 -0.1348333 0.7027408 0.7107643 0.03113773 0.7018126 0.7117311 0.02996502 0.6557608 0.7545494 -0.02515889 -0.04123278 0.09326694 0.994787 -0.09420385 0.2093955 0.9732827 0.9898677 0.1195066 0.07668208 -0.1807302 0.9450642 0.2723787 0.9757914 -0.1436904 -0.1648761 0.004610801 -0.0001811374 -0.9999894 0.003630769 0.0001707164 -0.9999934 0.003218726 0.0008589331 -0.9999945 0.7453442 0.6608098 0.08827527 -0.206604 0.9577409 0.2001178 -0.2246589 0.9566916 0.1851202 -0.3045182 0.9453884 0.1162298 0.9867167 0.1230107 0.1061059 -0.1436675 0.9624224 0.2304403 0.9318552 0.03927625 -0.3606984 0.05238073 0.9965164 -0.06489429 0.05157598 0.9963914 -0.06741014 0.09263742 0.9937012 0.06305692 0.002089273 0.00247399 -0.9999948 -0.1175784 0.955326 0.2711596 0.9840855 0.110273 0.1393401 -0.1428631 0.9625131 0.2305616 0.9266087 0.0453932 -0.3732771 0.01749493 0.984852 -0.172512 0.001982268 0.003412829 -0.9999922 -0.1877021 0.7219948 -0.6659515 -0.1877021 0.7219948 -0.6659515 -0.1877021 0.7219948 -0.6659515 0.9565257 0.1848027 0.2256247 -0.1732767 0.9585803 -0.2260509 -0.1144723 0.970896 -0.2103735 -0.1079326 0.9720298 -0.2085874 0.8684468 0.04988937 -0.4932658 0.3608776 0.9109871 0.1996742 0.3916753 0.8934591 0.2198208 0.2661547 0.9539913 0.138066 0.7854389 0.5960239 0.1668567 0.7834866 0.5979758 0.1690374 0.787746 0.5936952 0.164263 -0.005459426 0.01064398 -0.9999284 0.9869653 0.1007481 0.125496 -0.1789807 0.9571802 -0.2275344 0.8684638 0.05027092 -0.4931972 0.4505829 0.8544797 0.2585335 0.9716906 0.1696013 0.1644771 0.9857541 0.1337496 0.1019802 0.9888225 0.1020839 0.1086691 0.780616 0.6008151 0.1722206 -0.04139651 0.4103276 -0.9109981 -0.04799485 0.4104924 -0.9106001 -0.09461559 0.4111456 -0.9066461 0.04187592 0.002141682 -0.9991205 0.07244993 0.02308203 -0.9971049 0.07275416 0.02370702 -0.9970681 0.03648998 0.004854116 -0.9993222 -0.0180373 0.02339621 -0.9995635 -0.01801043 0.02340064 -0.9995639 -0.0121192 0.01393243 -0.9998295 -0.1017656 0.4111661 -0.9058621 -0.007553083 0.008534471 -0.9999351 - - - - - - - - - - 0.6835937 0.07617188 0.4296875 0.02685547 0.6835938 0.03125 0.7490234 0.953125 0.6782227 0.9550781 0.6782227 0.953125 0.8393555 0.96875 0.824707 0.9628906 0.8388672 0.9663086 0.6679688 0.2133789 0.4296875 0.02685547 0.6835938 0.07617188 0.75 0.9550781 0.6782227 0.9550781 0.7490234 0.953125 0.8393555 0.96875 0.824707 0.965332 0.824707 0.9628906 0.824707 0.9628906 0.7856445 0.9663086 0.7851563 0.9643555 0.6679688 0.2133789 0.487793 0.2133789 0.699707 0.9770508 0.6220703 0.9663086 0.6235352 0.9648438 0.824707 0.965332 0.7856445 0.9663086 0.824707 0.9628906 0.7856445 0.9663086 0.7348633 0.9672852 0.7851562 0.9643555 0.4516602 0.965332 0.2919922 0.9804688 0.2924805 0.8833008 0.487793 0.2133789 0.4282227 0.2133789 0.4296875 0.02685547 0.4296875 0.02685547 0.3051758 0.2138672 0.1655273 0.02734375 0.699707 0.9790039 0.6220703 0.9663086 0.699707 0.9770508 0.7851562 0.9643555 0.7348633 0.9672852 0.7348633 0.9658203 0.4638672 0.7983398 0.4560547 0.9594727 0.3671875 0.8007813 0.4516602 0.965332 0.2924805 0.8833008 0.418457 0.7900391 0.5214844 0.8969727 0.4516602 0.965332 0.418457 0.7900391 0.4296875 0.02685547 0.4282227 0.2133789 0.3051758 0.2138672 0.3051758 0.2138672 0.2875977 0.2182617 0.1655273 0.02734375 0.7851563 0.9765625 0.699707 0.9790039 0.699707 0.9770508 0.7348633 0.9672852 0.7211914 0.9677734 0.7348633 0.9658203 0.4560547 0.9594727 0.3583984 0.9619141 0.3671875 0.8007813 0.3583984 0.9619141 0.2036133 0.8027344 0.3671875 0.8007813 0.5390625 0.8349609 0.5214844 0.8969727 0.418457 0.7900391 0.5405273 0.8188477 0.5390625 0.8349609 0.418457 0.7900391 0.2875977 0.2182617 0.06347656 0.2983398 0.1655273 0.02734375 0.7851562 0.9785156 0.699707 0.9790039 0.7851562 0.9765625 0.7211914 0.9677734 0.7211914 0.9658203 0.7348633 0.9658203 0.4516602 0.965332 0.2924805 0.8833008 0.2919922 0.9804688 0.3583984 0.9619141 0.206543 0.9633789 0.2036133 0.8027344 0.206543 0.9633789 0.07568359 0.8017578 0.2036133 0.8027344 0.2875977 0.2182617 0.2446289 0.3544922 0.06347656 0.2983398 0.8364258 0.9741211 0.7851563 0.9785156 0.7851563 0.9765625 0.7041016 0.9726563 0.7211914 0.9658203 0.7211914 0.9677734 0.6176758 0.418457 0.4140625 0.3710938 0.6337891 0.3706055 0.4516602 0.965332 0.418457 0.7900391 0.2924805 0.8833008 0.206543 0.9633789 0.07568359 0.9482422 0.07568359 0.8017578 0.2446289 0.3544922 0.01953125 0.4604492 0.06347656 0.2983398 0.8364258 0.9755859 0.7851563 0.9785156 0.8364258 0.9741211 0.7041016 0.9726563 0.7036133 0.9711914 0.7211914 0.9658203 0.5981445 0.4711914 0.4140625 0.3710937 0.6176758 0.418457 0.5214844 0.8969727 0.418457 0.7900391 0.4516602 0.965332 0.5390625 0.8349609 0.5405273 0.8188477 0.2597656 0.3701172 0.01953125 0.4604492 0.2446289 0.3544922 0.8505859 0.9726563 0.8364258 0.9755859 0.8364258 0.9741211 0.7041016 0.9726562 0.6860352 0.9697266 0.7036133 0.9711914 0.5571289 0.5249023 0.4140625 0.3710938 0.5981445 0.4711914 0.4140625 0.3710937 0.3588867 0.5239258 0.3378906 0.3710937 0.5390625 0.8349609 0.418457 0.7900391 0.5214844 0.8969727 0.2597656 0.3701172 0.02734375 0.5078125 0.01953125 0.4604492 0.8505859 0.9746094 0.8364258 0.9755859 0.8505859 0.9726563 0.7036133 0.9711914 0.6860352 0.9697266 0.6860352 0.9682617 0.4213867 0.5244141 0.4140625 0.3710938 0.5571289 0.5249023 0.3378906 0.3710938 0.3588867 0.5239258 0.0546875 0.5234375 0.4140625 0.3710938 0.3588867 0.5239258 0.3378906 0.3710937 0.0546875 0.5234375 0.2597656 0.3701172 0.2597656 0.3701172 0.0546875 0.5234375 0.02734375 0.5078125 0.8505859 0.9746094 0.8505859 0.9726562 0.8613281 0.9755859 0.6542969 0.9550781 0.6860352 0.9682617 0.6860352 0.9697266 0.6542969 0.9550781 0.6552734 0.9536133 0.6860352 0.9682617 0.8613281 0.9755859 0.8613281 0.9736328 0.9306641 0.9799805 0.9306641 0.9799805 0.9550781 0.96875 0.9560547 0.9697266 0.8613281 0.9755859 0.8505859 0.9726563 0.8613281 0.9736328 0.9316406 0.980957 0.9306641 0.9799805 0.9560547 0.9697266 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -434.1119 -129.2302 41.86956 -433.9056 -128.87 40.83092 -439.0862 -130.4287 40.78637 -433.9056 -128.87 40.83092 -434.1119 -129.2302 41.86956 -434.0623 -129.0653 41.90201 -433.9056 -128.87 40.83092 -433.9253 -128.7025 40.83091 -439.0862 -130.4287 40.78637 -434.4379 -129.4592 44.85257 -434.4602 -129.3125 44.85257 -433.9253 -128.7025 40.83091 -433.9056 -128.87 40.83092 -434.0623 -129.0653 41.90201 -439.1769 -130.3158 40.78639 -434.1119 -129.2302 41.86956 -434.4379 -129.4592 44.85257 -434.4602 -129.3125 44.85257 -438.1822 -129.9099 44.83143 -441.091 -135.9804 40.8187 -434.9744 -129.6321 48.66614 -434.4379 -129.4592 44.85257 -438.1822 -129.9099 44.83143 -437.3723 -134.3525 44.85821 -438.1822 -129.9099 44.83143 -439.0862 -130.4287 40.78637 -439.8175 -131.5674 44.85922 -439.0862 -130.4287 40.78637 -441.091 -135.9804 40.8187 -440.2727 -133.0303 44.85446 -441.2187 -135.9419 40.8187 -434.9548 -129.7605 48.66613 -439.8175 -131.5674 44.85922 -434.404 -131.7731 44.85044 -439.8175 -131.5674 44.85922 -440.3611 -133.4002 44.94261 -440.9493 -138.0912 46.98352 -441.091 -135.9804 40.8187 -441.2187 -135.9419 40.8187 -434.404 -131.7731 44.85044 -435.1122 -129.7177 49.68814 -440.2727 -133.0303 44.85446 -437.3444 -134.8307 48.67446 -434.404 -131.7731 44.85044 -437.3723 -134.3525 44.85821 -440.3611 -133.4002 44.94261 -440.9493 -138.0912 46.98352 -441.0772 -138.0689 46.99125 -434.918 -132.0926 48.66401 -435.0938 -129.8383 49.68813 -437.3444 -134.8307 48.67446 -437.3723 -134.3525 44.85821 -440.3611 -133.4002 44.94261 -434.918 -132.0926 48.66401 -440.4481 -134.3487 48.3222 -440.6137 -139.0495 50.7977 -434.918 -132.0926 48.66401 -438.2925 -130.0723 48.6766 -434.9548 -129.7605 48.66613 -435.0938 -129.8383 49.68813 -434.9548 -129.7605 48.66613 -438.2925 -130.0723 48.6766 -435.4022 -129.4855 51.03191 -440.4481 -134.3487 48.3222 -437.3444 -134.8307 48.67446 -440.6137 -139.0495 50.7977 -440.7416 -139.033 50.80824 -435.4082 -129.6085 51.03193 -435.4082 -129.6085 51.03193 -437.3444 -134.8307 48.67446 -440.4481 -134.3487 48.3222 -440.3441 -134.0584 48.66631 -439.8967 -132.2042 48.68849 -440.3441 -134.0584 48.66631 -440.431 -138.8487 51.82809 -440.6137 -139.0495 50.7977 -440.7416 -139.033 50.80824 -436.0735 -129.9585 52.16775 -435.4082 -129.6085 51.03193 -438.2925 -130.0723 48.6766 -436.0681 -129.8425 52.1701 -440.3441 -134.0584 48.66631 -438.2925 -130.0723 48.6766 -439.8967 -132.2042 48.68849 -438.3673 -131.2109 52.3092 -440.431 -138.8487 51.82809 -440.5791 -138.8195 51.83452 -438.3673 -131.2109 52.3092 -436.0735 -129.9585 52.16775 -439.8967 -132.2042 48.68849 -439.6055 -132.8202 52.31161 -440.3371 -138.1085 52.17462 -440.431 -138.8487 51.82809 -440.5791 -138.8195 51.83452 -436.0735 -129.9585 52.16775 -438.3673 -131.2109 52.3092 -438.4207 -131.1095 52.31164 -436.0681 -129.8425 52.1701 -440.3371 -138.1085 52.17462 -439.6055 -132.8202 52.31161 -439.6055 -132.8202 52.31161 -439.6762 -132.7542 52.31163 -440.4711 -138.0791 52.17289 -440.3371 -138.1085 52.17462 -440.4711 -138.0791 52.17289 - - - - - - - - - - -0.2633651 0.9519693 0.1561832 -0.279943 0.9228521 0.2645296 -0.1926084 0.9812005 0.01214963 -0.949611 0.3020117 -0.08383251 -0.9482787 0.3034519 -0.09319034 -0.94829 0.3034402 -0.09311335 -0.008321531 -0.0009214282 0.999965 -0.008293696 -0.00100465 0.9999651 -0.0005829686 -0.000590506 0.9999997 -0.192268 0.9812403 -0.01415941 -0.9469193 0.3048073 -0.1021587 -0.9796747 -0.1150842 -0.1642958 -0.9796747 -0.1150842 -0.1642958 -0.9796747 -0.1150842 -0.1642958 -0.001290917 -0.001163022 0.9999985 -0.9816797 -0.1490173 -0.1187385 -0.9854187 -0.1056201 -0.1333953 -0.9801187 -0.1487803 -0.1312701 -0.1183323 0.9878988 -0.1002667 0.001603343 0.005161784 0.9999854 -0.9781402 -0.1496436 -0.1443901 -0.002596347 0.002709828 0.999993 -0.0002465229 0.005982814 0.9999821 0.005688608 0.01511515 0.9998696 -0.7096096 0.7012442 0.06863477 -0.7096096 0.7012442 0.06863477 -0.7096096 0.7012442 0.06863477 -0.9422067 0.3287519 -0.06456564 -0.9680362 0.2506542 0.008850407 -0.9554227 0.2926956 -0.03868699 0.001557727 0.005177198 0.9999854 -0.9845094 -0.1035834 -0.1414626 0.004727351 0.003789716 0.9999816 0.003375654 -0.0008714565 0.9999939 -0.9510642 0.2962091 -0.08796018 -0.9814312 0.1879387 0.03836369 0.1817403 0.9456517 0.269654 0.2743151 0.9117021 0.3058602 0.2730627 0.9120222 0.3060265 -0.9907064 -0.01476272 -0.1352141 -0.9749982 -0.1487649 -0.1650681 0.04123487 0.09327152 0.9947865 -0.7026872 0.7109413 0.02816379 -0.7017819 0.7117796 0.02953018 -0.6525766 0.7512386 0.09891575 0.09421172 0.2094128 0.9732782 -0.9898696 0.1194973 0.07667135 0.180773 0.9450561 0.2723787 -0.9907478 -0.0155087 -0.1348266 -0.9758712 -0.1430977 -0.1649194 0.2066143 0.9577397 0.2001132 0.3045271 0.9453858 0.1162277 0.2246692 0.9566901 0.1851158 -0.747749 0.6624365 -0.04526867 -0.9867131 0.1230191 0.1061296 0.1435902 0.9624312 0.230452 -0.003630756 0.0001706715 -0.9999934 -0.004610794 -0.000181165 -0.9999894 -0.003218762 0.000858822 -0.9999945 -0.05238565 0.9965172 -0.06487891 -0.09264919 0.9936977 0.06309496 -0.05158187 0.9963923 -0.06739173 -0.9318604 0.03900705 -0.3607142 0.1175909 0.9553266 0.2711521 -0.002089228 0.002473993 -0.9999948 -0.9840783 0.1102866 0.1393797 0.1427828 0.9625221 0.2305737 -0.01749507 0.9848521 -0.1725115 -0.9266244 0.04509655 -0.3732741 0.1877114 0.7220222 -0.6659192 0.1877114 0.7220222 -0.6659192 0.1877114 0.7220222 -0.6659192 -0.001982316 0.003412758 -0.9999922 -0.9468958 0.1872024 0.2614261 0.1731217 0.9586124 -0.2260335 0.1078094 0.9720462 -0.2085747 0.1143468 0.9709136 -0.2103606 -0.3608752 0.9109888 0.1996711 -0.2661443 0.9539956 0.1380565 -0.3916762 0.8934589 0.2198202 -0.8684206 0.04957819 -0.4933433 0.005459491 0.01064397 -0.9999284 -0.7869932 0.5931643 0.1696992 -0.7852992 0.5958144 0.1682566 -0.7836349 0.598397 0.1668452 -0.9853466 0.1192356 0.1219625 0.1788215 0.9572143 -0.2275163 -0.4505886 0.8544757 0.2585368 -0.8684376 0.04995827 -0.493275 -0.9726622 0.1610908 0.1672659 -0.7815739 0.6015667 0.1651051 0.0935293 0.4035494 -0.9101649 0.04324269 0.4191084 -0.9069058 0.04902966 0.4173791 -0.9074088 -0.0723955 0.02298074 -0.9971112 -0.03564588 0.004960846 -0.9993522 -0.04174714 0.002597705 -0.9991248 -0.07269897 0.02360417 -0.9970746 -0.992185 0.1094153 0.05997644 -0.9857563 0.133735 0.1019779 0.01206152 0.01339633 -0.9998375 0.006696247 0.008272469 -0.9999434 0.09982242 0.4015173 -0.9103952 0.01801682 0.02339984 -0.9995638 0.01804365 0.02339542 -0.9995634 - - - - - - - - - - 0.6835938 0.07617188 0.6835938 0.03125 0.4296875 0.02685547 0.8388672 0.9663086 0.824707 0.9628906 0.824707 0.965332 0.6782227 0.953125 0.6782227 0.9550781 0.7490234 0.953125 0.6679687 0.2133789 0.6835937 0.07617187 0.4296875 0.02685547 0.824707 0.965332 0.824707 0.9628906 0.7856445 0.9663086 0.8393555 0.96875 0.8388672 0.9663086 0.824707 0.965332 0.6782227 0.9550781 0.75 0.9550781 0.7490234 0.953125 0.824707 0.9628906 0.7851563 0.9643555 0.7856445 0.9663086 0.6679688 0.2133789 0.4296875 0.02685547 0.487793 0.2133789 0.6235352 0.9648437 0.6220703 0.9663086 0.699707 0.9770508 0.7856445 0.9663086 0.7851563 0.9643555 0.7348633 0.9672852 0.2919922 0.9804687 0.4516602 0.965332 0.418457 0.7900391 0.487793 0.2133789 0.4296875 0.02685547 0.4282227 0.2133789 0.4296875 0.02685547 0.1655273 0.02734375 0.3051758 0.2138672 0.6220703 0.9663086 0.699707 0.9790039 0.699707 0.9770508 0.7851563 0.9643555 0.7348633 0.9658203 0.7348633 0.9672852 0.418457 0.7900391 0.4516602 0.965332 0.5214844 0.8969727 0.2924805 0.8833008 0.2919922 0.9804687 0.418457 0.7900391 0.4296875 0.02685547 0.3051758 0.2138672 0.4282227 0.2133789 0.3051758 0.2138672 0.1655273 0.02734375 0.2875977 0.2182617 0.7851562 0.9765625 0.699707 0.9770508 0.699707 0.9790039 0.4638672 0.7983398 0.3671875 0.8007812 0.4560547 0.9594727 0.7348633 0.9672852 0.7348633 0.9658203 0.7211914 0.9677734 0.418457 0.7900391 0.5214844 0.8969727 0.5390625 0.8349609 0.206543 0.9633789 0.3671875 0.8007813 0.2036133 0.8027344 0.418457 0.7900391 0.5390625 0.8349609 0.5405273 0.8188477 0.2875977 0.2182617 0.1655273 0.02734375 0.06347656 0.2983398 0.7851562 0.9785156 0.7851562 0.9765625 0.699707 0.9790039 0.4560547 0.9594727 0.3671875 0.8007812 0.3583984 0.9619141 0.7211914 0.9677734 0.7348633 0.9658203 0.7211914 0.9658203 0.206543 0.9633789 0.2036133 0.8027344 0.07568359 0.8017578 0.3671875 0.8007812 0.206543 0.9633789 0.3583984 0.9619141 0.2875977 0.2182617 0.06347656 0.2983398 0.2446289 0.3544922 0.8364258 0.9741211 0.7851563 0.9765625 0.7851563 0.9785156 0.2924805 0.8833008 0.4516602 0.965332 0.2919922 0.9804687 0.6176758 0.418457 0.6337891 0.3706055 0.4140625 0.3710938 0.7041016 0.9726562 0.7211914 0.9677734 0.7211914 0.9658203 0.206543 0.9633789 0.07568359 0.8017578 0.07568359 0.9482422 0.2924805 0.8833008 0.418457 0.7900391 0.4516602 0.965332 0.2446289 0.3544922 0.06347656 0.2983398 0.01953125 0.4604492 0.8364258 0.9755859 0.8364258 0.9741211 0.7851563 0.9785156 0.5981445 0.4711914 0.6176758 0.418457 0.4140625 0.3710937 0.7041016 0.9726563 0.7211914 0.9658203 0.7036133 0.9711914 0.418457 0.7900391 0.5405273 0.8188477 0.5390625 0.8349609 0.418457 0.7900391 0.5214844 0.8969727 0.4516602 0.965332 0.2597656 0.3701172 0.2446289 0.3544922 0.01953125 0.4604492 0.8505859 0.9726562 0.8364258 0.9741211 0.8364258 0.9755859 0.5571289 0.5249023 0.5981445 0.4711914 0.4140625 0.3710937 0.7041016 0.9726562 0.7036133 0.9711914 0.6860352 0.9697266 0.418457 0.7900391 0.5390625 0.8349609 0.5214844 0.8969727 0.4140625 0.3710937 0.3378906 0.3710937 0.4213867 0.5244141 0.2597656 0.3701172 0.01953125 0.4604492 0.02734375 0.5078125 0.8505859 0.9746094 0.8505859 0.9726562 0.8364258 0.9755859 0.4213867 0.5244141 0.5571289 0.5249023 0.4140625 0.3710937 0.7036133 0.9711914 0.6860352 0.9682617 0.6860352 0.9697266 0.3378906 0.3710937 0.2597656 0.3701172 0.02734375 0.5078125 0.4213867 0.5244141 0.3378906 0.3710938 0.3588867 0.5239258 0.8613281 0.9736328 0.8505859 0.9726563 0.8505859 0.9746094 0.6860352 0.9682617 0.6552734 0.9536133 0.6542969 0.9550781 0.6860352 0.9697266 0.6860352 0.9682617 0.6542969 0.9550781 0.3378906 0.3710937 0.02734375 0.5078125 0.0546875 0.5234375 0.3378906 0.3710937 0.0546875 0.5234375 0.3588867 0.5239258 0.9550781 0.96875 0.9306641 0.9799805 0.9316406 0.980957 0.8613281 0.9736328 0.8505859 0.9746094 0.8613281 0.9755859 0.9550781 0.96875 0.9316406 0.980957 0.9560547 0.9697266 0.9306641 0.9799805 0.8613281 0.9736328 0.8613281 0.9755859 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -414.3618 -138.0904 72.77136 -415.8375 -136.6864 71.03263 -415.2954 -137.809 72.2099 -408.6753 -136.2908 71.14142 -408.6753 -137.9573 72.88764 -402.9887 -138.0904 72.77136 -401.513 -136.6864 71.03263 -402.0551 -137.809 72.2099 - - - - - - - - - - -0.0799413 0.7347546 0.673606 -0.09248353 0.7348684 0.6718744 -0.2422763 0.6440062 0.7256433 9.077142e-007 0.7315467 0.6817913 1.010463e-006 0.7234388 0.6903885 0.07993598 0.7347583 0.6736026 0.09247549 0.7348736 0.6718698 0.242246 0.6440305 0.7256319 - - - - - - - - - - 0.9814453 0.7558594 0.8671875 0.8276367 0.9428711 0.8017578 0.9814453 0.7558594 0.8671875 0.4204102 0.8671875 0.8276367 0.9814453 0.4213867 0.9814453 0.7558594 0.9814453 0.4213867 0.9819336 0.09423828 0.8671875 0.4204102 0.9819336 0.09423828 0.8676758 0.02099609 0.8671875 0.4204102 0.8676758 0.02099609 0.9819336 0.09423828 0.9467773 0.04833984 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 3 4 1 5 4 6 3 4 0 7 4 8 5 9 3 10 5 11 6 12 3 13 6 14 5 15 7 16

-
-
-
- - - - -439.6055 -132.8202 52.31161 -440.4711 -138.0791 52.17289 -439.6762 -132.7542 52.31163 - - - - - - - - - - 0.01206152 0.01339633 -0.9998375 0.01804365 0.02339542 -0.9995634 0.006696247 0.008272469 -0.9999434 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -376.8794 -138.0791 52.17289 -377.7451 -132.8202 52.31161 -377.6743 -132.7542 52.31163 - - - - - - - - - - -0.0180373 0.02339621 -0.9995635 -0.0121192 0.01393243 -0.9998295 -0.007553083 0.008534471 -0.9999351 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -478.0058 -326.7472 57.2316 -477.2828 -326.9775 52.57357 -484.0858 -323.7723 56.65743 -484.4971 -323.3159 54.11931 -479.6987 -325.6825 50.94875 -484.6471 -323.2419 52.13724 -484.0877 -323.4296 51.48371 - - - - - - - - - - 0.4375996 0.8988632 0.02348589 0.4494328 0.8926332 0.03487162 0.4568112 0.8872126 0.06463258 0.4561099 0.8887405 0.04587025 0.4558735 0.8895412 0.02993071 0.4497619 0.8922342 0.04040296 0.465858 0.8723526 0.1482473 - - - - - - - - - - 0.6264648 0.8349609 0.6264648 0.8056641 0.5961914 0.8349609 0.5961914 0.8349609 0.6264648 0.8056641 0.5961914 0.8217773 0.5961914 0.8217773 0.6264648 0.8056641 0.6186523 0.7900391 0.5961914 0.8217773 0.6186523 0.7900391 0.5961914 0.8027344 0.5961914 0.8027344 0.5991211 0.7900391 - - - - - - - - - - - - - - -

0 0 1 1 2 2 2 3 1 4 3 5 3 6 1 7 4 8 3 9 4 10 5 11 5 12 4 10 6 13

-
-
-
- - - - -380.4594 -437.6809 18.79302 -380.0804 -437.9118 19.72119 -380.7154 -439.2507 18.97087 -380.0128 -437.8151 19.98072 -380.7154 -439.2507 18.97087 -380.0804 -437.9118 19.72119 -379.6237 -438.4066 19.66319 -380.0804 -437.9118 19.72119 -380.7154 -439.2507 18.97087 -378.4512 -436.0925 19.99762 -380.0128 -437.8151 19.98072 -380.0804 -437.9118 19.72119 -380.0664 -438.388 21.25714 -378.4512 -436.0925 19.99762 -380.0804 -437.9118 19.72119 -379.6237 -438.4066 19.66319 -379.6237 -438.4066 19.66319 -380.7154 -439.2507 18.97087 -381.1058 -439.9647 18.03268 -378.4889 -436.0615 20.22887 -380.9418 -436.8889 19.1288 -380.7154 -439.2507 18.97087 -380.0664 -438.388 21.25714 -379.7335 -437.192 21.25714 -377.5337 -434.8166 20.14117 -382.5248 -440.2909 17.74838 -379.7335 -437.192 21.25714 -377.5337 -434.8166 20.14117 -380.7154 -439.2507 18.97087 -380.9418 -436.8889 19.1288 -382.6141 -437.6826 18.02311 -380.3716 -436.1098 21.25714 -380.4365 -438.1066 23.14239 -377.3382 -434.7912 19.9785 -377.5337 -434.8166 20.14117 -379.6237 -438.4066 19.66319 -382.5248 -440.2909 17.74838 -381.1058 -439.9647 18.03268 -382.5248 -440.2909 17.74838 -383.8719 -441.6371 17.17945 -378.7571 -436.1533 21.4165 -377.6759 -434.9388 20.37319 -383.6407 -434.9312 21.25714 -382.6141 -437.6826 18.02311 -380.9418 -436.8889 19.1288 -383.6407 -434.9312 21.25714 -380.9418 -436.8889 19.1288 -380.3716 -436.1098 21.25714 -380.3716 -436.1098 21.25714 -380.0664 -438.388 21.25714 -380.4365 -438.1066 23.14239 -380.1376 -436.9614 23.25167 -377.6106 -433.1427 23.87429 -377.5337 -434.8166 20.14117 -377.3382 -434.7912 19.9785 -382.5248 -440.2909 17.74838 -382.6141 -437.6826 18.02311 -384.9491 -438.2532 17.93277 -385.0384 -440.9113 17.65802 -378.3795 -434.5723 20.12385 -378.7571 -436.1533 21.4165 -378.4889 -436.0615 20.22887 -379.1965 -436.005 23.53948 -377.6759 -434.9388 20.37319 -378.3795 -434.5723 20.12385 -378.4889 -436.0615 20.22887 -377.9032 -433.2894 23.87428 -384.9491 -438.2532 17.93277 -380.7142 -435.8036 22.97259 -380.7142 -435.8036 22.97259 -380.1376 -436.9614 23.25167 -380.1376 -436.9614 23.25167 -381.3692 -437.1854 24.75409 -380.4365 -438.1066 23.14239 -377.9032 -433.2894 23.87428 -385.0384 -440.9113 17.65802 -386.0859 -442.1391 16.96977 -378.8002 -433.1398 23.71046 -379.1965 -436.005 23.53948 -378.0269 -433.5064 23.86051 -378.3795 -434.5723 20.12385 -377.6759 -434.9388 20.37319 -378.0269 -433.5064 23.86051 -386.8145 -438.5733 18.97499 -381.9767 -436.2481 24.41241 -383.6407 -434.9312 21.25714 -380.7142 -435.8036 22.97259 -380.7142 -435.8036 22.97259 -380.4365 -438.1066 23.14239 -381.8105 -438.4664 24.68715 -381.3692 -437.1854 24.75409 -381.8105 -438.4664 24.68715 -377.8607 -433.432 24.71469 -377.9032 -433.2894 23.87428 -377.6106 -433.1427 23.87429 -384.9491 -438.2532 17.93277 -386.8145 -438.5733 18.97499 -385.0384 -440.9113 17.65802 -383.8719 -441.6371 17.17945 -386.0859 -442.1391 16.96977 -386.1018 -442.636 16.91395 -387.3104 -439.664 18.62911 -378.8002 -433.1398 23.71046 -378.9257 -433.3143 24.24758 -378.1002 -433.4897 24.545 -387.3454 -438.586 21.25714 -386.8145 -438.5733 18.97499 -383.6407 -434.9312 21.25714 -381.9767 -436.2481 24.41241 -385.7939 -437.2077 24.41242 -379.4434 -435.9168 24.69531 -381.5957 -437.2544 24.97203 -378.1002 -433.4897 24.545 -387.058 -441.2591 18.80519 -389.8603 -444.0493 16.74968 -385.0384 -440.9113 17.65802 -387.058 -441.2591 18.80519 -387.3104 -439.664 18.62911 -389.3901 -442.7422 16.97882 -378.1522 -433.6808 24.39762 -378.8002 -433.1398 23.71046 -378.0269 -433.5064 23.86051 -378.9257 -433.3143 24.24758 -379.4434 -435.9168 24.69531 -378.1522 -433.6808 24.39762 -387.0745 -438.1258 22.94776 -386.8145 -438.5733 18.97499 -387.3454 -438.586 21.25714 -387.6505 -441.273 21.25714 -381.8105 -438.4664 24.68715 -385.96 -439.7747 24.68715 -381.9767 -436.2481 24.41241 -385.7939 -437.2077 24.41242 -385.7939 -437.2077 24.41242 -379.4859 -435.8632 24.92308 -381.5957 -437.2544 24.97203 -381.5957 -437.2544 24.97203 -385.96 -439.7747 24.68715 -381.8105 -438.4664 24.68715 -378.1968 -433.9985 25.08064 -378.1002 -433.4897 24.545 -377.8607 -433.432 24.71469 -387.058 -441.2591 18.80519 -389.3901 -442.7422 16.97882 -387.3104 -439.664 18.62911 -387.058 -441.2591 18.80519 -387.9669 -439.679 21.25713 -385.0384 -440.9113 17.65802 -387.3104 -439.664 18.62911 -385.0923 -439.2872 17.41012 -387.3104 -439.664 18.62911 -387.9669 -439.679 21.25713 -389.3901 -442.7422 16.97882 -378.1522 -433.6808 24.39762 -378.3812 -433.9958 24.66088 -378.9257 -433.3143 24.24758 -378.9257 -433.3143 24.24758 -379.1546 -433.6293 24.51083 -379.4434 -435.9168 24.69531 -378.4109 -433.896 24.88519 -387.0745 -438.1258 22.94776 -387.6505 -441.273 21.25714 -387.3454 -438.586 21.25714 -385.7939 -437.2077 24.41242 -385.96 -439.7747 24.68715 -387.3522 -440.7727 23.11757 -387.0745 -438.1258 22.94776 -378.3812 -433.9958 24.66088 -379.4859 -435.8632 24.92308 -379.4434 -435.9168 24.69531 -379.4859 -435.8632 24.92308 -380.8274 -437.5464 25.15752 -381.5957 -437.2544 24.97203 -386.1324 -438.0563 24.97204 -378.4109 -433.896 24.88519 -387.6505 -441.273 21.25714 -389.3901 -442.7422 16.97882 -389.7561 -443.2933 20.05331 -389.8603 -444.0493 16.74968 -387.6402 -439.1372 23.29363 -387.9669 -439.679 21.25713 -379.1546 -433.6293 24.51083 -378.3812 -433.9958 24.66088 -379.4434 -435.9168 24.69531 -379.1546 -433.6293 24.51083 -387.3522 -440.7727 23.11757 -385.96 -439.7747 24.68715 -386.1324 -438.0563 24.97204 -387.3522 -440.7727 23.11757 -379.2744 -436.1199 25.14563 -381.2605 -437.8547 25.16084 -386.1324 -438.0563 24.97204 -378.1968 -433.9985 25.08064 -378.4109 -433.896 24.88519 -387.6402 -439.1372 23.29363 -387.9669 -439.679 21.25713 -387.6505 -441.273 21.25714 -388.8233 -440.7197 25.12538 -387.3522 -440.7727 23.11757 -387.6402 -439.1372 23.29363 -385.7412 -440.0206 25.16084 -389.4322 -441.9741 25.21615 -386.1324 -438.0563 24.97204 -388.8233 -440.7197 25.12538 -389.4322 -441.9741 25.21615 - - - - - - - - - - 0.8909419 -0.1918736 -0.4115908 0.8909419 -0.1918736 -0.4115908 0.8909419 -0.1918736 -0.4115908 0.934065 -0.340632 -0.1072028 0.922534 -0.3665353 -0.1207598 0.9192692 -0.3813995 -0.09735793 -0.2816568 -0.3639449 0.8878139 -0.2816568 -0.3639449 0.8878139 -0.2816568 -0.3639449 0.8878139 0.7532554 -0.6260422 0.2016863 0.7379929 -0.6679546 0.09593246 0.7393856 -0.6708422 0.05726843 0.9555969 -0.291989 0.03971162 0.1325919 -0.2072575 0.9692594 -0.01894216 -0.1335972 0.9908547 -0.01123398 -0.1374438 0.9904459 0.3210076 -0.8132522 0.4853607 0.2803221 -0.8164826 0.504753 0.09729409 -0.8110652 0.5768076 0.7470666 -0.63936 0.181962 -0.9449019 -0.1185758 0.3051231 -0.9442069 -0.1112567 0.3099923 -0.9449424 -0.1190267 0.3048221 0.9580216 -0.2676701 0.1027001 0.1456108 -0.213391 0.9660547 0.06812391 -0.807353 0.5861231 0.7115832 -0.6820299 0.1687735 0.8168809 -0.5319063 0.2231172 -0.5132409 -0.1067572 0.8515789 -0.5128781 -0.1061392 0.8518747 -0.5131959 -0.1066806 0.8516156 -0.9455846 -0.1266546 0.2997137 0.9385691 -0.2644652 0.2216896 0.6070869 -0.4414053 0.6607623 0.6070869 -0.4414053 0.6607623 0.6070869 -0.4414053 0.6607623 -0.5135351 -0.1072587 0.8513385 -0.1277649 -0.2748708 0.9529545 -0.08956938 -0.3103228 0.9464022 0.04875975 -0.4593664 0.8869076 0.7087981 -0.6893247 0.1497888 0.818863 -0.5285529 0.2238197 0.1612183 -0.7552495 0.6353006 0.06394307 -0.7499899 0.6583513 -0.05587494 -0.7691517 0.6366189 -0.3268207 -0.9065003 0.2672928 -0.3109854 -0.8625782 0.3990576 -0.3275668 -0.9085698 0.2592312 -0.976414 -0.1305692 -0.1719517 -0.9763484 -0.1307752 -0.1721676 -0.976397 -0.1306225 -0.1720076 0.9383236 -0.2660522 0.2208281 0.4151154 -0.8269136 0.3793325 0.4214327 -0.8242095 0.3782502 0.4216745 -0.824105 0.3782083 -0.01154775 -0.1037365 0.9945378 -0.01276991 -0.1051756 0.9943717 -0.01164319 -0.1038489 0.9945249 0.05782561 -0.5072038 0.859884 0.9801596 -0.08949859 0.1768535 0.9765399 -0.1045251 0.1882669 0.9748135 -0.05640254 0.2157714 0.6221503 -0.7448548 0.2410816 -0.2913955 0.08857749 0.9524929 -0.2913955 0.08857749 0.9524929 -0.2913955 0.08857749 0.9524929 0.8472392 -0.4944602 0.1941517 0.3185127 -0.7302594 0.6043765 -0.3374725 -0.9360451 0.09965908 -0.9764646 -0.13041 -0.1717848 0.6305791 -0.7128199 0.3070143 0.7659289 -0.2562389 0.5896563 0.7367434 -0.2784112 0.616195 0.7595217 -0.2680364 0.5926915 0.4148803 -0.8270133 0.3793723 -0.01046679 -0.1024634 0.9946817 0.07348344 -0.5223479 0.8495604 0.9736486 -0.1367472 0.1825065 0.9659214 -0.1494496 0.2113308 -0.4636126 -0.8395477 0.2832366 -0.5104692 -0.8130023 0.2800864 -0.5196094 -0.807442 0.2793628 0.8546339 -0.4809311 0.1957197 0.4294041 -0.7177069 0.5481869 0.07667339 -0.9051194 -0.4181867 0.1147623 -0.8937936 -0.4335466 -0.07224309 -0.9334109 -0.3514614 -0.7236286 -0.1375835 -0.6763375 -0.7240739 -0.1371499 -0.6759489 -0.7236889 -0.1375248 -0.6762849 0.5432722 -0.7854246 0.2965866 0.7416696 -0.2871902 0.6061749 0.3719264 -0.9118991 -0.1735245 0.4249528 -0.8886735 -0.1722629 0.4417467 -0.8805496 -0.171733 0.4987624 -0.1056684 0.8602734 0.5013048 -0.1030809 0.8591087 0.5019722 -0.1024002 0.8588004 -0.06915822 -0.1091738 0.9916139 -0.03688099 -0.1170789 0.9924376 -0.02591912 -0.1107784 0.9935071 0.08644565 -0.5249051 0.8467596 -0.4550972 -0.8440341 0.2837128 0.9711086 -0.147198 0.1878321 0.89228 -0.4114788 0.1858 0.6971184 -0.7066504 0.1211244 0.6935343 -0.7030173 0.1574062 0.6847878 -0.727387 0.04442759 -0.7232037 -0.1379968 -0.6767077 0.2151301 -0.855725 -0.4705887 0.5402955 -0.8095235 0.2296791 0.7085609 -0.278 0.6485811 0.3452628 -0.9222477 -0.1739331 0.5043814 -0.09993771 0.8576782 0.03174302 -0.1760796 0.983864 -0.4645234 -0.1694559 -0.8691966 -0.4645234 -0.1694559 -0.8691966 -0.4645234 -0.1694559 -0.8691966 0.09732681 -0.520537 0.848274 -0.3411534 -0.8677499 -0.36142 -0.3411365 -0.8677499 -0.361436 -0.3411795 -0.8677499 -0.3613954 -0.3411104 -0.8677499 -0.3614606 0.9637609 -0.1542966 0.2176177 0.9032176 -0.3848705 0.1899279 0.6826396 -0.7307328 0.005725877 0.9676782 -0.1063362 0.2286735 0.9682266 -0.1099395 0.2246118 0.9675987 -0.1058293 0.2292441 0.03784211 -0.1200268 -0.9920492 0.03092286 -0.1123006 -0.993193 0.03418207 -0.115941 -0.9926678 0.02717965 -0.1081173 -0.9937665 0.6515256 -0.7522527 -0.09813368 0.5329392 -0.7958372 0.2874351 0.5299791 -0.793213 0.2998921 0.06237138 -0.2180929 0.9739329 0.03625779 -0.1740195 0.9840745 0.07594771 -0.2408841 0.9675778 0.3334065 -0.7128696 -0.6169741 0.4715348 -0.6802984 -0.5611141 0.5340017 -0.6590307 -0.529642 0.9670451 -0.1023904 0.2331094 0.03650271 -0.1852707 0.9820093 -0.9545448 -0.1774848 -0.2394647 -0.9544433 -0.1815481 -0.2368085 -0.9543376 -0.1850506 -0.2345121 -0.4566801 -0.1490492 -0.8770562 -0.4566801 -0.1490492 -0.8770562 -0.4566801 -0.1490492 -0.8770562 0.7643866 -0.6169165 0.1874224 0.7643866 -0.6169165 0.1874224 0.7643866 -0.6169165 0.1874224 -0.1206819 -0.5834268 -0.8031494 -0.1206929 -0.5834322 -0.8031439 -0.120706 -0.5834387 -0.8031372 0.781765 -0.04857727 0.6216782 0.781765 -0.04857727 0.6216782 0.781765 -0.04857727 0.6216782 0.8530695 -0.4292674 0.2966512 0.9854942 -0.1117787 -0.1276974 0.9854864 -0.1117149 -0.1278135 0.9855092 -0.1119016 -0.1274738 0.7813333 -0.119007 -0.6126628 0.7786292 -0.116397 -0.6165942 0.7808769 -0.1185652 -0.6133299 0.7836935 -0.1213006 -0.6091885 0.8556464 -0.4220559 0.2995632 0.8449482 -0.4620259 0.2694337 0.8454839 -0.4627573 0.2664821 0.424706 -0.3354017 -0.8409105 0.1570667 -0.2473573 -0.956109 0.09268871 -0.2563427 -0.9621316 0.0284104 -0.1607151 0.9865919 0.2419884 -0.7249266 -0.6449209 -0.9541828 -0.189403 -0.2316499 0.9221604 -0.384036 0.04622339 0.9165774 -0.3978807 0.03970886 0.937025 -0.3457243 0.04958764 0.7912904 -0.6100138 -0.04174464 0.9325369 -0.3569119 -0.05466968 -0.120717 -0.5834441 -0.8031316 0.1447263 -0.09767942 -0.9846385 0.1447263 -0.09767942 -0.9846385 0.1447263 -0.09767942 -0.9846385 0.9854724 -0.1116011 -0.1280206 -0.6733058 -0.1861532 0.7155462 -0.6694268 -0.1897341 0.71824 -0.6676691 -0.1913475 0.7194471 0.4332377 -0.3628437 -0.8250149 0.09735227 -0.2228042 -0.9699901 0.03850584 -0.09845444 -0.9943963 0.5575208 -0.306831 -0.7713789 0.5522816 -0.3053072 -0.77574 -0.9599586 -0.1908665 0.2050598 -0.9600823 -0.1905733 0.2047529 -0.9599869 -0.1907995 0.2049897 0.8443358 -0.5357124 0.0104488 -0.9598544 -0.191113 0.2053177 -0.6640615 -0.1946409 0.7218983 0.03601963 -0.08831539 -0.9954411 0.8998304 -0.4328677 0.05413686 0.6891198 -0.7057072 -0.164594 0.03133405 -0.0876406 -0.9956592 0.03123694 -0.0872104 -0.9957001 - - - - - - - - - - 0.9897461 0.1318359 0.9897461 0.1630859 0.9296875 0.1455078 0.9897461 0.1708984 0.9296875 0.1455078 0.9897461 0.1630859 0.3139648 0.06152344 0.3105469 0.07666016 0.2768555 0.05078125 0.2773438 0.07324219 0.222168 0.07275391 0.2197266 0.06689453 0.9897461 0.1708984 0.9311523 0.2099609 0.9296875 0.1455078 0.3657227 0.09570313 0.3105469 0.07666016 0.3139648 0.06152344 0.3139648 0.06152344 0.2768555 0.05078125 0.2578125 0.03125 0.2773438 0.07861328 0.222168 0.07275391 0.2773438 0.07324219 0.8837891 0.168457 0.9296875 0.1455078 0.9311523 0.2099609 0.9897461 0.2104492 0.9311523 0.2099609 0.9897461 0.1708984 0.3989258 0.1118164 0.3657227 0.09570313 0.3139648 0.06152344 0.2768555 0.05078125 0.2231445 0.03613281 0.2578125 0.03125 0.7050781 0.01074219 0.6103516 0.08007812 0.565918 0.006347656 0.3144531 0.07763672 0.2773437 0.07861328 0.2773437 0.07324219 0.9296875 0.1455078 0.8837891 0.168457 0.8876953 0.1298828 0.8823242 0.2241211 0.8837891 0.168457 0.9311523 0.2099609 0.9897461 0.2104492 0.9311523 0.2670898 0.9311523 0.2099609 0.4038086 0.1083984 0.3989258 0.1118164 0.3139648 0.06152344 0.9296875 0.1455078 0.8876953 0.1298828 0.9291992 0.1044922 0.2578125 0.03125 0.2231445 0.03613281 0.1801758 0.01757813 0.7050781 0.01074219 0.6958008 0.08300781 0.6103516 0.08007813 0.3144531 0.07763672 0.3100586 0.08300781 0.2773437 0.07861328 0.2456055 0.7670898 0.184082 0.5869141 0.09082031 0.6484375 0.2456055 0.7670898 0.09082031 0.6484375 0.05908203 0.7670898 0.8823242 0.2241211 0.9311523 0.2099609 0.9897461 0.2734375 0.9311523 0.2670898 0.9897461 0.2104492 0.4018555 0.2084961 0.3989258 0.1118164 0.4038086 0.1083984 0.9291992 0.1044922 0.8876953 0.1298828 0.8876953 0.08496094 0.2231445 0.03613281 0.1630859 0.04736328 0.1801758 0.01757813 0.7958984 0.01025391 0.6958008 0.08300781 0.7070313 0.01074219 0.6943359 0.2124023 0.6958008 0.08300781 0.1738281 0.1298828 0.1542969 0.1293945 0.1694336 0.09765625 0.3369141 0.1704102 0.3100586 0.08300781 0.3144531 0.07763672 0.2456055 0.7670898 0.3144531 0.581543 0.184082 0.5869141 0.078125 0.862793 0.2456055 0.7670898 0.05908203 0.7670898 0.8823242 0.269043 0.8823242 0.2241211 0.9311523 0.2670898 0.6943359 0.2124023 0.6132812 0.2026367 0.6103516 0.08007813 0.9897461 0.2734375 0.9897461 0.3310547 0.9311523 0.2670898 0.4018555 0.2084961 0.3945313 0.2075195 0.3989258 0.1118164 0.9291992 0.1044922 0.8876953 0.08496094 0.9277344 0.05664062 0.1801758 0.01757812 0.1630859 0.04736328 0.1269531 0.02636719 0.8666992 0.2314453 0.6958008 0.08300781 0.7958984 0.01025391 0.8666992 0.2314453 0.6943359 0.2124023 0.6958008 0.08300781 0.1743164 0.2001953 0.1542969 0.1293945 0.1738281 0.1298828 0.3369141 0.1704102 0.3310547 0.1699219 0.3100586 0.08300781 0.2456055 0.7670898 0.418457 0.6401367 0.3144531 0.581543 0.1484375 0.9433594 0.2456055 0.7670898 0.078125 0.862793 0.8823242 0.269043 0.9311523 0.2670898 0.9311523 0.3271484 0.5585938 0.3051758 0.6132813 0.2026367 0.6943359 0.2124023 0.9897461 0.3310547 0.9311523 0.3271484 0.9311523 0.2670898 0.3911133 0.2275391 0.3945313 0.2075195 0.4018555 0.2084961 0.8876953 0.08496094 0.8896484 0.03710937 0.9277344 0.05664062 0.1801758 0.01757813 0.1269531 0.02636719 0.121582 0.015625 0.1630859 0.04736328 0.1279297 0.1025391 0.1269531 0.02636719 0.1743164 0.2001953 0.1538086 0.2021484 0.1542969 0.1293945 0.8666992 0.2314453 0.8535156 0.2631836 0.6943359 0.2124023 0.3369141 0.1704102 0.3300781 0.1860352 0.3310547 0.1699219 0.4482422 0.7670899 0.4184571 0.6401368 0.2456055 0.7670899 0.8823242 0.269043 0.9311523 0.3271484 0.8823242 0.3178711 0.3618163 0.9433592 0.2456054 0.7670897 0.1484375 0.9433592 0.5585938 0.3051758 0.6943359 0.2124023 0.6943359 0.2832031 0.9897461 0.3310547 0.9897461 0.3398438 0.9311523 0.3271484 0.3911133 0.2275391 0.3857422 0.2226563 0.3945312 0.2075195 0.9277344 0.05664062 0.8896484 0.03710937 0.9301758 0.01025391 0.1269531 0.02636719 0.02294922 0.02832031 0.121582 0.015625 0.9311523 0.6132812 0.9311523 0.5610352 0.9897461 0.5986328 0.1269531 0.02636719 0.1279297 0.1025391 0.05029297 0.04638672 0.1767578 0.2138672 0.1538086 0.2021484 0.1743164 0.2001953 0.1767578 0.2138672 0.15625 0.215332 0.1538086 0.2021484 0.8535156 0.2631836 0.6943359 0.2832031 0.6943359 0.2124023 0.3300781 0.1860352 0.3256836 0.1821289 0.3310547 0.1699219 0.4331055 0.8613282 0.4482422 0.7670899 0.2456055 0.7670899 0.8823242 0.5664062 0.8823242 0.5009766 0.9311523 0.5073242 0.9311523 0.3271484 0.9311523 0.4282227 0.8823242 0.3178711 0.8823242 0.3178711 0.9311523 0.4282227 0.8823242 0.4052734 0.3618164 0.9433594 0.4331055 0.8613281 0.2456055 0.7670898 0.2646484 0.1928711 0.2104492 0.1943359 0.2641602 0.1875 0.2055664 0.2001953 0.2104492 0.1943359 0.2646484 0.1928711 0.9897461 0.3398438 0.9311523 0.4282227 0.9311523 0.3271484 0.3759766 0.2373047 0.3857422 0.2226563 0.3911133 0.2275391 0.8823242 0.5664063 0.9311523 0.5073242 0.9311523 0.5610352 0.1269531 0.02636719 0.05029297 0.04638672 0.02294922 0.02832031 0.9897461 0.5986328 0.9311523 0.5610352 0.9897461 0.5380859 0.9311523 0.6132812 0.9897461 0.5986328 0.9897461 0.6552734 0.1279297 0.1025391 0.105957 0.1625977 0.05029297 0.04638672 0.1767578 0.2138672 0.1772461 0.2246094 0.15625 0.215332 0.8535156 0.2631836 0.8320312 0.2817383 0.6943359 0.2832031 0.3300781 0.1860352 0.3178711 0.1938477 0.3256836 0.1821289 0.8823242 0.4521484 0.9311523 0.5073242 0.8823242 0.5009766 0.8823242 0.4052734 0.9311523 0.4282227 0.9311523 0.4716797 0.8823242 0.4052734 0.9311523 0.4716797 0.8823242 0.4521484 0.3164063 0.1884766 0.2646484 0.1928711 0.2641602 0.1875 0.3232422 0.2460937 0.2729492 0.2568359 0.2592773 0.2397461 0.9897461 0.3398437 0.9897461 0.4580078 0.9311523 0.4282227 0.3759766 0.2373047 0.3735352 0.2304687 0.3857422 0.2226562 0.9897461 0.5380859 0.9311523 0.5610352 0.9311523 0.5073242 0.05029297 0.04638672 0.01904297 0.1137695 0.02294922 0.02832031 0.1098633 0.2128906 0.05029297 0.04638672 0.105957 0.1625977 0.3256836 0.1821289 0.3178711 0.1938477 0.3164063 0.1884766 0.1772461 0.2246094 0.1567383 0.2265625 0.15625 0.215332 0.1772461 0.2246094 0.1787109 0.2768555 0.1567383 0.2265625 0.8823242 0.4521484 0.9311523 0.4716797 0.9311523 0.5073242 0.9311523 0.4282227 0.9897461 0.4580078 0.9311523 0.4716797 0.3178711 0.1938477 0.2646484 0.1928711 0.3164062 0.1884766 0.3227539 0.2553711 0.2729492 0.2568359 0.3232422 0.2460937 0.2729492 0.2568359 0.2558594 0.2558594 0.2592773 0.2397461 0.2124023 0.3540039 0.1430664 0.2617188 0.2202148 0.3388672 0.3759766 0.2373047 0.3227539 0.2553711 0.3735352 0.2304688 0.9897461 0.4990234 0.9897461 0.5380859 0.9311523 0.5073242 0.05517578 0.2451172 0.01904297 0.1137695 0.05029297 0.04638672 0.1098633 0.2128906 0.05517578 0.2451172 0.05029297 0.04638672 0.9897461 0.4990234 0.9311523 0.5073242 0.9311523 0.4716797 0.9897461 0.4580078 0.9897461 0.4990234 0.9311523 0.4716797 0.3735352 0.2304687 0.3227539 0.2553711 0.3232422 0.2460937 0.2124023 0.3540039 0.1103516 0.2958984 0.1430664 0.2617188 0.05517578 0.2451172 0.02246094 0.2451172 0.01904297 0.1137695 0.05517578 0.2451172 0.1098633 0.2128906 0.1430664 0.2617188 0.1103516 0.2958984 0.05517578 0.2451172 0.1430664 0.2617187 0.1103516 0.2958984 0.02246094 0.2451172 0.05517578 0.2451172 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -430.2902 -441.2591 18.80519 -430.5337 -438.5733 18.97499 -432.3098 -440.9113 17.65803 -430.0377 -439.664 18.62912 -430.2902 -441.2591 18.80519 -432.3098 -440.9113 17.65803 -430.5337 -438.5733 18.97499 -430.2902 -441.2591 18.80519 -430.0028 -438.586 21.25714 -432.3991 -438.2532 17.93278 -430.0377 -439.664 18.62912 -432.3098 -440.9113 17.65803 -432.2559 -439.2873 17.41011 -430.0377 -439.664 18.62912 -432.3098 -440.9113 17.65803 -431.2623 -442.1391 16.96979 -430.0377 -439.664 18.62912 -429.3813 -439.679 21.25715 -430.2902 -441.2591 18.80519 -429.6977 -441.273 21.25713 -433.7076 -434.9313 21.25714 -430.5337 -438.5733 18.97499 -430.0028 -438.586 21.25714 -433.7076 -434.9313 21.25714 -432.3991 -438.2532 17.93278 -430.5337 -438.5733 18.97499 -432.3098 -440.9113 17.65803 -432.3991 -438.2532 17.93278 -434.8234 -440.2909 17.74838 -433.4763 -441.6371 17.17945 -427.958 -442.7422 16.97882 -430.0377 -439.664 18.62912 -427.958 -442.7422 16.97882 -429.3813 -439.679 21.25715 -429.6977 -441.273 21.25713 -430.2737 -438.1258 22.94776 -430.0028 -438.586 21.25714 -429.6977 -441.273 21.25713 -430.2737 -438.1258 22.94776 -434.7342 -437.6826 18.02312 -434.8234 -440.2909 17.74838 -434.7342 -437.6826 18.02312 -431.2463 -442.636 16.91396 -431.2623 -442.1391 16.96979 -433.4763 -441.6371 17.17945 -427.4879 -444.0493 16.74968 -427.958 -442.7422 16.97882 -429.7081 -439.1372 23.29363 -429.3813 -439.679 21.25715 -427.958 -442.7422 16.97882 -429.7081 -439.1372 23.29363 -429.6977 -441.273 21.25713 -429.3813 -439.679 21.25715 -429.996 -440.7727 23.11757 -431.5544 -437.2078 24.41242 -436.4064 -436.8889 19.12881 -436.2424 -439.9648 18.03268 -434.7342 -437.6826 18.02312 -436.6328 -439.2507 18.97088 -434.8234 -440.2909 17.74838 -427.4879 -444.0493 16.74968 -427.5921 -443.2933 20.05331 -428.5249 -440.7197 25.12539 -429.996 -440.7727 23.11757 -431.5544 -437.2078 24.41242 -430.2737 -438.1258 22.94776 -429.996 -440.7727 23.11757 -431.5544 -437.2078 24.41242 -435.3716 -436.2481 24.41241 -433.7076 -434.9313 21.25714 -436.4064 -436.8889 19.12881 -433.7076 -434.9313 21.25714 -436.9767 -436.1098 21.25713 -436.4064 -436.8889 19.12881 -436.6328 -439.2507 18.97088 -436.2424 -439.9648 18.03268 -434.8234 -440.2909 17.74838 -431.2158 -438.0563 24.97205 -429.7081 -439.1372 23.29363 -431.2158 -438.0563 24.97205 -429.996 -440.7727 23.11757 -431.3881 -439.7747 24.68715 -431.3881 -439.7747 24.68715 -435.3716 -436.2481 24.41241 -431.5544 -437.2078 24.41242 -436.6339 -435.8036 22.97259 -436.4064 -436.8889 19.12881 -437.2818 -438.388 21.25714 -436.6328 -439.2507 18.97088 -436.9767 -436.1098 21.25713 -436.6339 -435.8036 22.97259 -437.7244 -438.4066 19.6632 -427.916 -441.9741 25.21615 -427.916 -441.9741 25.21615 -431.2158 -438.0563 24.97205 -428.5249 -440.7197 25.12539 -431.3881 -439.7747 24.68715 -435.5377 -438.4664 24.68716 -436.6339 -435.8036 22.97259 -435.3716 -436.2481 24.41241 -435.5377 -438.4664 24.68716 -437.6147 -437.192 21.25714 -436.6328 -439.2507 18.97088 -437.2818 -438.388 21.25714 -436.9767 -436.1098 21.25713 -436.9116 -438.1065 23.1424 -437.2818 -438.388 21.25714 -436.6339 -435.8036 22.97259 -436.6328 -439.2507 18.97088 -437.2678 -437.9118 19.72119 -437.7244 -438.4066 19.6632 -431.6069 -440.0206 25.16084 -431.2158 -438.0563 24.97205 -435.7525 -437.2544 24.97204 -431.3881 -439.7747 24.68715 -435.5377 -438.4664 24.68716 -436.9116 -438.1065 23.1424 -437.2107 -436.9615 23.25167 -437.6147 -437.192 21.25714 -437.2818 -438.388 21.25714 -437.3354 -437.8151 19.98072 -436.9116 -438.1065 23.1424 -437.2678 -437.9118 19.72119 -438.897 -436.0925 19.99762 -437.7244 -438.4066 19.6632 -436.0878 -437.8547 25.16084 -435.7525 -437.2544 24.97204 -435.9791 -437.1855 24.75409 -435.5377 -438.4664 24.68716 -435.7525 -437.2544 24.97204 -436.9116 -438.1065 23.1424 -438.1517 -436.005 23.53948 -437.2107 -436.9615 23.25167 -438.5911 -436.1534 21.41652 -436.8888 -437.6809 18.79304 -436.6328 -439.2507 18.97088 -437.3354 -437.8151 19.98072 -437.2107 -436.9615 23.25167 -438.897 -436.0925 19.99762 -437.2678 -437.9118 19.72119 -437.7244 -438.4066 19.6632 -438.897 -436.0925 19.99762 -440.01 -434.7912 19.9785 -436.5209 -437.5464 25.15752 -435.7525 -437.2544 24.97204 -437.9048 -435.9168 24.69531 -435.9791 -437.1855 24.75409 -438.8593 -436.0615 20.22888 -438.897 -436.0925 19.99762 -439.8145 -434.8166 20.14118 -440.01 -434.7912 19.9785 -437.8623 -435.8632 24.92308 -437.8623 -435.8632 24.92308 -438.9688 -434.5722 20.12385 -438.5911 -436.1534 21.41652 -438.1517 -436.005 23.53948 -438.8593 -436.0615 20.22888 -439.8145 -434.8166 20.14118 -439.7376 -433.1427 23.87429 -440.01 -434.7912 19.9785 -439.8145 -434.8166 20.14118 -438.0738 -436.1199 25.14563 -438.548 -433.1398 23.71048 -437.9048 -435.9168 24.69531 -438.9671 -433.9958 24.66089 -437.9048 -435.9168 24.69531 -437.8623 -435.8632 24.92308 -438.8593 -436.0615 20.22888 -438.9688 -434.5722 20.12385 -439.6723 -434.9388 20.37319 -439.6723 -434.9388 20.37319 -439.445 -433.2895 23.87428 -438.9374 -433.896 24.8852 -438.4226 -433.3143 24.24758 -437.9048 -435.9168 24.69531 -438.9671 -433.9958 24.66089 -438.1936 -433.6293 24.51084 -438.9374 -433.896 24.8852 -439.3214 -433.5064 23.86052 -438.9688 -434.5722 20.12385 -438.548 -433.1398 23.71048 -439.6723 -434.9388 20.37319 -439.445 -433.2895 23.87428 -439.4875 -433.432 24.71469 -439.7376 -433.1427 23.87429 -439.445 -433.2895 23.87428 -439.1514 -433.9985 25.08064 -438.4226 -433.3143 24.24758 -437.9048 -435.9168 24.69531 -438.1936 -433.6293 24.51084 -439.196 -433.6808 24.39762 -438.548 -433.1398 23.71048 -438.4226 -433.3143 24.24758 -438.1936 -433.6293 24.51084 -438.9671 -433.9958 24.66089 -438.4226 -433.3143 24.24758 -439.196 -433.6808 24.39762 -439.3214 -433.5064 23.86052 -439.3214 -433.5064 23.86052 -439.248 -433.4897 24.545 -439.1514 -433.9985 25.08064 -439.248 -433.4897 24.545 -438.9374 -433.896 24.8852 -439.196 -433.6808 24.39762 -439.248 -433.4897 24.545 -439.4875 -433.432 24.71469 - - - - - - - - - - -0.5043786 -0.09994493 0.857679 -0.5013052 -0.1030847 0.859108 -0.501972 -0.1024047 0.8588 0.4645191 -0.1694599 -0.8691981 0.4645191 -0.1694599 -0.8691981 0.4645191 -0.1694599 -0.8691981 -0.9690348 -0.1020619 0.2248441 -0.9675564 -0.1062445 0.2292307 -0.9677404 -0.10573 0.2286914 -0.4987655 -0.1056695 0.8602714 0.4566781 -0.1490588 -0.8770556 0.4566781 -0.1490588 -0.8770556 0.4566781 -0.1490588 -0.8770556 -0.08644487 -0.524898 0.846764 -0.05783801 -0.5072054 0.8598822 -0.07348876 -0.5223423 0.8495634 0.954548 -0.1775031 -0.2394383 0.9543415 -0.1850421 -0.2345034 0.9544468 -0.181552 -0.2367915 -0.9662931 -0.1097337 0.2328866 -0.6847809 -0.7273936 0.04442598 -0.6935307 -0.7030211 0.1574056 -0.697114 -0.7066534 0.1211319 -0.1612149 -0.755254 0.6352962 -0.3185129 -0.7302638 0.6043711 -0.4294057 -0.7177114 0.5481798 0.01046472 -0.1024648 0.9946816 0.01164106 -0.1038502 0.9945248 0.01154564 -0.1037378 0.9945377 -0.0487702 -0.4593832 0.8868983 -0.09732096 -0.5205318 0.8482778 -0.7643942 -0.6169131 0.1874024 -0.7643942 -0.6169131 0.1874024 -0.7643942 -0.6169131 0.1874024 0.9541872 -0.189379 -0.2316513 -0.9854952 -0.1117864 -0.1276833 -0.985511 -0.1119155 -0.1274484 -0.985487 -0.1117194 -0.1278052 -0.682632 -0.7307399 0.005728201 -0.06393661 -0.7499944 0.6583468 0.08955855 -0.3103494 0.9463945 0.01276771 -0.1051768 0.9943716 0.02590252 -0.1108108 0.9935039 0.03686888 -0.1171071 0.9924347 0.06914089 -0.1092029 0.991612 -0.03174215 -0.1760868 0.9838627 -0.03649911 -0.1852727 0.9820091 -0.7912819 -0.6100251 -0.04174118 -0.932522 -0.356953 -0.05465659 -0.9221703 -0.3840143 0.04620521 0.9599647 -0.1908433 0.2050525 0.9599927 -0.1907772 0.2049832 0.9600869 -0.1905538 0.2047494 -0.9854723 -0.1115999 -0.1280227 -0.6515114 -0.7522628 -0.09815074 0.05588367 -0.7691565 0.6366123 0.1277515 -0.2748985 0.9529482 0.5132053 -0.1066693 0.8516114 0.51325 -0.1067456 0.8515749 0.513543 -0.107245 0.8513355 -0.9370361 -0.3456974 0.04956375 -0.9165938 -0.3978446 0.03969202 -0.8443313 -0.5357195 0.0104538 0.9598619 -0.1910868 0.2053072 -0.7813293 -0.1190124 -0.6126667 -0.7836831 -0.1212997 -0.6092021 -0.7808742 -0.1185718 -0.613332 -0.2151365 -0.8557255 -0.470585 -0.07668021 -0.9051212 -0.4181815 -0.1147711 -0.8937944 -0.4335426 0.5128887 -0.10613 0.8518695 0.3268016 -0.906506 0.2672967 0.3275477 -0.9085757 0.2592349 0.3109638 -0.8625747 0.3990819 -0.2802729 -0.81647 0.5048008 -0.09728231 -0.8110508 0.5768299 -0.06811649 -0.8073393 0.5861428 -0.6891162 -0.7057125 -0.1645862 0.6640735 -0.1946227 0.7218923 0.6694324 -0.1897215 0.7182381 0.6676768 -0.191333 0.7194438 -0.7786326 -0.1164096 -0.6165874 -0.03092486 -0.1123035 -0.9931926 -0.03418476 -0.1159447 -0.9926672 -0.02718096 -0.1081194 -0.9937663 0.07223727 -0.9334141 -0.3514541 0.9449052 -0.1185589 0.3051197 0.9449456 -0.1190095 0.3048189 0.9442103 -0.1112423 0.3099873 0.9455877 -0.1266346 0.2997123 0.3374541 -0.9360541 0.09963623 -0.3209534 -0.8132417 0.485414 -0.8998245 -0.4328783 0.05414987 -0.03063918 -0.08783971 -0.9956633 -0.03858082 -0.09827424 -0.9944112 -0.02803694 -0.08566451 -0.9959295 0.6733069 -0.1861446 0.7155473 -0.03784544 -0.1200313 -0.9920485 0.7236424 -0.1375807 -0.6763233 0.7232253 -0.1379864 -0.6766867 0.7237016 -0.1375231 -0.6762717 -0.7723889 -0.6231251 0.1230061 -0.9354615 -0.3403423 -0.09528263 -0.9493893 -0.2642759 -0.1697592 0.9764128 -0.1305628 -0.1719631 0.976397 -0.1306127 -0.1720154 0.9763515 -0.1307555 -0.172165 0.9764602 -0.130414 -0.171807 0.2816978 -0.3639104 0.8878151 0.2816978 -0.3639104 0.8878151 0.2816978 -0.3639104 0.8878151 -0.03640512 -0.08841989 -0.9954178 -0.0284126 -0.1607234 0.9865905 -0.06237008 -0.2180951 0.9739325 -0.0362593 -0.1740266 0.9840732 -0.07594454 -0.2408831 0.9675783 0.7240795 -0.1371551 -0.6759418 -0.9383475 -0.2644844 0.2226027 -0.9396477 -0.2615635 0.2205599 -0.9389551 -0.2631238 0.2216512 -0.8135162 -0.5781402 0.06281151 -0.9375692 -0.2662168 0.2238139 0.01894992 -0.1335891 0.9908556 0.01894992 -0.1335891 0.9908556 0.01894992 -0.1335891 0.9908556 -0.09734451 -0.2227745 -0.9699977 -0.09267844 -0.2563145 -0.9621401 -0.7367005 -0.2784313 0.6162373 -0.7416571 -0.2872119 0.6061799 -0.7084408 -0.2779899 0.6487166 -0.7595197 -0.2680827 0.5926732 -0.622169 -0.7448398 0.2410798 -0.6306052 -0.7127944 0.3070199 -0.7158354 -0.6787271 0.1640403 -0.911697 -0.1899239 -0.3643315 -0.911697 -0.1899239 -0.3643315 -0.911697 -0.1899239 -0.3643315 -0.7659212 -0.2562964 0.5896413 -0.7532572 -0.6260449 0.2016713 -0.7393978 -0.6708375 0.05716592 -0.3931088 -0.3235739 0.8606773 -0.3931088 -0.3235739 0.8606773 -0.3931088 -0.3235739 0.8606773 -0.1570527 -0.2473355 -0.9561169 -0.5310597 -0.7925344 0.2997745 -0.5397575 -0.8097633 0.2300981 -0.5438529 -0.7844048 0.2982165 -0.7526062 -0.6342906 0.1768032 -0.5922495 -0.4972244 0.6340414 -0.5922495 -0.4972244 0.6340414 -0.5922495 -0.4972244 0.6340414 -0.4246994 -0.3353946 -0.8409167 -0.5319915 -0.7967429 0.2866807 -0.9760464 -0.09516389 0.1956459 -0.975931 -0.06223918 0.2090095 -0.9709072 -0.1340413 0.1984243 -0.9748069 -0.05642173 0.2157966 -0.8168447 -0.5319416 0.2231656 -0.4150789 -0.8269303 0.379336 -0.421831 -0.8240386 0.3781785 -0.4215822 -0.8241462 0.3782216 -0.4332309 -0.3628367 -0.8250215 -0.9718272 -0.1519721 0.1801567 -0.9658881 -0.1484401 0.2121925 -0.8556393 -0.4220634 0.2995727 -0.8454612 -0.462728 0.2666048 -0.8449266 -0.4619984 0.2695486 0.2913961 0.08859006 0.9524915 0.2913961 0.08859006 0.9524915 0.2913961 0.08859006 0.9524915 -0.8188289 -0.5285807 0.2238785 -0.4148369 -0.8270329 0.379377 -0.5522406 -0.3052914 -0.7757754 -0.9711716 -0.1633419 0.1736233 -0.1447324 -0.09767275 -0.9846383 -0.1447324 -0.09767275 -0.9846383 -0.1447324 -0.09767275 -0.9846383 -0.8530704 -0.4292501 0.2966736 0.463602 -0.8395562 0.2832289 0.51051 -0.8129806 0.2800751 0.4550774 -0.8440473 0.2837055 0.5196601 -0.8074135 0.2793507 -0.8472606 -0.4944096 0.1941872 -0.3718308 -0.9119422 -0.1735028 -0.4417027 -0.8805751 -0.1717155 -0.4248923 -0.888706 -0.1722446 -0.5574765 -0.3068142 -0.7714175 -0.7817107 -0.04855513 0.6217482 -0.7817107 -0.04855513 0.6217482 -0.7817107 -0.04855513 0.6217482 0.3411307 -0.8677323 -0.3614836 0.3411228 -0.8677323 -0.3614912 0.3411104 -0.8677323 -0.3615028 0.1207402 -0.5834847 -0.8030986 0.1207246 -0.583477 -0.8031065 0.1207331 -0.5834812 -0.8031022 -0.9032541 -0.3847362 0.1900266 0.3411431 -0.8677323 -0.361472 -0.8546625 -0.4808673 0.1957515 -0.3451461 -0.9222958 -0.1739096 -0.3333293 -0.7128467 -0.6170423 -0.4714366 -0.6802899 -0.5612069 -0.2419017 -0.7249007 -0.6449825 0.1207176 -0.5834736 -0.8031101 -0.8923223 -0.411337 0.1859107 -0.533898 -0.6590307 -0.5297466 - - - - - - - - - - 0.9301758 0.01025391 0.8896484 0.03710938 0.9277344 0.05664063 0.9897461 0.5986328 0.9311523 0.5610352 0.9311523 0.6132813 0.8823242 0.5664062 0.9311523 0.5610352 0.8823242 0.5009766 0.8896484 0.03710937 0.8876953 0.08496094 0.9277344 0.05664062 0.9897461 0.5986328 0.9311523 0.6132813 0.9897461 0.6552734 0.1279297 0.1025391 0.1630859 0.04736328 0.1269531 0.02636719 0.9897461 0.5986328 0.9897461 0.5380859 0.9311523 0.5610352 0.8823242 0.5009766 0.9311523 0.5610352 0.9311523 0.5073242 0.2456055 0.7670898 0.418457 0.6401367 0.4482422 0.7670898 0.2456055 0.7670898 0.3144531 0.581543 0.418457 0.6401367 0.9277344 0.05664063 0.8876953 0.08496094 0.9291992 0.1044922 0.1269531 0.02636719 0.1801758 0.01757812 0.05029297 0.04638672 0.1279297 0.1025391 0.1269531 0.02636719 0.1279297 0.1025391 0.05029297 0.04638672 0.105957 0.1625977 0.9897461 0.5380859 0.9311523 0.5073242 0.9311523 0.5610352 0.8823242 0.4521484 0.8823242 0.5009766 0.9311523 0.5073242 0.4331055 0.8613281 0.2456055 0.7670898 0.4482422 0.7670898 0.2456055 0.7670898 0.184082 0.5869141 0.3144531 0.581543 0.1630859 0.04736328 0.2231445 0.03613281 0.1801758 0.01757813 0.8876953 0.08496094 0.8876953 0.1298828 0.9291992 0.1044922 0.121582 0.015625 0.1269531 0.02636719 0.1801758 0.01757812 0.02294922 0.02832031 0.05029297 0.04638672 0.1269531 0.02636719 0.1098633 0.2128906 0.105957 0.1625977 0.05029297 0.04638672 0.9897461 0.4990234 0.9311523 0.5073242 0.9897461 0.5380859 0.8823242 0.4521484 0.9311523 0.5073242 0.9311523 0.4716797 0.3618164 0.9433594 0.2456055 0.7670898 0.4331055 0.8613281 0.2456055 0.7670898 0.09082031 0.6484375 0.184082 0.5869141 0.1801758 0.01757812 0.2231445 0.03613281 0.2578125 0.03125 0.8876953 0.1298828 0.9296875 0.1455078 0.9291992 0.1044922 0.02294922 0.02832031 0.121582 0.015625 0.05029297 0.04638672 0.02294922 0.02832031 0.01904297 0.1137695 0.1098633 0.2128906 0.05029297 0.04638672 0.05517578 0.2451172 0.9897461 0.4990234 0.9311523 0.4716797 0.9311523 0.5073242 0.8823242 0.4052734 0.8823242 0.4521484 0.9311523 0.4716797 0.3618163 0.9433592 0.1484375 0.9433592 0.2456054 0.7670897 0.8876953 0.1298828 0.8837891 0.168457 0.9296875 0.1455078 0.2456054 0.7670897 0.05908202 0.7670897 0.09082029 0.6484374 0.2768555 0.05078125 0.2578125 0.03125 0.2231445 0.03613281 0.05517578 0.2451172 0.05029297 0.04638672 0.01904297 0.1137695 0.05517578 0.2451172 0.1430664 0.2617187 0.1098633 0.2128906 0.9897461 0.4990234 0.9897461 0.4580078 0.9311523 0.4716797 0.8823242 0.4052734 0.9311523 0.4716797 0.9311523 0.4282227 0.9311523 0.4282227 0.8823242 0.3178711 0.8823242 0.4052734 0.1484375 0.9433594 0.078125 0.862793 0.2456055 0.7670898 0.8837891 0.168457 0.9311523 0.2099609 0.9296875 0.1455078 0.8823242 0.2241211 0.9311523 0.2099609 0.8837891 0.168457 0.078125 0.8627929 0.05908203 0.7670898 0.2456055 0.7670898 0.3139648 0.06152344 0.2578125 0.03125 0.2768555 0.05078125 0.05517578 0.2451172 0.01904297 0.1137695 0.02246094 0.2451172 0.02246094 0.2451172 0.1430664 0.2617187 0.05517578 0.2451172 0.9311523 0.4716797 0.9897461 0.4580078 0.9311523 0.4282227 0.9311523 0.4282227 0.9311523 0.3271484 0.8823242 0.3178711 0.8823242 0.269043 0.8823242 0.3178711 0.9311523 0.3271484 0.9897461 0.2104492 0.9296875 0.1455078 0.9311523 0.2099609 0.8823242 0.2241211 0.9311523 0.2670898 0.9311523 0.2099609 0.8823242 0.269043 0.9311523 0.2670898 0.8823242 0.2241211 0.2768555 0.05078125 0.3105469 0.07666016 0.3139648 0.06152344 0.02246094 0.2451172 0.1103516 0.2958984 0.1430664 0.2617188 0.9897461 0.4580078 0.9897461 0.3398438 0.9311523 0.4282227 0.9311523 0.4282227 0.9897461 0.3398437 0.9311523 0.3271484 0.8823242 0.269043 0.9311523 0.3271484 0.9311523 0.2670898 0.9897461 0.2734375 0.9897461 0.2104492 0.9311523 0.2099609 0.9897461 0.2104492 0.9897461 0.1708984 0.9296875 0.1455078 0.9897461 0.2734375 0.9311523 0.2099609 0.9311523 0.2670898 0.3105469 0.07666016 0.3657227 0.09570312 0.3139648 0.06152344 0.1430664 0.2617187 0.1103516 0.2958984 0.2124023 0.3540039 0.1430664 0.2617187 0.2124023 0.3540039 0.2202148 0.3388672 0.9897461 0.3310547 0.9311523 0.3271484 0.9897461 0.3398437 0.9897461 0.3310547 0.9311523 0.2670898 0.9311523 0.3271484 0.6943359 0.2124023 0.6103516 0.08007813 0.6132813 0.2026367 0.6958008 0.08300781 0.565918 0.006347656 0.6103516 0.08007812 0.9897461 0.1318359 0.9296875 0.1455078 0.9897461 0.1708984 0.9897461 0.2734375 0.9311523 0.2670898 0.9897461 0.3310547 0.2773437 0.07324219 0.2197266 0.06689453 0.222168 0.07275391 0.3139648 0.06152344 0.3657227 0.09570312 0.4038086 0.1083984 0.2597656 0.2397461 0.2607422 0.2553711 0.2729492 0.2568359 0.2055664 0.2001953 0.2641602 0.1875 0.2104492 0.1943359 0.5585937 0.3051758 0.6943359 0.2124023 0.6132812 0.2026367 0.6943359 0.2124023 0.6958008 0.08300781 0.6103516 0.08007812 0.7050781 0.01074219 0.565918 0.006347656 0.6958008 0.08300781 0.2773438 0.07861328 0.2773438 0.07324219 0.222168 0.07275391 0.3657227 0.09570312 0.3989258 0.1118164 0.4038086 0.1083984 0.2597656 0.2397461 0.2729492 0.2568359 0.3232422 0.2460938 0.5585938 0.3051758 0.6943359 0.2832031 0.6943359 0.2124023 0.2055664 0.2001953 0.2646484 0.1928711 0.2641602 0.1875 0.7958984 0.01025391 0.6958008 0.08300781 0.7958984 0.01025391 0.7070313 0.01074219 0.6958008 0.08300781 0.3144531 0.07763672 0.2773437 0.07324219 0.2773437 0.07861328 0.4018555 0.2084961 0.4038086 0.1083984 0.3989258 0.1118164 0.2729492 0.2568359 0.3227539 0.2553711 0.3232422 0.2460937 0.8666992 0.2314453 0.6943359 0.2124023 0.6943359 0.2832031 0.3164063 0.1884766 0.2641602 0.1875 0.2646484 0.1928711 0.8666992 0.2314453 0.7958984 0.01025391 0.6943359 0.2124023 0.1694336 0.1030273 0.1542969 0.1259766 0.1738281 0.1269531 0.3144531 0.07763672 0.2773437 0.07861328 0.3100586 0.08300781 0.4018555 0.2084961 0.3989258 0.1118164 0.3945313 0.2075195 0.3232422 0.2460937 0.3227539 0.2553711 0.3735352 0.2304687 0.8666992 0.2314453 0.6943359 0.2832031 0.8535156 0.2631836 0.175293 0.2768555 0.1738281 0.2246094 0.1567383 0.2265625 0.3178711 0.1938477 0.3164063 0.1884766 0.2646484 0.1928711 0.1708984 0.2001953 0.1542969 0.1259766 0.1538086 0.2021484 0.1708984 0.2001953 0.1738281 0.1269531 0.1542969 0.1259766 0.3369141 0.1704102 0.3144531 0.07763672 0.3100586 0.08300781 0.3911133 0.2275391 0.4018555 0.2084961 0.3945312 0.2075195 0.3227539 0.2553711 0.3759766 0.2373047 0.3735352 0.2304688 0.8535156 0.2631836 0.6943359 0.2832031 0.8320313 0.2817383 0.1733398 0.2138672 0.1538086 0.2021484 0.15625 0.215332 0.1567383 0.2265625 0.1738281 0.2246094 0.15625 0.215332 0.3256836 0.1821289 0.3164062 0.1884766 0.3178711 0.1938477 0.1733398 0.2138672 0.1708984 0.2001953 0.1538086 0.2021484 0.3369141 0.1704102 0.3100586 0.08300781 0.3310547 0.1699219 0.3911133 0.2275391 0.3945312 0.2075195 0.3857422 0.2226562 0.3759766 0.2373047 0.3857422 0.2226562 0.3735352 0.2304687 0.15625 0.215332 0.1738281 0.2246094 0.1733398 0.2138672 0.3300781 0.1860352 0.3256836 0.1821289 0.3300781 0.1860352 0.3310547 0.1699219 0.3256836 0.1821289 0.3369141 0.1704102 0.3310547 0.1699219 0.3300781 0.1860352 0.3759766 0.2373047 0.3911133 0.2275391 0.3857422 0.2226563 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -436.8888 -437.6809 18.79304 -437.3354 -437.8151 19.98072 -437.2678 -437.9118 19.72119 - - - - - - - - - - 0.9210838 -0.2195345 0.321573 0.9210838 -0.2195345 0.321573 0.9210838 -0.2195345 0.321573 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -429.8608 -442 21.27391 -429.8609 -437.4786 21.27392 -431.2497 -441.7269 20.69865 -429.8608 -442 21.27391 -431.2497 -441.7269 20.69865 -429.8609 -442.3368 19.30984 -428.4721 -437.949 20.69865 -429.8609 -437.4786 21.27392 -429.8608 -442 21.27391 -431.2497 -437.2055 20.69864 -431.825 -441.811 19.30983 -429.8608 -442 21.27391 -428.472 -442.4704 20.69865 -428.472 -442.4704 20.69865 -428.4721 -437.949 20.69865 -429.8608 -442 21.27391 -431.2497 -437.2055 20.69864 -431.825 -441.811 19.30983 -431.2497 -441.7269 20.69865 -431.2497 -442.2032 17.92103 -427.8968 -442.8625 19.30984 -428.4721 -437.949 20.69865 -428.472 -442.4704 20.69865 -427.8968 -438.3411 19.30983 -431.825 -437.2897 19.30983 -431.825 -437.2897 19.30983 -431.2497 -442.2032 17.92103 -431.825 -441.811 19.30983 -429.8608 -442.6735 17.34577 -428.472 -442.9467 17.92102 -427.8968 -442.8625 19.30984 -431.825 -437.2897 19.30983 -431.2497 -437.6818 17.92103 -431.2497 -442.2032 17.92103 -429.8608 -442.6735 17.34577 -431.2497 -442.2032 17.92103 -431.2497 -437.6818 17.92103 -429.8608 -442.6735 17.34577 -428.472 -438.4253 17.92103 -427.8968 -442.8625 19.30984 -428.472 -442.9467 17.92102 -427.8968 -438.3411 19.30983 -427.8968 -442.8625 19.30984 -428.472 -438.4253 17.92103 -429.8609 -438.1522 17.34576 -428.472 -442.9467 17.92102 -429.8608 -442.6735 17.34577 -429.8609 -438.1522 17.34576 -428.472 -442.9467 17.92102 -429.8609 -438.1522 17.34576 -428.472 -438.4253 17.92103 - - - - - - - - - - -0.3826772 -3.657304e-006 0.9238821 -0.3826832 -1.339323e-006 0.9238796 -0.3826786 -3.098353e-006 0.9238815 -0.2551026 -0.9530007 0.163439 -0.2551049 -0.9530005 0.1634366 -0.255093 -0.9530072 0.1634164 0.3826875 2.698387e-006 0.9238778 0.3826875 2.698387e-006 0.9238778 0.3826875 2.698387e-006 0.9238778 -0.3826847 -7.803664e-007 0.923879 -0.2551076 -0.9530022 0.1634224 -0.2551035 -0.9530005 0.1634389 -0.2550858 -0.9530084 0.1634205 0.3826863 3.177877e-006 0.9238783 0.3826863 3.177877e-006 0.9238783 0.3826863 3.177877e-006 0.9238783 -0.9238826 -9.192813e-007 0.3826759 -0.9238777 -5.163841e-006 0.3826879 -0.9238759 -6.67894e-006 0.3826922 -0.2551007 -0.9530076 0.1634019 -0.2550683 -0.9530146 0.1634114 0.9238682 7.671922e-006 0.3827108 0.9238743 1.868544e-006 0.3826961 0.9238696 6.299941e-006 0.3827073 -0.9238844 5.95834e-007 0.3826716 -0.9238745 -2.113685e-007 -0.3826956 -0.923875 -5.958696e-007 -0.3826945 -0.923875 -5.958696e-007 -0.3826945 -0.255093 -0.953011 0.1633939 -0.2550801 -0.9530122 0.163407 0.9238757 4.965514e-007 0.3826926 -0.9238743 -9.931117e-008 -0.382696 -0.9238743 -9.931117e-008 -0.382696 -0.9238748 -4.838107e-007 -0.3826948 -0.3826797 -1.249737e-006 -0.9238811 -0.3826766 -2.397512e-007 -0.9238823 -0.382687 -3.606417e-006 -0.9238781 -0.2550927 -0.9530111 0.163394 0.9238747 -3.370233e-007 -0.382695 0.9238755 2.979314e-007 -0.3826933 0.9238755 2.979314e-007 -0.3826933 0.9238746 -4.965551e-007 -0.3826954 0.9238753 1.384002e-007 -0.3826937 0.9238746 -4.965551e-007 -0.3826954 -0.3826901 -4.616445e-006 -0.9238768 0.3826844 1.739373e-006 -0.9238792 0.3826844 1.739373e-006 -0.9238792 0.382682 9.420538e-007 -0.9238801 0.3826837 1.516562e-006 -0.9238794 0.3826813 7.192522e-007 -0.9238804 0.3826813 7.192522e-007 -0.9238804 - - - - - - - - - - 0.4521485 0.2636719 0.5454103 0.2636719 0.4521485 0.2324219 0.3466797 0.4995117 0.4169922 0.4707031 0.3427734 0.4008789 0.5454099 0.04687498 0.5454099 0.01611327 0.4521482 0.01611327 0.5454102 0.2636719 0.5454102 0.2324219 0.4521484 0.2324219 0.4169922 0.4707031 0.4433594 0.4008789 0.3427734 0.4008789 0.3466797 0.4995117 0.3427734 0.4008789 0.2744141 0.4707031 0.4521484 0.046875 0.5454102 0.046875 0.4521484 0.01611328 0.5454102 0.2324219 0.4521485 0.2016602 0.4521485 0.2324219 0.3427734 0.4008789 0.4433594 0.4008789 0.4106445 0.3310547 0.2744141 0.4707031 0.3427734 0.4008789 0.2416992 0.4008789 0.4521484 0.046875 0.5454102 0.07763672 0.5454102 0.2324219 0.5454102 0.2016602 0.4521485 0.2016602 0.5454104 0.2016602 0.4521486 0.1708985 0.4521486 0.2016602 0.4106445 0.3310547 0.3383789 0.3017578 0.3427734 0.4008789 0.2680664 0.3310547 0.2416992 0.4008789 0.5454104 0.07763675 0.4521486 0.04687502 0.4521486 0.07763675 0.5454102 0.2016602 0.5454102 0.1708985 0.4521485 0.1708985 0.4521485 0.1396485 0.4521485 0.1708985 0.5454103 0.1708985 0.3427734 0.4008789 0.3383789 0.3017578 0.2680664 0.3310547 0.5454101 0.1088867 0.4521484 0.07763672 0.4521484 0.1088867 0.5454102 0.07763672 0.4521485 0.07763672 0.5454102 0.1088867 0.4521484 0.1396484 0.5454102 0.1708984 0.5454102 0.1396484 0.4521481 0.1088866 0.4521481 0.1396483 0.5454098 0.1396483 0.4521486 0.1088868 0.5454104 0.1396485 0.5454104 0.1088868 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 1 9 9 10 2 11 4 12 10 13 5 14 11 15 5 16 12 17 13 18 14 19 15 20 16 21 17 22 18 23 5 24 10 25 19 26 12 27 5 28 20 29 21 6 22 30 23 31 16 32 24 33 17 34 25 35 26 36 27 37 5 16 19 38 28 39 5 40 29 41 20 42 23 43 22 44 30 45 31 46 32 47 33 48 34 49 35 50 36 51 5 52 37 53 29 54 38 55 39 56 40 57 41 58 42 59 43 60 34 61 36 62 44 63 45 64 46 65 47 66 48 67 49 68 50 69

-
-
-
- - - - -386.0985 -441.7269 20.69865 -387.4873 -437.4786 21.2739 -387.4873 -441.9999 21.2739 -387.4873 -441.9999 21.2739 -387.4873 -437.4786 21.2739 -388.8761 -442.4703 20.69865 -387.4873 -441.9999 21.2739 -387.4873 -442.3368 19.30983 -386.0985 -441.7269 20.69865 -386.0985 -437.2055 20.69864 -387.4873 -437.4786 21.2739 -386.0985 -441.7269 20.69865 -388.8762 -437.949 20.69864 -388.8761 -442.4703 20.69865 -385.5232 -441.811 19.30983 -386.0985 -437.2055 20.69864 -386.0985 -441.7269 20.69865 -385.5232 -441.811 19.30983 -388.8762 -437.949 20.69864 -389.4514 -438.3411 19.30983 -388.8761 -442.4703 20.69865 -389.4514 -442.8625 19.30983 -386.0985 -442.2032 17.92103 -386.0985 -437.2055 20.69864 -385.5232 -441.811 19.30983 -385.5232 -437.2897 19.30982 -389.4514 -442.8625 19.30983 -388.8761 -442.9467 17.92103 -385.5232 -437.2897 19.30982 -385.5232 -441.811 19.30983 -386.0985 -442.2032 17.92103 -387.4873 -442.6735 17.34575 -389.4514 -438.3411 19.30983 -388.8761 -438.4253 17.92101 -389.4514 -442.8625 19.30983 -388.8761 -438.4253 17.92101 -388.8761 -442.9467 17.92103 -389.4514 -442.8625 19.30983 -385.5232 -437.2897 19.30982 -386.0985 -442.2032 17.92103 -386.0985 -437.6818 17.92101 -386.0985 -442.2032 17.92103 -387.4873 -442.6735 17.34575 -386.0985 -437.6818 17.92101 -387.4873 -438.1522 17.34576 -388.8761 -442.9467 17.92103 -388.8761 -438.4253 17.92101 -387.4873 -442.6735 17.34575 -387.4873 -438.1522 17.34576 - - - - - - - - - - 0.3826769 3.177825e-006 0.9238823 0.3826769 3.177825e-006 0.9238823 0.3826769 3.177825e-006 0.9238823 -0.3826677 -3.177748e-006 0.9238861 -0.3826767 -2.270286e-007 0.9238823 -0.3826704 -2.292515e-006 0.9238849 0.255091 -0.9530046 0.1634344 0.2550956 -0.953005 0.1634248 0.2550945 -0.9530059 0.1634214 0.3826761 2.877039e-006 0.9238826 0.3826761 2.877039e-006 0.9238826 0.3826761 2.877039e-006 0.9238826 -0.3826794 6.582006e-007 0.9238812 0.2550953 -0.9530045 0.1634281 0.2551065 -0.9530027 0.1634216 0.923876 7.199655e-007 0.382692 0.9238765 1.191727e-006 0.3826907 0.9238765 1.191727e-006 0.3826907 -0.9238827 -6.083197e-006 0.3826759 -0.9238831 -6.48195e-006 0.3826749 -0.9238844 -7.769902e-006 0.3826716 0.2550898 -0.9530064 0.1634261 0.255097 -0.9530044 0.1634264 0.9238758 5.958664e-007 0.3826924 0.9238764 1.067629e-006 0.3826911 0.9238758 5.958664e-007 0.3826924 -0.9238849 -8.168651e-006 0.3826706 0.2550959 -0.9530053 0.1634229 0.9238753 -1.134158e-006 -0.3826937 0.9238746 -5.958709e-007 -0.3826953 0.9238746 -5.958709e-007 -0.3826953 0.2550953 -0.9530065 0.1634165 -0.9238764 -7.175501e-006 -0.3826909 -0.9238764 -7.175501e-006 -0.3826909 -0.923875 -8.445347e-006 -0.3826944 -0.9238761 -7.494552e-006 -0.3826918 -0.9238746 -8.764396e-006 -0.3826953 -0.9238746 -8.764396e-006 -0.3826953 0.9238755 -1.291036e-006 -0.3826932 0.9238748 -7.527521e-007 -0.3826948 0.9238755 -1.291036e-006 -0.3826932 0.382695 -3.11674e-006 -0.9238748 0.3826898 -1.442844e-006 -0.9238769 0.3826778 2.462912e-006 -0.9238818 -0.3826841 -5.02967e-006 -0.9238793 -0.38269 -3.004384e-006 -0.9238768 -0.3826818 -5.815097e-006 -0.9238802 -0.3826924 -2.218947e-006 -0.9238758 0.3826727 4.136805e-006 -0.923884 - - - - - - - - - - 0.4521484 0.2324219 0.5454102 0.2636719 0.4521484 0.2636719 0.4521484 0.01611328 0.5454102 0.01611328 0.4521484 0.046875 0.3466797 0.4995117 0.3427734 0.4008789 0.4169922 0.4707031 0.5454102 0.2324219 0.5454102 0.2636719 0.4521484 0.2324219 0.5454102 0.01611328 0.5454102 0.046875 0.4521484 0.046875 0.3466797 0.4995117 0.2744141 0.4707031 0.3427734 0.4008789 0.4169922 0.4707031 0.3427734 0.4008789 0.4433594 0.4008789 0.5454103 0.2324219 0.4521485 0.2324219 0.4521485 0.2016602 0.5454102 0.046875 0.5454102 0.07763672 0.4521484 0.046875 0.2744141 0.4707031 0.2416992 0.4008789 0.3427734 0.4008789 0.4433594 0.4008789 0.3427734 0.4008789 0.4106445 0.3310547 0.5454102 0.2324219 0.4521485 0.2016602 0.5454102 0.2016602 0.54541 0.07763669 0.4521483 0.07763669 0.4521483 0.04687498 0.2416992 0.4008789 0.2680664 0.3310547 0.3427734 0.4008789 0.5454104 0.2016602 0.4521486 0.2016602 0.4521486 0.1708985 0.3427734 0.4008789 0.3383789 0.3017578 0.4106445 0.3310547 0.5454101 0.1088867 0.4521484 0.07763671 0.5454103 0.1088867 0.4521485 0.1088867 0.4521485 0.07763673 0.3427734 0.4008789 0.2680664 0.3310547 0.3383789 0.3017578 0.5454107 0.2016603 0.4521489 0.1708986 0.5454107 0.1708986 0.4521484 0.1708984 0.4521484 0.1396484 0.5454102 0.1708984 0.5454102 0.1396484 0.4521484 0.1088867 0.5454102 0.1088867 0.4521487 0.1396485 0.4521487 0.1088868 0.5454104 0.1396485 0.5454097 0.1708983 0.4521481 0.1396483 0.5454097 0.1396483 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 4 12 12 13 5 14 6 15 13 16 7 17 8 18 7 19 14 20 15 21 16 22 17 23 18 24 19 25 20 26 13 27 21 28 7 29 14 30 7 31 22 32 23 33 24 34 25 35 19 36 26 37 20 38 21 39 27 40 7 41 28 42 29 43 30 44 7 45 31 46 22 47 32 36 33 48 34 49 35 50 36 51 37 52 7 53 27 54 31 55 38 56 39 57 40 58 41 59 42 60 43 61 44 62 45 63 46 64 47 65 45 66 44 67 43 68 42 69 48 70

-
-
-
- - - - -433.5513 -442.0628 10.42676 -435.1725 -442.0627 11.09826 -435.1724 -439.6218 8.805569 -435.1724 -439.6218 8.805569 -435.1725 -442.0627 11.09826 -436.7936 -442.0628 10.42675 -435.1724 -439.6218 8.805569 -432.8798 -442.0627 8.805627 -433.5513 -442.0628 10.42676 -435.1724 -439.6218 8.805569 -436.7936 -442.0628 10.42675 -437.4642 -442.1614 8.80506 -435.1724 -439.6218 8.805569 -433.5513 -442.0627 7.184499 -432.8798 -442.0627 8.805627 -435.1724 -439.6218 8.805569 -437.4642 -442.1614 8.80506 -436.7936 -442.0628 7.184509 -433.5513 -442.0627 7.184499 -435.1724 -439.6218 8.805569 -435.1725 -442.0627 6.513014 -435.1724 -439.6218 8.805569 -436.7936 -442.0628 7.184509 -435.1725 -442.0627 6.513014 - - - - - - - - - - -0.2890515 -0.6553952 -0.6977868 -0.2890515 -0.6553952 -0.6977868 -0.2890515 -0.6553952 -0.6977868 0.289049 -0.6554051 -0.6977785 0.289049 -0.6554051 -0.6977785 0.289049 -0.6554051 -0.6977785 -0.6977945 -0.6553834 -0.2890594 -0.6977945 -0.6553834 -0.2890594 -0.6977945 -0.6553834 -0.2890594 0.7174207 -0.6473771 -0.2573139 0.7174207 -0.6473771 -0.2573139 0.7174207 -0.6473771 -0.2573139 -0.6978039 -0.6553783 0.2890484 -0.6978039 -0.6553783 0.2890484 -0.6978039 -0.6553783 0.2890484 0.7173404 -0.6474078 0.2574604 0.7173404 -0.6474078 0.2574604 0.7173404 -0.6474078 0.2574604 -0.289038 -0.6553773 0.6978092 -0.289038 -0.6553773 0.6978092 -0.289038 -0.6553773 0.6978092 0.2890522 -0.6553838 0.6977972 0.2890522 -0.6553838 0.6977972 0.2890522 -0.6553838 0.6977972 - - - - - - - - - - 0.5385742 0.9169922 0.609375 0.9462891 0.6108398 0.8466797 0.6108398 0.8466797 0.609375 0.9462891 0.6796875 0.9169922 0.6108398 0.8466797 0.5092773 0.8466797 0.5385742 0.9169922 0.6108398 0.8466797 0.6796875 0.9169922 0.7089844 0.8466797 0.6108398 0.8466797 0.5385742 0.7758789 0.5092773 0.8466797 0.6108398 0.8466797 0.7089844 0.8466797 0.6796875 0.7758789 0.5385742 0.7758789 0.6108398 0.8466797 0.609375 0.746582 0.6108398 0.8466797 0.6796875 0.7758789 0.609375 0.746582 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -382.1757 -442.0627 11.09826 -383.7968 -442.0627 10.42675 -382.1758 -439.6218 8.805562 -382.1758 -439.6218 8.805562 -383.7968 -442.0627 10.42675 -384.4683 -442.0627 8.805627 -380.5546 -442.0627 10.42677 -382.1757 -442.0627 11.09826 -382.1758 -439.6218 8.805562 -382.1758 -439.6218 8.805562 -384.4683 -442.0627 8.805627 -383.7968 -442.0627 7.184504 -382.1758 -439.6218 8.805562 -379.884 -442.1614 8.805055 -380.5546 -442.0627 10.42677 -382.1757 -442.0627 6.51301 -382.1758 -439.6218 8.805562 -383.7968 -442.0627 7.184504 -382.1758 -439.6218 8.805562 -380.5546 -442.0627 7.184504 -379.884 -442.1614 8.805055 -380.5546 -442.0627 7.184504 -382.1758 -439.6218 8.805562 -382.1757 -442.0627 6.51301 - - - - - - - - - - 0.2890416 -0.6553937 -0.6977922 0.2890416 -0.6553937 -0.6977922 0.2890416 -0.6553937 -0.6977922 0.6978068 -0.6553743 -0.2890504 0.6978068 -0.6553743 -0.2890504 0.6978068 -0.6553743 -0.2890504 -0.2890288 -0.6554153 -0.6977773 -0.2890288 -0.6554153 -0.6977773 -0.2890288 -0.6554153 -0.6977773 0.6978139 -0.6553654 0.2890534 0.6978139 -0.6553654 0.2890534 0.6978139 -0.6553654 0.2890534 -0.71743 -0.6473857 -0.2572664 -0.71743 -0.6473857 -0.2572664 -0.71743 -0.6473857 -0.2572664 0.2890435 -0.6553711 0.6978127 0.2890435 -0.6553711 0.6978127 0.2890435 -0.6553711 0.6978127 -0.7173494 -0.6474157 0.2574154 -0.7173494 -0.6474157 0.2574154 -0.7173494 -0.6474157 0.2574154 -0.2890368 -0.6553914 0.6977965 -0.2890368 -0.6553914 0.6977965 -0.2890368 -0.6553914 0.6977965 - - - - - - - - - - 0.609375 0.9462891 0.5385742 0.9169922 0.6108398 0.8466797 0.6108398 0.8466797 0.5385742 0.9169922 0.5092773 0.8466797 0.6796875 0.9169922 0.609375 0.9462891 0.6108398 0.8466797 0.6108398 0.8466797 0.5092773 0.8466797 0.5385742 0.7758789 0.6108398 0.8466797 0.7089844 0.8466797 0.6796875 0.9169922 0.609375 0.746582 0.6108398 0.8466797 0.5385742 0.7758789 0.6108398 0.8466797 0.6796875 0.7758789 0.7089844 0.8466797 0.6796875 0.7758789 0.6108398 0.8466797 0.609375 0.746582 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -465.922 -273.222 60.78992 -471.502 -275.2072 46.24055 -471.4579 -271.9392 46.34148 -473.3296 -275.7178 43.38179 -471.4336 -278.4807 46.08902 -465.9415 -270.66 60.87707 -471.0985 -245.3666 47.16221 -465.9601 -276.089 60.52317 -465.8057 -270.1854 61.49729 -471.4056 -307.3885 44.75094 -472.9333 -238.788 44.6356 -465.859 -276.4691 61.01715 -464.5927 -272.9497 63.64937 -471.9953 -307.5826 43.70968 -469.8589 -307.79 40.8559 -471.4056 -307.3885 44.75094 -471.4336 -278.4807 46.08902 -473.3296 -275.7178 43.38179 -474.1305 -244.2655 38.23385 -472.9333 -238.788 44.6356 -471.0798 -239.09 47.3907 -465.6698 -269.2044 61.76199 -472.9634 -317.2701 41.40063 -471.9788 -313.92 43.40028 -469.899 -275.21 42.45191 -474.388 -250.1764 34.58111 -473.8852 -238.6283 39.91691 -468.4873 -242.3089 54.76504 -470.8361 -232.1326 47.61861 -465.7579 -277.3538 61.19949 -464.667 -250.1448 64.1304 -473.9738 -317.5296 33.39475 -471.3986 -314.6255 44.41593 -475.5878 -242.5024 34.4286 -474.421 -276.9585 28.44117 -475.6148 -238.6574 35.55044 -473.8158 -237.0345 40.15715 -468.6197 -244.8764 54.486 -468.2525 -237.068 55.1399 -471.4361 -230.8368 46.73096 -464.8687 -288.3244 62.62272 -464.2533 -272.9497 64.28077 -465.6236 -250.6086 61.79738 -474.1372 -320.5157 32.6815 -469.1356 -306.337 51.47135 -475.4341 -247.1656 31.4666 -474.3697 -254.573 28.95059 -472.6995 -229.7429 44.87447 -466.1147 -248.8931 60.5989 -465.8304 -246.6683 61.47623 -470.8361 -232.1326 47.61861 -470.3733 -231.8144 47.60852 -468.2525 -237.068 55.1399 -470.8361 -232.1326 47.61861 -471.4361 -230.8368 46.73096 -470.3733 -231.8144 47.60852 -472.6995 -229.7429 44.87447 -464.5151 -288.3244 62.94701 -466.0521 -290.1598 60.35364 -463.8928 -245.6314 64.99414 -474.0628 -317.283 27.74289 -473.6886 -326.0652 37.00608 -471.3967 -316.5921 44.32491 -470.9505 -316.0859 45.39405 -475.5228 -241.0832 31.76943 -475.6148 -238.6574 35.55044 -475.3376 -245.1123 29.4336 -473.8205 -276.7877 22.74635 -475.629 -236.6392 35.89042 -473.5444 -229.7411 39.47484 -465.7022 -241.8423 61.60878 -470.5739 -230.8368 46.93737 -471.7791 -213.3544 45.18178 -465.0317 -291.9951 62.30704 -465.3105 -241.8436 62.51291 -475.4301 -323.6443 29.91972 -475.4879 -328.0882 33.20354 -472.4675 -332.5828 40.3841 -473.5842 -315.2005 22.04806 -470.8142 -321.3278 44.47955 -466.2766 -299.673 59.23651 -475.5943 -236.3484 32.94797 -475.0432 -250.9661 27.03589 -474.9634 -248.3812 25.74695 -473.8051 -257.0187 23.12641 -475.629 -236.6392 35.89042 -475.5443 -230.5639 35.67057 -473.6162 -222.7738 37.10591 -470.5739 -230.8368 46.93737 -471.4361 -230.8368 46.73096 -469.5301 -212.2576 47.32963 -472.0649 -213.4539 43.83739 -471.7791 -213.3544 45.18178 -470.3688 -212.2577 46.93487 -466.4513 -295.1426 59.07392 -464.9189 -241.1182 63.09456 -475.1815 -320.5241 25.9514 -475.4105 -333.4497 34.95692 -473.0841 -332.5489 39.25054 -473.843 -316.7059 21.83806 -470.5364 -316.719 46.21152 -467.1234 -298.0328 57.64011 -472.2759 -314.6916 16.82589 -472.4651 -257.9628 17.68661 -475.6263 -231.2911 32.76072 -475.5443 -230.5639 35.67057 -472.2274 -213.6675 42.81113 -470.3688 -212.2577 46.93487 -471.957 -212.7136 44.17578 -470.8896 -207.5875 45.50145 -465.5521 -296.3383 61.04606 -463.1923 -216.9507 64.19816 -475.2458 -323.0875 24.5683 -475.4595 -325.8435 28.15885 -475.4105 -333.4497 34.95692 -475.5269 -329.6082 30.69503 -470.2207 -338.0535 42.34368 -472.0959 -339.8494 39.75725 -472.8519 -316.0177 16.79778 -470.7023 -318.2954 45.34658 -470.5364 -316.719 46.21152 -466.2766 -299.673 59.23651 -464.209 -298.029 61.31323 -474.3671 -250.4528 21.55557 -474.4055 -253.2092 22.19454 -472.4515 -276.2648 17.35194 -472.2759 -314.6916 16.82589 -475.5151 -226.5816 31.38852 -475.4107 -224.9654 33.82054 -472.563 -212.7034 38.99414 -470.3688 -212.2577 46.93487 -469.6172 -211.5396 47.84721 -469.5301 -212.2576 47.32963 -470.8896 -207.5875 45.50145 -469.6172 -211.5396 47.84721 -464.5131 -221.1615 62.59948 -474.7744 -318.616 21.55139 -474.8634 -321.5449 20.7698 -475.4875 -334.0916 32.17349 -475.2274 -339.3937 35.25535 -470.2207 -338.0535 42.34368 -470.8142 -321.3278 44.47955 -469.0991 -338.0535 42.59192 -472.3799 -339.7837 39.42784 -470.7023 -318.2954 45.34658 -468.8849 -321.0001 45.066 -469.2214 -317.124 46.87024 -465.5521 -296.3383 61.04606 -470.7023 -318.2954 45.34658 -469.3048 -319.4837 45.65482 -473.6325 -254.3294 17.49162 -475.1619 -220.6711 30.73439 -472.7045 -210.5764 32.82158 -469.325 -211.7681 47.84722 -471.1621 -207.3887 44.31452 -469.2229 -208.6621 47.97304 -466.4513 -295.1426 59.07392 -467.1234 -298.0328 57.64011 -463.1634 -291.9951 62.30704 -464.7108 -218.6906 61.87862 -474.7744 -318.616 21.55139 -475.2274 -339.3937 35.25535 -469.3846 -322.6428 44.44948 -468.2167 -356.7806 39.64537 -469.1972 -355.1814 39.66874 -470.6378 -356.2737 37.56974 -474.1528 -317.5745 16.77372 -468.8849 -321.0001 45.066 -469.2214 -317.124 46.87024 -464.209 -298.029 61.31323 -464.1445 -297.9393 61.1652 -463.1477 -297.4374 61.90973 -475.5113 -223.4778 29.2685 -473.2722 -216.9365 32.4239 -473.2722 -216.9365 32.4239 -469.325 -211.7681 47.84722 -469.6172 -211.5396 47.84721 -467.2786 -213.7097 53.9903 -470.3515 -206.6179 45.78681 -467.2786 -213.7097 53.9903 -464.3638 -214.9345 61.47061 -474.2984 -320.4709 16.69138 -475.3924 -339.1539 32.36099 -472.0601 -347.7607 37.50804 -469.1972 -355.1814 39.66874 -470.9739 -355.7072 37.20378 -474.1528 -317.5745 16.77372 -467.4565 -323.3269 44.89875 -469.3048 -319.4837 45.65482 -469.2214 -317.124 46.87024 -468.2965 -320.3787 44.46068 -468.3113 -316.911 46.60852 -464.1445 -297.9393 61.1652 -464.1445 -297.9393 61.1652 -464.209 -298.029 61.31323 -463.1477 -297.4374 61.90973 -473.6423 -251.5773 17.58578 -469.6628 -206.1599 46.56797 -467.0106 -211.2447 54.42042 -463.9231 -213.4003 62.03648 -465.1377 -217.1667 60.30389 -474.9818 -345.3745 33.87264 -474.9818 -345.3745 33.87264 -469.5602 -358.3951 37.63472 -468.2167 -356.7806 39.64537 -468.2965 -320.3787 44.46068 -467.4565 -323.3269 44.89875 -469.3048 -319.4837 45.65482 -469.0143 -206.5348 48.01804 -466.8381 -209.2754 54.7088 -463.0961 -215.1138 63.88212 -475.2122 -343.8378 31.31932 -471.224 -355.4179 36.36337 -472.0339 -354.2439 32.46758 -468.0073 -359.8215 37.64661 -474.6713 -350.4696 30.9078 -471.4964 -357.0663 32.46759 -474.6713 -350.4696 30.9078 -467.5742 -360.1299 37.64994 -474.9489 -347.9201 29.20929 - - - - - - - - - - -0.9250937 -0.02017269 0.3792028 -0.8911733 -0.02067326 0.4531917 -0.8782815 -0.003605597 0.4781304 -0.8386522 -0.02183721 0.5442294 -0.8677048 -0.0323005 0.4960293 -0.9606398 -0.01675229 0.2772915 -0.8695251 -0.009259563 0.4938019 -0.9622841 -0.01248193 0.2717602 -0.9059266 -0.02420359 0.4227425 -0.8992802 -0.02424352 0.4367006 -0.8278962 -0.002583965 0.5608754 -0.9220031 -0.004979592 0.3871504 -0.8879619 -0.0208315 0.4594451 -0.8682437 -0.02970678 0.4952479 0.928508 -0.01634752 0.3709524 0.9287022 -0.01625097 0.3704701 0.9268027 -0.01718952 0.3751551 -0.9964 -0.008682082 0.08433123 -0.9700978 -0.05320351 0.2368115 -0.9809394 0.006636641 0.1942005 -0.8930399 0.002533487 0.4499704 -0.8804269 -0.01139118 0.4740451 -0.945733 -0.03244197 0.3233211 -0.8769496 -0.02579027 0.4798898 0.9266736 -0.01725283 0.3754709 -0.9893169 -0.08020118 0.1217366 -0.9596596 -0.02013087 0.2804427 -0.9354665 0.009637338 0.353284 -0.866644 0.01159452 0.4987923 -0.892914 -0.01302822 0.4500386 -0.837353 -0.002604647 0.5466564 -0.9971624 0.01304755 0.07414142 -0.9072672 -0.03018174 0.4194702 -0.9872515 -0.07087969 0.1425151 -0.9998075 -0.003791529 -0.01925126 -0.9295759 -0.07172332 0.3615859 -0.9579125 0.0158592 0.2866221 -0.9354198 0.009837641 0.353402 -0.9361536 0.01778771 0.3511409 -0.8215231 0.01500253 0.5699778 -0.7908039 -0.02207613 0.6116713 -0.8787941 -0.01916083 0.4768163 -0.9253087 0.0007901612 0.3792139 -0.9818873 0.1189454 0.1474766 -0.9179064 -0.07075899 0.3904371 -0.9940182 -0.09548837 0.05300696 -0.9965879 -0.08245419 -0.003712987 -0.9852966 0.0431848 0.1653051 -0.9295042 -0.01818001 0.3683632 -0.9229197 -0.003215458 0.3849792 -0.4473772 0.6694936 0.5929856 -0.4473772 0.6694936 0.5929856 -0.4473772 0.6694936 0.5929856 -0.2885658 0.4465647 0.8469414 -0.2263098 0.5028356 0.8342303 -0.2640809 0.4693064 0.8426225 -0.819689 0.02449192 0.5722849 -0.6792674 -0.03523769 0.7330444 -0.8905528 -0.01635959 0.4545856 -0.8330613 0.03565602 0.5520303 -0.9910498 0.1316732 0.02196482 -0.9536362 0.0526477 0.2963211 -0.891931 -0.06053537 0.448101 -0.9166358 -0.06887519 0.3937449 -0.9994867 -0.01372446 -0.0289484 -0.9998299 -0.006240154 -0.01735776 -0.9980458 -0.01792997 -0.05985964 -0.9845336 0.0007322758 -0.1751941 -0.920847 -0.02142716 0.3893349 -0.9534067 0.07553441 0.292079 -0.922065 0.01148689 0.3868645 -0.1979493 0.526822 0.8266043 -0.7957955 0.05541535 0.6030246 -0.8914317 -0.02152245 0.4526437 -0.8804985 0.02104488 0.4735817 -0.9862202 0.1327931 0.09867018 -0.9771448 0.08547314 0.1946341 -0.8496115 -0.06139 0.523824 -0.9871348 0.09106458 -0.1314233 -0.8564733 -0.07552106 0.5106368 -0.9063468 -0.0617318 0.4180008 -0.9998721 -0.007719398 -0.01400987 -0.9940304 -0.1011395 -0.04091864 -0.9946865 -0.02259364 -0.1004404 -0.9860811 -0.08706594 -0.1416461 -0.9999785 -0.002222175 -0.006165223 -0.8984543 0.1000192 0.4275231 -0.9624147 0.1364093 0.2348414 -0.23283 -0.007451313 0.9724889 -0.2393093 -0.006736076 0.97092 -0.4200729 0.01385489 0.9073846 -0.981679 0.04948389 0.1840044 -0.9719163 0.07911301 0.22163 -0.7998541 0.07761217 0.5951552 -0.9086979 -0.008236737 0.417373 -0.8424671 0.03404737 0.5376709 -0.9821022 0.1872633 0.02019217 -0.8896485 0.0431433 0.4546033 -0.8743694 0.01610154 0.4849938 -0.9502056 0.3057009 -0.06046765 -0.9157837 -0.09525399 0.390214 -0.9074093 -0.0489875 0.417383 -0.9699192 -0.001503176 -0.2434224 -0.9738872 -0.113838 -0.1964299 -0.9996742 0.01872065 0.01734755 -0.9994792 0.02285319 0.02278453 -0.988866 0.06053812 0.1359379 -0.4258509 0.01453489 0.9046766 -0.9673295 0.09918527 0.2333149 -0.7817566 0.1655132 0.6012171 -0.9085298 -0.01180501 0.4176532 -0.8621333 0.1012006 0.4964722 -0.9972908 0.05231914 -0.05170889 -0.9995829 0.02560146 -0.01336404 -0.9994452 -0.01540748 0.02952655 -0.9998886 0.006669191 0.01335095 -0.7693325 -0.111951 0.6289631 -0.7651759 -0.1195087 0.6326323 -0.8774877 0.4677281 -0.1060461 -0.8748065 -0.1084369 0.4721811 -0.5013359 -0.4050463 0.7645913 -0.4159009 -0.4645196 0.7818235 -0.4624938 -0.274449 0.8430761 -0.9896123 -0.01758358 -0.1426826 -0.9857668 -0.1169181 -0.1208052 -0.9693068 0.001476101 -0.2458499 -0.8995893 0.3947186 -0.1869128 -0.9993404 0.02628104 0.02506114 -0.9676132 0.1363973 0.2124157 -0.9928273 0.08883072 0.08001864 -0.3482124 -0.5756075 0.7398812 -0.3998168 -0.5674225 0.719846 -0.3660675 -0.5729983 0.7332581 -0.9599241 0.1365892 0.2447226 -0.8597346 0.09861867 0.5011295 -0.8209064 0.04123266 0.5695723 -0.8882417 0.4588417 0.02215801 -0.9937295 0.05828273 -0.09541907 -0.9993341 -0.01302346 0.03408372 -0.8360911 -0.1023816 0.5389523 -0.2142346 -0.1463287 0.9657595 -0.2034128 -0.2297639 0.9517519 -0.21052 -0.1462179 0.9665928 -0.7959715 -0.1086379 0.5955058 -0.2404601 -0.258631 0.9355688 -0.2383413 -0.2675728 0.9335942 -0.5062665 -0.4080048 0.7597542 -0.5002687 -0.2672933 0.8235809 -0.4994446 -0.3861927 0.7755065 -0.5260947 -0.4157057 0.7418983 -0.9754398 -0.1839728 -0.1211246 -0.9458195 0.2309793 0.2281973 -0.9946023 0.09151716 0.04889694 -0.4378934 -0.5600773 0.7032516 -0.9602093 0.136998 0.2433713 -0.8808416 0.1015667 0.4623876 0.5259713 0.2766799 -0.8042402 0.5259713 0.2766799 -0.8042402 0.5259713 0.2766799 -0.8042402 -0.877373 0.1035627 0.4684991 -0.9938925 0.05421895 -0.09611494 -0.9980431 -0.03689857 0.05048276 -0.1390807 -0.1734928 0.974965 -0.2408597 -0.1636187 0.956669 -0.7240679 -0.2390937 0.6469621 -0.7521485 -0.2360048 0.6152839 -0.7670552 0.6403461 0.03979 -0.6073884 -0.4280697 0.6692053 0.9125526 -0.3705012 0.1731375 0.9125526 -0.3705012 0.1731375 0.9125526 -0.3705012 0.1731375 -0.4041633 -0.1793516 0.8969309 -0.9963557 0.07209759 0.04557776 -0.8959086 0.3088845 0.3192776 -0.9956233 0.08668575 0.03492485 -0.6153237 -0.7870578 -0.04378162 -0.6153237 -0.7870578 -0.04378162 -0.6153237 -0.7870578 -0.04378162 -0.7702928 0.2162932 0.5998886 -0.9369278 0.04977066 0.3459612 -0.8997463 0.1048695 0.423626 -0.9913438 0.0563354 -0.1185905 -0.9978883 -0.03474705 0.05487746 -0.8801785 -0.194935 0.4327657 -0.2444696 -0.1638669 0.9557103 -0.8874944 -0.1469828 0.436749 -0.9916556 0.05320188 -0.117425 -0.6189157 -0.4273176 0.659047 0.5271495 -0.4037607 0.7477237 0.3661699 -0.5428259 0.7558172 0.467257 -0.4364482 0.7688848 0.3474051 -0.561141 0.7512859 0.3474743 -0.6176542 0.7055246 0.569317 -0.789246 -0.2301495 0.569317 -0.789246 -0.2301495 0.569317 -0.789246 -0.2301495 -0.9836042 0.002639749 -0.1803216 -0.8310007 0.1540452 0.5345165 -0.936661 0.04204565 0.3477045 -0.8933116 0.1026918 0.4375486 -0.9185143 0.1114366 0.3793591 -0.9964557 -0.06974084 0.04703514 -0.8224901 -0.2437215 0.5139162 -0.5584169 -0.4396085 0.7035019 -0.5613198 -0.4178312 0.7143789 0.8280053 0.3057507 0.4700253 0.8280053 0.3057507 0.4700253 0.8280053 0.3057507 0.4700253 -0.9165401 0.07752674 0.3923568 -0.9385359 0.03728929 0.3431616 -0.8533593 0.1314947 0.5044671 -0.9965796 -0.06569976 0.05012538 -0.9755414 -0.1327124 0.1752326 -0.9209298 -0.236259 0.3099517 -0.4083209 -0.5208525 0.7496577 -0.9957647 -0.08359477 0.03826924 -0.9742607 -0.1501085 0.1681772 -0.7907971 -0.34313 0.5068547 -0.3804296 -0.5261103 0.7605796 -0.9958027 -0.08354291 0.03738354 - - - - - - - - - - 0.6206055 0.5258789 0.6201172 0.3774414 0.6386719 0.3774414 0.6220703 0.3544922 0.6386719 0.3774414 0.6074219 0.3774414 0.6201172 0.3774414 0.6206055 0.5258789 0.6206055 0.5258789 0.6386719 0.3774414 0.6386719 0.5253906 0.6074219 0.3774414 0.6220703 0.3544922 0.6201172 0.3774414 0.6386719 0.3774414 0.6220703 0.3544922 0.7758789 0.3774414 0.6074219 0.5253906 0.6074219 0.3774414 0.6206055 0.5258789 0.6206055 0.5258789 0.6386719 0.5253906 0.6411133 0.5317383 0.6074219 0.3774414 0.4609375 0.3774414 0.6220703 0.3544922 0.7758789 0.3774414 0.6220703 0.3544922 0.8120117 0.3535156 0.6049805 0.5307617 0.6074219 0.5253906 0.6206055 0.5258789 0.6210937 0.5585938 0.6206055 0.5258789 0.6411133 0.5317383 0.4609375 0.3774414 0.4599609 0.3696289 0.6220703 0.3544922 0.8588867 0.5214844 0.859375 0.5249023 0.8710938 0.5244141 0.6220703 0.3544922 0.7788086 0.2939453 0.8120117 0.3535156 0.8100586 0.3774414 0.7758789 0.3774414 0.8120117 0.3535156 0.6049805 0.5307617 0.6206055 0.5258789 0.6210937 0.5585937 0.6210937 0.5585938 0.6411133 0.5317383 0.6455078 0.5351563 0.4599609 0.3696289 0.4121094 0.3417969 0.6220703 0.3544922 0.4262695 0.3671875 0.4599609 0.3696289 0.4609375 0.3774414 0.8588867 0.5214844 0.8710937 0.5244141 0.8720703 0.5214844 0.6220703 0.3544922 0.7480469 0.2587891 0.7788086 0.2939453 0.8120117 0.3535156 0.7788086 0.2939453 0.8125 0.309082 0.7910156 0.472168 0.7758789 0.3774414 0.8100586 0.3774414 0.8100586 0.3774414 0.8120117 0.3535156 0.8447266 0.3979492 0.6010742 0.5332031 0.6049805 0.5307617 0.6210938 0.5585938 0.6210937 0.5585937 0.6455078 0.5351562 0.7573242 0.5610352 0.4121094 0.3417969 0.4121094 0.2646484 0.6220703 0.3544922 0.4262695 0.3671875 0.4121094 0.3417969 0.4599609 0.3696289 0.4233398 0.3774414 0.4262695 0.3671875 0.4609375 0.3774414 0.7788086 0.2939453 0.7480469 0.2587891 0.7910156 0.2514648 0.6220703 0.3544922 0.6220703 0.2075195 0.7480469 0.2587891 0.7788086 0.2939453 0.8125 0.2592773 0.8125 0.309082 0.8125 0.309082 0.8188477 0.3110352 0.7758789 0.4692383 0.7758789 0.3774414 0.7910156 0.472168 0.7910156 0.472168 0.8100586 0.3774414 0.8217773 0.4770508 0.8217773 0.4770508 0.8100586 0.3774414 0.8447266 0.3979492 0.8447266 0.3979492 0.8120117 0.3535156 0.8515625 0.387207 0.5541992 0.5595703 0.6010742 0.5332031 0.6210938 0.5585938 0.6210937 0.5722656 0.6210937 0.5585937 0.7573242 0.5610352 0.6455078 0.5351563 0.7539062 0.5351563 0.7573242 0.5610352 0.3925781 0.2578125 0.4121094 0.2646484 0.4121094 0.3417969 0.4121094 0.2646484 0.6220703 0.2075195 0.6220703 0.3544922 0.4233398 0.3774414 0.4121094 0.3417969 0.4262695 0.3671875 0.4233398 0.3774414 0.4609375 0.3774414 0.4746094 0.4667969 0.7788086 0.2939453 0.7910156 0.2514648 0.8125 0.2592773 0.7480469 0.2587891 0.7636719 0.2216797 0.7910156 0.2514648 0.6220703 0.2075195 0.7250977 0.206543 0.7480469 0.2587891 0.8125 0.309082 0.8125 0.2592773 0.8188477 0.3110352 0.8120117 0.3535156 0.8188477 0.3110352 0.8525391 0.3618164 0.7578125 0.5244141 0.7758789 0.4692383 0.7910156 0.472168 0.7714844 0.5371094 0.7910156 0.472168 0.8217773 0.4770508 0.8447266 0.3979492 0.847168 0.3999023 0.8217773 0.4770508 0.8447266 0.3979492 0.8515625 0.387207 0.847168 0.3999023 0.8515625 0.387207 0.8120117 0.3535156 0.8525391 0.3618164 0.5541992 0.5595703 0.6210937 0.5585937 0.5541992 0.5639648 0.5541992 0.5595703 0.5463867 0.5336914 0.6010742 0.5332031 0.5541992 0.5639648 0.6210938 0.5585937 0.6210938 0.5722656 0.6210938 0.5722656 0.7573242 0.5610352 0.7763672 0.5742187 0.7573242 0.5610352 0.7539062 0.5351562 0.7578125 0.5244141 0.4121094 0.2646484 0.3925781 0.2578125 0.4121094 0.2080078 0.3652344 0.3032227 0.3925781 0.2578125 0.4121094 0.3417969 0.4121094 0.2646484 0.4121094 0.2080078 0.6220703 0.2075195 0.4135742 0.3789062 0.4121094 0.3417969 0.4233398 0.3774414 0.4140625 0.3881836 0.4233398 0.3774414 0.4746094 0.4667969 0.7910156 0.2514648 0.8022461 0.2255859 0.8125 0.2592773 0.7480469 0.2587891 0.7250977 0.206543 0.7636719 0.2216797 0.7636719 0.2216797 0.7739258 0.1977539 0.7910156 0.2514648 0.6220703 0.2075195 0.6235352 0.1518555 0.7250977 0.206543 0.8188477 0.3110352 0.8125 0.2592773 0.8198242 0.2646484 0.8525391 0.3618164 0.8188477 0.3110352 0.8520508 0.3017578 0.7714844 0.5371094 0.7578125 0.5244141 0.7910156 0.472168 0.8032227 0.5209961 0.7714844 0.5371094 0.8217773 0.4770508 0.8515625 0.387207 0.8520508 0.3964844 0.847168 0.3999023 0.8515625 0.387207 0.8525391 0.3618164 0.9350586 0.3588867 0.5356445 0.5629883 0.5541992 0.5595703 0.5541992 0.5639648 0.5356445 0.5629883 0.5463867 0.5336914 0.5541992 0.5595703 0.7763672 0.5742187 0.7573242 0.5610352 0.8037109 0.5336914 0.7573242 0.5610352 0.7578125 0.5244141 0.7714844 0.5371094 0.3925781 0.2578125 0.3774414 0.2299805 0.4121094 0.2080078 0.3652344 0.3032227 0.3540039 0.262207 0.3925781 0.2578125 0.3325195 0.3427734 0.3652344 0.3032227 0.4121094 0.3417969 0.4121094 0.2080078 0.4204102 0.1518555 0.6220703 0.2075195 0.4140625 0.3881836 0.4135742 0.3789062 0.4233398 0.3774414 0.3857422 0.3852539 0.4121094 0.3417969 0.4135742 0.3789062 0.4140625 0.3881836 0.4746094 0.4667969 0.5058594 0.546875 0.7910156 0.2514648 0.7739258 0.1977539 0.8022461 0.2255859 0.8125 0.2592773 0.8022461 0.2255859 0.8251953 0.2353516 0.7250977 0.206543 0.7441406 0.1865234 0.7636719 0.2216797 0.7636719 0.2216797 0.7578125 0.1640625 0.7739258 0.1977539 0.6220703 0.2075195 0.4204102 0.1518555 0.6235352 0.1518555 0.6235352 0.1518555 0.7119141 0.1508789 0.7250977 0.206543 0.8198242 0.2646484 0.8125 0.2592773 0.8251953 0.2353516 0.8188477 0.3110352 0.8198242 0.2646484 0.847168 0.2607422 0.8188477 0.3110352 0.8520508 0.3017578 0.8525391 0.3618164 0.8520508 0.3017578 0.887207 0.2758789 0.7573242 0.5610352 0.7714844 0.5371094 0.8032227 0.5209961 0.8520508 0.3964844 0.8515625 0.387207 0.9394531 0.3876953 0.8525391 0.3618164 0.9345703 0.3452148 0.9350586 0.3588867 0.8515625 0.387207 0.9350586 0.3588867 0.940918 0.3813477 0.5356445 0.5629883 0.5219727 0.5258789 0.5463867 0.5336914 0.7763672 0.5742187 0.8037109 0.5336914 0.8071289 0.5463867 0.8037109 0.5336914 0.7573242 0.5610352 0.8032227 0.5209961 0.3774414 0.2299805 0.3925781 0.1889648 0.4121094 0.2080078 0.3540039 0.262207 0.3774414 0.2299805 0.3925781 0.2578125 0.328125 0.2817383 0.3540039 0.262207 0.3652344 0.3032227 0.3857422 0.3852539 0.3325195 0.3427734 0.4121094 0.3417969 0.3325195 0.3427734 0.3330078 0.3286133 0.3652344 0.3032227 0.4121094 0.2080078 0.4121094 0.1499023 0.4204102 0.1518555 0.3554687 0.4204102 0.3754883 0.4160156 0.3818359 0.4228516 0.4057617 0.4052734 0.4140625 0.3881836 0.5058594 0.546875 0.5058594 0.546875 0.4746094 0.4667969 0.5078125 0.5102539 0.7441406 0.1865234 0.7578125 0.1640625 0.7636719 0.2216797 0.7250977 0.206543 0.7119141 0.1508789 0.7441406 0.1865234 0.4204102 0.1518555 0.4223633 0.09570313 0.6235352 0.1518555 0.6235352 0.1518555 0.7055664 0.09570313 0.7119141 0.1508789 0.8198242 0.2646484 0.8251953 0.2353516 0.8427734 0.2314453 0.8198242 0.2646484 0.8427734 0.2314453 0.847168 0.2607422 0.8520508 0.3017578 0.847168 0.2607422 0.887207 0.2758789 0.8525391 0.3618164 0.887207 0.2758789 0.934082 0.3344727 0.8515625 0.387207 0.940918 0.3813477 0.9394531 0.3876953 0.9350586 0.3588867 0.9345703 0.3452148 0.9384766 0.3447266 0.8525391 0.3618164 0.934082 0.3344727 0.9345703 0.3452148 0.940918 0.3813477 0.9350586 0.3588867 0.9643555 0.3652344 0.5175781 0.5600586 0.5219727 0.5258789 0.5356445 0.5629883 0.7763672 0.5742187 0.8071289 0.5463867 0.9179688 0.5795898 0.4121094 0.2080078 0.3925781 0.1889648 0.4121094 0.1499023 0.3774414 0.2299805 0.378418 0.175293 0.3925781 0.1889648 0.3540039 0.262207 0.3652344 0.2119141 0.328125 0.2817383 0.3466797 0.2382813 0.3540039 0.262207 0.3330078 0.3286133 0.328125 0.2817383 0.3652344 0.3032227 0.3051758 0.3725586 0.3325195 0.3427734 0.3857422 0.3852539 0.3325195 0.3427734 0.2949219 0.340332 0.3330078 0.3286133 0.4121094 0.1499023 0.4121094 0.09570312 0.4204102 0.1518555 0.3710937 0.4287109 0.3554687 0.4204102 0.3818359 0.4228516 0.5307617 0.5805664 0.5195312 0.8017578 0.5131836 0.8256836 0.3818359 0.4370117 0.3710937 0.4287109 0.3818359 0.4228516 0.5058594 0.546875 0.5078125 0.5102539 0.5175781 0.5600586 0.7441406 0.1865234 0.7475586 0.1308594 0.7578125 0.1640625 0.7119141 0.1508789 0.730957 0.1416016 0.7441406 0.1865234 0.6235352 0.1518555 0.4223633 0.09570312 0.6245117 0.09570312 0.4204102 0.1518555 0.4121094 0.09570313 0.4223633 0.09570313 0.7119141 0.1508789 0.7055664 0.09570313 0.730957 0.1416016 0.6235352 0.1518555 0.6245117 0.09570312 0.7055664 0.09570312 0.847168 0.2607422 0.8427734 0.2314453 0.8662109 0.2158203 0.847168 0.2607422 0.875 0.2402344 0.887207 0.2758789 0.887207 0.2758789 0.9389648 0.2954102 0.940918 0.3813477 0.9438477 0.3964844 0.9394531 0.3876953 0.9350586 0.3588867 0.9384766 0.3447266 0.9643555 0.3652344 0.9438477 0.3964844 0.940918 0.3813477 0.9643555 0.3652344 0.5175781 0.5600586 0.5078125 0.5102539 0.5219727 0.5258789 0.8071289 0.5463867 0.8964844 0.5600586 0.9179687 0.5795898 0.3925781 0.1889648 0.3999023 0.1464844 0.4121094 0.1499023 0.378418 0.175293 0.3857422 0.1391602 0.3925781 0.1889648 0.3652344 0.2119141 0.378418 0.175293 0.3540039 0.262207 0.3466797 0.2382813 0.3652344 0.2119141 0.328125 0.2817383 0.324707 0.2539062 0.3466797 0.2382812 0.2983398 0.2866211 0.328125 0.2817383 0.3330078 0.3286133 0.3051758 0.3725586 0.3857422 0.3852539 0.3046875 0.3837891 0.3051758 0.3725586 0.2949219 0.340332 0.3325195 0.3427734 0.2949219 0.340332 0.2958984 0.3330078 0.3330078 0.3286133 0.4121094 0.1499023 0.3999023 0.1464844 0.4121094 0.09570313 0.3554688 0.4204102 0.3710938 0.4287109 0.3647461 0.4384766 0.5219727 0.5869141 0.5307617 0.5805664 0.5131836 0.8256836 0.5195313 0.8017578 0.5214844 0.8422852 0.5131836 0.8256836 0.3710937 0.4287109 0.3818359 0.4370117 0.3671875 0.4394531 0.7441406 0.1865234 0.730957 0.1416016 0.7475586 0.1308594 0.7055664 0.09570313 0.7231445 0.09570313 0.730957 0.1416016 0.847168 0.2607422 0.8662109 0.2158203 0.875 0.2402344 0.887207 0.2758789 0.875 0.2402344 0.8959961 0.2070313 0.9389648 0.2954102 0.887207 0.2758789 0.9487305 0.2265625 0.9394531 0.3876953 0.9438477 0.3964844 0.9418945 0.3964844 0.9643555 0.3652344 0.9384766 0.3447266 0.965332 0.3491211 0.9609375 0.3959961 0.9438477 0.3964844 0.9643555 0.3652344 0.8549805 0.5375977 0.8549805 0.534668 0.8535156 0.5410156 0.8964844 0.5600586 0.9086914 0.5517578 0.9179688 0.5795898 0.3925781 0.1889648 0.3857422 0.1391602 0.3999023 0.1464844 0.2983398 0.2866211 0.324707 0.2539063 0.328125 0.2817383 0.2958984 0.3330078 0.2983398 0.2866211 0.3330078 0.3286133 0.3857422 0.3852539 0.3779297 0.4008789 0.3046875 0.3837891 0.3051758 0.3725586 0.3046875 0.3837891 0.2094727 0.3642578 0.2182617 0.3632812 0.2949219 0.340332 0.3051758 0.3725586 0.2949219 0.340332 0.2119141 0.3305664 0.2958984 0.3330078 0.3999023 0.1464844 0.4033203 0.09570312 0.4121094 0.09570312 0.3710937 0.4287109 0.3671875 0.4394531 0.3647461 0.4384766 0.3779297 0.4008789 0.3857422 0.3852539 0.3896484 0.4067383 0.3671875 0.4394531 0.3818359 0.4370117 0.3818359 0.4414062 0.5175781 0.5869141 0.5053711 0.8256836 0.4995117 0.8208008 0.5131836 0.8256836 0.5214844 0.8422852 0.512207 0.840332 0.730957 0.1416016 0.7231445 0.09570312 0.7475586 0.1308594 0.875 0.2402344 0.8662109 0.2158203 0.8818359 0.1928711 0.875 0.2402344 0.8818359 0.1928711 0.8959961 0.2070312 0.887207 0.2758789 0.8959961 0.2070313 0.9160156 0.2265625 0.887207 0.2758789 0.9160156 0.2265625 0.9487305 0.2265625 0.9418945 0.3964844 0.9438477 0.3964844 0.934082 0.4648438 0.9609375 0.3959961 0.9643555 0.3652344 0.9692383 0.3681641 0.934082 0.4648437 0.9438477 0.3964844 0.9609375 0.3959961 0.9179687 0.5795898 0.9086914 0.5517578 0.9267578 0.5493164 0.3857422 0.1391602 0.3901367 0.09570313 0.3999023 0.1464844 0.2983398 0.2866211 0.2993164 0.2573242 0.324707 0.2539062 0.2958984 0.3330078 0.2553711 0.3164062 0.2983398 0.2866211 0.2182617 0.3632812 0.3051758 0.3725586 0.2094727 0.3642578 0.2182617 0.3632812 0.2119141 0.3305664 0.2949219 0.340332 0.2119141 0.3305664 0.2119141 0.3168945 0.2958984 0.3330078 0.3999023 0.1464844 0.3901367 0.09570312 0.4033203 0.09570312 0.5 0.5732422 0.5029297 0.5732422 0.4882813 0.5888672 0.3671875 0.4423828 0.3818359 0.4443359 0.3608398 0.449707 0.5102539 0.5932617 0.5175781 0.5869141 0.4995117 0.8208008 0.4995117 0.8208008 0.5053711 0.8256836 0.5009766 0.840332 0.7231445 0.09570312 0.7412109 0.09570312 0.7475586 0.1308594 0.9609375 0.3959961 0.9692383 0.3681641 0.9711914 0.3798828 0.9477539 0.472168 0.934082 0.4648437 0.9609375 0.3959961 0.9179687 0.5795898 0.9267578 0.5493164 0.9360352 0.5561523 0.9086914 0.5517578 0.9165039 0.5356445 0.9267578 0.5493164 0.2983398 0.2866211 0.269043 0.2695312 0.2993164 0.2573242 0.2119141 0.3168945 0.2553711 0.3164062 0.2958984 0.3330078 0.2553711 0.3164063 0.269043 0.2695313 0.2983398 0.2866211 0.2011719 0.3305664 0.2182617 0.3632813 0.2094727 0.3642578 0.2011719 0.3305664 0.2119141 0.3305664 0.2182617 0.3632812 0.5024414 0.5800781 0.4882812 0.5888672 0.5029297 0.5732422 0.3818359 0.4443359 0.3818359 0.4521484 0.3608398 0.449707 0.9697266 0.3964844 0.9609375 0.3959961 0.9711914 0.3798828 0.9477539 0.472168 0.9609375 0.3959961 0.9697266 0.3964844 0.9165039 0.5356445 0.934082 0.4648437 0.9477539 0.472168 0.9360352 0.5561523 0.9267578 0.5493164 0.956543 0.4755859 0.9272461 0.5766602 0.9179687 0.5795898 0.9360352 0.5561523 0.9267578 0.5493164 0.9165039 0.5356445 0.9477539 0.472168 0.269043 0.2695313 0.2753906 0.2485352 0.2993164 0.2573242 0.2119141 0.3168945 0.2119141 0.3081055 0.2553711 0.3164063 0.2553711 0.3164063 0.222168 0.2651367 0.269043 0.2695313 0.2011719 0.3305664 0.2094727 0.3642578 0.1923828 0.3305664 0.956543 0.4755859 0.9477539 0.472168 0.9697266 0.3964844 0.9267578 0.5493164 0.9477539 0.472168 0.956543 0.4755859 0.269043 0.2695313 0.2431641 0.2426758 0.2753906 0.2485352 0.2119141 0.3081055 0.2114258 0.2651367 0.2114258 0.2651367 0.222168 0.2651367 0.2553711 0.3164063 0.222168 0.2651367 0.2431641 0.2426758 0.269043 0.2695313 0.1923828 0.3305664 0.2094727 0.3642578 0.1879883 0.3305664 0.2431641 0.2426758 0.2543945 0.2285156 0.2753906 0.2485352 - - - - - - - - - - - - - - -

0 0 1 1 2 2 1 1 3 3 2 4 4 5 1 6 0 7 0 8 2 9 5 10 4 11 3 12 1 13 2 14 3 15 6 16 7 17 4 18 0 19 0 20 5 21 8 22 4 23 9 24 3 25 6 26 3 27 10 28 11 29 7 30 0 31 12 32 0 33 8 34 9 35 13 36 3 37 14 38 15 39 16 40 17 41 18 42 19 43 20 44 6 45 10 46 11 47 0 48 12 49 12 50 8 51 21 52 13 53 22 54 3 55 23 56 13 57 9 58 14 59 16 60 24 61 17 62 25 63 18 64 19 65 18 66 26 67 27 68 6 69 20 70 20 71 10 72 28 73 29 74 11 75 12 76 12 77 21 78 30 79 22 80 31 81 17 82 23 83 22 84 13 85 32 86 23 87 9 88 18 89 25 90 33 91 17 92 34 93 25 94 18 95 35 96 26 97 19 65 26 98 36 99 37 100 6 101 27 102 27 103 20 104 38 105 38 106 20 107 28 108 28 109 10 110 39 111 40 112 29 113 12 114 41 115 12 116 30 117 21 118 42 119 30 120 43 121 31 122 22 123 31 124 34 125 17 126 32 127 22 128 23 129 32 130 9 131 44 132 18 133 33 134 35 135 25 136 45 137 33 138 34 139 46 140 25 141 26 142 35 143 36 144 19 145 36 146 47 147 48 148 37 149 27 150 49 151 27 152 38 153 50 154 51 155 52 156 53 157 54 158 55 159 39 160 10 161 56 162 40 163 12 164 57 165 40 166 58 167 29 168 57 169 12 170 41 171 41 172 30 173 59 174 30 175 42 176 48 177 31 178 43 179 60 180 61 181 43 182 22 183 31 184 60 185 34 186 62 187 22 188 32 189 63 190 32 191 44 192 33 193 64 194 65 195 25 196 46 197 45 198 45 199 66 200 33 201 34 202 67 203 46 204 36 205 35 206 68 207 47 208 36 209 69 210 49 211 48 212 27 213 70 214 49 215 38 216 54 217 71 218 55 219 39 220 56 221 72 222 73 223 40 224 57 225 73 226 58 227 40 228 59 229 30 230 74 231 30 232 48 233 49 234 43 235 75 236 60 237 61 238 76 239 43 240 77 241 61 242 22 243 60 244 78 245 34 246 63 247 62 248 32 249 79 250 22 251 62 252 63 253 44 254 80 255 33 256 66 257 64 258 65 259 64 260 81 261 46 262 82 263 45 264 45 265 83 266 66 267 34 268 78 269 67 270 67 271 84 272 46 273 85 274 65 275 81 276 36 277 68 278 86 279 36 280 86 279 69 281 47 282 69 283 87 284 30 285 49 286 70 287 88 288 89 289 90 290 47 291 91 292 92 293 39 294 72 295 93 296 73 297 94 298 58 299 59 300 74 301 95 302 74 303 30 304 70 305 75 306 96 307 60 308 76 309 75 310 43 311 97 312 76 313 61 314 79 315 77 316 22 317 77 318 98 319 61 320 60 321 99 322 78 323 79 324 62 325 63 326 100 327 63 328 80 329 80 330 44 331 101 332 82 333 83 334 45 335 46 336 84 337 82 338 78 339 102 340 67 341 67 342 103 343 84 344 85 345 81 346 104 347 85 348 104 349 105 350 69 351 86 352 87 353 47 354 87 355 106 356 89 357 107 358 90 359 92 360 91 361 108 362 47 363 106 364 91 365 93 366 72 367 109 368 110 369 94 370 73 371 59 372 95 373 111 374 60 375 96 376 99 377 75 378 112 379 96 380 76 381 113 382 75 310 114 383 115 384 76 385 98 386 97 387 61 388 116 389 77 390 79 391 77 392 117 393 98 394 99 395 118 396 78 397 119 398 79 399 63 400 120 401 121 402 122 403 100 404 119 405 63 406 80 407 101 408 110 409 82 410 123 411 83 412 84 413 124 414 82 415 67 416 102 417 125 418 78 419 118 420 126 421 84 422 103 423 124 424 67 425 125 426 103 427 105 428 104 429 127 430 86 431 128 432 87 433 106 364 87 434 129 435 130 436 131 437 132 438 92 439 108 440 133 441 134 442 93 443 109 444 110 445 101 446 94 447 95 448 135 449 111 450 96 451 136 452 99 453 112 454 137 455 96 456 75 310 113 457 112 458 76 459 115 460 113 461 114 462 138 463 115 464 139 465 97 466 98 467 140 468 141 469 142 470 116 471 117 472 77 473 117 474 143 475 98 476 99 477 136 478 118 479 141 480 144 481 145 482 146 483 120 484 122 485 121 486 147 487 122 488 148 489 120 490 149 491 82 492 124 493 123 494 103 495 150 496 124 497 105 498 127 499 128 500 87 501 128 502 151 503 129 504 87 505 152 506 132 507 131 508 153 509 133 510 108 511 154 512 155 513 134 514 109 515 156 516 157 517 158 518 135 519 159 520 111 521 96 522 137 523 160 524 161 525 138 526 114 527 143 528 139 529 98 530 141 531 162 532 142 533 140 534 142 535 163 536 164 537 117 538 116 539 117 540 165 541 143 542 136 543 166 544 118 545 148 546 149 547 167 548 162 549 141 550 145 551 149 552 120 553 146 554 168 555 169 556 170 557 122 558 147 559 171 560 124 561 150 562 123 563 128 564 127 565 172 566 128 567 172 568 151 569 87 570 151 571 173 572 87 573 174 574 152 575 175 576 176 577 177 578 155 579 109 580 178 581 179 582 134 583 155 584 111 585 159 586 180 587 137 588 181 589 160 590 161 591 182 592 138 593 143 594 183 595 139 596 184 597 140 598 163 599 164 600 165 601 117 602 165 603 185 604 143 605 160 606 181 607 186 608 167 609 149 610 187 611 188 612 189 613 190 614 191 615 189 616 192 617 193 618 194 619 195 620 150 621 196 622 123 623 155 624 178 625 197 626 198 627 179 628 155 629 111 630 180 631 199 632 159 633 200 634 180 635 161 636 201 637 182 638 185 639 183 640 143 641 183 642 202 643 139 644 203 645 164 646 204 647 203 648 165 649 164 650 205 651 206 652 207 653 189 654 191 655 190 656 208 657 155 658 197 659 198 660 155 661 208 662 200 663 179 664 198 665 199 666 180 667 209 668 210 669 111 670 199 671 180 672 200 673 198 674 201 675 211 676 182 677 185 678 212 679 183 680 183 681 213 682 202 683 203 684 204 685 214 686 209 687 198 688 208 689 180 690 198 691 209 692 201 693 215 694 211 695 212 696 216 697 183 681 216 698 213 699 183 700 213 701 217 702 202 703 214 704 204 705 218 706 215 707 219 708 211 709

-
-
-
- - - - -472.6697 -311.8719 45.57092 -472.8395 -311.4199 46.68804 -472.7303 -308.0072 45.71837 -472.8395 -311.4199 46.68804 -472.6697 -311.8719 45.57092 -480.1977 -306.7054 47.13681 -472.6697 -311.8719 45.57092 -472.7303 -308.0072 45.71837 -471.0595 -308.1438 45.59869 -473.3626 -307.9727 50.40813 -472.8395 -311.4199 46.68804 -480.1977 -306.7054 47.13681 -479.2458 -304.744 49.90832 -472.6697 -311.8719 45.57092 -471.5187 -311.831 43.89652 -480.1977 -306.7054 47.13681 -476.1308 -307.3749 44.50185 -471.0595 -308.1438 45.59869 -472.7303 -308.0072 45.71837 -471.0402 -312.6083 45.45412 -473.3626 -307.9727 50.40813 -473.3468 -305.7649 50.60789 -479.2458 -304.744 49.90832 -480.1977 -306.7054 47.13681 -479.8381 -302.3335 47.49561 -471.0402 -312.6083 45.45412 -480.1522 -306.1948 45.12846 -471.7779 -307.8593 43.99589 -476.1308 -307.3749 44.50185 -472.7303 -308.0072 45.71837 -472.6238 -305.9951 45.94987 -479.2458 -304.744 49.90832 -479.4267 -302.7899 50.03373 -473.3626 -307.9727 50.40813 -473.3468 -305.7649 50.60789 -472.6238 -305.9951 45.94987 -479.4267 -302.7899 50.03373 -479.9881 -302.2595 45.51354 -480.1522 -306.1948 45.12846 -476.1308 -307.3749 44.50185 -480.1522 -306.1948 45.12846 -471.5187 -311.831 43.89652 -471.7779 -307.8593 43.99589 -475.0397 -304.7001 44.32505 -476.1308 -307.3749 44.50185 -472.6238 -305.9951 45.94987 -480.1522 -306.1948 45.12846 -479.4286 -302.4472 44.86001 -479.9881 -302.2595 45.51354 -475.0397 -304.7001 44.32505 -479.4286 -302.4472 44.86001 - - - - - - - - - - 0.9891821 0.009926667 0.1463564 0.9899351 0.008457177 0.1412694 0.9895056 -0.02263136 0.1427112 -0.510641 -0.8212263 0.2546237 -0.510641 -0.8212263 0.2546237 -0.510641 -0.8212263 0.2546237 0.05942874 -0.0330998 0.9976836 0.06839339 -0.03696628 0.9969733 0.06556746 -0.03574753 0.9972076 0.9909572 -0.01139944 0.1336936 -0.4182637 -0.6876458 0.5934633 -0.3974736 -0.6791045 0.6171157 -0.4075853 -0.6833273 0.6057541 -0.5260544 -0.7607362 -0.3801936 -0.4943036 -0.7998213 -0.3405142 -0.5581073 -0.7952005 -0.2370074 0.1157764 0.9814705 0.1526808 0.1170655 0.9821547 0.1472001 0.09589653 0.9673298 0.2346848 0.0570319 -0.03206592 0.9978573 -0.4290155 -0.6918427 0.5807748 0.9896463 -0.03265233 0.1397639 -0.9722046 -0.004579733 0.2340882 -0.9910112 0.05413844 0.1223348 -0.9873507 0.03465255 0.1547182 -0.4104268 -0.8600335 -0.3031374 -0.5551522 -0.8030156 -0.2167302 0.1235076 0.9851228 0.1194947 0.350093 0.08876904 -0.9324993 0.350093 0.08876904 -0.9324993 0.350093 0.08876904 -0.9324993 -0.12525 -0.07508597 0.9892798 -0.1279965 -0.07834318 0.9886755 -0.1342751 -0.08579452 0.9872231 -0.1363898 -0.08830584 0.9867117 0.9852048 -0.07011279 0.156383 -0.9848348 -0.1002766 0.1415804 -0.9963472 0.06651973 0.05354793 -0.9990143 0.04281024 -0.01173319 -0.1543734 -0.01765177 -0.9878549 -0.1494159 -0.03031051 -0.9883097 -0.1239526 0.006500494 -0.9922668 -0.113525 0.01744503 -0.993382 0.4497275 -0.2403143 -0.8602292 0.4497275 -0.2403143 -0.8602292 0.4497275 -0.2403143 -0.8602292 -0.7424133 0.09584152 -0.6630512 -0.7424133 0.09584152 -0.6630512 -0.7424133 0.09584152 -0.6630512 -0.149224 -0.0209638 -0.9885812 -0.1427379 -0.04327412 -0.9888141 - - - - - - - - - - 0.6674805 0.8193359 0.6645508 0.8305664 0.6479492 0.8168945 0.6137695 0.7407227 0.6020508 0.7260742 0.6518555 0.7353516 0.6020508 0.7260742 0.6103516 0.7666016 0.6025391 0.7670898 0.6479492 0.8168945 0.6645508 0.8305664 0.6455078 0.8642578 0.6137695 0.7407227 0.6518555 0.7353516 0.652832 0.7792969 0.6020508 0.7260742 0.6005859 0.7163086 0.6518555 0.7353516 0.6010742 0.7045898 0.6269531 0.7158203 0.6186523 0.7172852 0.6020508 0.7260742 0.6025391 0.7670898 0.5957031 0.7304688 0.6137695 0.7407227 0.652832 0.7792969 0.6210938 0.7856445 0.6479492 0.8168945 0.6455078 0.8642578 0.6342773 0.8637695 0.6625977 0.7724609 0.6518555 0.7353516 0.6733398 0.7460938 0.5957031 0.7304687 0.6005859 0.7163086 0.6020508 0.7260742 0.6005859 0.7163086 0.6523437 0.7275391 0.6518555 0.7353516 0.6010742 0.7045898 0.6235352 0.699707 0.6269531 0.7158203 0.6669922 0.7182617 0.6538086 0.6977539 0.6586914 0.6879883 0.6044922 0.8759766 0.6000977 0.8579102 0.6381836 0.8852539 0.6381836 0.8852539 0.6000977 0.8579102 0.6342773 0.8637695 0.6376953 0.8164062 0.6479492 0.8168945 0.6723633 0.7714844 0.6625977 0.7724609 0.6733398 0.7460938 0.6733398 0.7460937 0.6518555 0.7353516 0.6723633 0.7260742 0.6518555 0.7353516 0.6523437 0.7275391 0.6723633 0.7260742 0.6328125 0.7109375 0.6523438 0.7275391 0.6005859 0.7163086 0.6142578 0.6865234 0.6328125 0.7109375 0.6005859 0.7163086 0.6713867 0.6904297 0.6669922 0.7182617 0.6586914 0.6879883 0.6523437 0.7275391 0.6713867 0.7192383 0.6723633 0.7260742 0.6523437 0.7275391 0.6328125 0.7109375 0.637207 0.6831055 0.6616211 0.6938477 0.6523438 0.7275391 0.637207 0.6831055 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 2 9 1 10 9 11 10 12 11 13 12 14 13 15 14 16 15 17 16 18 17 19 18 20 6 21 8 22 19 23 10 24 12 25 20 26 2 27 9 28 21 29 22 30 23 31 24 32 25 33 14 34 13 35 14 36 26 37 15 38 16 39 27 40 17 41 28 42 29 43 30 44 31 45 32 46 33 47 33 48 32 49 34 50 35 51 2 52 21 50 36 53 22 54 24 55 24 56 23 57 37 58 23 59 38 60 37 61 39 62 40 63 41 64 42 65 39 66 41 67 43 68 44 69 45 70 46 71 47 72 48 73 40 74 39 75 49 76 50 77 40 78 49 79

-
-
-
- - - - -473.8034 -289.4989 40.25521 -474.8406 -287.8287 40.36853 -473.4756 -289.4989 40.23701 - - - - - - - - - - 0.05538225 -0.03331633 0.9979092 0.06596218 -0.0246393 0.9975179 0.05910027 -0.02957403 0.9978139 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -474.8406 -287.8287 40.36853 -474.9242 -282.6942 40.4986 -473.4756 -289.4989 40.23701 -474.9242 -282.6942 40.4986 -474.8406 -287.8287 40.36853 -474.9879 -282.6661 39.34955 -473.4689 -280.4114 40.4736 -474.9242 -282.6942 40.4986 -474.9879 -282.6661 39.34955 -473.7966 -280.4114 40.49179 -474.9043 -287.8006 39.21948 -473.7966 -280.4114 40.49179 -473.8604 -280.3833 39.34275 -474.8406 -287.8287 40.36853 -473.8672 -289.4708 39.10616 -474.9043 -287.8006 39.21948 -474.9879 -282.6661 39.34955 -474.9043 -287.8006 39.21948 -473.5326 -280.3833 39.32456 -473.8604 -280.3833 39.34275 -473.4689 -280.4114 40.4736 -473.7966 -280.4114 40.49179 -473.8604 -280.3833 39.34275 -474.9879 -282.6661 39.34955 -473.8672 -289.4708 39.10616 -473.5394 -289.4708 39.08797 -473.8034 -289.4989 40.25521 -473.5326 -280.3833 39.32456 -473.5394 -289.4708 39.08797 -473.8672 -289.4708 39.10616 -473.8034 -289.4989 40.25521 -473.4756 -289.4989 40.23701 - - - - - - - - - - 0.06596218 -0.0246393 0.9975179 0.05847874 -0.02582446 0.9979546 0.05910027 -0.02957403 0.9978139 -0.9983342 -0.01765682 0.05492702 -0.9983328 -0.01765121 0.05495522 -0.998334 -0.0176559 0.05493162 0.05632264 -0.02497871 0.9981001 -0.8948772 0.4422024 0.0604299 -0.8948781 0.4421998 0.06043584 -0.8948796 0.4421955 0.06044593 -0.9983326 -0.01765029 0.05495982 0.05539514 -0.02438666 0.9981667 -0.8948804 0.442193 0.06045186 -0.8479971 -0.528901 0.0341258 -0.8479961 -0.5289025 0.03412854 -0.8479982 -0.5288995 0.03412296 -0.05538889 0.02438382 -0.9981671 -0.06315557 0.02625685 -0.9976582 -0.05641721 0.02457119 -0.9981049 0.001361551 0.9997024 0.02435593 0.001398079 0.9997027 0.02434328 0.001408075 0.9997028 0.02433983 -0.05538229 0.0243796 -0.9981675 -0.05538862 0.02438364 -0.9981671 -0.05538336 0.03331387 -0.9979092 -0.05927095 0.03012729 -0.9977872 -0.847995 -0.528904 0.03413138 0.001351555 0.9997024 0.02435938 -0.001304152 -0.9997027 -0.02434858 -0.001293893 -0.9997027 -0.02434626 -0.001341645 -0.9997024 -0.02435705 -0.001351903 -0.9997024 -0.02435937 - - - - - - - - - - 0.7294922 0.5239258 0.6958008 0.5239258 0.7407227 0.4936523 0.7407227 0.4716797 0.6933594 0.4716797 0.7407227 0.4511719 0.7407227 0.4936523 0.6958008 0.5239258 0.6806641 0.4794922 0.7407227 0.4716797 0.7407227 0.4511719 0.7612305 0.4716797 0.6933594 0.4716797 0.6933594 0.4511719 0.7407227 0.4511719 0.6958008 0.5239258 0.6806641 0.4951172 0.6806641 0.4794922 0.7612305 0.4716797 0.7407227 0.4511719 0.7612305 0.4511719 0.6933594 0.4716797 0.6777344 0.4511719 0.6933594 0.4511719 0.6958008 0.5239258 0.7294922 0.5239258 0.6806641 0.4780273 0.6806641 0.4956055 0.6723633 0.4838867 0.6723633 0.4936523 0.6806641 0.4956055 0.6958008 0.5239258 0.6806641 0.4780273 0.7294922 0.5239258 0.7402344 0.4956055 0.7397461 0.4912109 0.6777344 0.4716797 0.6777344 0.4511719 0.6933594 0.4716797 0.7294922 0.5239258 0.7397461 0.4912109 0.6806641 0.4780273 0.6806641 0.4956055 0.6806641 0.4780273 0.6723633 0.4838867 0.7397461 0.4912109 0.7402344 0.4956055 0.7485352 0.4941406 0.7485352 0.484375 0.7397461 0.4912109 0.7485352 0.4941406 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 2 6 1 7 6 8 7 9 8 10 9 11 4 12 10 13 5 14 1 15 11 16 6 17 9 18 8 19 12 20 13 21 14 22 15 23 16 24 17 25 18 26 19 27 20 28 21 29 22 30 23 31 18 32 17 33 24 34 25 35 26 36 14 37 13 38 17 39 25 40 18 41 19 42 27 43 20 44 28 45 29 46 30 47 31 48 28 49 30 50

-
-
-
- - - - -473.8618 -252.9741 41.33734 -474.8739 -251.3039 41.5909 -473.5396 -252.9741 41.27467 - - - - - - - - - - 0.1908023 -0.03332069 0.9810628 0.2012349 -0.02463991 0.9792331 0.1944758 -0.02957655 0.9804613 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -474.8739 -251.3039 41.5909 -474.939 -246.1694 41.73115 -473.5396 -252.9741 41.27467 -474.939 -246.1694 41.73115 -474.8739 -251.3039 41.5909 -475.1587 -246.1414 40.6015 -473.5007 -243.8867 41.50812 -474.939 -246.1694 41.73115 -475.1587 -246.1414 40.6015 -473.8229 -243.8867 41.5708 -475.0936 -251.2758 40.46126 -473.8229 -243.8867 41.5708 -474.0426 -243.8586 40.44115 -474.8739 -251.3039 41.5909 -474.0815 -252.946 40.20768 -475.0936 -251.2758 40.46126 -475.1587 -246.1414 40.6015 -475.0936 -251.2758 40.46126 -473.7203 -243.8586 40.37847 -474.0426 -243.8586 40.44115 -473.5007 -243.8867 41.50812 -473.8229 -243.8867 41.5708 -474.0426 -243.8586 40.44115 -475.1587 -246.1414 40.6015 -474.0815 -252.946 40.20768 -473.7593 -252.9461 40.14502 -473.8618 -252.9741 41.33734 -474.0426 -243.8586 40.44115 -473.7203 -243.8586 40.37847 -473.5007 -243.8867 41.50812 -473.7593 -252.9461 40.14502 -474.0815 -252.946 40.20768 -473.8618 -252.9741 41.33734 -473.5396 -252.9741 41.27467 - - - - - - - - - - 0.2012349 -0.02463991 0.9792331 0.1938891 -0.02582327 0.9806835 0.1944758 -0.02957655 0.9804613 -0.9815274 -0.0176494 0.1905057 -0.9815327 -0.01765494 0.1904782 -0.9815283 -0.0176503 0.1905012 0.1917781 -0.02498035 0.9811204 -0.8782945 0.4421911 0.18184 -0.8782945 0.4421927 0.1818361 -0.8782944 0.4421955 0.1818295 -0.9815335 -0.01765584 0.1904738 0.190871 -0.0243901 0.9813121 -0.8782944 0.4421972 0.1818256 -0.8354372 -0.5289069 0.1493393 -0.8354447 -0.5288989 0.1493254 -0.8354293 -0.5289152 0.1493537 -0.1908568 0.02438269 -0.981315 -0.198482 0.02625706 -0.9797528 -0.1918844 0.02458124 -0.9811097 0.004658035 0.9997024 0.02394803 0.004658035 0.9997024 0.02394803 0.004658035 0.9997024 0.02394803 -0.1908771 0.02439591 -0.9813107 -0.1908576 0.02438323 -0.9813148 -0.1907923 0.03333443 -0.9810643 -0.1946385 0.03013825 -0.9804119 -0.8354526 -0.5288905 0.149311 0.004658176 0.9997024 0.02394796 0.004658176 0.9997024 0.02394796 0.004658176 0.9997024 0.02394796 -0.004695628 -0.9997021 -0.02395122 -0.00471655 -0.999702 -0.02395302 -0.004619169 -0.9997026 -0.02394466 -0.004598249 -0.9997028 -0.02394286 - - - - - - - - - - 0.7294922 0.5239258 0.6958008 0.5239258 0.7407227 0.4931641 0.7182617 0.4716797 0.6708984 0.4716797 0.7182617 0.4511719 0.7407227 0.4931641 0.6958008 0.5239258 0.6806641 0.4790039 0.7182617 0.4716797 0.7182617 0.4511719 0.7387695 0.4716797 0.6708984 0.4716797 0.6708984 0.4511719 0.7182617 0.4511719 0.6958008 0.5239258 0.6806641 0.4951172 0.7182617 0.4511719 0.7387695 0.4511719 0.6708984 0.4716797 0.6552734 0.4511719 0.6708984 0.4511719 0.6958008 0.5239258 0.7294922 0.5239258 0.6806641 0.4785156 0.6806641 0.4956055 0.6723633 0.4838867 0.6723633 0.4936523 0.6806641 0.4956055 0.6958008 0.5239258 0.6806641 0.4785156 0.7294922 0.5239258 0.7402344 0.4956055 0.7397461 0.4912109 0.6552734 0.4716797 0.6552734 0.4511719 0.6708984 0.4716797 0.7294922 0.5239258 0.7397461 0.4912109 0.6806641 0.4785156 0.6806641 0.4956055 0.6806641 0.4785156 0.6723633 0.4838867 0.7397461 0.4912109 0.7402344 0.4956055 0.7485352 0.4941406 0.7485352 0.484375 0.7397461 0.4912109 0.7485352 0.4941406 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 2 6 1 7 6 8 7 9 8 10 9 11 4 12 10 13 5 14 1 15 11 16 6 8 9 11 8 17 12 18 13 19 14 20 15 21 16 22 17 23 18 24 19 25 20 26 21 27 22 28 23 29 18 30 17 31 24 32 25 33 26 34 14 35 13 36 17 37 25 38 18 39 27 40 28 41 29 42 30 43 31 44 32 45 33 46 30 47 32 48

-
-
-
- - - - -463.1634 -291.9951 62.30704 -464.1445 -297.9393 61.1652 -463.1477 -297.4374 61.90973 - - - - - - - - - - 0.5773952 0.06110413 -0.8141751 0.5773952 0.06110413 -0.8141751 0.5773952 0.06110413 -0.8141751 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -461.0299 -223.0169 58.59653 -457.9243 -227.4062 60.90581 -460.6383 -222.2915 59.17819 -457.9243 -227.4062 60.90581 -461.0299 -223.0169 58.59653 -461.4216 -223.0156 57.6924 -461.4216 -223.0156 57.6924 -463.9719 -218.2413 51.22353 -457.9243 -227.4062 60.90581 - - - - - - - - - - 0.720215 0.1536499 -0.6765221 0.720215 0.1536499 -0.6765221 0.720215 0.1536499 -0.6765221 0.8399378 0.4031707 -0.36326 0.8399378 0.4031707 -0.36326 0.8399378 0.4031707 -0.36326 0.6458016 0.7134328 0.2719448 0.6458016 0.7134328 0.2719448 0.6458016 0.7134328 0.2719448 - - - - - - - - - - - - - - -

0 1 2 3 4 5 6 7 8

-
-
-
- - - - -464.9085 -219.7638 39.13411 -457.9243 -227.4062 60.90581 -463.9719 -218.2413 51.22353 -464.9085 -219.7638 39.13411 -464.3391 -226.0498 50.56962 -457.9243 -227.4062 60.90581 -466.0927 -212.9877 43.69214 -466.8179 -226.5399 43.24583 -464.3391 -226.0498 50.56962 -464.9085 -219.7638 39.13411 -461.8341 -230.0664 56.68252 -457.9243 -227.4062 60.90581 -464.3391 -226.0498 50.56962 -465.6184 -256.3833 38.53554 -466.8179 -226.5399 43.24583 -464.9085 -219.7638 39.13411 -467.1773 -253.1125 42.42511 - - - - - - - - - - 0.9457305 0.3073763 -0.1054208 0.8837714 0.4508444 -0.1252492 0.9085419 0.3999608 -0.12076 0.5345076 -0.729126 -0.4274071 0.5345076 -0.729126 -0.4274071 0.5345076 -0.729126 -0.4274071 0.9760113 0.2097729 -0.0582869 0.8725489 -0.4084681 -0.267978 0.8725489 -0.4084681 -0.267978 0.8725489 -0.4084681 -0.267978 0.7852669 -0.2680666 -0.5581184 0.7354905 -0.1397592 -0.6629638 0.78714 -0.3155822 -0.5299231 0.9207848 -0.02443666 0.3893048 0.9213208 -0.02421682 0.3880484 0.9213579 -0.02420156 0.3879612 0.920668 -0.02448445 0.3895778 - - - - - - - - - - 0.8867187 0.5205078 0.8857422 0.5400391 0.8881836 0.5297852 0.8867188 0.5205078 0.8852539 0.5302734 0.8857422 0.5400391 0.8867187 0.5205078 0.8881836 0.5297852 0.8901367 0.5234375 0.8842773 0.5239258 0.8852539 0.5302734 0.8867188 0.5205078 0.8837891 0.5366211 0.8857422 0.5400391 0.8852539 0.5302734 0.8720703 0.5214844 0.8842773 0.5239258 0.8867187 0.5205078 0.8720703 0.5214844 0.8735352 0.5244141 0.8842773 0.5239258 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -464.9085 -219.7638 39.13411 -466.0927 -212.9877 43.69214 -466.2933 -212.0101 43.021 - - - - - - - - - - 0.9457305 0.3073763 -0.1054208 0.9760113 0.2097729 -0.0582869 0.9822152 0.1864629 -0.02202207 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -464.9085 -219.7638 39.13411 -466.2933 -212.0101 43.021 -462.4939 -190.2934 39.97788 -465.2495 -193.4309 43.41326 - - - - - - - - - - 0.8725811 -0.08526366 0.4809701 0.868014 -0.08326824 0.4895079 0.8190303 -0.06338575 0.5702382 0.8038075 -0.05766063 0.5920885 - - - - - - - - - - 0.8867188 0.5205078 0.8901367 0.5229492 0.8984375 0.5185547 0.8979492 0.5224609 0.8984375 0.5185547 - - - - - - - - - - - - - - -

0 0 1 1 2 2 1 1 3 3 2 4

-
-
-
- - - - -465.2495 -193.4309 43.41326 -465.0444 -192.9414 43.93084 -462.4939 -190.2934 39.97788 - - - - - - - - - - 0.8273011 -0.5332988 0.1765368 0.8273011 -0.5332988 0.1765368 0.8273011 -0.5332988 0.1765368 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -462.4939 -190.2934 39.97788 -465.0444 -192.9414 43.93084 -462.998 -194.883 50.07393 -455.8887 -197.2154 60.26849 -462.4939 -190.2934 39.97788 -455.8887 -197.2154 60.26849 -460.0087 -189.1628 50.84927 -462.998 -194.883 50.07393 -460.8571 -198.34 56.38751 -455.8887 -197.2154 60.26849 -461.4598 -186.4416 44.10303 -460.4302 -199.8639 57.96225 -460.4302 -199.8639 57.96225 -460.2325 -202.3348 58.6831 -455.8887 -197.2154 60.26849 -460.6383 -222.2915 59.17819 -457.9243 -227.4062 60.90581 - - - - - - - - - - 0.294042 -0.8755502 -0.3833421 0.3146033 -0.8699436 -0.3797669 0.2729478 -0.8808429 -0.3868013 0.2666258 -0.88234 -0.3877974 0.9710703 0.06760981 -0.2290228 0.9466271 0.1515785 -0.2844663 0.9563359 0.163531 -0.2422382 0.5612662 -0.6308518 -0.5357296 0.5772122 -0.5854172 -0.569309 0.5819561 -0.5702506 -0.579777 0.975106 -0.0259544 -0.220215 0.6039524 -0.4846414 -0.6327434 0.5329435 -0.1973809 -0.8228074 0.4211046 -0.07743845 -0.9037003 0.4451873 -0.09239137 -0.8906582 0.461027 -0.04879678 -0.8860434 0.4673591 -0.05014392 -0.8826443 - - - - - - - - - - 0.8984375 0.5185547 0.8979492 0.5224609 0.8999023 0.5268555 0.8984375 0.5185547 0.8999023 0.5268555 0.9038086 0.5336914 0.9038086 0.5336914 0.9018555 0.5239258 0.8999023 0.5268555 0.9008789 0.5322266 0.9038086 0.5336914 0.8984375 0.5185547 0.9003906 0.5185547 0.9008789 0.5322266 0.9013672 0.5341797 0.9038086 0.5336914 0.9013672 0.5341797 0.9008789 0.5361328 0.9038086 0.5336914 0.8603516 0.5166016 0.8686523 0.5166016 0.8588867 0.512207 0.8686523 0.5166016 0.8706055 0.5141602 0.8588867 0.512207 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -457.097 -193.1835 57.96749 -455.8887 -197.2154 60.26849 -455.7481 -193.4625 58.72023 - - - - - - - - - - 0.3957073 -0.3628823 -0.8436422 0.3957073 -0.3628823 -0.8436422 0.3957073 -0.3628823 -0.8436422 - - - - - - - - - - 0.9033203 0.5297852 0.9038086 0.5336914 0.9038086 0.5307617 - - - - - - - - - - - - - - -

0 0 1 1 2 2

-
-
-
- - - - -455.8887 -197.2154 60.26849 -457.097 -193.1835 57.96749 -460.0087 -189.1628 50.84927 - - - - - - - - - - 0.9466271 0.1515785 -0.2844663 0.9387493 0.09176074 -0.3321592 0.9563359 0.163531 -0.2422382 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -461.3892 -250.3777 57.84562 -461.5251 -251.3587 57.58092 -458.4595 -254.4524 59.60097 -461.6609 -251.8333 56.96069 -458.4595 -254.4524 59.60097 -461.5251 -251.3587 57.58092 - - - - - - - - - - 0.5483558 0.03432603 -0.8355403 0.628114 0.1204486 -0.7687424 0.565534 0.02839549 -0.824236 0.7484996 0.5444018 -0.378649 0.7471273 0.5720619 -0.3384464 0.7571513 0.4280809 -0.4934255 - - - - - - - - - - - - - - -

0 1 2 3 4 5

-
-
-
- - - - -465.6184 -256.3833 38.53554 -458.4595 -254.4524 59.60097 -461.6609 -251.8333 56.96069 -465.6184 -256.3833 38.53554 -461.6795 -257.2623 56.60679 -458.4595 -254.4524 59.60097 -467.153 -259.6541 42.17265 - - - - - - - - - - 0.6785788 0.6658262 -0.3101712 0.7471273 0.5720619 -0.3384464 0.7484996 0.5444018 -0.378649 0.7761381 -0.5985753 -0.1982857 0.745083 -0.6383014 -0.1934493 0.7407844 -0.6434906 -0.1927648 0.783099 -0.5890833 -0.1993412 - - - - - - - - - - 0.8720703 0.5214844 0.8754883 0.5380859 0.8759766 0.5341797 0.8720703 0.5214844 0.8740234 0.5356445 0.8754883 0.5380859 0.8710938 0.5244141 0.8740234 0.5356445 0.8720703 0.5214844 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -467.1773 -253.1125 42.42511 -465.6184 -256.3833 38.53554 -461.6609 -251.8333 56.96069 - - - - - - - - - - 0.6600002 0.6840189 -0.3106733 0.6785788 0.6658262 -0.3101712 0.7484996 0.5444018 -0.378649 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -461.8341 -230.0664 56.68252 -461.343 -231.7819 57.88101 -457.9243 -227.4062 60.90581 - - - - - - - - - - 0.7852669 -0.2680666 -0.5581184 0.6979981 -0.05976088 -0.7136017 0.7354905 -0.1397592 -0.6629638 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -461.6795 -257.2623 56.60679 -461.5784 -257.6424 57.10078 -458.4595 -254.4524 59.60097 -461.5784 -257.6424 57.10078 -461.4773 -258.5271 57.28312 -458.4595 -254.4524 59.60097 - - - - - - - - - - 0.7865733 -0.4010341 -0.4695467 0.7865733 -0.4010341 -0.4695467 0.7865733 -0.4010341 -0.4695467 0.669679 -0.07573272 -0.7387792 0.6032155 0.007222142 -0.7975455 0.5920874 0.01976053 -0.8056315 - - - - - - - - - - - - - - -

0 1 2 3 4 5

-
-
-
- - - - -471.4502 -239.335 10.25218 -467.8584 -235.8949 7.384252 -469.1638 -235.8725 10.35287 -471.4502 -239.335 10.25218 -469.1638 -235.8725 10.35287 -466.8013 -239.6315 10.32619 -469.1638 -235.8725 10.35287 -467.8584 -235.8949 7.384252 -467.8873 -233.144 7.46878 -470.2837 -239.335 7.666552 -466.8013 -239.6315 10.32619 -469.1638 -235.8725 10.35287 -469.3519 -235.5027 13.57525 -466.8558 -256.9054 10.11656 -469.1344 -232.9774 10.43739 -467.8873 -233.144 7.46878 -467.8584 -235.8949 7.384252 -466.2764 -233.1439 7.327836 -470.2837 -239.335 7.666552 -468.2683 -298.4402 6.658379 -471.4358 -295.037 9.619309 -470.2837 -239.335 7.666552 -471.4502 -239.335 10.25218 -468.1845 -239.1361 13.77023 -466.8013 -239.6315 10.32619 -469.3519 -235.5027 13.57525 -469.3519 -235.5027 13.57525 -469.3617 -232.7506 13.6694 -466.8558 -256.9054 10.11656 -471.4358 -295.037 9.619309 -466.2475 -301.2478 6.51171 -470.5823 -294.9243 6.940672 -470.5823 -294.9243 6.940672 -468.1709 -257.4381 13.43556 -466.9784 -295.8108 9.644411 -466.2764 -233.1439 7.327836 -466.2475 -301.2478 6.51171 -465.6047 -233.1439 9.622261 -468.3198 -301.2478 6.658379 -469.5255 -298.6068 9.626992 -468.2683 -298.4402 6.658379 -470.5823 -294.9243 6.940672 -471.4358 -295.037 9.619309 -467.9953 -295.8649 12.90952 -466.9784 -295.8108 9.644411 -469.5255 -298.6068 9.626992 -465.5756 -301.6802 8.806137 -469.5857 -301.4029 9.483441 -468.3198 -301.2478 6.658379 -468.2683 -298.4402 6.658379 -469.5255 -298.6068 9.626992 -467.9953 -295.8649 12.90952 -468.5713 -297.191 12.88141 -466.9784 -295.8108 9.644411 -469.8722 -298.7478 12.85735 -469.5255 -298.6068 9.626992 -469.8722 -298.7478 12.85735 -470.0178 -301.6442 12.77501 - - - - - - - - - - -0.7784266 0.5217424 -0.3490515 -0.7783647 0.5224647 -0.3481076 -0.7782335 0.5239548 -0.3461559 -0.01656153 -0.01436364 0.9997597 -0.01704999 -0.01781287 0.999696 -0.01681966 -0.01418503 0.9997579 -0.9700235 0.009643557 -0.2428196 -0.9153976 0.002773723 -0.4025413 -0.9182044 0.01105127 -0.3959527 -0.7785655 0.5200666 -0.3512357 -0.8465724 -0.5321459 0.01166206 -0.8465724 -0.5321459 0.01166206 -0.8465724 -0.5321459 0.01166206 -0.01393898 -0.01145026 0.9998373 -0.9744644 0.01642037 -0.2239409 -0.08712807 0.02968397 -0.9957548 -0.07317226 0.01453059 -0.9972135 -0.07690455 0.02378422 -0.9967547 -0.1324026 0.01239104 -0.9911186 -0.06583889 0.01035939 -0.9977765 -0.9517115 0.008925505 -0.306864 -0.9130366 0.004585278 -0.4078518 -0.9115277 0.004436174 -0.4112148 -0.9230217 -0.1680868 -0.3460892 -0.9288021 -0.0839493 -0.360942 -0.8979801 -0.3055067 -0.3166976 -0.9983106 -0.001594955 -0.05808169 -0.9979308 0.004837781 -0.06411427 -0.9304837 0.00389822 -0.3663126 -0.007350813 -0.008254949 0.9999389 -0.06474667 0.005531264 -0.9978864 -0.1008043 0.01353154 -0.9948143 -0.9528729 0.009076784 -0.3032339 -0.9298471 0.003191978 -0.3679322 -0.006925245 -0.007453852 0.9999482 0.9597038 0.003775699 -0.2809881 0.9598862 0.003745517 -0.2803649 0.959708 0.003775005 -0.2809737 -0.07059743 0.001294387 -0.997504 -0.8121644 -0.4775667 -0.3351402 -0.7915267 -0.4918081 -0.3627814 -0.823252 -0.4692822 -0.3194219 -0.8440815 -0.4523218 -0.2879781 -0.9534628 0.006277537 -0.3014452 -0.9547767 0.006616706 -0.2972502 -0.005796327 -0.0009496595 0.9999828 0.9598899 0.003744896 -0.2803521 -0.9657384 0.03463594 -0.2571959 -0.9127845 0.01673569 -0.4080984 -0.9167089 0.02753214 -0.398606 -0.9677527 0.03367306 -0.2496415 -0.8815371 0.3885987 -0.2681106 -0.8119351 0.5613335 -0.1602062 -0.7944361 0.59445 -0.1245008 -0.7497303 0.6575753 -0.07415638 -0.7381704 0.6727696 -0.04985539 -0.9922646 0.04157721 -0.1169717 -0.9905759 0.05339501 -0.1261282 - - - - - - - - - - 0.6347656 0.9008789 0.6538086 0.9282227 0.6538086 0.9047852 0.9765625 0.8647461 0.9941406 0.8647461 0.9746094 0.9091797 0.6538086 0.9047852 0.6538086 0.9282227 0.6669922 0.9291992 0.6347656 0.9008789 0.6347656 0.9282227 0.6538086 0.9282227 0.7016602 0.05761719 0.722168 0.05712891 0.7241211 0.08837891 0.887207 0.9091797 0.9765625 0.8647461 0.9746094 0.9091797 0.6538086 0.9047852 0.6669922 0.9291992 0.6674805 0.9042969 0.6669922 0.9433594 0.6533203 0.9433594 0.6669922 0.9619141 0.6347656 0.9282227 0.3369141 0.9433594 0.6533203 0.9433594 0.3540039 0.9008789 0.6347656 0.9282227 0.6347656 0.9008789 0.7055664 0.08837891 0.7016602 0.05761719 0.7241211 0.08837891 0.7241211 0.08837891 0.722168 0.05712891 0.7387695 0.08837891 0.6166992 0.05761719 0.7016602 0.05761719 0.6953125 0.8647461 0.9765625 0.8647461 0.887207 0.9091797 0.722168 0.05712891 0.7358398 0.05664062 0.7387695 0.08837891 0.6669922 0.9619141 0.6533203 0.9433594 0.3232422 0.9619141 0.6533203 0.9433594 0.3369141 0.9433594 0.3232422 0.9619141 0.6347656 0.9282227 0.3544922 0.9282227 0.3369141 0.9433594 0.3540039 0.9008789 0.3544922 0.9282227 0.6347656 0.9282227 0.6137695 0.08837891 0.6166992 0.05761719 0.7055664 0.08837891 0.690918 0.9091797 0.6953125 0.8647461 0.887207 0.9091797 0.6669922 0.9619141 0.3232422 0.9619141 0.6674805 0.9863281 0.3369141 0.9433594 0.3227539 0.9433594 0.3232422 0.9619141 0.3354492 0.9008789 0.3364258 0.9282227 0.3544922 0.9282227 0.3540039 0.9008789 0.3354492 0.9008789 0.3544922 0.9282227 0.6137695 0.08837891 0.4199219 0.08837891 0.6166992 0.05761719 0.4199219 0.08837891 0.4208984 0.05810547 0.6166992 0.05761719 0.6806641 0.8647461 0.6953125 0.8647461 0.690918 0.9091797 0.3232422 0.9619141 0.3212891 0.9863281 0.6674805 0.9863281 0.3212891 0.9003906 0.3227539 0.9287109 0.3364258 0.9282227 0.3354492 0.9008789 0.3212891 0.9003906 0.3364258 0.9282227 0.4199219 0.08837891 0.4135742 0.08837891 0.4208984 0.05810547 0.4047852 0.08837891 0.4057617 0.05761719 0.4208984 0.05810547 0.4047852 0.08837891 0.3916016 0.05761719 0.4057617 0.05761719 0.4135742 0.08837891 0.4047852 0.08837891 0.4208984 0.05810547 0.3901367 0.08837891 0.3916016 0.05761719 0.4047852 0.08837891 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 0 9 9 10 1 11 10 12 11 13 12 14 13 15 3 16 5 17 6 18 8 19 14 20 15 21 16 22 17 23 18 24 19 25 16 26 20 27 21 28 22 29 23 30 24 31 25 32 26 33 6 34 27 35 28 36 24 37 23 30 29 38 3 39 13 40 6 41 14 42 27 43 17 44 16 45 30 46 16 47 19 48 30 49 18 50 31 51 19 52 20 53 32 54 21 55 33 56 28 57 23 58 34 59 29 60 13 61 35 62 36 63 37 64 19 65 38 66 30 67 39 68 40 69 41 70 42 71 39 72 41 73 33 74 43 75 28 76 43 77 44 78 28 79 45 80 29 81 34 82 36 83 46 84 37 85 47 86 48 87 49 88 50 89 47 90 49 91 51 92 52 93 53 94 54 95 55 96 53 97 56 98 47 99 50 100 52 101 54 102 53 103 57 104 47 105 56 106

-
-
-
- - - - -462.859 -287.5395 48.77604 -464.0307 -298.0843 42.69215 -459.8639 -279.1126 57.24882 -464.0159 -293.3603 42.55011 -464.0307 -298.0843 42.69215 -462.859 -287.5395 48.77604 -462.859 -287.5395 48.77604 -459.8639 -279.1126 57.24882 -458.8828 -273.1684 58.39067 -464.0159 -301.552 40.5443 -465.5783 -288.9633 36.93953 -462.8428 -279.2061 53.72374 -462.859 -287.5395 48.77604 -458.8828 -273.1684 58.39067 -464.0159 -301.552 40.5443 -464.0159 -293.3603 42.55011 -461.9458 -302.4698 40.72237 -467.125 -288.5618 40.83456 -465.5783 -288.9633 36.93953 -462.859 -287.5395 48.77604 -463.1759 -304.5002 40.98238 -464.0159 -301.552 40.5443 -461.9458 -302.4698 40.72237 -464.855 -287.5103 47.55498 -461.5638 -305.418 41.85804 - - - - - - - - - - 0.8535764 0.1859293 -0.4866597 0.8535764 0.1859293 -0.4866597 0.8535764 0.1859293 -0.4866597 0.9824186 0.0167132 -0.1859419 0.9997474 -0.003804715 -0.02215239 0.9766537 0.03293488 -0.2122802 0.9670955 -0.1161298 -0.2263628 0.9670955 -0.1161298 -0.2263628 0.9670955 -0.1161298 -0.2263628 0.9999307 -0.002795383 0.01143506 0.9718787 0.05238862 -0.2295806 0.2482616 0.4941773 -0.8331596 0.4453498 0.4564556 -0.7702674 0.2294711 0.4965641 -0.8371183 -0.1857109 -0.2336957 0.9544097 -0.1857109 -0.2336957 0.9544097 -0.1857109 -0.2336957 0.9544097 -0.01605473 0.9927442 -0.1191692 -0.02728004 0.9931979 -0.1131975 0.08205799 0.9819379 -0.1704831 -0.2185224 0.2530705 0.9424454 -0.02282111 0.1405739 0.9898071 -0.1191884 0.1968251 0.973167 0.1350868 0.9709398 -0.1975538 -0.3142894 0.3055034 0.8988269 - - - - - - - - - - 0.8549805 0.5268555 0.8530273 0.5229492 0.8530273 0.5361328 0.8564453 0.5205078 0.8530273 0.5229492 0.8549805 0.5268555 0.8549805 0.5268555 0.8530273 0.5361328 0.8535156 0.5410156 0.8530273 0.5205078 0.8530273 0.5229492 0.8564453 0.5205078 0.8588867 0.5214844 0.8564453 0.5205078 0.8549805 0.5268555 0.8549805 0.534668 0.8549805 0.5268555 0.8535156 0.5410156 0.8530273 0.5205078 0.8564453 0.5205078 0.8525391 0.5185547 0.8583984 0.5244141 0.8588867 0.5214844 0.8549805 0.5268555 0.4882813 0.5888672 0.5024414 0.5800781 0.4980469 0.597168 0.855957 0.5273437 0.8583984 0.5244141 0.8549805 0.5268555 0.4882813 0.5888672 0.4980469 0.597168 0.4858398 0.6010742 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -464.855 -287.5103 47.55498 -462.859 -287.5395 48.77604 -462.8428 -279.2061 53.72374 - - - - - - - - - - 0.470883 0.4497 -0.7589723 0.4453498 0.4564556 -0.7702674 0.2482616 0.4941773 -0.8331596 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -461.7715 -271.3331 56.43727 -462.1707 -276.3159 55.15754 -458.8828 -273.1684 58.39067 -461.4773 -258.5271 57.28312 -458.4595 -254.4524 59.60097 - - - - - - - - - - 0.5940419 0.08341145 -0.800098 0.6171294 0.1489851 -0.7726284 0.5976214 0.09382019 -0.7962703 0.6032155 0.007222142 -0.7975455 0.5920874 0.01976053 -0.8056315 - - - - - - - - - - 0.8549805 0.5415039 0.8549805 0.5375977 0.8535156 0.5410156 0.8828125 0.5175781 0.8876953 0.5180664 0.8886719 0.5151367 0.8828125 0.5175781 0.8886719 0.5151367 0.8813477 0.5146484 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -460.0299 -262.1236 43.42015 -460.0299 -264.73 34.55516 -461.4633 -259.2311 34.62925 -461.4633 -256.6515 42.68774 -460.0299 -262.1236 43.42015 -461.4633 -256.6515 42.68774 -457.4825 -255.1323 46.94471 -456.7323 -259.044 46.75252 -457.1588 -255.7851 52.23277 -456.7323 -259.044 46.75252 -457.4825 -255.1323 46.94471 -456.4701 -258.3943 51.73972 - - - - - - - - - - -0.9661578 -0.246355 0.07647427 -0.9647515 -0.2524766 0.07423077 -0.9655092 -0.2492027 0.07543152 -0.9669338 -0.2428898 0.07774094 -0.6817705 -0.1157464 0.7223515 -0.7105171 -0.09276289 0.6975389 -0.6726744 -0.1227578 0.7296847 -0.6253091 -0.1574788 0.7643226 -0.96995 -0.2347147 0.06407778 -0.9754656 -0.2140736 0.05137402 -0.9811094 -0.1899608 0.03659589 -0.9592376 -0.2693536 0.08550986 - - - - - - - - - - 0.1464844 0.8754883 0.1381836 0.8754883 0.1396484 0.8803711 0.1464844 0.8754883 0.1396484 0.8803711 0.1474609 0.8808594 0.1464844 0.8754883 0.1518555 0.875 0.1464844 0.8754883 0.1518555 0.875 0.1503906 0.871582 0.15625 0.8740234 0.1503906 0.871582 0.1518555 0.875 0.1547852 0.871582 0.1503906 0.871582 0.15625 0.8740234 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 2 4 3 5 4 6 5 5 6 7 4 8 6 9 7 10 8 11 9 12 10 13 11 14 9 15 8 16

-
-
-
- - - - -464.1449 -221.5283 43.4201 -464.1449 -224.1347 35.0247 -465.8066 -218.6358 35.13625 -465.8066 -216.0147 42.68774 -464.1449 -221.5283 43.4201 -465.8066 -216.0147 42.68774 -461.6245 -214.5371 46.94473 -460.7548 -218.4489 46.75252 -461.2493 -215.19 52.23281 -460.7548 -218.4489 46.75252 -461.6245 -214.5371 46.94473 -460.4509 -217.7992 51.73972 - - - - - - - - - - -0.9551466 -0.2809905 0.09348477 -0.9528592 -0.2897695 0.08996052 -0.954209 -0.2846345 0.09202429 -0.9565096 -0.2755731 0.09564982 -0.6609453 -0.1339737 0.7383782 -0.689006 -0.1125564 0.7159621 -0.6518533 -0.1406816 0.7451818 -0.6060998 -0.1728994 0.776369 -0.9602971 -0.2691513 0.07339724 -0.9673994 -0.2462537 0.05914032 -0.9748578 -0.2188058 0.04214542 -0.9463228 -0.3080712 0.09780194 - - - - - - - - - - 0.09375 0.809082 0.09375 0.7880859 0.09033203 0.7919922 0.09375 0.809082 0.09033203 0.7919922 0.09033203 0.8110352 0.09375 0.809082 0.09033203 0.8110352 0.09326172 0.8227539 0.09375 0.809082 0.09326172 0.8227539 0.09570313 0.8198242 0.09423828 0.8344727 0.09570313 0.8198242 0.09326172 0.8227539 0.09570313 0.831543 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 2 4 3 5 4 6 5 7 6 8 4 9 6 10 7 11 8 12 9 13 10 14 11 15 9 11 8 12

-
-
-
- - - - -461.343 -231.7819 57.88101 -458.4595 -254.4524 59.60097 -457.9243 -227.4062 60.90581 -461.3892 -250.3777 57.84562 - - - - - - - - - - 0.6979981 -0.05976088 -0.7136017 0.565534 0.02839549 -0.824236 0.7354905 -0.1397592 -0.6629638 0.5483558 0.03432603 -0.8355403 - - - - - - - - - - 0.8725586 0.5170898 0.8813477 0.5146484 0.8706055 0.5141602 0.8798828 0.5170898 0.8813477 0.5146484 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 0 3 3 1 4

-
-
-
- - - - -462.4939 -190.2934 39.97788 -461.285 -185.9585 42.95642 -460.2607 -185.5651 42.44921 -462.4939 -190.2934 39.97788 -461.4598 -186.4416 44.10303 -461.285 -185.9585 42.95642 - - - - - - - - - - 0.5296255 -0.5757249 0.6229267 0.5296255 -0.5757249 0.6229267 0.5296255 -0.5757249 0.6229267 0.9581616 -0.2850485 0.02595616 0.9581616 -0.2850485 0.02595616 0.9581616 -0.2850485 0.02595616 - - - - - - - - - - - - - - -

0 1 2 3 4 5

-
-
-
- - - - -463.0526 -213.3994 5.114221 -463.0525 -211.1691 5.205805 -454.7212 -212.5401 5.71303 -454.7212 -210.3099 5.804626 - - - - - - - - - - -0.06742803 -0.04093469 0.9968841 -0.06742823 -0.04093593 0.996884 -0.0674291 -0.04094129 0.9968837 -0.0674293 -0.04094253 0.9968836 - - - - - - - - - - 0.5791016 0.4057617 0.5839844 0.4067383 0.5791016 0.4443359 0.5839844 0.4067383 0.5834961 0.4443359 0.5791016 0.4443359 - - - - - - - - - - - - - - -

0 0 1 1 2 2 1 3 3 4 2 5

-
-
-
- - - - -461.9116 -301.0397 42.796 -461.878 -301.3349 42.22142 -461.975 -300.5553 42.11442 - - - - - - - - - - -0.9924174 -0.1228119 0.004988537 -0.9924174 -0.1228119 0.004988537 -0.9924174 -0.1228119 0.004988537 - - - - - - - - - - 0.1943359 0.7832031 0.1943359 0.7890625 0.1958008 0.7866211 - - - - - - - - - - - - - - -

0 0 1 1 2 2

-
-
-
- - - - -405.4665 -120.8568 47.83809 -405.808 -120.5003 47.69281 -406.8273 -121.0096 48.39498 -406.9825 -120.6321 48.1734 -405.4665 -120.8568 47.83809 -406.8273 -121.0096 48.39498 -406.7442 -122.8488 47.9051 -405.4665 -120.8568 47.83809 -405.4649 -120.3602 47.17057 -405.808 -120.5003 47.69281 -408.6742 -121.0721 48.60912 -406.9825 -120.6321 48.1734 -405.808 -120.5003 47.69281 -408.701 -120.3771 47.19506 -405.3835 -122.696 47.34823 -408.5912 -122.9113 48.11926 -405.4649 -120.3602 47.17057 -404.9734 -120.6556 47.08794 -408.6905 -120.6901 48.37194 -408.6742 -121.0721 48.60912 -408.6905 -120.6901 48.37194 -404.9734 -120.6556 47.08794 -405.4665 -120.8568 47.83809 -405.3835 -122.696 47.34823 -405.8173 -120.2239 46.65354 -405.4649 -120.3602 47.17057 -404.9734 -120.6556 47.08794 -405.8173 -120.2239 46.65354 -410.5582 -121.0297 48.42299 -410.4751 -122.8688 47.93282 -410.4359 -120.6507 48.19903 -404.8903 -122.4947 46.59777 -407.0002 -120.1048 46.19067 -405.4799 -120.4597 46.34499 -410.4359 -120.6507 48.19903 -410.5582 -121.0297 48.42299 -411.6181 -120.5317 47.73615 -405.4799 -120.4597 46.34499 -404.9734 -120.6556 47.08794 -404.8903 -122.4947 46.59777 -405.8173 -120.2239 46.65354 -405.4799 -120.4597 46.34499 -407.0002 -120.1048 46.19067 -408.7116 -120.0642 46.01846 -411.9287 -120.8917 47.88664 -411.8456 -122.731 47.39708 -411.9707 -120.3954 47.21944 -411.6181 -120.5317 47.73615 -405.3968 -122.2989 45.85513 -406.8505 -120.3216 45.80833 -408.7116 -120.0642 46.01846 -410.4536 -120.1236 46.21692 -411.9287 -120.8917 47.88664 -411.6275 -120.2554 46.69719 -411.6181 -120.5317 47.73615 -411.9707 -120.3954 47.21944 -412.4352 -120.696 47.144 -411.9287 -120.8917 47.88664 -405.3968 -122.2989 45.85513 -406.8505 -120.3216 45.80833 -405.4799 -120.4597 46.34499 -408.7009 -120.2779 45.62261 -410.4536 -120.1236 46.21692 -411.9287 -120.8917 47.88664 -412.3521 -122.5351 46.65411 -411.8456 -122.731 47.39708 -411.9707 -120.3954 47.21944 -411.6275 -120.2554 46.69719 -411.9421 -120.4946 46.39323 -412.4352 -120.696 47.144 -412.4352 -120.696 47.144 -406.7673 -122.1607 45.31816 -408.7009 -120.2779 45.62261 -410.5813 -120.3419 45.83667 -411.6275 -120.2554 46.69719 -411.9421 -120.4946 46.39323 -411.9421 -120.4946 46.39323 -411.859 -122.3338 45.90336 -412.4352 -120.696 47.144 -412.3521 -122.5351 46.65411 -408.6179 -122.117 45.13243 -410.5813 -120.3419 45.83667 -410.4983 -122.1811 45.34648 -411.9421 -120.4946 46.39323 -411.859 -122.3338 45.90336 - - - - - - - - - - 0.2571731 0.5656245 0.7835374 0.2571644 0.5656351 0.7835326 0.1783394 0.5516402 0.8147933 0.1615166 0.5481007 0.8206693 0.3905414 -0.2204233 0.893807 0.2543649 -0.2381622 0.9373245 0.2611361 -0.2374151 0.9356506 0.5032954 0.6926891 0.5165999 0.5032505 0.6927102 0.5166155 0.5033752 0.6926517 0.5165723 0.005505627 0.5276376 0.8494517 -0.003069641 0.9663239 0.2573105 -0.003090663 0.9663439 0.2572351 -0.003295585 0.9663967 0.2570343 0.3905535 -0.2204314 0.8937997 0.01237821 -0.2568342 0.9663762 -0.003083634 0.9663994 0.2570266 0.5031902 0.6927384 0.5166363 0.002898243 0.5275578 0.8495142 0.006753928 -0.2571267 0.9663541 -0.003294624 0.9663962 0.2570362 0.8436174 -0.1023256 0.5271045 0.8435901 -0.1023143 0.5271504 0.8436586 -0.1023427 0.5270352 -0.00309191 0.9664515 0.2568305 0.4978464 0.8599078 -0.1127277 0.4978477 0.8599065 -0.1127315 0.4978483 0.859906 -0.1127332 -0.1705551 0.5414577 0.8232463 -0.2365143 -0.2601509 0.936153 -0.003516389 0.966321 0.2573156 0.843686 -0.1023541 0.5269892 -0.003071343 0.9664638 0.2567847 0.4978492 0.8599051 -0.1127358 -0.1591678 0.5398627 0.8265675 -0.2433558 -0.2599554 0.9344523 -0.003485931 0.9663254 0.2572996 0.83427 0.1768377 -0.5222279 0.834293 0.1768493 -0.5221873 0.8342362 0.1768204 -0.5222877 0.2466632 0.881061 -0.4035948 0.2466638 0.8811156 -0.4034753 0.1503056 0.8840659 -0.4425332 -0.003296811 0.9664 0.2570218 -0.2552312 0.5518574 0.793921 -0.3743447 -0.2544435 0.8916976 -0.003493792 0.9663998 0.2570197 -0.2552324 0.5519339 0.7938674 0.8342133 0.1768088 -0.5223282 0.1672498 0.8842564 -0.4360254 -0.009149978 0.8798709 -0.4751247 -0.003528042 0.9664616 0.2567868 -0.3745588 -0.254259 0.8916603 -0.003493992 0.9664698 0.2567566 -0.5193683 0.6696768 0.5308385 -0.5194366 0.669513 0.5309783 -0.5193907 0.6696232 0.5308843 -0.5193372 0.6697514 0.5307749 0.3748503 0.2544787 -0.8914751 0.237655 0.2601308 -0.9358697 0.3747339 0.2543913 -0.891549 -0.006522673 0.8799028 -0.475109 -0.1705134 0.8781667 -0.4469323 -0.8342205 -0.1767875 0.522324 -0.8342689 -0.1767314 0.5222657 -0.834301 -0.1766941 0.5222271 -0.5255136 0.8423769 -0.1193174 -0.5252408 0.8425455 -0.1193282 -0.5254088 0.8424417 -0.1193216 -0.5256383 0.8422997 -0.1193125 -0.8341884 -0.1768248 0.5223626 0.2445197 0.2600258 -0.9341289 -0.01058087 0.2570769 -0.966333 -0.1818611 0.8779287 -0.4429083 -0.2659458 0.8719936 -0.4109744 -0.2659107 0.8720231 -0.4109346 -0.8437876 0.1022079 -0.5268548 -0.8437833 0.1022137 -0.5268605 -0.8437859 0.1022103 -0.5268571 -0.8437816 0.1022161 -0.5268629 -0.004926057 0.257325 -0.9663124 -0.2600763 0.2376907 -0.9358758 -0.2533829 0.2383875 -0.9375332 -0.3904253 0.2205289 -0.8938317 -0.390534 0.2204227 -0.8938104 - - - - - - - - - - 0.09082031 0.6245117 0.1337891 0.5644531 0.2646484 0.7709961 0.1337891 0.5644531 0.2841797 0.690918 0.2646484 0.7709961 0.2900391 0.9521484 0.3144531 0.9521484 0.3144531 0.862793 0.09082031 0.6245117 0.08984375 0.425293 0.1337891 0.5644531 0.2646484 0.7709961 0.2841797 0.690918 0.5019531 0.8251953 0.2841797 0.690918 0.1337891 0.5644531 0.5019531 0.4272461 0.2900391 0.862793 0.2900391 0.9521484 0.3144531 0.862793 0.3144531 0.862793 0.3144531 0.9521484 0.3730469 0.862793 0.08984375 0.425293 0.5019531 0.4272461 0.09082031 0.6245117 0.02734375 0.425293 0.08984375 0.425293 0.2841797 0.690918 0.5019531 0.7407227 0.5019531 0.8251953 0.3144531 0.9521484 0.3730469 0.9521484 0.3730469 0.862793 0.5019531 0.7407227 0.2841797 0.690918 0.6665039 0.9521484 0.6811523 0.9521484 0.6811523 0.862793 0.5019531 0.4272461 0.08984375 0.425293 0.1342773 0.2871094 0.08984375 0.425293 0.02734375 0.425293 0.1342773 0.2871094 0.5019531 0.8251953 0.5019531 0.7407227 0.7407227 0.7729492 0.3730469 0.862793 0.3730469 0.9521484 0.4321289 0.862793 0.5019531 0.7407227 0.5019531 0.4272461 0.7246094 0.6923828 0.6665039 0.9521484 0.6811523 0.862793 0.6665039 0.862793 0.5019531 0.4272461 0.1342773 0.2871094 0.284668 0.1616211 0.02734375 0.425293 0.09130859 0.2260742 0.1342773 0.2871094 0.5019531 0.7407227 0.7246094 0.6923828 0.7407227 0.7729492 0.3730469 0.9521484 0.4321289 0.9521484 0.4321289 0.862793 0.7246094 0.6923828 0.5019531 0.4272461 0.875 0.5673828 0.6518555 0.9521484 0.6665039 0.9521484 0.6665039 0.862793 0.1342773 0.2871094 0.09130859 0.2260742 0.284668 0.1616211 0.5019531 0.4272461 0.284668 0.1616211 0.5019531 0.1132813 0.7246094 0.6923828 0.9145508 0.6279297 0.7407227 0.7729492 0.4321289 0.862793 0.4321289 0.9521484 0.456543 0.862793 0.875 0.5673828 0.5019531 0.4272461 0.9194336 0.4287109 0.7246094 0.6923828 0.875 0.5673828 0.9145508 0.6279297 0.6518555 0.9521484 0.6665039 0.862793 0.6518555 0.862793 0.09130859 0.2260742 0.265625 0.08105469 0.284668 0.1616211 0.284668 0.1616211 0.265625 0.08105469 0.5019531 0.1132813 0.5019531 0.4272461 0.5019531 0.1132812 0.7250977 0.1635742 0.4321289 0.9521484 0.456543 0.9521484 0.456543 0.862793 0.9194336 0.4287109 0.5019531 0.4272461 0.875 0.2900391 0.875 0.5673828 0.9194336 0.4287109 0.9785156 0.4287109 0.9145508 0.6279297 0.875 0.5673828 0.9785156 0.4287109 0.6518555 0.862793 0.6279297 0.9521484 0.6518555 0.9521484 0.5019531 0.1132812 0.265625 0.08105469 0.5019531 0.02880859 0.7250977 0.1635742 0.5019531 0.1132812 0.5019531 0.02880859 0.5019531 0.4272461 0.7250977 0.1635742 0.875 0.2900391 0.456543 0.9521484 0.4711914 0.862793 0.456543 0.862793 0.9194336 0.4287109 0.875 0.2900391 0.9150391 0.2294922 0.9194336 0.4287109 0.9150391 0.2294922 0.9785156 0.4287109 0.4711914 0.9521484 0.4711914 0.862793 0.456543 0.9521484 0.6518555 0.862793 0.6279297 0.862793 0.6279297 0.9521484 0.6279297 0.862793 0.5693359 0.9521484 0.6279297 0.9521484 0.7250977 0.1635742 0.5019531 0.02880859 0.7412109 0.08300781 0.875 0.2900391 0.7250977 0.1635742 0.7412109 0.08300781 0.875 0.2900391 0.7412109 0.08300781 0.9150391 0.2294922 0.4858398 0.9521484 0.4858398 0.862793 0.4711914 0.9521484 0.4711914 0.9521484 0.4858398 0.862793 0.4711914 0.862793 0.5693359 0.862793 0.5693359 0.9521484 0.5693359 0.862793 0.5097656 0.9521484 0.5693359 0.9521484 0.5097656 0.862793 0.4858398 0.9521484 0.5097656 0.9521484 0.5097656 0.862793 0.4858398 0.862793 0.4858398 0.9521484 0.5693359 0.862793 0.5097656 0.862793 0.5097656 0.9521484 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -404.6497 -450.8212 24.55375 -406.3131 -450.6785 25.24513 -404.7512 -453.1034 25.00679 -404.6497 -450.8212 24.55375 -404.7512 -453.1034 25.00679 -404.0467 -451.0077 23.62237 -406.4147 -452.9609 25.69818 -404.1483 -453.2899 24.07579 -404.7512 -453.1034 25.00679 -406.4147 -452.9609 25.69818 -406.6045 -453.4039 25.39819 -408.5711 -450.6191 25.51131 -404.7512 -453.1034 25.00679 -404.7491 -453.6568 24.15337 -404.1483 -453.2899 24.07579 -404.0467 -451.0077 23.62237 -404.1483 -453.2899 24.07579 -404.7675 -453.4705 23.15399 -408.6727 -452.9014 25.96436 -405.1687 -453.5269 24.80152 -408.6727 -452.9014 25.96436 -404.7491 -453.6568 24.15337 -405.18 -453.7824 23.51189 -404.1483 -453.2899 24.07579 -405.1687 -453.5269 24.80152 -404.7675 -453.4705 23.15399 -404.666 -451.1882 22.70096 -408.6926 -453.3488 25.64498 -408.6926 -453.3488 25.64498 -405.1687 -453.5269 24.80152 -406.6045 -453.4039 25.39819 -410.8743 -450.6562 25.28052 -408.7054 -453.6381 24.18456 -405.18 -453.7824 23.51189 -404.7491 -453.6568 24.15337 -405.18 -453.7824 23.51189 -406.6262 -453.8914 22.93783 -404.7675 -453.4705 23.15399 -404.666 -451.1882 22.70096 -404.7675 -453.4705 23.15399 -406.443 -453.5968 22.48843 -410.8262 -453.3832 25.43093 -410.9759 -452.9384 25.73395 -406.6262 -453.8914 22.93783 -406.443 -453.5968 22.48843 -406.3414 -451.3145 22.035 -410.8262 -453.3832 25.43093 -412.2717 -453.4921 24.85685 -410.9759 -452.9384 25.73395 -412.5498 -450.7823 24.61609 -408.7183 -453.9274 22.72453 -408.7183 -453.9274 22.72453 -408.7053 -453.6356 22.25839 -412.6513 -453.0646 25.06875 -412.2717 -453.4921 24.85685 -412.7027 -453.6177 24.21576 -412.6513 -453.0646 25.06875 -410.8479 -453.8705 22.97132 -408.7053 -453.6356 22.25839 -408.6037 -451.3534 21.80497 -412.6513 -453.0646 25.06875 -413.2705 -453.2451 24.14734 -412.2717 -453.4921 24.85685 -412.7027 -453.6177 24.21576 -412.2831 -453.7476 23.5676 -412.5498 -450.7823 24.61609 -413.169 -450.9628 23.69428 -412.6513 -453.0646 25.06875 -410.8479 -453.8705 22.97132 -411.0041 -453.5743 22.52457 -413.2705 -453.2451 24.14734 -412.7027 -453.6177 24.21576 -413.2705 -453.2451 24.14734 -412.6677 -453.4318 23.21558 -412.2831 -453.7476 23.5676 -412.2831 -453.7476 23.5676 -411.0041 -453.5743 22.52457 -410.9026 -451.292 22.07115 -413.169 -450.9628 23.69428 -412.5661 -451.1495 22.76254 -413.2705 -453.2451 24.14734 -412.6677 -453.4318 23.21558 -412.6677 -453.4318 23.21558 -412.6677 -453.4318 23.21558 -412.5661 -451.1495 22.76254 - - - - - - - - - - 0.3905583 0.1624979 0.9061229 0.261138 0.1767549 0.9489808 0.3905447 0.1624884 0.9061304 0.8436698 0.06817775 0.5325157 0.8436015 0.06826482 0.5326128 0.8436422 0.06821294 0.532555 0.2543654 0.177392 0.9506999 0.8435739 0.06830001 0.532652 0.2571507 -0.614841 0.7455495 0.178353 -0.602899 0.7776266 0.1615257 -0.5997292 0.7837311 0.0123825 0.1941601 0.9808917 0.5032927 -0.72446 0.471014 0.5032482 -0.7244818 0.471028 0.5031886 -0.724511 0.4710468 0.8342176 -0.1428702 -0.532606 0.8342804 -0.1429092 -0.5324971 0.834255 -0.1428935 -0.5325411 0.005413935 -0.5812344 0.8137182 0.2571509 -0.6148192 0.7455674 0.006755135 0.1944532 0.9808885 0.4978542 -0.8508732 -0.1677974 0.4978563 -0.8508707 -0.1678036 0.4978557 -0.8508715 -0.1678017 0.5033717 -0.7244213 0.4709891 0.4978574 -0.8508696 -0.1678065 0.8341922 -0.1428544 -0.53265 0.002795302 -0.5810517 0.8138618 -0.003296767 -0.980905 0.1944597 -0.003068186 -0.9808831 0.1945735 -0.002785017 -0.9807066 0.1954654 -0.2365133 0.1994125 0.9509449 -0.003295849 -0.9809298 0.1943344 -0.003104136 -0.9809662 0.1941535 -0.003094738 -0.9809236 0.1943689 0.2466463 -0.8532804 -0.4594325 0.1503102 -0.8537767 -0.4984698 0.246647 -0.8533436 -0.4593147 0.3748408 -0.19662 -0.9059994 0.3747292 -0.1965319 -0.9060647 0.2376576 -0.1994086 -0.9506603 -0.1590701 -0.5918352 0.7902075 -0.2433504 0.1993263 0.9492363 -0.003078563 -0.9809763 0.1941032 0.1672512 -0.8543808 -0.4919964 0.2445131 -0.1994146 -0.948919 -0.003816036 -0.9806746 0.1956085 -0.003520654 -0.9808765 0.1945992 -0.1704751 -0.5933296 0.7867008 -0.3743453 0.1965712 0.9062148 -0.003296332 -0.9809188 0.1943902 -0.009166754 -0.8474318 -0.5308251 -0.01057301 -0.1944081 -0.9808637 -0.2552196 -0.6017584 0.7568024 -0.2552206 -0.6018227 0.7567509 -0.003494972 -0.9809163 0.1943988 -0.3745602 0.1963889 0.9061656 -0.003505997 -0.9809796 0.1940794 -0.006531747 -0.8474659 -0.5308097 -0.004917678 -0.1946568 -0.9808591 -0.5193392 -0.7024939 0.4866098 -0.5193916 -0.7023755 0.4867248 -0.5193697 -0.702425 0.4866767 -0.5194366 -0.7022737 0.4868236 -0.003486509 -0.98096 0.1941784 -0.8343162 0.1427353 0.5324877 -0.8342855 0.1427685 0.5325268 -0.8342393 0.1428185 0.5325858 -0.1704747 -0.847612 -0.5024861 -0.2600786 -0.1770153 -0.9492232 -0.8342087 0.1428516 0.5326249 -0.5255494 -0.8329405 -0.173228 -0.5256207 -0.8328967 -0.1732223 -0.5254896 -0.8329772 -0.1732327 -0.5253938 -0.8330361 -0.1732403 -0.265969 -0.8437037 -0.466288 -0.181842 -0.8476296 -0.4984552 -0.2533792 -0.1776069 -0.9509231 -0.843811 -0.06811581 -0.5323 -0.8438074 -0.06812034 -0.5323051 -0.8438022 -0.06812701 -0.5323125 -0.8437986 -0.06813153 -0.5323175 -0.2659517 -0.8437195 -0.4662694 -0.3904243 -0.1625951 -0.9061632 -0.3905243 -0.1624988 -0.9061373 - - - - - - - - - - 0.2900391 0.862793 0.3144531 0.862793 0.2900391 0.9521484 0.6811523 0.862793 0.6811523 0.9521484 0.6665039 0.862793 0.3144531 0.862793 0.3144531 0.9521484 0.6665039 0.862793 0.6811523 0.9521484 0.6665039 0.9521484 0.9160156 0.6245117 0.7416992 0.7709961 0.7226562 0.690918 0.3730469 0.862793 0.3144531 0.9521484 0.9160156 0.6245117 0.9169922 0.425293 0.9794922 0.425293 0.6665039 0.862793 0.6665039 0.9521484 0.6518555 0.9521484 0.7416992 0.7709961 0.5048828 0.8251953 0.7226563 0.690918 0.9160156 0.6245117 0.7226562 0.690918 0.8730469 0.5644531 0.3144531 0.9521484 0.3730469 0.862793 0.3730469 0.9521484 0.9169922 0.425293 0.8725586 0.2871094 0.9794922 0.425293 0.9160156 0.6245117 0.8730469 0.5644531 0.9169922 0.425293 0.9794922 0.425293 0.8725586 0.2871094 0.9155273 0.2260742 0.6665039 0.862793 0.6518555 0.9521484 0.6518555 0.862793 0.7226563 0.690918 0.5048828 0.8251953 0.5048828 0.7407227 0.5048828 0.7407227 0.8730469 0.5644531 0.7226562 0.690918 0.3730469 0.862793 0.4321289 0.862793 0.3730469 0.9521484 0.5048828 0.4272461 0.9169922 0.425293 0.5048828 0.4272461 0.9169922 0.425293 0.8725586 0.2871094 0.722168 0.1616211 0.9155273 0.2260742 0.6518555 0.862793 0.6518555 0.9521484 0.6279297 0.9521484 0.5048828 0.8251953 0.2822266 0.6923828 0.5048828 0.7407227 0.5048828 0.7407227 0.5048828 0.4272461 0.8730469 0.5644531 0.3730469 0.9521484 0.4321289 0.862793 0.4321289 0.9521484 0.5048828 0.4272461 0.722168 0.1616211 0.8725586 0.2871094 0.9155273 0.2260742 0.722168 0.1616211 0.7412109 0.08105469 0.6518555 0.862793 0.6279297 0.9521484 0.6279297 0.862793 0.5048828 0.7407227 0.2822266 0.6923828 0.1318359 0.5673828 0.5048828 0.8251953 0.2661133 0.7729492 0.2822266 0.6923828 0.5048828 0.7407227 0.1318359 0.5673828 0.5048828 0.4272461 0.4321289 0.862793 0.456543 0.862793 0.4321289 0.9521484 0.5048828 0.1132812 0.722168 0.1616211 0.722168 0.1616211 0.5048828 0.1132813 0.7412109 0.08105469 0.6279297 0.862793 0.6279297 0.9521484 0.5693359 0.9521484 0.2822266 0.6923828 0.09179688 0.6279297 0.1318359 0.5673828 0.2822266 0.6923828 0.2661133 0.7729492 0.09179688 0.6279297 0.1318359 0.5673828 0.08740234 0.4287109 0.5048828 0.4272461 0.4321289 0.9521484 0.456543 0.862793 0.456543 0.9521484 0.5048828 0.4272461 0.2817383 0.1635742 0.5048828 0.1132813 0.5048828 0.1132813 0.5048828 0.02880859 0.7412109 0.08105469 0.6279297 0.862793 0.5693359 0.9521484 0.5693359 0.862793 0.09179687 0.6279297 0.02783203 0.4287109 0.1318359 0.5673828 0.1318359 0.5673828 0.02783203 0.4287109 0.08740234 0.4287109 0.08740234 0.4287109 0.1318359 0.2900391 0.5048828 0.4272461 0.456543 0.862793 0.4711914 0.862793 0.456543 0.9521484 0.5048828 0.4272461 0.1318359 0.2900391 0.2817383 0.1635742 0.2817383 0.1635742 0.5048828 0.02880859 0.5048828 0.1132812 0.5693359 0.862793 0.5693359 0.9521484 0.5097656 0.9521484 0.4711914 0.862793 0.4711914 0.9521484 0.456543 0.9521484 0.08740234 0.4287109 0.02783203 0.4287109 0.09130859 0.2294922 0.08740234 0.4287109 0.09130859 0.2294922 0.1318359 0.2900391 0.1318359 0.2900391 0.265625 0.08300781 0.2817383 0.1635742 0.265625 0.08300781 0.5048828 0.02880859 0.5693359 0.862793 0.5097656 0.9521484 0.5097656 0.862793 0.4711914 0.862793 0.4858398 0.862793 0.4711914 0.9521484 0.4858398 0.862793 0.4858398 0.9521484 0.4711914 0.9521484 0.1318359 0.2900391 0.09130859 0.2294922 0.265625 0.08300781 0.5097656 0.862793 0.5097656 0.9521484 0.4858398 0.9521484 0.5097656 0.862793 0.4858398 0.9521484 0.4858398 0.862793 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -394.9618 -122.2119 44.56725 -396.8271 -123.6143 44.56727 -408.6753 -123.4152 44.66625 -408.6753 -121.641 44.66623 -408.6754 -121.2642 45.93398 -394.9618 -122.2119 44.56725 -408.6753 -121.641 44.66623 -422.3889 -122.2119 44.56725 -394.8236 -121.8351 45.93396 -422.5271 -121.8351 45.93396 -422.3889 -122.2119 44.56725 -420.5236 -123.6143 44.56727 -408.6753 -122.2461 48.9746 -394.8236 -121.8351 45.93396 -408.6754 -121.2642 45.93398 -422.8025 -122.817 48.97458 -422.5271 -121.8351 45.93396 -394.5482 -122.817 48.97457 - - - - - - - - - - -0.00799166 0.008809847 -0.9999293 -0.008170839 0.01085365 -0.9999077 -2.292424e-008 0.0007034045 -0.9999998 -2.244253e-008 -1.058123e-005 -1 -0.0007687229 0.9587042 -0.2844041 0.03955367 0.9619964 -0.2701822 -0.0007847263 0.9587016 -0.2844127 0.007991649 0.008810362 -0.9999293 0.03966027 0.9622438 -0.2692842 -0.03820755 0.9620558 -0.2701644 -0.03812021 0.9623389 -0.2691668 0.008170844 0.01085438 -0.9999077 0.0003296931 0.9516843 0.307078 0.03857033 0.951778 0.3043534 0.0003235814 0.9516851 0.3070754 -0.03911425 0.9517605 0.3043387 -0.03923525 0.9519106 0.3038531 0.03847227 0.9519186 0.3039258 - - - - - - - - - - 0.07226563 0.6923828 0.07958984 0.6806641 0.1396484 0.6787109 0.07226563 0.6923828 0.1396484 0.6787109 0.1396484 0.6933594 0.1982422 0.6391602 0.1293945 0.6225586 0.1982422 0.6254883 0.1396484 0.6787109 0.07226562 0.6923828 0.1396484 0.6933594 0.1982422 0.6391602 0.1293945 0.6376953 0.1293945 0.6225586 0.1982422 0.6391602 0.1982422 0.6254883 0.1293945 0.6376953 0.1293945 0.6376953 0.1982422 0.6254883 0.1293945 0.6225586 0.1396484 0.6787109 0.07958984 0.6806641 0.07226562 0.6923828 0.1982422 0.6713867 0.1293945 0.6376953 0.1982422 0.6391602 0.1293945 0.6699219 0.1982422 0.6391602 0.1293945 0.6376953 0.1293945 0.6699219 0.1293945 0.6376953 0.1982422 0.6713867 0.1982422 0.6391602 0.1293945 0.6699219 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -428.9944 -139.3529 69.42697 -429.8919 -138.2774 67.69329 -429.2882 -140.5328 70.05523 -428.9944 -139.3529 69.42697 -428.5429 -138.5564 68.44602 -429.8919 -138.2774 67.69329 -429.2882 -140.5328 70.05523 -429.8919 -138.2774 67.69329 -432.4374 -139.6675 67.84591 -428.2719 -139.7886 70.18561 -428.2719 -139.7886 70.18561 -435.3523 -135.5425 60.51822 -431.6103 -141.3809 69.69154 -428.4335 -140.3329 70.40487 -426.7804 -139.9476 70.6259 -432.8035 -134.2567 60.57506 -431.6103 -141.3809 69.69154 -431.7066 -143.2179 70.00759 -429.4722 -143.8295 71.06003 -426.7804 -139.9476 70.6259 -419.5659 -137.794 68.78827 -437.5286 -132.8019 53.82747 -419.5973 -143.8243 71.80251 -428.4335 -140.3329 70.40487 -429.4722 -143.8295 71.06003 -426.7804 -139.9476 70.6259 -419.5827 -139.5902 71.18365 -434.2546 -131.5355 53.82882 -419.5827 -139.5902 71.18365 -415.8376 -137.5881 68.84492 -437.1165 -131.9691 52.56121 -408.6753 -143.8243 72.08246 -415.2955 -138.7106 70.02218 -434.0799 -131.0524 52.68221 -438.1771 -132.4271 52.3774 -408.6753 -139.4597 71.48056 -414.3619 -138.9921 70.58366 -436.0682 -130.7442 49.98241 -438.4208 -132.0112 50.12395 -408.6753 -139.4597 71.48056 -397.7532 -143.8243 71.80251 -433.0556 -130.6589 52.175 -438.8658 -132.8851 51.59623 -408.6753 -138.8589 70.69994 -397.768 -139.5902 71.18367 -435.4023 -130.3871 48.84422 -439.6763 -133.6559 50.12394 -397.768 -139.5902 71.18367 -390.5703 -139.9476 70.62586 -422.8025 -129.437 51.81992 -439.4038 -133.8547 51.31087 -402.9888 -138.992 70.58366 -390.5703 -139.9476 70.62586 -397.7848 -137.794 68.78831 -388.9171 -140.3329 70.40483 -422.5271 -128.4551 48.7793 -402.0552 -138.7106 70.0222 -388.8078 -138.5563 68.44604 -401.513 -137.5881 68.84493 -387.8783 -143.8295 71.06003 -388.9171 -140.3329 70.40483 -389.0788 -139.7887 70.18554 -390.5703 -139.9476 70.62586 -435.4023 -130.3871 48.84422 -422.5271 -128.4551 48.7793 -422.3889 -128.8319 47.41259 -389.0788 -139.7887 70.18554 -387.8783 -143.8295 71.06003 -388.0625 -140.5328 70.05522 -435.1123 -130.6194 47.50045 -388.3563 -139.3529 69.42697 -385.644 -143.2179 70.00757 -388.3563 -139.3529 69.42697 -434.9745 -130.5338 46.47843 -387.4588 -138.2774 67.69329 -385.7403 -141.3809 69.69151 -387.4588 -138.2774 67.69329 -434.4602 -130.2142 42.66487 -384.9133 -139.6674 67.84591 -385.7403 -141.3809 69.69151 -385.644 -143.2179 70.00757 -384.9133 -139.6674 67.84591 -388.0625 -140.5328 70.05522 -385.7403 -141.3809 69.69151 -387.4588 -138.2774 67.69329 -421.7612 -128.411 41.54476 -384.4726 -141.2016 67.28003 -384.5472 -134.2567 60.57506 -422.3889 -128.8319 47.41259 -419.7629 -128.9808 40.74778 -421.7612 -128.411 41.54476 -434.0623 -129.9669 39.71433 -381.8259 -137.5119 60.22985 -381.9984 -135.5425 60.51822 -421.7612 -128.411 41.54476 -419.7629 -128.9808 40.74778 -419.9159 -128.3312 39.71432 -420.5236 -130.2343 47.41261 -421.9424 -128.4073 39.71433 -381.9984 -135.5425 60.51822 -383.0961 -131.5355 53.82881 -419.7629 -128.9808 40.74778 -408.6754 -127.9095 39.71433 -419.9159 -128.3312 39.71432 -419.9159 -128.3312 39.71432 -421.0939 -128.3706 40.5166 -408.6753 -130.0352 47.51159 -419.7629 -128.9808 40.74778 -420.5236 -130.2343 47.41261 -421.9424 -128.0154 38.64322 -379.6135 -134.9293 53.78247 -379.8222 -132.802 53.82747 -408.6754 -128.7817 40.74779 -408.6754 -128.7817 40.74779 -433.9253 -129.6041 38.64323 -379.8222 -132.802 53.82747 -380.2343 -131.9691 52.56121 -397.4349 -128.3312 39.71432 -408.6754 -127.5291 38.64322 -396.8271 -130.2343 47.41261 -433.9253 -129.6041 38.64323 -421.9424 -128.0154 38.64322 -421.9424 -128.9578 32.84076 -379.1737 -132.4271 52.3774 -379.1737 -132.4271 52.3774 -383.2709 -131.0524 52.68222 -397.5879 -128.9808 40.74778 -397.4349 -128.3312 39.71432 -408.6754 -127.5291 38.64322 -408.6754 -128.4822 32.84076 -397.5879 -128.9808 40.74778 -432.8651 -130.0314 32.84077 -378.4849 -132.8851 51.59623 -378.9299 -132.0112 50.12395 -381.2825 -130.7442 49.98241 -396.2569 -128.3706 40.51659 -395.4083 -128.0154 38.64321 -395.4083 -128.9577 32.84075 -396.8271 -130.2343 47.41261 -394.9618 -128.8319 47.41259 -377.9469 -133.8547 51.31087 -378.4849 -132.8851 51.59623 -384.2952 -130.6589 52.17501 -395.5895 -128.411 41.54476 -396.2569 -128.3706 40.51659 -395.4083 -128.4073 39.71431 -397.4349 -128.3312 39.71432 -395.4083 -128.0154 38.64321 -377.9469 -133.8547 51.31087 -377.6744 -133.6559 50.12394 -381.9485 -130.3871 48.84423 -395.5895 -128.411 41.54476 -383.2884 -129.967 39.71432 -384.4856 -130.0314 32.84076 -394.9618 -128.8319 47.41259 -382.3763 -130.5338 46.47843 -394.5482 -129.437 51.81991 -383.4254 -129.6041 38.64322 -383.4254 -129.6041 38.64322 -382.2384 -130.6194 47.50044 -382.8905 -130.2142 42.66486 -394.8236 -128.4551 48.7793 -381.9485 -130.3871 48.84423 -394.8236 -128.4551 48.7793 - - - - - - - - - - -0.5717969 0.4919433 0.6565365 -0.6176847 0.4838812 0.6199392 -0.4223496 0.3575936 0.8329152 -0.1403833 0.7992508 0.5843721 -0.127194 0.8026856 0.5826813 -0.1569124 0.8007953 0.5780185 -0.3227377 0.6296637 0.7066569 -0.3446977 0.6970596 0.6287221 -0.3466066 0.6875513 0.6380729 -0.347112 0.4572788 0.8187853 -0.09731811 0.8049205 0.5853479 -0.3954716 0.7644657 0.5091113 -0.3353979 0.6107391 0.7172907 -0.3694854 0.3960732 0.8405989 -0.08909538 0.8040702 0.5878206 -0.3847159 0.7690866 0.5103914 -0.2149057 0.1765163 0.9605506 -0.2943108 0.248705 0.9227822 -0.3545019 0.2906708 0.8887288 -0.2156317 0.4193369 0.8818501 -0.06982318 0.7991647 0.5970432 -0.3566237 0.8316594 0.4256315 -0.05539792 0.1480425 0.9874282 -0.09353391 0.1568565 0.9831823 -0.07349655 0.2047161 0.9760582 -0.1308003 0.05802833 0.989709 -0.0571249 0.7959529 0.6026572 -0.310819 0.8682023 0.3868026 -0.05439505 0.143595 0.9881405 0.003338133 0.7570016 0.6534045 -0.3699206 0.8656504 0.3373545 -0.001218422 0.1375774 0.9904903 -0.009950466 0.8144878 0.5800953 -0.2597444 0.9166769 0.3037042 -0.4870734 0.8308701 0.2690992 -0.001214215 0.137578 0.9904902 -0.0290456 0.8211175 0.5700197 -0.2779181 0.9290836 0.2440598 -0.6064508 0.7720896 0.1899872 -0.002194932 0.7934234 0.6086662 0.05665355 0.1470427 0.9875064 -0.1527827 0.9681561 0.198321 -0.765573 0.6147126 0.1898061 -0.002351952 0.7934217 0.6086678 0.05567469 0.1445858 0.9879247 -0.1483161 0.9690895 0.1971493 -0.8308409 0.5258775 0.1820885 0.0572794 0.7959348 0.6026665 0.1308071 0.05802726 0.9897082 -0.1361125 0.9525691 0.2721866 -0.873631 0.4057941 0.2685146 0.03294271 0.8363674 0.5471785 0.08910565 0.8040501 0.5878465 0.06981998 0.7991583 0.597052 0.09353666 0.1568658 0.9831806 -0.1404538 0.945826 0.2927217 0.009952212 0.8144747 0.5801137 0.1272202 0.8026643 0.5827049 -0.003331457 0.7570095 0.6533953 0.07349686 0.204731 0.976055 0.3694567 0.3960958 0.8406009 0.3470838 0.4572954 0.818788 0.2156553 0.4193673 0.8818298 -0.1382419 0.9692252 -0.2036953 -0.1439749 0.9501636 -0.2765146 -0.1415869 0.9850494 -0.0981372 0.09734743 0.8048842 0.585393 0.3544965 0.2906785 0.8887284 0.4223178 0.3576029 0.8329273 -0.1392125 0.9869125 -0.08138523 0.1403773 0.7992265 0.5844068 0.2943175 0.2487137 0.9227777 0.5717877 0.491941 0.6565462 -0.1384018 0.988296 0.06415523 0.1569644 0.8007765 0.5780304 0.2149167 0.1765272 0.9605462 0.6176995 0.4838747 0.6199295 -0.1363929 0.9886332 0.06325602 0.8988026 0.1006374 0.426645 0.8533414 0.1315193 0.5044909 0.8713066 0.1116178 0.4778768 0.3471805 0.6858919 0.6395451 0.3227353 0.6296607 0.7066606 0.3354009 0.610728 0.7172988 0.3427209 0.6967751 0.6301165 -0.1107501 0.9933233 0.03229886 0.8989552 0.1009995 0.4262379 0.3988331 0.7718913 0.4950919 0.5408331 0.8182581 0.194816 0.3929953 0.9096472 0.1345234 0.3098432 0.9454121 0.1009609 -0.1309555 0.9762148 0.1727867 0.9308783 0.03400032 0.3637438 0.388534 0.7795582 0.4912539 0.4047604 0.7999851 0.4429367 0.4047604 0.7999851 0.4429367 0.4047604 0.7999851 0.4429367 0.5870374 0.780802 0.2138582 -0.08455605 0.9802695 0.1786673 0.9340347 0.03470635 0.3554921 0.3186124 0.8594892 0.3997055 -0.03039379 0.8388714 0.5434805 0.003624669 0.8694084 0.4940809 -0.03425612 0.9130488 0.4064092 -0.03157382 0.9994976 0.002778701 -0.02982996 0.9994578 0.01393854 0.0001259065 0.9832368 0.1823329 -0.017919 0.9830219 0.1826112 -0.01804754 0.9829815 0.1828156 -0.07703005 0.9368148 0.3412394 0.9020569 0.109649 0.417457 0.3456399 0.8311611 0.4355505 0.00701516 0.7672514 0.641308 0.0001290926 0.9832364 0.1823351 -0.1252082 0.9444302 0.3039319 0.9175793 0.08176545 0.3890534 0.3699297 0.8656436 0.3373622 -0.1246103 0.8450017 0.5200426 0.000372116 0.9422295 0.3349677 0.0177951 0.9830218 0.1826239 -0.1080144 0.9877006 -0.1130501 -0.08234943 0.9836766 -0.1599965 -0.07835585 0.9855792 -0.1499799 0.830984 0.1540827 0.5345316 0.4870693 0.8308703 0.269106 0.2597458 0.9166739 0.3037122 -0.219007 0.891313 0.3969849 0.03459093 0.9390701 0.3419808 -0.0002937178 0.9868154 -0.1618497 -0.0002970251 0.9868152 -0.1618508 0.01765399 0.9829794 0.1828655 -0.09742029 0.9910932 -0.09079396 0.7702791 0.2163122 0.5998993 0.6064494 0.7720911 0.1899856 0.2779153 0.929085 0.2440578 -0.3435556 0.8768555 0.3362943 0.07691777 0.9368092 0.3412802 0.06649673 0.9848454 -0.16018 -0.5870613 0.7807814 0.213868 -0.5408521 0.8182436 0.1948238 0.7540356 0.238306 0.6120788 0.7655539 0.6147376 0.1898023 0.1527785 0.9681576 0.198317 -0.3239834 0.9350657 0.1438294 0.04357362 0.9990501 0.0003833919 0.08455289 0.9802692 0.1786706 0.0375372 0.9992771 -0.00601145 0.07148303 0.9860566 -0.1502752 0.8736365 0.4057952 0.2684948 0.8308436 0.5258806 0.1820672 0.1483039 0.9690941 0.1971361 0.1172509 0.9925585 0.03286058 0.1309569 0.9762118 0.1728028 0.121291 0.9860188 -0.1142606 0.1425206 0.9848291 -0.0989924 0.1370672 0.9885417 0.06322875 0.1361121 0.9525692 0.2721864 0.1252063 0.9444203 0.3039632 0.130811 0.9866924 -0.09657391 0.1392102 0.9869125 -0.08138927 0.1346993 0.9887727 0.0646895 0.1404536 0.9458257 0.2927225 0.1382404 0.9692319 -0.2036642 0.1439754 0.950166 -0.2765062 - - - - - - - - - - 0.9799805 0.637207 0.9936523 0.6274414 0.9726562 0.6342773 0.9799805 0.637207 0.9936523 0.6401367 0.9936523 0.6274414 0.9936523 0.6274414 0.9804688 0.590332 0.9760742 0.6455078 0.9799805 0.637207 0.9726562 0.6342773 0.9760742 0.6455078 0.9936523 0.6401367 0.9799805 0.637207 0.04833984 0.855957 0.06640625 0.8500977 0.04785156 0.7675781 0.9726563 0.6342773 0.9804688 0.590332 0.96875 0.6103516 0.9760742 0.6455078 0.9726562 0.6342773 0.9731445 0.6435547 0.9746094 0.6606445 0.9936523 0.6401367 0.06640625 0.8500977 0.06640625 0.7646484 0.04785156 0.7675781 0.9726563 0.6342773 0.96875 0.6103516 0.9580078 0.6044922 0.9731445 0.6435547 0.9726562 0.6342773 0.9550781 0.6293945 0.9746094 0.6606445 0.9760742 0.6455078 0.9731445 0.6435547 0.9746094 0.6606445 0.9936523 0.7353516 0.9936523 0.6401367 0.06640625 0.7646484 0.04785156 0.6933594 0.04785156 0.7675781 0.9726562 0.6342773 0.9580078 0.6044922 0.9550781 0.6293945 0.9555664 0.7353516 0.9731445 0.6435547 0.9550781 0.6293945 0.9555664 0.7353516 0.9746094 0.6606445 0.9765625 0.7353516 0.9936523 0.7353516 0.9746094 0.6606445 0.06640625 0.7646484 0.06591797 0.6899414 0.04785156 0.6933594 0.9765625 0.7353516 0.9746094 0.6606445 0.9555664 0.7353516 0.9765625 0.7353516 0.9936523 0.7729492 0.9936523 0.7353516 0.06591797 0.6899414 0.05078125 0.6787109 0.04785156 0.6933594 0.9560547 0.8457031 0.9765625 0.7353516 0.9555664 0.7353516 0.9765625 0.7353516 0.9858398 0.7783203 0.9936523 0.7729492 0.06591797 0.6899414 0.06591797 0.6777344 0.05078125 0.6787109 0.04785156 0.6933594 0.05078125 0.6787109 0.04492187 0.6777344 0.9790039 0.8457031 0.9765625 0.7353516 0.9560547 0.8457031 0.9765625 0.7353516 0.9829102 0.7875977 0.9858398 0.7783203 0.06591797 0.6777344 0.05664062 0.6499023 0.05078125 0.6787109 0.05078125 0.6787109 0.04345703 0.652832 0.04492188 0.6777344 0.9790039 0.8457031 0.9829102 0.7875977 0.9765625 0.7353516 0.9555664 0.7353516 0.9790039 0.8457031 0.9560547 0.8457031 0.06591797 0.6777344 0.07128906 0.671875 0.05664063 0.6499023 0.05078125 0.6787109 0.05664062 0.6499023 0.04345703 0.652832 0.9711914 0.3798828 0.9736328 0.3510742 0.9692383 0.3681641 0.9790039 0.8457031 0.9833984 0.8457031 0.9829102 0.7875977 0.9555664 0.7353516 0.9765625 0.7353516 0.9790039 0.8457031 0.07128906 0.671875 0.06054688 0.6362305 0.05664063 0.6499023 0.9736328 0.3510742 0.965332 0.3491211 0.9692383 0.3681641 0.9790039 0.8457031 0.9765625 0.7353516 0.9833984 0.8457031 0.9746094 0.6606445 0.9765625 0.7353516 0.9555664 0.7353516 0.07128906 0.671875 0.1254883 0.671875 0.06054687 0.6362305 0.9692383 0.3681641 0.965332 0.3491211 0.9643555 0.3652344 0.9765625 0.7353516 0.9829102 0.7875977 0.9833984 0.8457031 0.9765625 0.7353516 0.9746094 0.6606445 0.9936523 0.7353516 0.9731445 0.6435547 0.9555664 0.7353516 0.1254883 0.671875 0.1254883 0.6362305 0.06054687 0.6362305 0.9765625 0.7353516 0.9858398 0.7783203 0.9829102 0.7875977 0.9746094 0.6606445 0.9936523 0.6401367 0.9936523 0.7353516 0.9765625 0.7353516 0.9936523 0.7353516 0.9936523 0.7729492 0.9550781 0.6293945 0.9731445 0.6435547 0.9555664 0.7353516 0.9731445 0.6435547 0.9760742 0.6455078 0.9746094 0.6606445 0.06054687 0.6362305 0.1254883 0.6362305 0.1254883 0.6196289 0.9765625 0.7353516 0.9936523 0.7729492 0.9858398 0.7783203 0.9746094 0.6606445 0.9760742 0.6455078 0.9936523 0.6401367 0.9550781 0.6293945 0.9726563 0.6342773 0.9731445 0.6435547 0.9726563 0.6342773 0.9760742 0.6455078 0.9731445 0.6435547 0.06054687 0.6362305 0.1254883 0.6196289 0.06298828 0.6240234 0.9760742 0.6455078 0.9799805 0.637207 0.9936523 0.6401367 0.9580078 0.6044922 0.9726562 0.6342773 0.9550781 0.6293945 0.9726562 0.6342773 0.9799805 0.637207 0.9760742 0.6455078 0.06298828 0.6240234 0.1254883 0.6196289 0.06347656 0.6137695 0.9799805 0.637207 0.9936523 0.6274414 0.9936523 0.6401367 0.9580078 0.6044922 0.96875 0.6103516 0.9726563 0.6342773 0.9936523 0.6274414 0.9799805 0.637207 0.9726563 0.6342773 0.1254883 0.6196289 0.06445313 0.574707 0.06347656 0.6137695 0.9360352 0.5561523 0.9272461 0.5766602 0.9179688 0.5795898 0.9804688 0.590332 0.9726563 0.6342773 0.96875 0.6103516 0.9804687 0.590332 0.9936523 0.6274414 0.9726562 0.6342773 0.1254883 0.6196289 0.128418 0.5600586 0.06445313 0.574707 0.9360352 0.5561523 0.9179688 0.5795898 0.9267578 0.5493164 0.04833984 0.855957 0.06640625 0.7646484 0.06640625 0.8500977 0.1254883 0.6196289 0.1386719 0.5532227 0.128418 0.5600586 0.06445313 0.574707 0.128418 0.5600586 0.06738281 0.5449219 0.9477539 0.472168 0.9360352 0.5561523 0.9267578 0.5493164 0.04833984 0.855957 0.04785156 0.7675781 0.06640625 0.7646484 0.128418 0.5600586 0.1386719 0.5532227 0.1381836 0.5380859 0.1347656 0.6191406 0.1386719 0.5532227 0.1254883 0.6196289 0.128418 0.5600586 0.1274414 0.5385742 0.06738281 0.5449219 0.956543 0.4755859 0.9360352 0.5561523 0.9477539 0.472168 0.06640625 0.7646484 0.04785156 0.7675781 0.06591797 0.6899414 0.1386719 0.5532227 0.1938477 0.5371094 0.1381836 0.5380859 0.128418 0.5600586 0.1381836 0.5380859 0.1337891 0.5463867 0.1938477 0.6196289 0.1386719 0.5532227 0.1347656 0.6191406 0.128418 0.5600586 0.1337891 0.5463867 0.1274414 0.5385742 0.1274414 0.5385742 0.1279297 0.5258789 0.06738281 0.5449219 0.9609375 0.3959961 0.956543 0.4755859 0.9477539 0.472168 0.04785156 0.7675781 0.04785156 0.6933594 0.06591797 0.6899414 0.1938477 0.5527344 0.1938477 0.5371094 0.1386719 0.5532227 0.1938477 0.5371094 0.1279297 0.5258789 0.1381836 0.5380859 0.1337891 0.5463867 0.1381836 0.5380859 0.1274414 0.5385742 0.1938477 0.6196289 0.1938477 0.5527344 0.1386719 0.5532227 0.1274414 0.5385742 0.1381836 0.5380859 0.1279297 0.5258789 0.06738282 0.5449219 0.1279297 0.5258789 0.06884766 0.5258789 0.9697266 0.3964844 0.956543 0.4755859 0.9609375 0.3959961 0.06591797 0.6899414 0.04785156 0.6933594 0.05078125 0.6787109 0.1938477 0.5527344 0.1381836 0.5380859 0.1938477 0.5371094 0.1938477 0.5371094 0.1938477 0.5258789 0.1279297 0.5258789 0.1938477 0.6196289 0.1347656 0.6191406 0.1938477 0.5527344 0.06884766 0.5258789 0.1279297 0.5258789 0.1279297 0.4750977 0.9711914 0.3798828 0.9697266 0.3964844 0.9609375 0.3959961 0.04785156 0.6933594 0.04492187 0.6777344 0.05078125 0.6787109 0.06591797 0.6899414 0.06591797 0.6777344 0.1938477 0.5527344 0.1386719 0.5532227 0.1381836 0.5380859 0.1938477 0.5371094 0.1381836 0.5380859 0.1938477 0.5258789 0.1938477 0.5258789 0.1938477 0.4750977 0.1279297 0.5258789 0.1347656 0.6191406 0.1386719 0.5532227 0.1938477 0.5527344 0.1279297 0.5258789 0.1938477 0.4750977 0.1279297 0.4750977 0.06884765 0.5258789 0.1279297 0.4750976 0.0727539 0.4750976 0.9711914 0.3798828 0.9609375 0.3959961 0.9692383 0.3681641 0.05078125 0.6787109 0.04492187 0.6777344 0.04345703 0.652832 0.06591797 0.6777344 0.05078125 0.6787109 0.05664062 0.6499023 0.1386719 0.5532227 0.1337891 0.5463867 0.1381836 0.5380859 0.1381836 0.538086 0.1279297 0.5258789 0.1938477 0.5258789 0.1938477 0.5258789 0.1279297 0.4750977 0.1938477 0.4750977 0.1347656 0.6191406 0.1254883 0.6196289 0.1386719 0.5532227 0.9692383 0.3681641 0.9609375 0.3959961 0.9643555 0.3652344 0.9711914 0.3798828 0.9692383 0.3681641 0.9736328 0.3510742 0.05078125 0.6787109 0.04345703 0.652832 0.05664062 0.6499023 0.06591797 0.6777344 0.05664062 0.6499023 0.07128906 0.671875 0.128418 0.5600586 0.1337891 0.5463867 0.1386719 0.5532227 0.1337891 0.5463867 0.1274414 0.5385742 0.1381836 0.5380859 0.1381836 0.5380859 0.1274414 0.5385742 0.1279297 0.5258789 0.1938477 0.5258789 0.1279297 0.5258789 0.1279297 0.4750977 0.1254883 0.6196289 0.128418 0.5600586 0.9692383 0.3681641 0.9643555 0.3652344 0.965332 0.3491211 0.9736328 0.3510742 0.9692383 0.3681641 0.965332 0.3491211 0.07128906 0.671875 0.05664062 0.6499023 0.06054687 0.6362305 0.128418 0.5600586 0.1274414 0.5385742 0.1337891 0.5463867 0.06738281 0.5449219 0.1279297 0.5258789 0.1274414 0.5385742 0.1279297 0.5258789 0.07275391 0.4750977 0.1279297 0.4750977 0.1254883 0.6196289 0.06347656 0.6137695 0.128418 0.5600586 0.07128906 0.671875 0.06054688 0.6362305 0.1254883 0.671875 0.128418 0.5600586 0.06738281 0.5449219 0.1274414 0.5385742 0.06738282 0.5449219 0.06884766 0.525879 0.1279297 0.525879 0.06884765 0.5258789 0.0727539 0.4750976 0.1279297 0.5258789 0.06298828 0.6240234 0.06347656 0.6137695 0.1254883 0.6196289 0.06347656 0.6137695 0.06445313 0.574707 0.128418 0.5600586 0.1254883 0.671875 0.06054688 0.6362305 0.1254883 0.6362305 0.06445313 0.574707 0.06738281 0.5449219 0.128418 0.5600586 0.06054688 0.6362305 0.06298828 0.6240234 0.1254883 0.6196289 0.06054687 0.6362305 0.1254883 0.6196289 0.1254883 0.6362305 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 2 7 6 8 7 9 8 0 9 2 10 10 11 4 12 3 13 8 14 7 15 11 16 6 17 8 18 12 19 9 20 2 21 13 22 14 23 4 24 10 11 7 25 15 26 11 27 2 28 16 29 17 30 13 31 2 32 18 33 19 34 9 35 13 36 14 37 20 38 4 39 15 40 21 41 11 42 2 43 17 44 18 45 22 46 23 47 24 48 22 49 25 50 23 36 26 51 20 52 14 53 15 54 27 55 21 56 28 57 25 58 22 59 26 60 29 61 20 62 27 63 30 64 21 65 31 66 28 67 22 68 26 69 32 70 29 71 27 72 33 73 30 74 21 75 30 76 34 77 35 78 28 79 31 80 26 81 36 82 32 83 33 84 37 85 30 86 30 87 38 88 34 89 39 90 36 91 26 92 40 93 35 94 31 95 33 96 41 97 37 98 30 99 37 100 38 101 34 102 38 103 42 104 39 105 43 106 36 107 40 108 44 109 35 110 41 111 45 112 37 113 38 114 46 115 42 116 39 117 47 118 43 119 48 120 44 121 40 122 41 123 49 124 45 125 42 126 46 127 50 128 47 129 51 130 43 131 47 132 52 133 53 134 54 135 48 37 40 136 49 137 55 138 45 139 47 140 56 141 51 142 52 143 57 144 53 145 47 146 53 147 58 148 59 149 54 150 40 151 60 152 61 153 62 154 63 155 64 156 65 157 47 158 58 159 56 160 52 161 66 162 57 163 67 164 68 165 60 166 68 167 61 168 60 169 63 170 65 171 69 172 66 173 70 174 57 175 71 176 68 177 67 178 68 179 72 180 61 181 69 182 65 183 73 184 70 185 74 186 57 187 71 188 75 189 68 190 76 191 72 192 68 193 65 194 77 195 73 196 78 197 79 198 80 199 81 200 82 201 83 202 81 203 84 204 82 205 65 206 85 207 77 208 78 209 80 210 86 211 81 212 87 213 84 214 88 215 89 216 90 217 77 218 85 219 91 220 92 221 78 222 86 223 81 224 93 225 87 226 94 227 95 228 96 229 97 230 89 231 88 232 85 233 98 234 91 235 99 236 78 237 92 238 87 239 93 240 100 241 101 242 102 243 103 244 85 245 104 246 105 247 106 248 107 249 108 250 85 251 105 252 98 253 98 254 109 255 91 256 110 257 99 258 92 259 93 260 111 261 100 262 112 263 102 264 101 265 102 266 109 267 103 268 105 269 104 270 98 271 106 272 113 273 107 274 98 275 103 276 109 277 91 278 109 279 114 280 115 281 99 282 110 283 100 284 111 285 116 286 112 287 117 288 102 289 102 290 118 291 109 292 106 293 119 294 113 295 120 296 121 297 122 298 123 299 115 300 110 301 111 302 124 303 116 304 100 305 116 99 125 306 112 307 126 308 117 309 102 310 127 311 118 312 128 313 129 314 121 315 119 316 130 317 113 318 121 319 129 320 122 321 120 322 122 323 131 324 123 325 110 326 132 327 116 328 124 329 133 330 125 331 116 332 134 333 126 334 135 335 117 336 127 337 136 338 118 339 128 340 137 341 129 342 138 343 139 344 126 345 132 346 110 347 140 348 124 349 141 350 133 351 116 352 133 353 134 354 125 355 134 356 142 357 143 358 135 359 126 360 144 361 145 362 146 363 127 364 145 365 136 366 128 367 147 368 137 369 139 370 143 371 126 216 141 372 148 373 149 374 133 375 141 376 149 377 142 378 134 379 150 380 151 381 145 382 144 383 152 384 136 385 145 386 147 387 153 388 137 389 154 390 155 391 151 392 142 393 150 394 156 395 151 396 152 397 145 398 152 399 157 400 136 401 158 402 153 403 147 404 159 405 155 406 154 407 155 408 160 409 151 410 156 411 150 412 161 413 160 414 152 415 151 416 162 417 159 418 154 419 162 420 154 421 163 422

-
-
-
- - - - -383.0188 -132.285 60.25837 -381.8099 -136.6199 57.27983 -382.844 -132.7681 61.40496 - - - - - - - - - - -0.9581573 -0.2850608 0.02597756 -0.9581573 -0.2850608 0.02597756 -0.9581573 -0.2850608 0.02597756 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -381.8099 -136.6199 57.27983 -383.0188 -132.285 60.25837 -384.0431 -131.8915 59.75116 -381.8099 -136.6199 57.27983 -384.0431 -131.8915 59.75116 -394.2961 -130.6697 59.39606 -408.4233 -130.0987 59.39609 -435.0367 -136.6199 57.27983 -432.8035 -131.8916 59.75115 - - - - - - - - - - -0.5296256 -0.5757237 0.6229277 -0.5296256 -0.5757237 0.6229277 -0.5296256 -0.5757237 0.6229277 -0.05653872 -0.4323556 0.8999289 -0.08882625 -0.4940079 0.8649082 -0.0236767 -0.378738 0.925201 0.001979837 -0.3235612 0.9462052 0.03791409 -0.4450768 0.8946894 0.04808167 -0.4804161 0.8757217 - - - - - - - - - - 0.8984375 0.4750977 0.9003906 0.4755859 0.9003906 0.4770508 0.9008789 0.4853516 0.8984375 0.4750977 0.9013672 0.496582 0.8984375 0.4750977 0.9013672 0.496582 0.8984375 0.5185547 0.9003906 0.5166016 0.8984375 0.5185547 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 0 4 2 5 3 3 4 5 3 6 5 3 6 6 7 7 8 6 7 8 9 7 10

-
-
-
- - - - -408.4233 -130.0987 59.39609 -422.5504 -130.6697 59.39607 -432.8035 -131.8916 59.75115 - - - - - - - - - - -0.01626772 0.4024892 0.9152802 -0.01626772 0.4024892 0.9152802 -0.01626772 0.4024892 0.9152802 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -388.415 -143.5419 77.57045 -397.5327 -139.0266 76.36446 -388.5557 -139.7889 76.02219 -401.261 -138.8207 76.42108 -408.4233 -138.4251 76.52987 -428.4315 -143.5419 77.57044 -415.5855 -138.8207 76.42107 -415.5855 -138.8207 76.42107 -419.3138 -139.0266 76.36441 -428.2908 -139.789 76.02217 - - - - - - - - - - -0.1111372 -0.3504165 -0.9299768 -0.03658256 -0.3261691 -0.9446033 -0.2455265 -0.3775484 -0.892846 -0.03193905 -0.3176189 -0.9476804 5.037861e-007 -0.2154996 -0.9765039 0.05149797 -0.3440364 -0.937543 0.03194128 -0.3176227 -0.947679 0.03194167 -0.3176237 -0.9476787 0.03659333 -0.3261955 -0.9445938 0.0676252 -0.3826661 -0.9214084 - - - - - - - - - - 0.8588867 0.4794922 0.8569336 0.4868164 0.8574219 0.4794922 0.8588867 0.4794922 0.8569336 0.4897461 0.8569336 0.4868164 0.8564453 0.4956055 0.8569336 0.4897461 0.8588867 0.512207 0.8564453 0.4956055 0.8564453 0.4956055 0.8588867 0.512207 0.8569336 0.5014648 0.8569336 0.5014648 0.8588867 0.512207 0.8569336 0.5048828 0.8569336 0.5048828 0.8569336 0.512207 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 3 4 1 5 0 3 4 6 3 7 0 3 5 8 4 9 4 10 5 11 6 12 7 13 5 14 8 15 8 16 5 14 9 17

-
-
-
- - - - -382.844 -132.7681 61.40496 -381.8099 -136.6199 57.27983 -384.2951 -135.4893 68.15121 -387.2068 -139.51 75.26944 -388.415 -143.5419 77.57045 -388.415 -143.5419 77.57045 -381.8099 -136.6199 57.27983 -381.3058 -141.2095 67.37587 -388.415 -143.5419 77.57045 -381.3058 -141.2095 67.37587 -383.4465 -144.6664 73.68945 -383.8734 -146.1904 75.26419 - - - - - - - - - - -0.9751067 -0.02594887 -0.2202125 -0.9698819 0.06822946 -0.2338243 -0.9481799 0.2098454 -0.2385788 -0.9533126 0.1504885 -0.2618173 -0.9548154 0.1350354 -0.2647507 -0.2666246 -0.8823409 -0.3877961 -0.2666246 -0.8823409 -0.3877961 -0.2666246 -0.8823409 -0.3877961 -0.5819532 -0.5702539 -0.5797766 -0.561262 -0.6308578 -0.535727 -0.5772089 -0.5854215 -0.569308 -0.6039508 -0.4846414 -0.6327449 - - - - - - - - - - 0.9003906 0.4750977 0.8984375 0.4750977 0.9018555 0.4697266 0.9018555 0.4697266 0.8984375 0.4750977 0.9033203 0.4633789 0.9033203 0.4594727 0.9033203 0.4594727 0.8984375 0.4750977 0.8994141 0.4663086 0.9033203 0.4594727 0.8994141 0.4663086 0.9008789 0.4609375 0.9008789 0.4609375 0.9008789 0.4589844 0.9033203 0.4594727 - - - - - - - - - - - - - - -

0 0 1 1 2 2 2 3 1 4 3 5 1 1 4 6 3 5 5 7 6 8 7 9 8 10 9 11 10 12 10 13 11 14 8 15

-
-
-
- - - - -387.2068 -139.51 75.26944 -388.415 -143.5419 77.57045 -388.5557 -139.7889 76.02219 - - - - - - - - - - -0.3957301 -0.362878 -0.8436333 -0.1111372 -0.3504165 -0.9299768 -0.2455265 -0.3775484 -0.892846 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -423.2409 -138.9007 76.47681 -423.4349 -139.7773 75.97204 -423.2828 -139.6589 77.94798 -421.7553 -139.6589 77.94798 -423.2409 -138.9007 76.47681 -423.2828 -139.6589 77.94798 -423.4703 -140.9869 77.37107 -421.5678 -140.9869 77.3711 -421.7553 -139.6589 77.94798 -423.2828 -139.6589 77.94798 -421.9226 -138.9007 76.47681 -423.4703 -140.9869 77.37107 -421.7553 -139.6589 77.94798 -421.5678 -140.9869 77.3711 -421.7276 -139.7773 75.97207 -421.9226 -138.9007 76.47681 - - - - - - - - - - -0.9815382 0.1799604 0.06478457 -0.9865573 0.1490383 0.0670248 -0.9887565 0.133102 0.06814952 -0 0.888907 0.4580878 -0 0.888907 0.4580878 -0 0.888907 0.4580878 -0.9915148 0.1096863 0.06976567 -2.777781e-006 -0.3984337 0.9171971 -0 -0.3984307 0.9171984 -3.355921e-006 -0.3984344 0.9171968 -7.872153e-017 0.888907 0.4580878 -5.712648e-006 -0.3984369 0.9171957 0.9864765 0.163853 0.004034026 0.9904971 0.1374163 0.005674642 0.9832652 0.1821569 0.002892118 0.9762122 0.2168163 0.0007161913 - - - - - - - - - - 0.5239258 0.4643555 0.5229492 0.4916992 0.546875 0.4697266 0.5478516 0.4277344 0.546875 0.4697266 0.546875 0.4697266 0.5229492 0.4916992 0.546875 0.5048828 0.5678711 0.4238281 0.5478516 0.4277344 0.546875 0.4697266 0.5478516 0.4277344 0.5239258 0.4326172 0.5239258 0.4643555 0.5678711 0.4238281 0.546875 0.4697266 0.5668945 0.4760742 0.5478516 0.4277344 0.5473633 0.3876953 0.5253906 0.4042969 0.5239258 0.4326172 0.5478516 0.4277344 0.5253906 0.4042969 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -395.0912 -139.6589 77.94797 -395.1189 -139.7773 75.97207 -395.2787 -140.9869 77.3711 -393.5638 -139.6589 77.94797 -395.0912 -139.6589 77.94797 -395.2787 -140.9869 77.3711 -394.9239 -138.9007 76.47679 -393.5638 -139.6589 77.94797 -393.6057 -138.9007 76.47679 -395.0912 -139.6589 77.94797 -393.3762 -140.9869 77.37107 -393.5638 -139.6589 77.94797 -395.2787 -140.9869 77.3711 -394.9239 -138.9007 76.47679 -393.6057 -138.9007 76.47679 -393.5638 -139.6589 77.94797 -393.4116 -139.7773 75.97204 -393.3762 -140.9869 77.37107 - - - - - - - - - - -0.9864803 0.1638304 0.004016711 -0.9832696 0.1821336 0.002874903 -0.9905 0.1373963 0.005657082 1.046441e-006 -0.3984264 0.9172003 -7.425304e-017 -0.3984253 0.9172008 -7.425304e-017 -0.3984253 0.9172008 -0.976218 0.2167902 0.0006992922 -0 0.8889128 0.4580765 -0 0.8889128 0.4580765 -0 0.8889128 0.4580765 1.781314e-006 -0.3984272 0.9172 1.781314e-006 -0.3984272 0.9172 1.781314e-006 -0.3984272 0.9172 -0 0.8889128 0.4580765 0.981538 0.1799545 0.06480387 0.9887515 0.133131 0.0681665 0.9865535 0.1490555 0.06704254 0.9915085 0.1097335 0.06978152 - - - - - - - - - - 0.5478516 0.4277344 0.5253906 0.4042969 0.5473633 0.3876953 0.546875 0.4697266 0.5478516 0.4277344 0.5678711 0.4238281 0.5239258 0.4326172 0.5253906 0.4042969 0.5478516 0.4277344 0.546875 0.4697266 0.5239258 0.4643555 0.5478516 0.4277344 0.5668945 0.4760742 0.546875 0.4697266 0.5678711 0.4238281 0.5478516 0.4277344 0.5239258 0.4643555 0.5239258 0.4326172 0.5239258 0.4643555 0.546875 0.4697266 0.5229492 0.4916992 0.546875 0.4697266 0.546875 0.5048828 0.5229492 0.4916992 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -471.4579 -271.9392 46.34148 -471.502 -275.2072 46.24055 -465.922 -273.222 60.78992 -473.3296 -275.7178 43.38179 -471.4336 -278.4807 46.08902 -465.9415 -270.66 60.87707 -471.0985 -245.3666 47.16221 -465.9601 -276.089 60.52317 -465.8057 -270.1854 61.49729 -471.4056 -307.3885 44.75094 -472.9333 -238.788 44.6356 -465.859 -276.4691 61.01715 -464.5927 -272.9497 63.64937 -471.9953 -307.5826 43.70968 -471.4336 -278.4807 46.08902 -471.4056 -307.3885 44.75094 -469.8589 -307.79 40.8559 -472.9333 -238.788 44.6356 -474.1305 -244.2655 38.23385 -473.3296 -275.7178 43.38179 -471.0798 -239.09 47.3907 -465.6698 -269.2044 61.76199 -472.9634 -317.2701 41.40063 -471.9788 -313.92 43.40028 -469.899 -275.21 42.45191 -474.388 -250.1764 34.58111 -473.8852 -238.6283 39.91691 -468.4873 -242.3089 54.76504 -470.8361 -232.1326 47.61861 -465.7579 -277.3538 61.19949 -464.667 -250.1448 64.1304 -473.9738 -317.5296 33.39475 -471.3986 -314.6255 44.41593 -475.5878 -242.5024 34.4286 -474.421 -276.9585 28.44117 -475.6148 -238.6574 35.55044 -473.8158 -237.0345 40.15715 -468.6197 -244.8764 54.486 -468.2525 -237.068 55.1399 -471.4361 -230.8368 46.73096 -464.8687 -288.3244 62.62272 -464.2533 -272.9497 64.28077 -465.6236 -250.6086 61.79738 -474.1372 -320.5157 32.6815 -469.1356 -306.337 51.47135 -475.4341 -247.1656 31.4666 -474.3697 -254.573 28.95059 -472.6995 -229.7429 44.87447 -466.1147 -248.8931 60.5989 -465.8304 -246.6683 61.47623 -468.2525 -237.068 55.1399 -470.3733 -231.8144 47.60852 -470.8361 -232.1326 47.61861 -470.3733 -231.8144 47.60852 -471.4361 -230.8368 46.73096 -470.8361 -232.1326 47.61861 -472.6995 -229.7429 44.87447 -464.5151 -288.3244 62.94701 -466.0521 -290.1598 60.35364 -463.8928 -245.6314 64.99414 -474.0628 -317.283 27.74289 -473.6886 -326.0652 37.00608 -471.3967 -316.5921 44.32491 -470.9505 -316.0859 45.39405 -475.6148 -238.6574 35.55044 -475.5228 -241.0832 31.76943 -475.3376 -245.1123 29.4336 -473.8205 -276.7877 22.74635 -475.629 -236.6392 35.89042 -473.5444 -229.7411 39.47484 -465.7022 -241.8423 61.60878 -470.5739 -230.8368 46.93737 -471.7791 -213.3544 45.18178 -465.0317 -291.9951 62.30704 -465.3105 -241.8436 62.51291 -475.4301 -323.6443 29.91972 -475.4879 -328.0882 33.20354 -472.4675 -332.5828 40.3841 -473.5842 -315.2005 22.04806 -470.8142 -321.3278 44.47955 -466.2766 -299.673 59.23651 -475.5943 -236.3484 32.94797 -475.0432 -250.9661 27.03589 -474.9634 -248.3812 25.74695 -473.8051 -257.0187 23.12641 -475.629 -236.6392 35.89042 -475.5443 -230.5639 35.67057 -473.6162 -222.7738 37.10591 -469.5301 -212.2576 47.32963 -471.4361 -230.8368 46.73096 -470.5739 -230.8368 46.93737 -471.7791 -213.3544 45.18178 -472.0649 -213.4539 43.83739 -470.3688 -212.2577 46.93487 -466.4513 -295.1426 59.07392 -464.9189 -241.1182 63.09456 -475.1815 -320.5241 25.9514 -475.4105 -333.4497 34.95692 -473.0841 -332.5489 39.25054 -473.843 -316.7059 21.83806 -470.5364 -316.719 46.21152 -467.1234 -298.0328 57.64011 -472.2759 -314.6916 16.82589 -472.4651 -257.9628 17.68661 -475.6263 -231.2911 32.76072 -475.5443 -230.5639 35.67057 -472.2274 -213.6675 42.81113 -470.3688 -212.2577 46.93487 -471.957 -212.7136 44.17578 -470.8896 -207.5875 45.50145 -465.5521 -296.3383 61.04606 -463.1923 -216.9507 64.19816 -475.2458 -323.0875 24.5683 -475.4595 -325.8435 28.15885 -475.5269 -329.6082 30.69503 -475.4105 -333.4497 34.95692 -470.2207 -338.0535 42.34368 -472.0959 -339.8494 39.75725 -472.8519 -316.0177 16.79778 -470.7023 -318.2954 45.34658 -464.209 -298.029 61.31323 -466.2766 -299.673 59.23651 -470.5364 -316.719 46.21152 -474.3671 -250.4528 21.55557 -474.4055 -253.2092 22.19454 -472.4515 -276.2648 17.35194 -472.2759 -314.6916 16.82589 -475.5151 -226.5816 31.38852 -475.4107 -224.9654 33.82054 -472.563 -212.7034 38.99414 -469.5301 -212.2576 47.32963 -469.6172 -211.5396 47.84721 -470.3688 -212.2577 46.93487 -470.8896 -207.5875 45.50145 -469.6172 -211.5396 47.84721 -464.5131 -221.1615 62.59948 -474.7744 -318.616 21.55139 -474.8634 -321.5449 20.7698 -475.4875 -334.0916 32.17349 -475.2274 -339.3937 35.25535 -469.0991 -338.0535 42.59192 -470.8142 -321.3278 44.47955 -470.2207 -338.0535 42.34368 -472.3799 -339.7837 39.42784 -468.8849 -321.0001 45.066 -470.7023 -318.2954 45.34658 -469.2214 -317.124 46.87024 -465.5521 -296.3383 61.04606 -469.3048 -319.4837 45.65482 -470.7023 -318.2954 45.34658 -473.6325 -254.3294 17.49162 -475.1619 -220.6711 30.73439 -472.7045 -210.5764 32.82158 -469.325 -211.7681 47.84722 -471.1621 -207.3887 44.31452 -469.2229 -208.6621 47.97304 -463.1634 -291.9951 62.30704 -467.1234 -298.0328 57.64011 -466.4513 -295.1426 59.07392 -464.7108 -218.6906 61.87862 -474.7744 -318.616 21.55139 -475.2274 -339.3937 35.25535 -469.3846 -322.6428 44.44948 -468.2167 -356.7806 39.64537 -469.1972 -355.1814 39.66874 -470.6378 -356.2737 37.56974 -474.1528 -317.5745 16.77372 -468.8849 -321.0001 45.066 -464.1445 -297.9393 61.1652 -464.209 -298.029 61.31323 -469.2214 -317.124 46.87024 -463.1477 -297.4374 61.90973 -475.5113 -223.4778 29.2685 -473.2722 -216.9365 32.4239 -473.2722 -216.9365 32.4239 -467.2786 -213.7097 53.9903 -469.6172 -211.5396 47.84721 -469.325 -211.7681 47.84722 -470.3515 -206.6179 45.78681 -467.2786 -213.7097 53.9903 -464.3638 -214.9345 61.47061 -474.2984 -320.4709 16.69138 -475.3924 -339.1539 32.36099 -472.0601 -347.7607 37.50804 -469.1972 -355.1814 39.66874 -470.9739 -355.7072 37.20378 -474.1528 -317.5745 16.77372 -467.4565 -323.3269 44.89875 -468.2965 -320.3787 44.46068 -469.2214 -317.124 46.87024 -469.3048 -319.4837 45.65482 -464.1445 -297.9393 61.1652 -468.3113 -316.911 46.60852 -463.1477 -297.4374 61.90973 -464.209 -298.029 61.31323 -464.1445 -297.9393 61.1652 -473.6423 -251.5773 17.58578 -469.6628 -206.1599 46.56797 -467.0106 -211.2447 54.42042 -463.9231 -213.4003 62.03648 -465.1377 -217.1667 60.30389 -474.9818 -345.3745 33.87264 -474.9818 -345.3745 33.87264 -468.2167 -356.7806 39.64537 -469.5602 -358.3951 37.63472 -469.3048 -319.4837 45.65482 -467.4565 -323.3269 44.89875 -468.2965 -320.3787 44.46068 -469.0143 -206.5348 48.01804 -466.8381 -209.2754 54.7088 -463.0961 -215.1138 63.88212 -475.2122 -343.8378 31.31932 -471.224 -355.4179 36.36337 -472.0339 -354.2439 32.46758 -468.0073 -359.8215 37.64661 -474.6713 -350.4696 30.9078 -471.4964 -357.0663 32.46759 -474.6713 -350.4696 30.9078 -467.5742 -360.1299 37.64994 -474.9489 -347.9201 29.20929 - - - - - - - - - - -0.8782815 -0.003605597 0.4781304 -0.8911733 -0.02067326 0.4531917 -0.9250937 -0.02017269 0.3792028 -0.8386522 -0.02183721 0.5442294 -0.8677048 -0.0323005 0.4960293 -0.9606398 -0.01675229 0.2772915 -0.8695251 -0.009259563 0.4938019 -0.9622841 -0.01248193 0.2717602 -0.9059266 -0.02420359 0.4227425 -0.8992802 -0.02424352 0.4367006 -0.8278962 -0.002583965 0.5608754 -0.9220031 -0.004979592 0.3871504 -0.8879619 -0.0208315 0.4594451 -0.8682437 -0.02970678 0.4952479 0.9268027 -0.01718952 0.3751551 0.9287022 -0.01625097 0.3704701 0.928508 -0.01634752 0.3709524 -0.9809394 0.006636641 0.1942005 -0.9700978 -0.05320351 0.2368115 -0.9964 -0.008682082 0.08433123 -0.8930399 0.002533487 0.4499704 -0.8804269 -0.01139118 0.4740451 -0.945733 -0.03244197 0.3233211 -0.8769496 -0.02579027 0.4798898 0.9266736 -0.01725283 0.3754709 -0.9893169 -0.08020118 0.1217366 -0.9596596 -0.02013087 0.2804427 -0.9354665 0.009637338 0.353284 -0.866644 0.01159452 0.4987923 -0.892914 -0.01302822 0.4500386 -0.837353 -0.002604647 0.5466564 -0.9971624 0.01304755 0.07414142 -0.9072672 -0.03018174 0.4194702 -0.9872515 -0.07087969 0.1425151 -0.9998075 -0.003791529 -0.01925126 -0.9295759 -0.07172332 0.3615859 -0.9579125 0.0158592 0.2866221 -0.9354198 0.009837641 0.353402 -0.9361536 0.01778771 0.3511409 -0.8215231 0.01500253 0.5699778 -0.7908039 -0.02207613 0.6116713 -0.8787941 -0.01916083 0.4768163 -0.9253087 0.0007901612 0.3792139 -0.9818873 0.1189454 0.1474766 -0.9179064 -0.07075899 0.3904371 -0.9940182 -0.09548837 0.05300696 -0.9965879 -0.08245419 -0.003712987 -0.9852966 0.0431848 0.1653051 -0.9295042 -0.01818001 0.3683632 -0.9229197 -0.003215458 0.3849792 -0.4473772 0.6694936 0.5929856 -0.4473772 0.6694936 0.5929856 -0.4473772 0.6694936 0.5929856 -0.2640809 0.4693064 0.8426225 -0.2263098 0.5028356 0.8342303 -0.2885658 0.4465647 0.8469414 -0.819689 0.02449192 0.5722849 -0.6792674 -0.03523769 0.7330444 -0.8905528 -0.01635959 0.4545856 -0.8330613 0.03565602 0.5520303 -0.9910498 0.1316732 0.02196482 -0.9536362 0.0526477 0.2963211 -0.891931 -0.06053537 0.448101 -0.9166358 -0.06887519 0.3937449 -0.9998299 -0.006240154 -0.01735776 -0.9994867 -0.01372446 -0.0289484 -0.9980458 -0.01792997 -0.05985964 -0.9845336 0.0007322758 -0.1751941 -0.920847 -0.02142716 0.3893349 -0.9534067 0.07553441 0.292079 -0.922065 0.01148689 0.3868645 -0.1979493 0.526822 0.8266043 -0.7957955 0.05541535 0.6030246 -0.8914317 -0.02152245 0.4526437 -0.8804985 0.02104488 0.4735817 -0.9862202 0.1327931 0.09867018 -0.9771448 0.08547314 0.1946341 -0.8496115 -0.06139 0.523824 -0.9871348 0.09106458 -0.1314233 -0.8564733 -0.07552106 0.5106368 -0.9063468 -0.0617318 0.4180008 -0.9998721 -0.007719398 -0.01400987 -0.9940304 -0.1011395 -0.04091864 -0.9946865 -0.02259364 -0.1004404 -0.9860811 -0.08706594 -0.1416461 -0.9999785 -0.002222175 -0.006165223 -0.8984543 0.1000192 0.4275231 -0.9624147 0.1364093 0.2348414 -0.4200729 0.01385489 0.9073846 -0.2393093 -0.006736076 0.97092 -0.23283 -0.007451313 0.9724889 -0.9719163 0.07911301 0.22163 -0.981679 0.04948389 0.1840044 -0.7998541 0.07761217 0.5951552 -0.9086979 -0.008236737 0.417373 -0.8424671 0.03404737 0.5376709 -0.9821022 0.1872633 0.02019217 -0.8896485 0.0431433 0.4546033 -0.8743694 0.01610154 0.4849938 -0.9502056 0.3057009 -0.06046765 -0.9157837 -0.09525399 0.390214 -0.9074093 -0.0489875 0.417383 -0.9699192 -0.001503176 -0.2434224 -0.9738872 -0.113838 -0.1964299 -0.9996742 0.01872065 0.01734755 -0.9994792 0.02285319 0.02278453 -0.988866 0.06053812 0.1359379 -0.4258509 0.01453489 0.9046766 -0.9673295 0.09918527 0.2333149 -0.7817566 0.1655132 0.6012171 -0.9085298 -0.01180501 0.4176532 -0.8621333 0.1012006 0.4964722 -0.9972908 0.05231914 -0.05170889 -0.9995829 0.02560146 -0.01336404 -0.9998886 0.006669191 0.01335095 -0.9994452 -0.01540748 0.02952655 -0.7693325 -0.111951 0.6289631 -0.7651759 -0.1195087 0.6326323 -0.8774877 0.4677281 -0.1060461 -0.8748065 -0.1084369 0.4721811 -0.4624938 -0.274449 0.8430761 -0.4159009 -0.4645196 0.7818235 -0.5013359 -0.4050463 0.7645913 -0.9896123 -0.01758358 -0.1426826 -0.9857668 -0.1169181 -0.1208052 -0.9693068 0.001476101 -0.2458499 -0.8995893 0.3947186 -0.1869128 -0.9993404 0.02628104 0.02506114 -0.9676132 0.1363973 0.2124157 -0.9928273 0.08883072 0.08001864 -0.3660675 -0.5729983 0.7332581 -0.3998168 -0.5674225 0.719846 -0.3482124 -0.5756075 0.7398812 -0.9599241 0.1365892 0.2447226 -0.8597346 0.09861867 0.5011295 -0.8209064 0.04123266 0.5695723 -0.8882417 0.4588417 0.02215801 -0.9937295 0.05828273 -0.09541907 -0.9993341 -0.01302346 0.03408372 -0.8360911 -0.1023816 0.5389523 -0.21052 -0.1462179 0.9665928 -0.2034128 -0.2297639 0.9517519 -0.2142346 -0.1463287 0.9657595 -0.7959715 -0.1086379 0.5955058 -0.2383413 -0.2675728 0.9335942 -0.2404601 -0.258631 0.9355688 -0.5062665 -0.4080048 0.7597542 -0.5002687 -0.2672933 0.8235809 -0.5260947 -0.4157057 0.7418983 -0.4994446 -0.3861927 0.7755065 -0.9754398 -0.1839728 -0.1211246 -0.9458195 0.2309793 0.2281973 -0.9946023 0.09151716 0.04889694 -0.4378934 -0.5600773 0.7032516 -0.9602093 0.136998 0.2433713 -0.8808416 0.1015667 0.4623876 0.5259713 0.2766799 -0.8042402 0.5259713 0.2766799 -0.8042402 0.5259713 0.2766799 -0.8042402 -0.877373 0.1035627 0.4684991 -0.9938925 0.05421895 -0.09611494 -0.9980431 -0.03689857 0.05048276 -0.1390807 -0.1734928 0.974965 -0.2408597 -0.1636187 0.956669 -0.7240679 -0.2390937 0.6469621 -0.7521485 -0.2360048 0.6152839 -0.7670552 0.6403461 0.03979 -0.6073884 -0.4280697 0.6692053 0.9125526 -0.3705012 0.1731375 0.9125526 -0.3705012 0.1731375 0.9125526 -0.3705012 0.1731375 -0.4041633 -0.1793516 0.8969309 -0.9963557 0.07209759 0.04557776 -0.8959086 0.3088845 0.3192776 -0.9956233 0.08668575 0.03492485 -0.6153237 -0.7870578 -0.04378162 -0.6153237 -0.7870578 -0.04378162 -0.6153237 -0.7870578 -0.04378162 -0.7702928 0.2162932 0.5998886 -0.9369278 0.04977066 0.3459612 -0.8997463 0.1048695 0.423626 -0.9913438 0.0563354 -0.1185905 -0.9978883 -0.03474705 0.05487746 -0.8801785 -0.194935 0.4327657 -0.2444696 -0.1638669 0.9557103 -0.8874944 -0.1469828 0.436749 -0.9916556 0.05320188 -0.117425 -0.6189157 -0.4273176 0.659047 0.467257 -0.4364482 0.7688848 0.3661699 -0.5428259 0.7558172 0.5271495 -0.4037607 0.7477237 0.3474743 -0.6176542 0.7055246 0.3474051 -0.561141 0.7512859 0.569317 -0.789246 -0.2301495 0.569317 -0.789246 -0.2301495 0.569317 -0.789246 -0.2301495 -0.9836042 0.002639749 -0.1803216 -0.8310007 0.1540452 0.5345165 -0.936661 0.04204565 0.3477045 -0.8933116 0.1026918 0.4375486 -0.9185143 0.1114366 0.3793591 -0.9964557 -0.06974084 0.04703514 -0.8224901 -0.2437215 0.5139162 -0.5613198 -0.4178312 0.7143789 -0.5584169 -0.4396085 0.7035019 0.8280053 0.3057507 0.4700253 0.8280053 0.3057507 0.4700253 0.8280053 0.3057507 0.4700253 -0.9165401 0.07752674 0.3923568 -0.9385359 0.03728929 0.3431616 -0.8533593 0.1314947 0.5044671 -0.9965796 -0.06569976 0.05012538 -0.9755414 -0.1327124 0.1752326 -0.9209298 -0.236259 0.3099517 -0.4083209 -0.5208525 0.7496577 -0.9957647 -0.08359477 0.03826924 -0.9742607 -0.1501085 0.1681772 -0.7907971 -0.34313 0.5068547 -0.3804296 -0.5261103 0.7605796 -0.9958027 -0.08354291 0.03738354 - - - - - - - - - - 0.6386719 0.3774414 0.6201172 0.3774414 0.6206055 0.5258789 0.6386719 0.3774414 0.6220703 0.3544922 0.6206055 0.5258789 0.6201172 0.3774414 0.6074219 0.3774414 0.6386719 0.5253906 0.6386719 0.3774414 0.6206055 0.5258789 0.6201172 0.3774414 0.6220703 0.3544922 0.6074219 0.3774414 0.7758789 0.3774414 0.6220703 0.3544922 0.6386719 0.3774414 0.6206055 0.5258789 0.6074219 0.3774414 0.6074219 0.5253906 0.6411133 0.5317383 0.6386719 0.5253906 0.6206055 0.5258789 0.6220703 0.3544922 0.4609375 0.3774414 0.6074219 0.3774414 0.8120117 0.3535156 0.6220703 0.3544922 0.7758789 0.3774414 0.6206055 0.5258789 0.6074219 0.5253906 0.6049805 0.5307617 0.6411133 0.5317383 0.6206055 0.5258789 0.6210937 0.5585938 0.6220703 0.3544922 0.4599609 0.3696289 0.4609375 0.3774414 0.8710938 0.5244141 0.859375 0.5249023 0.8588867 0.5214844 0.8120117 0.3535156 0.7788086 0.2939453 0.6220703 0.3544922 0.8120117 0.3535156 0.7758789 0.3774414 0.8100586 0.3774414 0.6210937 0.5585937 0.6206055 0.5258789 0.6049805 0.5307617 0.6455078 0.5351563 0.6411133 0.5317383 0.6210937 0.5585938 0.6220703 0.3544922 0.4121094 0.3417969 0.4599609 0.3696289 0.4609375 0.3774414 0.4599609 0.3696289 0.4262695 0.3671875 0.8720703 0.5214844 0.8710937 0.5244141 0.8588867 0.5214844 0.7788086 0.2939453 0.7480469 0.2587891 0.6220703 0.3544922 0.8125 0.309082 0.7788086 0.2939453 0.8120117 0.3535156 0.8100586 0.3774414 0.7758789 0.3774414 0.7910156 0.472168 0.8447266 0.3979492 0.8120117 0.3535156 0.8100586 0.3774414 0.6210938 0.5585938 0.6049805 0.5307617 0.6010742 0.5332031 0.7573242 0.5610352 0.6455078 0.5351562 0.6210937 0.5585937 0.6220703 0.3544922 0.4121094 0.2646484 0.4121094 0.3417969 0.4599609 0.3696289 0.4121094 0.3417969 0.4262695 0.3671875 0.4609375 0.3774414 0.4262695 0.3671875 0.4233398 0.3774414 0.7910156 0.2514648 0.7480469 0.2587891 0.7788086 0.2939453 0.7480469 0.2587891 0.6220703 0.2075195 0.6220703 0.3544922 0.8125 0.309082 0.8125 0.2592773 0.7788086 0.2939453 0.8188477 0.3110352 0.8125 0.309082 0.7910156 0.472168 0.7758789 0.3774414 0.7758789 0.4692383 0.8217773 0.4770508 0.8100586 0.3774414 0.7910156 0.472168 0.8447266 0.3979492 0.8100586 0.3774414 0.8217773 0.4770508 0.8515625 0.387207 0.8120117 0.3535156 0.8447266 0.3979492 0.6210938 0.5585938 0.6010742 0.5332031 0.5541992 0.5595703 0.7573242 0.5610352 0.6210937 0.5585937 0.6210937 0.5722656 0.7573242 0.5610352 0.7539062 0.5351563 0.6455078 0.5351563 0.4121094 0.3417969 0.4121094 0.2646484 0.3925781 0.2578125 0.6220703 0.3544922 0.6220703 0.2075195 0.4121094 0.2646484 0.4262695 0.3671875 0.4121094 0.3417969 0.4233398 0.3774414 0.4746094 0.4667969 0.4609375 0.3774414 0.4233398 0.3774414 0.8125 0.2592773 0.7910156 0.2514648 0.7788086 0.2939453 0.7910156 0.2514648 0.7636719 0.2216797 0.7480469 0.2587891 0.7480469 0.2587891 0.7250977 0.206543 0.6220703 0.2075195 0.8188477 0.3110352 0.8125 0.2592773 0.8125 0.309082 0.8525391 0.3618164 0.8188477 0.3110352 0.8120117 0.3535156 0.7910156 0.472168 0.7758789 0.4692383 0.7578125 0.5244141 0.8217773 0.4770508 0.7910156 0.472168 0.7714844 0.5371094 0.8217773 0.4770508 0.847168 0.3999023 0.8447266 0.3979492 0.847168 0.3999023 0.8515625 0.387207 0.8447266 0.3979492 0.8525391 0.3618164 0.8120117 0.3535156 0.8515625 0.387207 0.5541992 0.5639648 0.6210937 0.5585937 0.5541992 0.5595703 0.6010742 0.5332031 0.5463867 0.5336914 0.5541992 0.5595703 0.6210938 0.5722656 0.6210938 0.5585937 0.5541992 0.5639648 0.7763672 0.5742187 0.7573242 0.5610352 0.6210938 0.5722656 0.7578125 0.5244141 0.7539062 0.5351562 0.7573242 0.5610352 0.4121094 0.2080078 0.3925781 0.2578125 0.4121094 0.2646484 0.4121094 0.3417969 0.3925781 0.2578125 0.3652344 0.3032227 0.6220703 0.2075195 0.4121094 0.2080078 0.4121094 0.2646484 0.4233398 0.3774414 0.4121094 0.3417969 0.4135742 0.3789062 0.4746094 0.4667969 0.4233398 0.3774414 0.4140625 0.3881836 0.8125 0.2592773 0.8022461 0.2255859 0.7910156 0.2514648 0.7636719 0.2216797 0.7250977 0.206543 0.7480469 0.2587891 0.7910156 0.2514648 0.7739258 0.1977539 0.7636719 0.2216797 0.7250977 0.206543 0.6235352 0.1518555 0.6220703 0.2075195 0.8198242 0.2646484 0.8125 0.2592773 0.8188477 0.3110352 0.8520508 0.3017578 0.8188477 0.3110352 0.8525391 0.3618164 0.7910156 0.472168 0.7578125 0.5244141 0.7714844 0.5371094 0.8217773 0.4770508 0.7714844 0.5371094 0.8032227 0.5209961 0.847168 0.3999023 0.8520508 0.3964844 0.8515625 0.387207 0.9350586 0.3588867 0.8525391 0.3618164 0.8515625 0.387207 0.5541992 0.5639648 0.5541992 0.5595703 0.5356445 0.5629883 0.5541992 0.5595703 0.5463867 0.5336914 0.5356445 0.5629883 0.8037109 0.5336914 0.7573242 0.5610352 0.7763672 0.5742187 0.7714844 0.5371094 0.7578125 0.5244141 0.7573242 0.5610352 0.4121094 0.2080078 0.3774414 0.2299805 0.3925781 0.2578125 0.3925781 0.2578125 0.3540039 0.262207 0.3652344 0.3032227 0.4121094 0.3417969 0.3652344 0.3032227 0.3325195 0.3427734 0.6220703 0.2075195 0.4204102 0.1518555 0.4121094 0.2080078 0.4233398 0.3774414 0.4135742 0.3789062 0.4140625 0.3881836 0.4135742 0.3789062 0.4121094 0.3417969 0.3857422 0.3852539 0.5058594 0.546875 0.4746094 0.4667969 0.4140625 0.3881836 0.8022461 0.2255859 0.7739258 0.1977539 0.7910156 0.2514648 0.8251953 0.2353516 0.8022461 0.2255859 0.8125 0.2592773 0.7636719 0.2216797 0.7441406 0.1865234 0.7250977 0.206543 0.7739258 0.1977539 0.7578125 0.1640625 0.7636719 0.2216797 0.6235352 0.1518555 0.4204102 0.1518555 0.6220703 0.2075195 0.7250977 0.206543 0.7119141 0.1508789 0.6235352 0.1518555 0.8251953 0.2353516 0.8125 0.2592773 0.8198242 0.2646484 0.847168 0.2607422 0.8198242 0.2646484 0.8188477 0.3110352 0.8520508 0.3017578 0.8188477 0.3110352 0.887207 0.2758789 0.8520508 0.3017578 0.8525391 0.3618164 0.8032227 0.5209961 0.7714844 0.5371094 0.7573242 0.5610352 0.9394531 0.3876953 0.8515625 0.387207 0.8520508 0.3964844 0.9350586 0.3588867 0.9345703 0.3452148 0.8525391 0.3618164 0.940918 0.3813477 0.9350586 0.3588867 0.8515625 0.387207 0.5463867 0.5336914 0.5219727 0.5258789 0.5356445 0.5629883 0.8071289 0.5463867 0.8037109 0.5336914 0.7763672 0.5742187 0.8032227 0.5209961 0.7573242 0.5610352 0.8037109 0.5336914 0.4121094 0.2080078 0.3925781 0.1889648 0.3774414 0.2299805 0.3925781 0.2578125 0.3774414 0.2299805 0.3540039 0.262207 0.3652344 0.3032227 0.3540039 0.262207 0.328125 0.2817383 0.4121094 0.3417969 0.3325195 0.3427734 0.3857422 0.3852539 0.3652344 0.3032227 0.3330078 0.3286133 0.3325195 0.3427734 0.4204102 0.1518555 0.4121094 0.1499023 0.4121094 0.2080078 0.3818359 0.4228516 0.3754883 0.4160156 0.3554687 0.4204102 0.5058594 0.546875 0.4140625 0.3881836 0.4057617 0.4052734 0.5078125 0.5102539 0.4746094 0.4667969 0.5058594 0.546875 0.7636719 0.2216797 0.7578125 0.1640625 0.7441406 0.1865234 0.7441406 0.1865234 0.7119141 0.1508789 0.7250977 0.206543 0.6235352 0.1518555 0.4223633 0.09570313 0.4204102 0.1518555 0.7119141 0.1508789 0.7055664 0.09570313 0.6235352 0.1518555 0.8427734 0.2314453 0.8251953 0.2353516 0.8198242 0.2646484 0.847168 0.2607422 0.8427734 0.2314453 0.8198242 0.2646484 0.887207 0.2758789 0.847168 0.2607422 0.8520508 0.3017578 0.934082 0.3344727 0.887207 0.2758789 0.8525391 0.3618164 0.9394531 0.3876953 0.940918 0.3813477 0.8515625 0.387207 0.9384766 0.3447266 0.9345703 0.3452148 0.9350586 0.3588867 0.9345703 0.3452148 0.934082 0.3344727 0.8525391 0.3618164 0.9643555 0.3652344 0.9350586 0.3588867 0.940918 0.3813477 0.5356445 0.5629883 0.5219727 0.5258789 0.5175781 0.5600586 0.9179688 0.5795898 0.8071289 0.5463867 0.7763672 0.5742187 0.4121094 0.1499023 0.3925781 0.1889648 0.4121094 0.2080078 0.3925781 0.1889648 0.378418 0.175293 0.3774414 0.2299805 0.3652344 0.2119141 0.3540039 0.262207 0.3540039 0.262207 0.3466797 0.2382813 0.328125 0.2817383 0.3652344 0.3032227 0.328125 0.2817383 0.3330078 0.3286133 0.3857422 0.3852539 0.3325195 0.3427734 0.3051758 0.3725586 0.3330078 0.3286133 0.2949219 0.340332 0.3325195 0.3427734 0.4204102 0.1518555 0.4121094 0.09570312 0.4121094 0.1499023 0.3818359 0.4228516 0.3554687 0.4204102 0.3710937 0.4287109 0.5131836 0.8256836 0.5195312 0.8017578 0.5307617 0.5805664 0.3818359 0.4228516 0.3710937 0.4287109 0.3818359 0.4370117 0.5175781 0.5600586 0.5078125 0.5102539 0.5058594 0.546875 0.7578125 0.1640625 0.7475586 0.1308594 0.7441406 0.1865234 0.7441406 0.1865234 0.730957 0.1416016 0.7119141 0.1508789 0.6245117 0.09570312 0.4223633 0.09570312 0.6235352 0.1518555 0.4223633 0.09570313 0.4121094 0.09570313 0.4204102 0.1518555 0.730957 0.1416016 0.7055664 0.09570313 0.7119141 0.1508789 0.7055664 0.09570312 0.6245117 0.09570312 0.6235352 0.1518555 0.8662109 0.2158203 0.8427734 0.2314453 0.847168 0.2607422 0.887207 0.2758789 0.875 0.2402344 0.847168 0.2607422 0.9389648 0.2954102 0.887207 0.2758789 0.9394531 0.3876953 0.9438477 0.3964844 0.940918 0.3813477 0.9643555 0.3652344 0.9384766 0.3447266 0.9350586 0.3588867 0.9643555 0.3652344 0.940918 0.3813477 0.9438477 0.3964844 0.5219727 0.5258789 0.5078125 0.5102539 0.5175781 0.5600586 0.9179687 0.5795898 0.8964844 0.5600586 0.8071289 0.5463867 0.4121094 0.1499023 0.3999023 0.1464844 0.3925781 0.1889648 0.3925781 0.1889648 0.3857422 0.1391602 0.378418 0.175293 0.378418 0.175293 0.3652344 0.2119141 0.3652344 0.2119141 0.3466797 0.2382813 0.3540039 0.262207 0.3466797 0.2382812 0.324707 0.2539062 0.328125 0.2817383 0.3330078 0.3286133 0.328125 0.2817383 0.2983398 0.2866211 0.3046875 0.3837891 0.3857422 0.3852539 0.3051758 0.3725586 0.3325195 0.3427734 0.2949219 0.340332 0.3051758 0.3725586 0.3330078 0.3286133 0.2958984 0.3330078 0.2949219 0.340332 0.4121094 0.09570313 0.3999023 0.1464844 0.4121094 0.1499023 0.3647461 0.4384766 0.3710938 0.4287109 0.3554688 0.4204102 0.5131836 0.8256836 0.5307617 0.5805664 0.5219727 0.5869141 0.5131836 0.8256836 0.5214844 0.8422852 0.5195313 0.8017578 0.3671875 0.4394531 0.3818359 0.4370117 0.3710937 0.4287109 0.7475586 0.1308594 0.730957 0.1416016 0.7441406 0.1865234 0.730957 0.1416016 0.7231445 0.09570313 0.7055664 0.09570313 0.875 0.2402344 0.8662109 0.2158203 0.847168 0.2607422 0.8959961 0.2070313 0.875 0.2402344 0.887207 0.2758789 0.9487305 0.2265625 0.887207 0.2758789 0.9389648 0.2954102 0.9418945 0.3964844 0.9438477 0.3964844 0.9394531 0.3876953 0.965332 0.3491211 0.9384766 0.3447266 0.9643555 0.3652344 0.9643555 0.3652344 0.9438477 0.3964844 0.9609375 0.3959961 0.8535156 0.5410156 0.8549805 0.534668 0.8549805 0.5375977 0.9179688 0.5795898 0.9086914 0.5517578 0.8964844 0.5600586 0.3999023 0.1464844 0.3857422 0.1391602 0.3925781 0.1889648 0.328125 0.2817383 0.324707 0.2539063 0.2983398 0.2866211 0.3330078 0.3286133 0.2983398 0.2866211 0.2958984 0.3330078 0.3046875 0.3837891 0.3779297 0.4008789 0.3857422 0.3852539 0.2094727 0.3642578 0.3046875 0.3837891 0.3051758 0.3725586 0.3051758 0.3725586 0.2949219 0.340332 0.2182617 0.3632812 0.2958984 0.3330078 0.2119141 0.3305664 0.2949219 0.340332 0.4121094 0.09570312 0.4033203 0.09570312 0.3999023 0.1464844 0.3647461 0.4384766 0.3671875 0.4394531 0.3710937 0.4287109 0.3896484 0.4067383 0.3857422 0.3852539 0.3779297 0.4008789 0.3818359 0.4414062 0.3818359 0.4370117 0.3671875 0.4394531 0.4995117 0.8208008 0.5053711 0.8256836 0.5175781 0.5869141 0.512207 0.840332 0.5214844 0.8422852 0.5131836 0.8256836 0.7475586 0.1308594 0.7231445 0.09570312 0.730957 0.1416016 0.8818359 0.1928711 0.8662109 0.2158203 0.875 0.2402344 0.8959961 0.2070312 0.8818359 0.1928711 0.875 0.2402344 0.9160156 0.2265625 0.8959961 0.2070313 0.887207 0.2758789 0.9487305 0.2265625 0.9160156 0.2265625 0.887207 0.2758789 0.934082 0.4648438 0.9438477 0.3964844 0.9418945 0.3964844 0.9692383 0.3681641 0.9643555 0.3652344 0.9609375 0.3959961 0.9609375 0.3959961 0.9438477 0.3964844 0.934082 0.4648437 0.9267578 0.5493164 0.9086914 0.5517578 0.9179687 0.5795898 0.3999023 0.1464844 0.3901367 0.09570313 0.3857422 0.1391602 0.324707 0.2539062 0.2993164 0.2573242 0.2983398 0.2866211 0.2983398 0.2866211 0.2553711 0.3164062 0.2958984 0.3330078 0.2094727 0.3642578 0.3051758 0.3725586 0.2182617 0.3632812 0.2949219 0.340332 0.2119141 0.3305664 0.2182617 0.3632812 0.2958984 0.3330078 0.2119141 0.3168945 0.2119141 0.3305664 0.4033203 0.09570312 0.3901367 0.09570312 0.3999023 0.1464844 0.4882813 0.5888672 0.5029297 0.5732422 0.5 0.5732422 0.3608398 0.449707 0.3818359 0.4443359 0.3671875 0.4423828 0.4995117 0.8208008 0.5175781 0.5869141 0.5102539 0.5932617 0.5009766 0.840332 0.5053711 0.8256836 0.4995117 0.8208008 0.7475586 0.1308594 0.7412109 0.09570312 0.7231445 0.09570312 0.9711914 0.3798828 0.9692383 0.3681641 0.9609375 0.3959961 0.9609375 0.3959961 0.934082 0.4648437 0.9477539 0.472168 0.9360352 0.5561523 0.9267578 0.5493164 0.9179687 0.5795898 0.9267578 0.5493164 0.9165039 0.5356445 0.9086914 0.5517578 0.2993164 0.2573242 0.269043 0.2695312 0.2983398 0.2866211 0.2958984 0.3330078 0.2553711 0.3164062 0.2119141 0.3168945 0.2983398 0.2866211 0.269043 0.2695313 0.2553711 0.3164063 0.2094727 0.3642578 0.2182617 0.3632813 0.2011719 0.3305664 0.2182617 0.3632812 0.2119141 0.3305664 0.2011719 0.3305664 0.5029297 0.5732422 0.4882812 0.5888672 0.5024414 0.5800781 0.3608398 0.449707 0.3818359 0.4521484 0.3818359 0.4443359 0.9711914 0.3798828 0.9609375 0.3959961 0.9697266 0.3964844 0.9697266 0.3964844 0.9609375 0.3959961 0.9477539 0.472168 0.9477539 0.472168 0.934082 0.4648437 0.9165039 0.5356445 0.956543 0.4755859 0.9267578 0.5493164 0.9360352 0.5561523 0.9360352 0.5561523 0.9179687 0.5795898 0.9272461 0.5766602 0.9477539 0.472168 0.9165039 0.5356445 0.9267578 0.5493164 0.2993164 0.2573242 0.2753906 0.2485352 0.269043 0.2695313 0.2553711 0.3164063 0.2119141 0.3081055 0.2119141 0.3168945 0.269043 0.2695313 0.222168 0.2651367 0.2553711 0.3164063 0.1923828 0.3305664 0.2094727 0.3642578 0.2011719 0.3305664 0.9697266 0.3964844 0.9477539 0.472168 0.956543 0.4755859 0.956543 0.4755859 0.9477539 0.472168 0.9267578 0.5493164 0.2753906 0.2485352 0.2431641 0.2426758 0.269043 0.2695313 0.2114258 0.2651367 0.2119141 0.3081055 0.2553711 0.3164063 0.222168 0.2651367 0.2114258 0.2651367 0.269043 0.2695313 0.2431641 0.2426758 0.222168 0.2651367 0.1879883 0.3305664 0.2094727 0.3642578 0.1923828 0.3305664 0.2753906 0.2485352 0.2543945 0.2285156 0.2431641 0.2426758 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 3 4 1 1 2 5 1 6 4 7 5 8 0 9 2 10 1 11 3 12 4 13 6 14 3 15 0 16 2 17 4 18 7 19 8 20 5 21 2 22 3 23 9 24 4 25 10 26 3 27 6 28 2 29 7 30 11 31 8 32 2 33 12 34 3 35 13 36 9 37 14 38 15 39 16 40 17 41 18 42 19 43 10 44 6 45 20 46 12 47 2 48 11 49 21 50 8 51 12 52 3 53 22 54 13 55 9 56 13 57 23 58 24 59 14 60 16 61 18 62 25 63 19 64 26 65 18 66 17 67 20 68 6 69 27 70 28 71 10 72 20 73 12 74 11 75 29 76 30 77 21 78 12 79 19 80 31 81 22 82 13 83 22 84 23 85 9 86 23 87 32 88 33 89 25 90 18 91 25 92 34 93 19 94 26 95 35 96 18 97 36 98 26 99 17 67 27 100 6 101 37 102 38 103 20 104 27 105 28 106 20 107 38 108 39 109 10 110 28 111 12 112 29 113 40 114 30 115 12 116 41 117 30 118 42 119 21 120 22 121 31 122 43 123 19 124 34 125 31 126 23 127 22 128 32 129 44 130 9 131 32 132 35 133 33 134 18 135 33 136 45 137 25 138 25 139 46 140 34 141 36 142 35 143 26 144 47 145 36 146 17 147 27 148 37 149 48 150 38 151 27 152 49 153 50 154 51 155 52 156 53 157 54 158 55 159 56 160 10 161 39 162 57 163 12 164 40 165 29 166 58 167 40 168 41 169 12 170 57 171 59 172 30 173 41 174 48 175 42 176 30 177 60 178 43 179 31 180 22 181 43 182 61 183 34 184 60 185 31 186 32 187 22 188 62 189 44 190 32 191 63 192 64 193 65 194 33 195 45 196 46 197 25 198 33 199 66 200 45 201 46 202 67 203 34 204 68 205 35 206 36 207 69 208 36 209 47 210 27 211 48 212 49 213 38 214 49 215 70 216 53 217 71 218 54 219 72 220 56 221 39 222 57 223 40 224 73 225 40 226 58 227 73 228 74 229 30 230 59 231 49 232 48 233 30 234 60 235 75 236 43 237 43 238 76 239 61 240 22 241 61 242 77 243 34 244 78 245 60 246 32 247 62 248 63 249 62 250 22 251 79 252 80 253 44 254 63 255 65 256 66 257 33 258 81 259 65 260 64 261 45 262 82 263 46 264 66 265 83 266 45 267 67 268 78 269 34 270 46 271 84 272 67 273 81 274 64 275 85 276 86 277 68 278 36 279 69 280 86 277 36 281 87 282 69 283 47 284 70 285 49 286 30 287 88 288 89 289 90 290 91 291 92 292 47 293 93 294 72 295 39 296 58 297 94 298 73 299 95 300 74 301 59 302 70 303 30 304 74 305 60 306 96 307 75 308 43 309 75 310 76 311 61 312 76 313 97 314 22 315 77 316 79 317 61 318 98 319 77 320 78 321 99 322 60 323 63 324 62 325 79 326 80 327 63 328 100 329 101 330 44 331 80 332 45 333 83 334 82 335 82 336 84 337 46 338 67 339 102 340 78 341 84 342 103 343 67 344 104 345 81 346 85 347 105 348 104 349 85 350 87 351 86 352 69 353 106 354 87 355 47 356 88 357 107 358 89 359 108 360 92 361 91 362 92 363 106 364 47 365 109 366 72 367 93 368 73 369 94 370 110 371 111 372 95 373 59 374 99 375 96 376 60 377 96 378 112 379 75 380 75 310 113 381 76 382 76 383 114 384 115 385 61 386 97 387 98 388 79 389 77 390 116 391 98 392 117 393 77 394 78 395 118 396 99 397 63 398 79 399 119 400 120 401 121 402 122 403 63 404 119 405 100 406 110 407 101 408 80 409 83 410 123 411 82 412 82 413 124 414 84 415 125 416 102 417 67 418 126 419 118 420 78 421 124 422 103 423 84 424 103 425 125 426 67 427 127 428 104 429 105 430 87 431 128 432 86 433 129 434 87 435 106 364 130 436 131 437 132 438 133 439 108 440 91 441 109 442 93 443 134 444 94 445 101 446 110 447 111 448 135 449 95 450 99 451 136 452 96 453 96 454 137 455 112 456 112 457 113 458 75 310 113 459 114 460 76 461 114 462 138 463 115 464 98 465 97 466 139 467 140 468 141 469 142 470 77 471 117 472 116 473 98 474 143 475 117 476 118 477 136 478 99 479 144 480 145 481 141 482 120 483 122 484 146 485 120 486 147 487 121 488 148 489 122 490 149 491 123 492 124 493 82 494 124 495 150 496 103 497 128 498 127 499 105 500 151 501 128 502 87 503 152 504 87 505 129 506 153 507 131 508 130 509 154 510 108 511 133 512 109 513 134 514 155 515 156 516 157 517 158 518 111 519 159 520 135 521 160 522 137 523 96 524 115 525 138 526 161 527 98 528 139 529 143 530 140 531 162 532 141 533 163 534 140 535 142 536 116 537 117 538 164 539 143 540 165 541 117 542 118 543 166 544 136 545 167 546 148 547 149 548 144 549 141 550 162 551 146 552 122 553 148 554 168 555 169 556 170 557 171 558 147 559 120 560 123 561 150 562 124 563 172 564 127 565 128 566 151 567 172 568 128 569 173 570 151 571 87 572 152 573 174 574 87 575 175 576 176 577 177 578 178 579 109 580 155 581 155 582 134 583 179 584 180 585 159 586 111 587 160 588 181 589 137 590 138 591 182 592 161 593 139 594 183 595 143 596 163 597 142 598 184 599 117 600 165 601 164 602 143 603 185 604 165 605 186 606 181 607 160 608 187 609 148 610 167 611 188 612 189 613 190 614 191 615 189 616 192 617 193 618 194 619 195 620 123 621 196 622 150 623 197 624 178 625 155 626 155 627 179 628 198 629 199 630 180 631 111 632 180 633 200 634 159 635 182 636 201 637 161 638 143 639 183 640 185 641 139 642 202 643 183 644 203 645 164 646 204 647 164 648 165 649 204 650 205 651 206 652 207 653 188 654 192 655 189 656 197 657 155 658 208 659 208 660 155 661 198 662 198 663 179 664 200 665 209 666 180 667 199 668 199 669 111 670 210 671 198 672 200 673 180 674 182 675 211 676 201 677 183 678 212 679 185 680 202 681 213 682 183 683 214 684 203 685 204 686 208 687 198 688 209 689 209 690 198 691 180 692 211 693 215 694 201 695 183 683 216 696 212 697 183 698 213 699 216 700 202 701 217 702 213 703 218 704 203 705 214 706 211 707 219 708 215 709

-
-
-
- - - - -472.7303 -308.0072 45.71837 -472.8395 -311.4199 46.68804 -472.6697 -311.8719 45.57092 -480.1977 -306.7054 47.13681 -472.6697 -311.8719 45.57092 -472.8395 -311.4199 46.68804 -471.0595 -308.1438 45.59869 -472.7303 -308.0072 45.71837 -472.6697 -311.8719 45.57092 -473.3626 -307.9727 50.40813 -479.2458 -304.744 49.90832 -480.1977 -306.7054 47.13681 -472.8395 -311.4199 46.68804 -480.1977 -306.7054 47.13681 -471.5187 -311.831 43.89652 -472.6697 -311.8719 45.57092 -472.7303 -308.0072 45.71837 -471.0595 -308.1438 45.59869 -476.1308 -307.3749 44.50185 -471.0402 -312.6083 45.45412 -473.3626 -307.9727 50.40813 -473.3468 -305.7649 50.60789 -479.8381 -302.3335 47.49561 -480.1977 -306.7054 47.13681 -479.2458 -304.744 49.90832 -471.0402 -312.6083 45.45412 -480.1522 -306.1948 45.12846 -471.7779 -307.8593 43.99589 -472.6238 -305.9951 45.94987 -472.7303 -308.0072 45.71837 -476.1308 -307.3749 44.50185 -473.3626 -307.9727 50.40813 -479.4267 -302.7899 50.03373 -479.2458 -304.744 49.90832 -473.3468 -305.7649 50.60789 -472.6238 -305.9951 45.94987 -479.4267 -302.7899 50.03373 -479.9881 -302.2595 45.51354 -480.1522 -306.1948 45.12846 -471.5187 -311.831 43.89652 -480.1522 -306.1948 45.12846 -476.1308 -307.3749 44.50185 -471.7779 -307.8593 43.99589 -472.6238 -305.9951 45.94987 -476.1308 -307.3749 44.50185 -475.0397 -304.7001 44.32505 -479.9881 -302.2595 45.51354 -479.4286 -302.4472 44.86001 -480.1522 -306.1948 45.12846 -475.0397 -304.7001 44.32505 -479.4286 -302.4472 44.86001 - - - - - - - - - - 0.9895056 -0.02263136 0.1427112 0.9899351 0.008457177 0.1412694 0.9891821 0.009926667 0.1463564 -0.510641 -0.8212263 0.2546237 -0.510641 -0.8212263 0.2546237 -0.510641 -0.8212263 0.2546237 0.06556746 -0.03574753 0.9972076 0.06839339 -0.03696628 0.9969733 0.05942874 -0.0330998 0.9976836 0.9909572 -0.01139944 0.1336936 -0.4075853 -0.6833273 0.6057541 -0.3974736 -0.6791045 0.6171157 -0.4182637 -0.6876458 0.5934633 -0.5581073 -0.7952005 -0.2370074 -0.4943036 -0.7998213 -0.3405142 -0.5260544 -0.7607362 -0.3801936 0.09589653 0.9673298 0.2346848 0.1170655 0.9821547 0.1472001 0.1157764 0.9814705 0.1526808 0.0570319 -0.03206592 0.9978573 -0.4290155 -0.6918427 0.5807748 0.9896463 -0.03265233 0.1397639 -0.9873507 0.03465255 0.1547182 -0.9910112 0.05413844 0.1223348 -0.9722046 -0.004579733 0.2340882 -0.4104268 -0.8600335 -0.3031374 -0.5551522 -0.8030156 -0.2167302 0.1235076 0.9851228 0.1194947 0.350093 0.08876904 -0.9324993 0.350093 0.08876904 -0.9324993 0.350093 0.08876904 -0.9324993 -0.1342751 -0.08579452 0.9872231 -0.1279965 -0.07834318 0.9886755 -0.12525 -0.07508597 0.9892798 -0.1363898 -0.08830584 0.9867117 0.9852048 -0.07011279 0.156383 -0.9848348 -0.1002766 0.1415804 -0.9963472 0.06651973 0.05354793 -0.9990143 0.04281024 -0.01173319 -0.1239526 0.006500494 -0.9922668 -0.1494159 -0.03031051 -0.9883097 -0.1543734 -0.01765177 -0.9878549 -0.113525 0.01744503 -0.993382 0.4497275 -0.2403143 -0.8602292 0.4497275 -0.2403143 -0.8602292 0.4497275 -0.2403143 -0.8602292 -0.7424133 0.09584152 -0.6630512 -0.7424133 0.09584152 -0.6630512 -0.7424133 0.09584152 -0.6630512 -0.149224 -0.0209638 -0.9885812 -0.1427379 -0.04327412 -0.9888141 - - - - - - - - - - 0.6479492 0.8168945 0.6645508 0.8305664 0.6674805 0.8193359 0.6518555 0.7353516 0.6020508 0.7260742 0.6137695 0.7407227 0.6025391 0.7670898 0.6103516 0.7666016 0.6020508 0.7260742 0.6455078 0.8642578 0.6645508 0.8305664 0.6479492 0.8168945 0.652832 0.7792969 0.6518555 0.7353516 0.6137695 0.7407227 0.6518555 0.7353516 0.6005859 0.7163086 0.6020508 0.7260742 0.6186523 0.7172852 0.6269531 0.7158203 0.6010742 0.7045898 0.5957031 0.7304688 0.6025391 0.7670898 0.6020508 0.7260742 0.6210938 0.7856445 0.652832 0.7792969 0.6137695 0.7407227 0.6342773 0.8637695 0.6455078 0.8642578 0.6479492 0.8168945 0.6733398 0.7460938 0.6518555 0.7353516 0.6625977 0.7724609 0.6020508 0.7260742 0.6005859 0.7163086 0.5957031 0.7304687 0.6518555 0.7353516 0.6523437 0.7275391 0.6005859 0.7163086 0.6269531 0.7158203 0.6235352 0.699707 0.6010742 0.7045898 0.6586914 0.6879883 0.6538086 0.6977539 0.6669922 0.7182617 0.6381836 0.8852539 0.6000977 0.8579102 0.6044922 0.8759766 0.6342773 0.8637695 0.6000977 0.8579102 0.6381836 0.8852539 0.6479492 0.8168945 0.6376953 0.8164062 0.6733398 0.7460938 0.6625977 0.7724609 0.6723633 0.7714844 0.6723633 0.7260742 0.6518555 0.7353516 0.6733398 0.7460937 0.6723633 0.7260742 0.6523437 0.7275391 0.6518555 0.7353516 0.6005859 0.7163086 0.6523438 0.7275391 0.6328125 0.7109375 0.6005859 0.7163086 0.6328125 0.7109375 0.6142578 0.6865234 0.6586914 0.6879883 0.6669922 0.7182617 0.6713867 0.6904297 0.6723633 0.7260742 0.6713867 0.7192383 0.6523437 0.7275391 0.637207 0.6831055 0.6328125 0.7109375 0.6523437 0.7275391 0.637207 0.6831055 0.6523438 0.7275391 0.6616211 0.6938477 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 1 10 0 11 10 12 11 13 12 14 13 15 14 16 15 17 16 18 17 19 18 20 19 21 6 22 8 23 20 24 10 25 12 26 21 27 9 28 0 29 22 30 23 31 24 32 15 33 14 34 25 35 13 36 26 37 14 38 17 39 27 40 18 41 28 42 29 43 30 44 31 45 32 46 33 47 34 48 32 49 31 50 21 48 0 51 35 52 22 53 24 54 36 55 37 56 23 57 22 58 37 59 38 60 23 61 39 62 40 63 41 64 39 65 41 66 42 67 43 68 44 69 45 70 46 71 47 72 48 73 49 74 41 75 40 76 49 77 40 78 50 79

-
-
-
- - - - -473.4756 -289.4989 40.23701 -474.8406 -287.8287 40.36853 -473.8034 -289.4989 40.25521 - - - - - - - - - - 0.05910027 -0.02957403 0.9978139 0.06596218 -0.0246393 0.9975179 0.05538225 -0.03331633 0.9979092 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -473.4756 -289.4989 40.23701 -474.9242 -282.6942 40.4986 -474.8406 -287.8287 40.36853 -474.9879 -282.6661 39.34955 -474.8406 -287.8287 40.36853 -474.9242 -282.6942 40.4986 -473.4689 -280.4114 40.4736 -473.7966 -280.4114 40.49179 -474.9879 -282.6661 39.34955 -474.9242 -282.6942 40.4986 -474.9043 -287.8006 39.21948 -473.7966 -280.4114 40.49179 -473.8604 -280.3833 39.34275 -474.9043 -287.8006 39.21948 -473.8672 -289.4708 39.10616 -474.8406 -287.8287 40.36853 -473.5326 -280.3833 39.32456 -474.9043 -287.8006 39.21948 -474.9879 -282.6661 39.34955 -473.7966 -280.4114 40.49179 -473.4689 -280.4114 40.4736 -473.8604 -280.3833 39.34275 -474.9879 -282.6661 39.34955 -473.8604 -280.3833 39.34275 -473.5394 -289.4708 39.08797 -473.8672 -289.4708 39.10616 -473.8034 -289.4989 40.25521 -473.5326 -280.3833 39.32456 -473.8034 -289.4989 40.25521 -473.8672 -289.4708 39.10616 -473.5394 -289.4708 39.08797 -473.4756 -289.4989 40.23701 - - - - - - - - - - 0.05910027 -0.02957403 0.9978139 0.05847874 -0.02582446 0.9979546 0.06596218 -0.0246393 0.9975179 -0.998334 -0.0176559 0.05493162 -0.9983328 -0.01765121 0.05495522 -0.9983342 -0.01765682 0.05492702 0.05632264 -0.02497871 0.9981001 -0.8948796 0.4421955 0.06044593 -0.8948781 0.4421998 0.06043584 -0.8948772 0.4422024 0.0604299 -0.9983326 -0.01765029 0.05495982 0.05539514 -0.02438666 0.9981667 -0.8948804 0.442193 0.06045186 -0.8479982 -0.5288995 0.03412296 -0.8479961 -0.5289025 0.03412854 -0.8479971 -0.528901 0.0341258 -0.05641721 0.02457119 -0.9981049 -0.06315557 0.02625685 -0.9976582 -0.05538889 0.02438382 -0.9981671 0.001408075 0.9997028 0.02433983 0.001398079 0.9997027 0.02434328 0.001361551 0.9997024 0.02435593 -0.05538862 0.02438364 -0.9981671 -0.05538229 0.0243796 -0.9981675 -0.05927095 0.03012729 -0.9977872 -0.05538336 0.03331387 -0.9979092 -0.847995 -0.528904 0.03413138 0.001351555 0.9997024 0.02435938 -0.001341645 -0.9997024 -0.02435705 -0.001293893 -0.9997027 -0.02434626 -0.001304152 -0.9997027 -0.02434858 -0.001351903 -0.9997024 -0.02435937 - - - - - - - - - - 0.7407227 0.4936523 0.6958008 0.5239258 0.7294922 0.5239258 0.7407227 0.4511719 0.6933594 0.4716797 0.7407227 0.4716797 0.6806641 0.4794922 0.6958008 0.5239258 0.7407227 0.4936523 0.7612305 0.4716797 0.7407227 0.4511719 0.7407227 0.4716797 0.7407227 0.4511719 0.6933594 0.4511719 0.6933594 0.4716797 0.6806641 0.4794922 0.6806641 0.4951172 0.6958008 0.5239258 0.7612305 0.4511719 0.7407227 0.4511719 0.7612305 0.4716797 0.6933594 0.4511719 0.6777344 0.4511719 0.6933594 0.4716797 0.6806641 0.4780273 0.7294922 0.5239258 0.6958008 0.5239258 0.6723633 0.4936523 0.6723633 0.4838867 0.6806641 0.4956055 0.6806641 0.4780273 0.6958008 0.5239258 0.6806641 0.4956055 0.7397461 0.4912109 0.7402344 0.4956055 0.7294922 0.5239258 0.6933594 0.4716797 0.6777344 0.4511719 0.6777344 0.4716797 0.6806641 0.4780273 0.7397461 0.4912109 0.7294922 0.5239258 0.6723633 0.4838867 0.6806641 0.4780273 0.6806641 0.4956055 0.7485352 0.4941406 0.7402344 0.4956055 0.7397461 0.4912109 0.7485352 0.4941406 0.7397461 0.4912109 0.7485352 0.484375 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 1 7 0 8 7 9 8 10 9 11 3 12 10 13 4 14 6 15 11 16 1 17 12 18 8 19 7 20 13 21 14 22 15 23 16 24 17 25 18 26 19 27 20 28 21 29 16 30 22 31 23 32 24 33 25 34 17 35 15 36 14 37 26 38 16 39 24 40 17 41 20 42 27 43 21 44 28 45 29 46 30 47 28 48 30 49 31 50

-
-
-
- - - - -473.5396 -252.9741 41.27467 -474.8739 -251.3039 41.5909 -473.8618 -252.9741 41.33734 - - - - - - - - - - 0.1944758 -0.02957655 0.9804613 0.2012349 -0.02463991 0.9792331 0.1908023 -0.03332069 0.9810628 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -473.5396 -252.9741 41.27467 -474.939 -246.1694 41.73115 -474.8739 -251.3039 41.5909 -475.1587 -246.1414 40.6015 -474.8739 -251.3039 41.5909 -474.939 -246.1694 41.73115 -473.5007 -243.8867 41.50812 -473.8229 -243.8867 41.5708 -475.1587 -246.1414 40.6015 -474.939 -246.1694 41.73115 -475.0936 -251.2758 40.46126 -473.8229 -243.8867 41.5708 -474.0426 -243.8586 40.44115 -475.0936 -251.2758 40.46126 -474.0815 -252.946 40.20768 -474.8739 -251.3039 41.5909 -473.7203 -243.8586 40.37847 -475.0936 -251.2758 40.46126 -475.1587 -246.1414 40.6015 -473.8229 -243.8867 41.5708 -473.5007 -243.8867 41.50812 -474.0426 -243.8586 40.44115 -475.1587 -246.1414 40.6015 -474.0426 -243.8586 40.44115 -473.7593 -252.9461 40.14502 -474.0815 -252.946 40.20768 -473.8618 -252.9741 41.33734 -473.5007 -243.8867 41.50812 -473.7203 -243.8586 40.37847 -474.0426 -243.8586 40.44115 -473.8618 -252.9741 41.33734 -474.0815 -252.946 40.20768 -473.7593 -252.9461 40.14502 -473.5396 -252.9741 41.27467 - - - - - - - - - - 0.1944758 -0.02957655 0.9804613 0.1938891 -0.02582327 0.9806835 0.2012349 -0.02463991 0.9792331 -0.9815283 -0.0176503 0.1905012 -0.9815327 -0.01765494 0.1904782 -0.9815274 -0.0176494 0.1905057 0.1917781 -0.02498035 0.9811204 -0.8782944 0.4421955 0.1818295 -0.8782945 0.4421927 0.1818361 -0.8782945 0.4421911 0.18184 -0.9815335 -0.01765584 0.1904738 0.190871 -0.0243901 0.9813121 -0.8782944 0.4421972 0.1818256 -0.8354293 -0.5289152 0.1493537 -0.8354447 -0.5288989 0.1493254 -0.8354372 -0.5289069 0.1493393 -0.1918844 0.02458124 -0.9811097 -0.198482 0.02625706 -0.9797528 -0.1908568 0.02438269 -0.981315 0.004658035 0.9997024 0.02394803 0.004658035 0.9997024 0.02394803 0.004658035 0.9997024 0.02394803 -0.1908576 0.02438323 -0.9813148 -0.1908771 0.02439591 -0.9813107 -0.1946385 0.03013825 -0.9804119 -0.1907923 0.03333443 -0.9810643 -0.8354526 -0.5288905 0.149311 0.004658176 0.9997024 0.02394796 0.004658176 0.9997024 0.02394796 0.004658176 0.9997024 0.02394796 -0.004619169 -0.9997026 -0.02394466 -0.00471655 -0.999702 -0.02395302 -0.004695628 -0.9997021 -0.02395122 -0.004598249 -0.9997028 -0.02394286 - - - - - - - - - - 0.7407227 0.4931641 0.6958008 0.5239258 0.7294922 0.5239258 0.7182617 0.4511719 0.6708984 0.4716797 0.7182617 0.4716797 0.6806641 0.4790039 0.6958008 0.5239258 0.7407227 0.4931641 0.7387695 0.4716797 0.7182617 0.4511719 0.7182617 0.4716797 0.7182617 0.4511719 0.6708984 0.4511719 0.6708984 0.4716797 0.6806641 0.4951172 0.6958008 0.5239258 0.7387695 0.4511719 0.7182617 0.4511719 0.6708984 0.4511719 0.6552734 0.4511719 0.6708984 0.4716797 0.6806641 0.4785156 0.7294922 0.5239258 0.6958008 0.5239258 0.6723633 0.4936523 0.6723633 0.4838867 0.6806641 0.4956055 0.6806641 0.4785156 0.6958008 0.5239258 0.6806641 0.4956055 0.7397461 0.4912109 0.7402344 0.4956055 0.7294922 0.5239258 0.6708984 0.4716797 0.6552734 0.4511719 0.6552734 0.4716797 0.6806641 0.4785156 0.7397461 0.4912109 0.7294922 0.5239258 0.6723633 0.4838867 0.6806641 0.4785156 0.6806641 0.4956055 0.7485352 0.4941406 0.7402344 0.4956055 0.7397461 0.4912109 0.7485352 0.4941406 0.7397461 0.4912109 0.7485352 0.484375 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 1 7 0 8 7 9 8 10 9 11 3 12 10 13 4 14 6 6 11 15 1 16 12 17 8 18 7 9 13 19 14 20 15 21 16 22 17 23 18 24 19 25 20 26 21 27 16 28 22 29 23 30 24 31 25 32 17 33 15 34 14 35 26 36 16 37 24 38 17 39 27 40 28 41 29 42 30 43 31 44 32 45 30 46 32 47 33 48

-
-
-
- - - - -463.1477 -297.4374 61.90973 -464.1445 -297.9393 61.1652 -463.1634 -291.9951 62.30704 - - - - - - - - - - 0.5773952 0.06110413 -0.8141751 0.5773952 0.06110413 -0.8141751 0.5773952 0.06110413 -0.8141751 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -460.6383 -222.2915 59.17819 -457.9243 -227.4062 60.90581 -461.0299 -223.0169 58.59653 -461.4216 -223.0156 57.6924 -461.0299 -223.0169 58.59653 -457.9243 -227.4062 60.90581 -457.9243 -227.4062 60.90581 -463.9719 -218.2413 51.22353 -461.4216 -223.0156 57.6924 - - - - - - - - - - 0.720215 0.1536499 -0.6765221 0.720215 0.1536499 -0.6765221 0.720215 0.1536499 -0.6765221 0.8399378 0.4031707 -0.36326 0.8399378 0.4031707 -0.36326 0.8399378 0.4031707 -0.36326 0.6458016 0.7134328 0.2719448 0.6458016 0.7134328 0.2719448 0.6458016 0.7134328 0.2719448 - - - - - - - - - - - - - - -

0 1 2 3 4 5 6 7 8

-
-
-
- - - - -463.9719 -218.2413 51.22353 -457.9243 -227.4062 60.90581 -464.9085 -219.7638 39.13411 -457.9243 -227.4062 60.90581 -464.3391 -226.0498 50.56962 -464.9085 -219.7638 39.13411 -466.0927 -212.9877 43.69214 -464.9085 -219.7638 39.13411 -464.3391 -226.0498 50.56962 -466.8179 -226.5399 43.24583 -464.3391 -226.0498 50.56962 -457.9243 -227.4062 60.90581 -461.8341 -230.0664 56.68252 -464.9085 -219.7638 39.13411 -466.8179 -226.5399 43.24583 -465.6184 -256.3833 38.53554 -467.1773 -253.1125 42.42511 - - - - - - - - - - 0.9085419 0.3999608 -0.12076 0.8837714 0.4508444 -0.1252492 0.9457305 0.3073763 -0.1054208 0.5345076 -0.729126 -0.4274071 0.5345076 -0.729126 -0.4274071 0.5345076 -0.729126 -0.4274071 0.9760113 0.2097729 -0.0582869 0.8725489 -0.4084681 -0.267978 0.8725489 -0.4084681 -0.267978 0.8725489 -0.4084681 -0.267978 0.78714 -0.3155822 -0.5299231 0.7354905 -0.1397592 -0.6629638 0.7852669 -0.2680666 -0.5581184 0.9213579 -0.02420156 0.3879612 0.9213208 -0.02421682 0.3880484 0.9207848 -0.02443666 0.3893048 0.920668 -0.02448445 0.3895778 - - - - - - - - - - 0.8881836 0.5297852 0.8857422 0.5400391 0.8867187 0.5205078 0.8857422 0.5400391 0.8852539 0.5302734 0.8867188 0.5205078 0.8901367 0.5234375 0.8881836 0.5297852 0.8867187 0.5205078 0.8867188 0.5205078 0.8852539 0.5302734 0.8842773 0.5239258 0.8852539 0.5302734 0.8857422 0.5400391 0.8837891 0.5366211 0.8867187 0.5205078 0.8842773 0.5239258 0.8720703 0.5214844 0.8842773 0.5239258 0.8735352 0.5244141 0.8720703 0.5214844 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -466.2933 -212.0101 43.021 -466.0927 -212.9877 43.69214 -464.9085 -219.7638 39.13411 - - - - - - - - - - 0.9822152 0.1864629 -0.02202207 0.9760113 0.2097729 -0.0582869 0.9457305 0.3073763 -0.1054208 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -462.4939 -190.2934 39.97788 -466.2933 -212.0101 43.021 -464.9085 -219.7638 39.13411 -465.2495 -193.4309 43.41326 - - - - - - - - - - 0.8190303 -0.06338575 0.5702382 0.868014 -0.08326824 0.4895079 0.8725811 -0.08526366 0.4809701 0.8038075 -0.05766063 0.5920885 - - - - - - - - - - 0.8984375 0.5185547 0.8901367 0.5229492 0.8867188 0.5205078 0.8984375 0.5185547 0.8979492 0.5224609 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 3 4 1 1

-
-
-
- - - - -462.4939 -190.2934 39.97788 -465.0444 -192.9414 43.93084 -465.2495 -193.4309 43.41326 - - - - - - - - - - 0.8273011 -0.5332988 0.1765368 0.8273011 -0.5332988 0.1765368 0.8273011 -0.5332988 0.1765368 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -462.998 -194.883 50.07393 -465.0444 -192.9414 43.93084 -462.4939 -190.2934 39.97788 -455.8887 -197.2154 60.26849 -460.0087 -189.1628 50.84927 -455.8887 -197.2154 60.26849 -462.4939 -190.2934 39.97788 -455.8887 -197.2154 60.26849 -460.8571 -198.34 56.38751 -462.998 -194.883 50.07393 -461.4598 -186.4416 44.10303 -460.4302 -199.8639 57.96225 -455.8887 -197.2154 60.26849 -460.2325 -202.3348 58.6831 -460.4302 -199.8639 57.96225 -460.6383 -222.2915 59.17819 -457.9243 -227.4062 60.90581 - - - - - - - - - - 0.2729478 -0.8808429 -0.3868013 0.3146033 -0.8699436 -0.3797669 0.294042 -0.8755502 -0.3833421 0.2666258 -0.88234 -0.3877974 0.9563359 0.163531 -0.2422382 0.9466271 0.1515785 -0.2844663 0.9710703 0.06760981 -0.2290228 0.5819561 -0.5702506 -0.579777 0.5772122 -0.5854172 -0.569309 0.5612662 -0.6308518 -0.5357296 0.975106 -0.0259544 -0.220215 0.6039524 -0.4846414 -0.6327434 0.4451873 -0.09239137 -0.8906582 0.4211046 -0.07743845 -0.9037003 0.5329435 -0.1973809 -0.8228074 0.461027 -0.04879678 -0.8860434 0.4673591 -0.05014392 -0.8826443 - - - - - - - - - - 0.8999023 0.5268555 0.8979492 0.5224609 0.8984375 0.5185547 0.9038086 0.5336914 0.8999023 0.5268555 0.8984375 0.5185547 0.9018555 0.5239258 0.9038086 0.5336914 0.9038086 0.5336914 0.9008789 0.5322266 0.8999023 0.5268555 0.9003906 0.5185547 0.8984375 0.5185547 0.9038086 0.5336914 0.9013672 0.5341797 0.9008789 0.5322266 0.9038086 0.5336914 0.9008789 0.5361328 0.9013672 0.5341797 0.8588867 0.512207 0.8686523 0.5166016 0.8603516 0.5166016 0.8588867 0.512207 0.8706055 0.5141602 0.8686523 0.5166016 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -455.7481 -193.4625 58.72023 -455.8887 -197.2154 60.26849 -457.097 -193.1835 57.96749 - - - - - - - - - - 0.3957073 -0.3628823 -0.8436422 0.3957073 -0.3628823 -0.8436422 0.3957073 -0.3628823 -0.8436422 - - - - - - - - - - 0.9038086 0.5307617 0.9038086 0.5336914 0.9033203 0.5297852 - - - - - - - - - - - - - - -

0 0 1 1 2 2

-
-
-
- - - - -460.0087 -189.1628 50.84927 -457.097 -193.1835 57.96749 -455.8887 -197.2154 60.26849 - - - - - - - - - - 0.9563359 0.163531 -0.2422382 0.9387493 0.09176074 -0.3321592 0.9466271 0.1515785 -0.2844663 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -458.4595 -254.4524 59.60097 -461.5251 -251.3587 57.58092 -461.3892 -250.3777 57.84562 -461.5251 -251.3587 57.58092 -458.4595 -254.4524 59.60097 -461.6609 -251.8333 56.96069 - - - - - - - - - - 0.565534 0.02839549 -0.824236 0.628114 0.1204486 -0.7687424 0.5483558 0.03432603 -0.8355403 0.7571513 0.4280809 -0.4934255 0.7471273 0.5720619 -0.3384464 0.7484996 0.5444018 -0.378649 - - - - - - - - - - - - - - -

0 1 2 3 4 5

-
-
-
- - - - -461.6609 -251.8333 56.96069 -458.4595 -254.4524 59.60097 -465.6184 -256.3833 38.53554 -458.4595 -254.4524 59.60097 -461.6795 -257.2623 56.60679 -465.6184 -256.3833 38.53554 -467.153 -259.6541 42.17265 - - - - - - - - - - 0.7484996 0.5444018 -0.378649 0.7471273 0.5720619 -0.3384464 0.6785788 0.6658262 -0.3101712 0.7407844 -0.6434906 -0.1927648 0.745083 -0.6383014 -0.1934493 0.7761381 -0.5985753 -0.1982857 0.783099 -0.5890833 -0.1993412 - - - - - - - - - - 0.8759766 0.5341797 0.8754883 0.5380859 0.8720703 0.5214844 0.8754883 0.5380859 0.8740234 0.5356445 0.8720703 0.5214844 0.8720703 0.5214844 0.8740234 0.5356445 0.8710938 0.5244141 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -461.6609 -251.8333 56.96069 -465.6184 -256.3833 38.53554 -467.1773 -253.1125 42.42511 - - - - - - - - - - 0.7484996 0.5444018 -0.378649 0.6785788 0.6658262 -0.3101712 0.6600002 0.6840189 -0.3106733 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -457.9243 -227.4062 60.90581 -461.343 -231.7819 57.88101 -461.8341 -230.0664 56.68252 - - - - - - - - - - 0.7354905 -0.1397592 -0.6629638 0.6979981 -0.05976088 -0.7136017 0.7852669 -0.2680666 -0.5581184 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -458.4595 -254.4524 59.60097 -461.5784 -257.6424 57.10078 -461.6795 -257.2623 56.60679 -458.4595 -254.4524 59.60097 -461.4773 -258.5271 57.28312 -461.5784 -257.6424 57.10078 - - - - - - - - - - 0.7865733 -0.4010341 -0.4695467 0.7865733 -0.4010341 -0.4695467 0.7865733 -0.4010341 -0.4695467 0.5920874 0.01976053 -0.8056315 0.6032155 0.007222142 -0.7975455 0.669679 -0.07573272 -0.7387792 - - - - - - - - - - - - - - -

0 1 2 3 4 5

-
-
-
- - - - -469.1638 -235.8725 10.35287 -467.8584 -235.8949 7.384252 -471.4502 -239.335 10.25218 -466.8013 -239.6315 10.32619 -469.1638 -235.8725 10.35287 -471.4502 -239.335 10.25218 -467.8873 -233.144 7.46878 -467.8584 -235.8949 7.384252 -469.1638 -235.8725 10.35287 -470.2837 -239.335 7.666552 -469.3519 -235.5027 13.57525 -469.1638 -235.8725 10.35287 -466.8013 -239.6315 10.32619 -466.8558 -256.9054 10.11656 -469.1344 -232.9774 10.43739 -466.2764 -233.1439 7.327836 -467.8584 -235.8949 7.384252 -467.8873 -233.144 7.46878 -468.2683 -298.4402 6.658379 -470.2837 -239.335 7.666552 -471.4502 -239.335 10.25218 -470.2837 -239.335 7.666552 -471.4358 -295.037 9.619309 -469.3519 -235.5027 13.57525 -466.8013 -239.6315 10.32619 -468.1845 -239.1361 13.77023 -469.3617 -232.7506 13.6694 -469.3519 -235.5027 13.57525 -466.8558 -256.9054 10.11656 -471.4358 -295.037 9.619309 -466.2475 -301.2478 6.51171 -470.5823 -294.9243 6.940672 -470.5823 -294.9243 6.940672 -468.1709 -257.4381 13.43556 -466.9784 -295.8108 9.644411 -465.6047 -233.1439 9.622261 -466.2475 -301.2478 6.51171 -466.2764 -233.1439 7.327836 -468.3198 -301.2478 6.658379 -470.5823 -294.9243 6.940672 -468.2683 -298.4402 6.658379 -469.5255 -298.6068 9.626992 -471.4358 -295.037 9.619309 -467.9953 -295.8649 12.90952 -466.9784 -295.8108 9.644411 -469.5255 -298.6068 9.626992 -465.5756 -301.6802 8.806137 -468.2683 -298.4402 6.658379 -468.3198 -301.2478 6.658379 -469.5857 -301.4029 9.483441 -469.5255 -298.6068 9.626992 -466.9784 -295.8108 9.644411 -468.5713 -297.191 12.88141 -467.9953 -295.8649 12.90952 -469.5255 -298.6068 9.626992 -469.8722 -298.7478 12.85735 -469.8722 -298.7478 12.85735 -470.0178 -301.6442 12.77501 - - - - - - - - - - -0.7782335 0.5239548 -0.3461559 -0.7783647 0.5224647 -0.3481076 -0.7784266 0.5217424 -0.3490515 -0.01681966 -0.01418503 0.9997579 -0.01704999 -0.01781287 0.999696 -0.01656153 -0.01436364 0.9997597 -0.9182044 0.01105127 -0.3959527 -0.9153976 0.002773723 -0.4025413 -0.9700235 0.009643557 -0.2428196 -0.7785655 0.5200666 -0.3512357 -0.8465724 -0.5321459 0.01166206 -0.8465724 -0.5321459 0.01166206 -0.8465724 -0.5321459 0.01166206 -0.01393898 -0.01145026 0.9998373 -0.9744644 0.01642037 -0.2239409 -0.07690455 0.02378422 -0.9967547 -0.07317226 0.01453059 -0.9972135 -0.08712807 0.02968397 -0.9957548 -0.06583889 0.01035939 -0.9977765 -0.1324026 0.01239104 -0.9911186 -0.9115277 0.004436174 -0.4112148 -0.9130366 0.004585278 -0.4078518 -0.9517115 0.008925505 -0.306864 -0.8979801 -0.3055067 -0.3166976 -0.9288021 -0.0839493 -0.360942 -0.9230217 -0.1680868 -0.3460892 -0.9979308 0.004837781 -0.06411427 -0.9983106 -0.001594955 -0.05808169 -0.9304837 0.00389822 -0.3663126 -0.007350813 -0.008254949 0.9999389 -0.06474667 0.005531264 -0.9978864 -0.1008043 0.01353154 -0.9948143 -0.9528729 0.009076784 -0.3032339 -0.9298471 0.003191978 -0.3679322 -0.006925245 -0.007453852 0.9999482 0.959708 0.003775005 -0.2809737 0.9598862 0.003745517 -0.2803649 0.9597038 0.003775699 -0.2809881 -0.07059743 0.001294387 -0.997504 -0.823252 -0.4692822 -0.3194219 -0.7915267 -0.4918081 -0.3627814 -0.8121644 -0.4775667 -0.3351402 -0.8440815 -0.4523218 -0.2879781 -0.9534628 0.006277537 -0.3014452 -0.9547767 0.006616706 -0.2972502 -0.005796327 -0.0009496595 0.9999828 0.9598899 0.003744896 -0.2803521 -0.9167089 0.02753214 -0.398606 -0.9127845 0.01673569 -0.4080984 -0.9657384 0.03463594 -0.2571959 -0.9677527 0.03367306 -0.2496415 -0.7944361 0.59445 -0.1245008 -0.8119351 0.5613335 -0.1602062 -0.8815371 0.3885987 -0.2681106 -0.7381704 0.6727696 -0.04985539 -0.7497303 0.6575753 -0.07415638 -0.9922646 0.04157721 -0.1169717 -0.9905759 0.05339501 -0.1261282 - - - - - - - - - - 0.6538086 0.9047852 0.6538086 0.9282227 0.6347656 0.9008789 0.9746094 0.9091797 0.9941406 0.8647461 0.9765625 0.8647461 0.6669922 0.9291992 0.6538086 0.9282227 0.6538086 0.9047852 0.6538086 0.9282227 0.6347656 0.9282227 0.6347656 0.9008789 0.7241211 0.08837891 0.722168 0.05712891 0.7016602 0.05761719 0.9746094 0.9091797 0.9765625 0.8647461 0.887207 0.9091797 0.6674805 0.9042969 0.6669922 0.9291992 0.6538086 0.9047852 0.6669922 0.9619141 0.6533203 0.9433594 0.6669922 0.9433594 0.6533203 0.9433594 0.3369141 0.9433594 0.6347656 0.9282227 0.6347656 0.9008789 0.6347656 0.9282227 0.3540039 0.9008789 0.7241211 0.08837891 0.7016602 0.05761719 0.7055664 0.08837891 0.7387695 0.08837891 0.722168 0.05712891 0.7241211 0.08837891 0.7016602 0.05761719 0.6166992 0.05761719 0.887207 0.9091797 0.9765625 0.8647461 0.6953125 0.8647461 0.7387695 0.08837891 0.7358398 0.05664062 0.722168 0.05712891 0.3232422 0.9619141 0.6533203 0.9433594 0.6669922 0.9619141 0.3232422 0.9619141 0.3369141 0.9433594 0.6533203 0.9433594 0.3369141 0.9433594 0.3544922 0.9282227 0.6347656 0.9282227 0.6347656 0.9282227 0.3544922 0.9282227 0.3540039 0.9008789 0.7055664 0.08837891 0.6166992 0.05761719 0.6137695 0.08837891 0.887207 0.9091797 0.6953125 0.8647461 0.690918 0.9091797 0.6674805 0.9863281 0.3232422 0.9619141 0.6669922 0.9619141 0.3232422 0.9619141 0.3227539 0.9433594 0.3369141 0.9433594 0.3544922 0.9282227 0.3364258 0.9282227 0.3354492 0.9008789 0.3544922 0.9282227 0.3354492 0.9008789 0.3540039 0.9008789 0.6166992 0.05761719 0.4199219 0.08837891 0.6137695 0.08837891 0.6166992 0.05761719 0.4208984 0.05810547 0.4199219 0.08837891 0.690918 0.9091797 0.6953125 0.8647461 0.6806641 0.8647461 0.6674805 0.9863281 0.3212891 0.9863281 0.3232422 0.9619141 0.3364258 0.9282227 0.3227539 0.9287109 0.3212891 0.9003906 0.3364258 0.9282227 0.3212891 0.9003906 0.3354492 0.9008789 0.4208984 0.05810547 0.4135742 0.08837891 0.4199219 0.08837891 0.4208984 0.05810547 0.4057617 0.05761719 0.4047852 0.08837891 0.4057617 0.05761719 0.3916016 0.05761719 0.4047852 0.08837891 0.4208984 0.05810547 0.4047852 0.08837891 0.4135742 0.08837891 0.4047852 0.08837891 0.3916016 0.05761719 0.3901367 0.08837891 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 1 9 9 10 2 11 10 12 11 13 12 14 3 15 5 16 13 17 14 18 6 19 8 20 15 21 16 22 17 23 16 24 18 25 19 26 20 27 21 28 22 29 23 30 24 31 25 32 26 33 8 34 27 35 25 32 24 36 28 37 13 38 5 39 29 40 26 41 14 42 8 43 30 44 16 45 15 46 30 47 18 48 16 49 18 50 31 51 19 52 21 53 32 54 22 55 25 56 28 57 33 58 13 59 29 60 34 61 35 62 36 63 37 64 30 65 38 66 18 67 39 68 40 69 41 70 39 71 41 72 42 73 28 74 43 75 33 76 28 77 44 78 43 79 34 80 29 81 45 82 35 83 46 84 36 85 47 86 48 87 49 88 47 89 49 90 50 91 51 92 52 93 53 94 51 95 54 96 55 97 50 98 49 99 56 100 51 101 55 102 52 103 56 104 49 105 57 106

-
-
-
- - - - -459.8639 -279.1126 57.24882 -464.0307 -298.0843 42.69215 -462.859 -287.5395 48.77604 -462.859 -287.5395 48.77604 -464.0307 -298.0843 42.69215 -464.0159 -293.3603 42.55011 -458.8828 -273.1684 58.39067 -459.8639 -279.1126 57.24882 -462.859 -287.5395 48.77604 -464.0159 -301.552 40.5443 -465.5783 -288.9633 36.93953 -458.8828 -273.1684 58.39067 -462.859 -287.5395 48.77604 -462.8428 -279.2061 53.72374 -461.9458 -302.4698 40.72237 -464.0159 -293.3603 42.55011 -464.0159 -301.552 40.5443 -462.859 -287.5395 48.77604 -465.5783 -288.9633 36.93953 -467.125 -288.5618 40.83456 -461.9458 -302.4698 40.72237 -464.0159 -301.552 40.5443 -463.1759 -304.5002 40.98238 -464.855 -287.5103 47.55498 -461.5638 -305.418 41.85804 - - - - - - - - - - 0.8535764 0.1859293 -0.4866597 0.8535764 0.1859293 -0.4866597 0.8535764 0.1859293 -0.4866597 0.9766537 0.03293488 -0.2122802 0.9997474 -0.003804715 -0.02215239 0.9824186 0.0167132 -0.1859419 0.9670955 -0.1161298 -0.2263628 0.9670955 -0.1161298 -0.2263628 0.9670955 -0.1161298 -0.2263628 0.9999307 -0.002795383 0.01143506 0.9718787 0.05238862 -0.2295806 0.2294711 0.4965641 -0.8371183 0.4453498 0.4564556 -0.7702674 0.2482616 0.4941773 -0.8331596 -0.1857109 -0.2336957 0.9544097 -0.1857109 -0.2336957 0.9544097 -0.1857109 -0.2336957 0.9544097 0.08205799 0.9819379 -0.1704831 -0.02728004 0.9931979 -0.1131975 -0.01605473 0.9927442 -0.1191692 -0.1191884 0.1968251 0.973167 -0.02282111 0.1405739 0.9898071 -0.2185224 0.2530705 0.9424454 0.1350868 0.9709398 -0.1975538 -0.3142894 0.3055034 0.8988269 - - - - - - - - - - 0.8530273 0.5361328 0.8530273 0.5229492 0.8549805 0.5268555 0.8549805 0.5268555 0.8530273 0.5229492 0.8564453 0.5205078 0.8535156 0.5410156 0.8530273 0.5361328 0.8549805 0.5268555 0.8564453 0.5205078 0.8530273 0.5229492 0.8530273 0.5205078 0.8549805 0.5268555 0.8564453 0.5205078 0.8588867 0.5214844 0.8535156 0.5410156 0.8549805 0.5268555 0.8549805 0.534668 0.8525391 0.5185547 0.8564453 0.5205078 0.8530273 0.5205078 0.8549805 0.5268555 0.8588867 0.5214844 0.8583984 0.5244141 0.4980469 0.597168 0.5024414 0.5800781 0.4882813 0.5888672 0.8549805 0.5268555 0.8583984 0.5244141 0.855957 0.5273437 0.4858398 0.6010742 0.4980469 0.597168 0.4882813 0.5888672 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -462.8428 -279.2061 53.72374 -462.859 -287.5395 48.77604 -464.855 -287.5103 47.55498 - - - - - - - - - - 0.2482616 0.4941773 -0.8331596 0.4453498 0.4564556 -0.7702674 0.470883 0.4497 -0.7589723 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -458.8828 -273.1684 58.39067 -462.1707 -276.3159 55.15754 -461.7715 -271.3331 56.43727 -461.4773 -258.5271 57.28312 -458.4595 -254.4524 59.60097 - - - - - - - - - - 0.5976214 0.09382019 -0.7962703 0.6171294 0.1489851 -0.7726284 0.5940419 0.08341145 -0.800098 0.6032155 0.007222142 -0.7975455 0.5920874 0.01976053 -0.8056315 - - - - - - - - - - 0.8535156 0.5410156 0.8549805 0.5375977 0.8549805 0.5415039 0.8886719 0.5151367 0.8876953 0.5180664 0.8828125 0.5175781 0.8813477 0.5146484 0.8886719 0.5151367 0.8828125 0.5175781 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -461.4633 -259.2311 34.62925 -460.0299 -264.73 34.55516 -460.0299 -262.1236 43.42015 -461.4633 -256.6515 42.68774 -457.4825 -255.1323 46.94471 -461.4633 -256.6515 42.68774 -460.0299 -262.1236 43.42015 -456.7323 -259.044 46.75252 -457.4825 -255.1323 46.94471 -456.7323 -259.044 46.75252 -457.1588 -255.7851 52.23277 -456.4701 -258.3943 51.73972 - - - - - - - - - - -0.9655092 -0.2492027 0.07543152 -0.9647515 -0.2524766 0.07423077 -0.9661578 -0.246355 0.07647427 -0.9669338 -0.2428898 0.07774094 -0.6726744 -0.1227578 0.7296847 -0.7105171 -0.09276289 0.6975389 -0.6817705 -0.1157464 0.7223515 -0.6253091 -0.1574788 0.7643226 -0.9811094 -0.1899608 0.03659589 -0.9754656 -0.2140736 0.05137402 -0.96995 -0.2347147 0.06407778 -0.9592376 -0.2693536 0.08550986 - - - - - - - - - - 0.1396484 0.8803711 0.1381836 0.8754883 0.1464844 0.8754883 0.1474609 0.8808594 0.1396484 0.8803711 0.1464844 0.8754883 0.1518555 0.875 0.1464844 0.8754883 0.1503906 0.871582 0.1518555 0.875 0.1464844 0.8754883 0.1518555 0.875 0.1503906 0.871582 0.15625 0.8740234 0.15625 0.8740234 0.1503906 0.871582 0.1547852 0.871582 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 0 4 2 5 4 6 5 3 6 7 7 8 4 9 6 10 8 11 9 12 10 13 10 14 9 15 11 16

-
-
-
- - - - -465.8066 -218.6358 35.13625 -464.1449 -224.1347 35.0247 -464.1449 -221.5283 43.4201 -465.8066 -216.0147 42.68774 -461.6245 -214.5371 46.94473 -465.8066 -216.0147 42.68774 -464.1449 -221.5283 43.4201 -460.7548 -218.4489 46.75252 -461.6245 -214.5371 46.94473 -460.7548 -218.4489 46.75252 -461.2493 -215.19 52.23281 -460.4509 -217.7992 51.73972 - - - - - - - - - - -0.954209 -0.2846345 0.09202429 -0.9528592 -0.2897695 0.08996052 -0.9551466 -0.2809905 0.09348477 -0.9565096 -0.2755731 0.09564982 -0.6518533 -0.1406816 0.7451818 -0.689006 -0.1125564 0.7159621 -0.6609453 -0.1339737 0.7383782 -0.6060998 -0.1728994 0.776369 -0.9748578 -0.2188058 0.04214542 -0.9673994 -0.2462537 0.05914032 -0.9602971 -0.2691513 0.07339724 -0.9463228 -0.3080712 0.09780194 - - - - - - - - - - 0.09033203 0.7919922 0.09375 0.7880859 0.09375 0.809082 0.09033203 0.8110352 0.09033203 0.7919922 0.09375 0.809082 0.09326172 0.8227539 0.09033203 0.8110352 0.09375 0.809082 0.09570313 0.8198242 0.09326172 0.8227539 0.09375 0.809082 0.09326172 0.8227539 0.09570313 0.8198242 0.09423828 0.8344727 0.09570313 0.831543 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 0 4 2 5 4 6 5 7 6 8 7 9 4 10 6 11 8 12 9 13 10 14 10 14 9 9 11 15

-
-
-
- - - - -457.9243 -227.4062 60.90581 -458.4595 -254.4524 59.60097 -461.343 -231.7819 57.88101 -461.3892 -250.3777 57.84562 - - - - - - - - - - 0.7354905 -0.1397592 -0.6629638 0.565534 0.02839549 -0.824236 0.6979981 -0.05976088 -0.7136017 0.5483558 0.03432603 -0.8355403 - - - - - - - - - - 0.8706055 0.5141602 0.8813477 0.5146484 0.8725586 0.5170898 0.8813477 0.5146484 0.8798828 0.5170898 - - - - - - - - - - - - - - -

0 0 1 1 2 2 1 3 3 4 2 2

-
-
-
- - - - -460.2607 -185.5651 42.44921 -461.285 -185.9585 42.95642 -462.4939 -190.2934 39.97788 -461.285 -185.9585 42.95642 -461.4598 -186.4416 44.10303 -462.4939 -190.2934 39.97788 - - - - - - - - - - 0.5296255 -0.5757249 0.6229267 0.5296255 -0.5757249 0.6229267 0.5296255 -0.5757249 0.6229267 0.9581616 -0.2850485 0.02595616 0.9581616 -0.2850485 0.02595616 0.9581616 -0.2850485 0.02595616 - - - - - - - - - - - - - - -

0 1 2 3 4 5

-
-
-
- - - - -454.7212 -212.5401 5.71303 -463.0525 -211.1691 5.205805 -463.0526 -213.3994 5.114221 -454.7212 -210.3099 5.804626 - - - - - - - - - - -0.0674291 -0.04094129 0.9968837 -0.06742823 -0.04093593 0.996884 -0.06742803 -0.04093469 0.9968841 -0.0674293 -0.04094253 0.9968836 - - - - - - - - - - 0.5791016 0.4443359 0.5839844 0.4067383 0.5791016 0.4057617 0.5791016 0.4443359 0.5834961 0.4443359 0.5839844 0.4067383 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 3 4 1 5

-
-
-
- - - - -461.975 -300.5553 42.11442 -461.878 -301.3349 42.22142 -461.9116 -301.0397 42.796 - - - - - - - - - - -0.9924174 -0.1228119 0.004988537 -0.9924174 -0.1228119 0.004988537 -0.9924174 -0.1228119 0.004988537 - - - - - - - - - - 0.1958008 0.7866211 0.1943359 0.7890625 0.1943359 0.7832031 - - - - - - - - - - - - - - -

0 0 1 1 2 2

-
-
-
- - - - -339.3433 -326.7472 57.23159 -333.2634 -323.7723 56.65743 -340.0663 -326.9775 52.57358 -332.852 -323.3159 54.11931 -337.6504 -325.6824 50.94875 -333.2614 -323.4296 51.48371 -332.7021 -323.2418 52.13724 - - - - - - - - - - -0.4376014 0.8988622 0.02348986 -0.4568117 0.8872122 0.06463387 -0.4494346 0.8926321 0.03487922 -0.4521417 0.8901621 0.05638572 -0.4576681 0.8886385 0.02935239 -0.429266 0.902752 0.02773914 -0.3290349 0.9442607 0.01037912 - - - - - - - - - - 0.6264648 0.8349609 0.5961914 0.8349609 0.6264648 0.8056641 0.5961914 0.8217773 0.6264648 0.8056641 0.5961914 0.8217773 0.6186523 0.7900391 0.5991211 0.7900391 0.6186523 0.7900391 0.5961914 0.8217773 0.5961914 0.8027344 0.5991211 0.7900391 - - - - - - - - - - - - - - -

0 0 1 1 2 2 1 1 3 3 2 4 3 5 4 6 2 2 3 3 5 7 4 8 3 9 6 10 5 11

-
-
-
- - - - -440.01 -432.8869 13.07627 -439.8537 -434.5847 11.07811 -437.7244 -436.5023 12.76097 -440.5475 -430.0644 13.07626 -440.01 -432.8869 13.07627 -438.5611 -437.8756 9.64181 -440.4059 -432.7767 9.000403 -439.8859 -435.0239 9.291319 -437.7244 -436.5023 12.76097 -438.5611 -437.8756 9.64181 -436.2424 -438.0605 11.13045 -443.1849 -426.2902 11.51648 -440.5475 -430.0644 13.07626 -437.3358 -439.5691 4.128372 -434.9366 -441.5731 8.113119 -442.8377 -429.8539 7.633714 -439.4268 -436.8038 3.628366 -438.5611 -437.8756 9.64181 -437.3358 -439.5691 4.128372 -434.9366 -441.5731 8.113119 -433.4763 -439.7328 10.27723 -443.4626 -423.7407 9.817973 -442.8377 -429.8539 7.633714 -443.1849 -426.2902 11.51648 -440.0067 -435.0075 3.273118 -435.1707 -441.7024 5.025167 -438.2936 -438.432 1.90226 -432.63 -443.3887 7.31851 -443.1014 -427.097 6.215158 -442.3532 -432.0779 2.694884 -438.369 -438.1421 -1.649785 -435.1707 -441.7024 5.025167 -437.3358 -439.5691 4.128372 -437.3789 -440.5847 4.11049 -432.63 -443.3887 7.31851 -438.2936 -438.432 1.90226 -438.2936 -439.7698 1.90226 -437.3358 -439.5691 4.128372 -431.2463 -440.7317 10.01173 -442.3532 -432.0779 2.694884 -439.3703 -435.9127 -1.929016 -435.1707 -441.7024 5.025167 -437.3789 -440.5847 4.11049 -435.1707 -442.3392 5.025162 -437.3789 -440.5847 4.11049 -432.9631 -443.5193 4.110385 -438.2936 -438.432 1.90226 -437.3789 -440.2461 -0.305966 -438.2936 -439.7698 1.90226 -437.3789 -439.301 -0.305966 -431.6301 -444.0566 6.52533 -442.6669 -429.1976 1.939942 -441.6163 -433.2276 -2.124003 -438.4776 -436.1928 -4.279295 -435.1707 -442.3392 5.025162 -437.3789 -440.5847 4.11049 -436.7918 -440.9473 3.523391 -432.9631 -443.5193 4.110385 -435.1707 -441.7024 5.025167 -435.1707 -442.3392 5.025162 -438.2936 -439.7698 1.90226 -437.4642 -440.2572 1.902835 -431.6301 -444.0566 6.52533 -437.3789 -440.2461 -0.305966 -436.7918 -440.7123 0.2811315 -437.3789 -439.301 -0.305966 -435.1721 -441.4246 -1.218774 -427.4879 -442.1451 9.847459 -441.6163 -433.2276 -2.124003 -437.7743 -438.507 -2.52501 -435.1707 -442.2893 4.194884 -432.9631 -443.5193 4.110385 -435.1707 -442.3392 5.025162 -432.9631 -443.9772 4.110388 -432.0485 -444.0495 1.902159 -435.1714 -441.9631 -0.390466 -435.2768 -441.8522 -1.218875 -437.3789 -440.2461 -0.305966 -437.3789 -439.301 -0.305966 -435.1721 -441.4246 -1.218774 -425.3315 -445.0031 7.351703 -442.0368 -430.2401 -2.308999 -440.6534 -433.557 -4.897422 -435.1805 -440.5677 -3.120977 -435.1707 -442.2893 4.194884 -436.7918 -440.9473 3.523391 -436.7936 -440.1585 3.524526 -432.9631 -443.9772 4.110388 -436.7936 -440.1585 3.524526 -436.7918 -440.9473 3.523391 -437.4642 -440.2572 1.902835 -432.9631 -443.5193 4.110385 -432.9631 -443.9772 4.110388 -432.0485 -444.0495 1.902159 -436.7936 -440.1585 0.2822767 -437.4642 -440.2572 1.902835 -436.7918 -440.7123 0.2811315 -432.0485 -444.0495 1.902159 -431.4658 -444.4756 4.182016 -431.6301 -444.0566 6.52533 -435.1714 -441.9631 -0.390466 -435.1725 -440.1586 -0.3892175 -436.7918 -440.7123 0.2811315 -435.2768 -441.8522 -1.218875 -432.9631 -443.7512 -0.3060669 -435.2768 -441.8522 -1.218875 -435.1721 -441.4246 -1.218774 -425.3315 -445.0031 7.351703 -425.3932 -443.7048 7.838975 -427.4879 -442.1451 9.847459 -425.3024 -445.4407 6.525327 -440.6534 -433.557 -4.897422 -439.3881 -434.2713 -5.931734 -435.6605 -437.3295 -5.676564 -435.1725 -440.1586 4.196024 -433.5502 -443.3228 3.523287 -432.0484 -444.5073 1.902159 -436.7936 -440.1585 0.2822767 -431.4658 -444.4756 4.182016 -432.0485 -444.0495 1.902159 -431.1519 -444.2514 -1.371319 -433.5513 -440.1585 0.282272 -435.1725 -440.1586 -0.3892175 -435.1714 -441.9631 -0.390466 -433.5502 -443.1678 0.2810283 -432.9631 -443.7512 -0.3060669 -432.9625 -443.2933 -0.305966 -431.1511 -443.618 -3.140046 -441.1766 -430.6868 -5.267958 -439.3881 -434.2713 -5.931734 -440.6534 -433.557 -4.897422 -441.1766 -430.6868 -5.267958 -431.1468 -438.8474 -6.212845 -433.5502 -443.3228 3.523287 -435.1707 -442.2893 4.194884 -435.1725 -440.1586 4.196024 -432.0484 -444.5073 1.902159 -432.9625 -443.2933 -0.305966 -432.0485 -444.0495 1.902159 -432.0484 -444.5073 1.902159 -432.9625 -443.2933 -0.305966 -425.0392 -445.4622 -1.388236 -425.2199 -445.8314 4.182015 -433.5502 -443.1678 0.2810283 -432.8787 -443.7193 1.902159 -432.9631 -443.7512 -0.3060669 -431.1511 -443.618 -3.140046 -438.8063 -431.9363 -6.846675 -436.0493 -436.0285 -6.444551 -433.5513 -440.1586 3.524529 -424.9554 -445.0667 -3.138385 -433.5513 -440.1585 0.282272 -433.5502 -443.1678 0.2810283 -432.8798 -440.1585 1.903405 -432.8787 -443.7193 1.902159 -424.8344 -440.2147 -6.232371 -431.1511 -443.618 -3.140046 -436.3404 -433.1285 -7.097378 -439.3881 -434.2713 -5.931734 -438.8063 -431.9363 -6.846675 -427.5459 -437.6766 -7.140343 -433.5513 -440.1586 3.524529 -432.8787 -443.7193 1.902159 -433.5502 -443.3228 3.523287 -432.8798 -440.1585 1.903405 -424.9554 -445.0667 -3.138385 -408.6741 -441.3795 -6.276101 -436.3404 -433.1285 -7.097378 -436.3404 -433.1285 -8.731812 -427.5459 -437.6766 -7.140343 -408.6741 -439.4728 -7.321611 -427.6425 -437.6688 -8.774046 -427.5459 -437.6766 -7.140343 -408.6741 -439.4728 -8.956035 -408.6741 -439.4728 -7.321611 -392.5138 -440.2147 -6.232371 -427.6425 -437.6688 -8.774046 -389.8023 -437.6766 -7.14035 -389.8023 -437.6766 -7.14035 -389.7056 -437.6688 -8.774056 -386.2013 -438.8474 -6.212847 -389.8023 -437.6766 -7.14035 -389.7056 -437.6688 -8.774056 -381.0079 -433.1285 -8.731807 -381.2989 -436.0285 -6.444551 -392.3927 -445.0667 -3.138385 -381.0079 -433.1285 -7.097383 -381.6877 -437.3295 -5.676585 -381.0079 -433.1285 -7.097383 -386.1971 -443.6181 -3.140046 -377.9601 -434.2713 -5.931734 -382.1676 -440.5677 -3.121001 -377.9601 -434.2713 -5.931734 -392.3089 -445.4622 -1.388239 -392.3927 -445.0667 -3.138385 -386.1971 -443.6181 -3.140046 -378.8706 -436.1928 -4.279309 -378.5419 -431.9363 -6.846671 -382.1761 -441.4246 -1.218769 -386.1971 -443.6181 -3.140046 -386.1962 -444.2514 -1.371324 -376.6948 -433.557 -4.897427 -379.5739 -438.507 -2.525038 -376.6948 -433.557 -4.897427 -377.9601 -434.2713 -5.931734 -378.5419 -431.9363 -6.846671 -385.8824 -444.4756 4.182019 -375.7319 -433.2276 -2.123998 -378.9792 -438.1421 -1.649788 -376.1717 -430.6868 -5.26796 -384.3857 -443.2933 -0.305966 -385.2997 -444.0494 1.902154 -392.1282 -445.8314 4.182028 -376.1717 -430.6868 -5.26796 -375.7319 -433.2276 -2.123998 -376.6948 -433.557 -4.897427 -377.9779 -435.9127 -1.929009 -379.9692 -439.301 -0.3059683 -382.0714 -441.8522 -1.218875 -384.3857 -443.2933 -0.305966 -382.1761 -441.4246 -1.218769 -384.385 -443.5193 4.110382 -385.7181 -444.0566 6.525327 -375.3115 -430.2401 -2.309002 -374.995 -432.0779 2.694882 -377.9213 -436.8038 3.628362 -379.9692 -439.301 -0.3059683 -382.0714 -441.8522 -1.218875 -382.1761 -441.4246 -1.218769 -384.3851 -443.7512 -0.3060692 -384.3857 -443.2933 -0.305966 -384.3851 -443.7512 -0.3060692 -385.2997 -444.0494 1.902154 -384.385 -443.5193 4.110382 -385.2997 -444.0494 1.902154 -385.2997 -444.5073 1.902159 -385.7181 -444.0566 6.525327 -392.0457 -445.4407 6.52533 -374.6813 -429.1976 1.93994 -374.995 -432.0779 2.694882 -377.3415 -435.0075 3.273117 -377.3415 -435.0075 3.273117 -379.9692 -440.2461 -0.3059683 -379.0546 -438.432 1.902257 -379.9692 -439.301 -0.3059683 -383.7979 -443.1678 0.2810306 -384.3851 -443.7512 -0.3060692 -382.0714 -441.8522 -1.218875 -385.2997 -444.5073 1.902159 -384.385 -443.5193 4.110382 -385.2997 -444.5073 1.902159 -384.385 -443.9772 4.110384 -382.1775 -441.7025 5.025166 -392.0166 -445.0031 7.351709 -374.2469 -427.097 6.215156 -374.5106 -429.8538 7.633716 -377.4623 -435.0239 9.291319 -379.0546 -438.432 1.902257 -379.9692 -440.2461 -0.3059683 -379.9692 -439.301 -0.3059683 -379.9692 -440.2461 -0.3059683 -382.1768 -441.9631 -0.3904589 -380.0124 -439.5691 4.128374 -384.4694 -443.7193 1.902154 -385.2997 -444.5073 1.902159 -384.385 -443.9772 4.110384 -383.7979 -443.3228 3.523288 -382.1775 -441.7025 5.025166 -384.385 -443.5193 4.110382 -384.385 -443.9772 4.110384 -384.7181 -443.3887 7.31851 -389.8603 -442.1451 9.847457 -374.5106 -429.8538 7.633716 -376.9424 -432.7767 9.0004 -376.9424 -432.7767 9.0004 -379.0546 -438.432 1.902257 -379.0546 -439.7698 1.90226 -379.9692 -440.2461 -0.3059683 -380.5564 -440.7123 0.2811315 -379.0546 -438.432 1.902257 -380.0124 -439.5691 4.128374 -379.0546 -439.7698 1.90226 -384.4683 -440.1585 1.903398 -384.4694 -443.7193 1.902154 -383.7979 -443.1678 0.2810306 -382.1768 -441.9631 -0.3904589 -383.7969 -440.1585 0.282272 -383.7979 -443.1678 0.2810306 -382.1775 -442.2893 4.194883 -382.1775 -441.7025 5.025166 -384.385 -443.9772 4.110384 -382.1775 -442.3392 5.025166 -382.4116 -441.5731 8.113114 -386.1018 -440.7317 10.01172 -384.7181 -443.3887 7.31851 -389.8603 -442.1451 9.847457 -391.9549 -443.7049 7.838976 -392.0166 -445.0031 7.351709 -373.8858 -423.7407 9.817973 -374.1634 -426.2902 11.51648 -377.4945 -434.5847 11.07811 -378.7871 -437.8756 9.641811 -379.0546 -439.7698 1.90226 -380.5564 -440.7123 0.2811315 -382.1757 -440.1585 -0.3892222 -382.1768 -441.9631 -0.3904589 -379.9692 -440.5847 4.110489 -384.4683 -440.1585 1.903398 -383.7969 -440.1585 3.524528 -384.4694 -443.7193 1.902154 -383.7969 -440.1585 0.282272 -382.1757 -440.1585 -0.3892222 -383.7979 -443.3228 3.523288 -382.1757 -440.1585 4.196028 -382.1775 -442.2893 4.194883 -383.7979 -443.3228 3.523288 -382.1775 -442.3392 5.025166 -380.0124 -439.5691 4.128374 -382.1775 -441.7025 5.025166 -382.1775 -442.3392 5.025166 -380.0124 -439.5691 4.128374 -382.4116 -441.5731 8.113114 -383.8719 -439.7328 10.27722 -374.1634 -426.2902 11.51648 -376.8008 -430.0644 13.07626 -376.8008 -430.0644 13.07626 -378.7871 -437.8756 9.641811 -379.884 -440.2572 1.902832 -380.5546 -440.1586 0.2822697 -379.9692 -440.5847 4.110489 -380.0124 -439.5691 4.128374 -382.1775 -442.3392 5.025166 -379.9692 -440.5847 4.110489 -383.7969 -440.1585 3.524528 -380.5546 -440.1585 3.52453 -382.1775 -442.2893 4.194883 -382.1757 -440.1585 4.196028 -380.5563 -440.9473 3.523385 -378.7871 -437.8756 9.641811 -377.3382 -432.8869 13.07626 -377.4945 -434.5847 11.07811 -381.1058 -438.0605 11.13045 -378.7871 -437.8756 9.641811 -380.5546 -440.1586 0.2822697 -380.5564 -440.7123 0.2811315 -379.884 -440.2572 1.902832 -380.5563 -440.9473 3.523385 -381.1058 -438.0605 11.13045 -383.8719 -439.7328 10.27722 -378.7871 -437.8756 9.641811 -377.3382 -432.8869 13.07626 -379.6238 -436.5023 12.76097 -377.4945 -434.5847 11.07811 -379.6238 -436.5023 12.76097 -381.1058 -438.0605 11.13045 -377.4945 -434.5847 11.07811 -380.5546 -440.1585 3.52453 -379.884 -440.2572 1.902832 -380.5563 -440.9473 3.523385 - - - - - - - - - - -0.7665513 -0.5177292 0.3799414 -0.9018704 -0.3689725 0.2246978 -0.7675518 -0.4965615 0.4053282 -0.9779382 -0.1892223 0.08849758 -0.9790505 -0.1864483 0.08183604 -0.8860447 -0.4520572 0.1028065 -0.9154474 -0.3740497 0.1484686 -0.9421308 -0.3321868 0.04518245 -0.3571313 -0.8157729 0.4549415 -0.4038538 -0.7405893 0.5370564 -0.3612499 -0.737788 0.5702344 -0.8182353 -0.4757505 0.3227265 -0.8371989 -0.4682771 0.2825147 -0.8253802 -0.5621949 0.05181192 -0.2741082 -0.6607181 0.6987963 -0.7962852 -0.5327624 0.2865205 -0.8924331 -0.4509054 0.01572912 -0.6995097 -0.7118243 0.06318495 -0.7061187 -0.7045424 0.07082625 -0.6624464 -0.7454437 0.07401666 -0.2083503 -0.6618679 0.720084 -0.9947519 -0.1023016 0.00174958 -0.9936179 -0.109993 -0.0249993 -0.9945582 -0.1039797 0.006501582 -0.8840666 -0.46598 0.03590053 -0.6629449 -0.7437622 0.08556765 -0.8104856 -0.585722 -0.006541935 -0.05369444 -0.702108 0.7100431 -0.9938718 -0.1078626 -0.02417758 -0.7837766 -0.6103505 0.1147452 -0.8175647 -0.5530714 -0.1603118 -0.3826846 -7.459488e-006 0.923879 -0.3826865 -1.179697e-005 0.9238783 -0.3826865 -1.179697e-005 0.9238783 -0.5679955 -0.8184027 0.08716729 -0.9185728 2.578088e-005 0.3952518 -0.9187779 0.006979807 0.3947132 -0.9190874 0.02366655 0.3933424 -0.1920194 -0.6734082 0.7138977 -0.9882255 -0.1288882 -0.08245069 -0.8335262 -0.5372648 -0.1287658 -0.3826844 -6.809251e-006 0.9238791 -0.3826863 -1.134445e-005 0.9238783 -0.3826844 -6.809251e-006 0.9238791 -0.9191459 0.03213208 0.3926046 -0.5018109 -0.8626757 0.06305956 -0.9238761 1.955351e-005 -0.3826918 -0.9238793 8.539232e-006 -0.382684 -0.9238742 2.592967e-005 -0.3826962 -0.7216407 -0.6894052 -0.06289063 -0.1605717 -0.8511636 0.4997373 -0.9886682 -0.1291924 -0.07644944 -0.7607704 -0.6461479 -0.06100314 -0.668899 -0.6182568 -0.4127137 -0.6126866 -0.7885028 -0.05365059 -0.5781613 -0.8098156 -0.09964005 -0.594777 -0.7983786 -0.09397831 0.3828243 3.739246e-006 0.9238212 0.3828195 -6.808838e-006 0.9238232 0.3828195 -6.808838e-006 0.9238232 -0.5195248 -0.8527857 -0.05338995 -0.5151585 -0.8562606 -0.03780779 -0.4889382 -0.8689512 0.076572 -0.5948389 -0.8026134 -0.04447814 -0.5925782 -0.8050569 -0.02709956 -0.9238818 -2.825886e-016 -0.3826781 -0.6096222 -0.7409394 -0.2817261 -0.2101759 -0.7109384 0.671113 -0.9640099 -0.1479713 -0.2208834 -0.694688 -0.6200672 -0.3645891 -0.6165815 -0.7846162 -0.06484321 0.3828247 4.733854e-006 0.923821 0.3828198 -6.05299e-006 0.923823 0.3828247 4.733854e-006 0.923821 -0.4315112 -0.9013207 0.03766993 -0.5994977 -0.7998266 -0.02966315 -0.3324718 0.06277549 -0.9410217 -0.3983302 6.191596e-016 -0.9172421 -0.3876915 0.01037237 -0.9217308 -0.3163532 0.07764465 -0.9454586 -0.1939582 -0.8183173 0.5410518 -0.9693592 -0.1605575 -0.1859142 -0.7180434 -0.6506744 -0.2470556 -0.522425 -0.6621811 -0.5372042 0.3830734 0.001164218 -0.9237172 0.3842196 0.002187617 -0.9232392 0.383362 0.001421863 -0.9235971 -0.6542634 -0.7422954 -0.1446959 0.9240445 0.002617193 -0.3822759 0.9240445 0.002617193 -0.3822759 0.9240445 0.002617193 -0.3822759 0.923882 1.96092e-006 0.3826775 0.9238821 9.717635e-006 0.3826773 0.9238828 6.800143e-005 0.3826756 0.9239611 0.002153401 0.3824805 0.9239611 0.002153401 0.3824805 0.9239611 0.002153401 0.3824805 -0.7451561 -0.6635742 0.06642089 -0.7451561 -0.6635742 0.06642089 -0.7451561 -0.6635742 0.06642089 0.3826061 -0.0004003469 0.9239115 0.3826226 -0.0004569476 0.9239046 0.3826552 -0.0005684023 0.9238911 -0.6113765 -0.7912074 -0.01447842 0.3725995 -0.01025734 -0.9279355 0.3113619 -0.07597646 -0.9472493 0.3182402 -0.06876466 -0.9455129 0.5545615 -0.2691874 0.7874006 0.5545615 -0.2691874 0.7874006 0.5545615 -0.2691874 0.7874006 -0.2033147 -0.9325491 0.2983544 -0.944435 -0.1784954 -0.2760109 -0.6112286 -0.6503376 -0.451066 -0.3922078 -0.5878917 -0.7075001 0.3826926 0.0008244336 -0.9238754 -0.6370181 -0.7462016 -0.1933676 0.9238828 7.575915e-005 0.3826754 0.3826909 -0.000691013 0.9238762 -0.2291844 -0.9724344 0.04296253 -0.4426799 -0.8942416 -0.06607836 -0.3683781 -0.9087343 -0.1962131 -0.3828382 -0.0007047329 0.9238152 -0.3826734 -0.0008780002 0.9238833 -0.3828898 -0.0006504441 0.9237938 -0.6635096 -0.7458028 0.0594411 -0.674018 -0.736378 0.05871214 0.3815433 -0.0003594281 -0.9243509 -0.5619464 -0.7735374 -0.293012 -0.9478218 -0.2043417 -0.2447005 -0.642613 -0.1828534 -0.7440518 -0.6879364 -0.2148786 -0.693232 -0.6360235 -0.1783188 -0.7507839 -0.1962133 -0.4598723 -0.8660357 -0.3827336 0.000196454 -0.9238587 -0.3827885 0.0001634568 -0.923836 -0.3827122 0.0002093158 -0.9238676 -0.6885558 -0.7241758 -0.03821277 0.9237548 -0.001103737 -0.3829828 0.9239847 7.57675e-005 -0.3824294 0.9239506 -9.956233e-005 -0.3825117 -0.5421062 -0.8199332 -0.1839303 -0.197405 -0.9695855 -0.1446903 -0.2119807 -0.9765283 0.03816599 -0.3830089 -0.0005251448 0.9237445 -0.6877528 -0.7251332 -0.03432079 0.9237206 -0.001278902 -0.3830649 -0.2201302 -0.5263511 -0.8212778 -0.6032553 -0.1561681 -0.782109 -0.2723824 -0.400286 -0.8749737 -0.3826759 0.0002311086 -0.9238826 -0.1947324 -0.94986 -0.2446328 -0.9238758 -0.0005039795 0.3826921 -0.9239171 -0.0004410534 0.3825924 -0.9238951 -0.0004745438 0.3826454 -0.9239333 -0.0004163992 0.3825534 -0.07111867 -0.4354526 -0.897398 -0.2148892 -0.9194281 -0.3293548 -0.2139131 -0.2526478 -0.9436155 -0.2536356 -0.2707856 -0.9286249 -0.2397365 -0.3018362 -0.922725 -0.09144201 -0.38407 -0.9187647 -0.9238796 -0.0001541456 -0.3826834 -0.923885 -0.0001611791 -0.3826702 -0.92389 -0.0001676522 -0.3826581 -0.9238752 -0.000148589 -0.3826938 -0.1240048 -0.531312 -0.8380515 -0.007479847 -0.4758974 -0.879469 -0.4593632 -0.8882485 1.832828e-016 -0.459705 -0.8880684 0.002403771 -0.4622092 -0.8865308 0.0206359 -0.008184138 -0.4762411 -0.8792767 -0.4625389 -0.8862973 0.0231253 -0.09467513 -0.9955079 0.0007969207 1.03381e-006 -1 4.71635e-005 1.069002e-006 -1 0 0.07768317 -0.444619 -0.8923448 -0.09467087 -0.9955083 0.0008415427 0.09467521 -0.9955079 0.0008185834 0.09383744 -0.3831538 -0.9189057 0.09467084 -0.9955083 0.0008644186 0.1968166 -0.4591563 -0.8662787 0.4622117 -0.886529 0.02065422 0.4625417 -0.8862953 0.02314582 0.4597054 -0.8880682 0.002405926 0.2723748 -0.4002768 -0.8749803 0.1212707 -0.5342791 -0.8365639 0.4593633 -0.8882485 -5.498641e-016 0.3922078 -0.5878823 -0.7075079 0.213911 -0.2526465 -0.9436164 0.222638 -0.5277675 -0.8196913 0.6112328 -0.6503439 -0.4510513 0.5224371 -0.6621776 -0.5371967 0.253633 -0.2707816 -0.9286267 0.2103711 -0.9652963 -0.1547486 0.2217723 -0.9487771 -0.225031 0.1912952 -0.9305617 -0.3121875 0.6689013 -0.6182566 -0.4127104 0.2397362 -0.3018278 -0.9227278 0.6096294 -0.7409376 -0.2817154 0.5619521 -0.7735402 -0.292994 0.3618672 -0.9101047 -0.2018947 0.7180439 -0.6506796 -0.2470406 0.6946723 -0.6200655 -0.364622 0.6418142 -0.1683299 -0.7481574 0.6683029 -0.1210759 -0.7339699 0.6370054 -0.1764885 -0.7503839 0.3683091 -0.9284831 0.04761831 0.7607732 -0.6461442 -0.06100697 0.8137378 -0.5597557 -0.1565388 0.6163247 -0.2102946 -0.758894 0.5421111 -0.8199325 -0.1839193 0.4606909 -0.8856854 -0.05766506 0.2125597 -0.9763855 0.03859763 0.9441044 -0.1790709 -0.2767681 0.9655463 -0.1626772 -0.2031167 0.9313717 -0.2082894 -0.2986004 0.8350699 -0.5326344 -0.1376912 0.734515 -0.6772357 -0.04288977 -0.3258131 -0.07385288 -0.9425453 -0.3641422 -0.00519159 -0.9313289 -0.3229443 -0.07883001 -0.9431293 0.5635384 -0.8211676 0.09004554 0.1601437 -0.8514068 0.4994602 0.9732361 -0.1478608 -0.1759224 0.7837776 -0.610348 0.1147522 0.8865344 -0.4622445 0.01966887 0.3876915 0.01037722 -0.9217308 0.3324475 0.06280192 -0.9410285 0.3163235 0.07767554 -0.945466 -0.3667838 -0.0003014661 -0.9303062 -0.9238291 -0.001201311 -0.3828032 -0.9238348 -0.001085013 -0.3827898 -0.9238814 -0.0001202138 -0.3826788 -0.923882 2.21299e-006 0.3826776 -0.9238822 3.922477e-006 0.3826769 -0.9238822 3.922477e-006 0.3826769 0.5622615 -0.8231033 0.07976815 0.2039993 -0.9325662 0.2978331 0.9886689 -0.1291891 -0.07644615 0.988226 -0.1288868 -0.0824475 0.7879582 -0.6089668 0.09100113 0.9533597 -0.3012599 -0.01864886 0.3983353 3.096147e-016 -0.9172399 0.8731529 -0.4697475 -0.1301588 0.8936151 -0.3939277 -0.2151118 0.6634859 -0.7458262 0.05941174 0.6739948 -0.7364015 0.05868351 0.6113882 -0.7911989 -0.01445023 -0.923887 -3.92236e-006 -0.3826654 -0.9238819 1.961082e-006 0.3826777 -0.9238822 3.670552e-006 0.382677 -0.9238819 1.961082e-006 0.3826777 0.6561899 -0.7494893 0.08763907 0.1939593 -0.8183081 0.5410654 0.9938728 -0.1078563 -0.02416394 0.7962949 -0.5327511 0.2865148 0.9406621 -0.3352305 0.05268215 0.9238818 2.82611e-016 -0.3826781 0.9238818 2.82611e-016 -0.3826781 0.9238818 2.82611e-016 -0.3826781 0.5948541 -0.8026013 -0.04449434 0.5995211 -0.7998104 -0.02962725 0.8253803 -0.5621949 0.05180943 0.6877471 -0.7251384 -0.03432626 0.6885526 -0.7241788 -0.0382139 0.6542538 -0.7423076 -0.1446768 0.6370119 -0.7462129 -0.1933448 -0.3828248 5.692769e-007 0.923821 -0.3828284 4.734234e-006 0.9238195 -0.3828284 4.734234e-006 0.9238195 0.5695188 -0.8215389 0.02687426 0.2101752 -0.7109361 0.6711156 0.9936191 -0.1099846 -0.02499119 0.8082232 -0.5339074 0.2484316 0.976078 -0.2092105 0.0591843 0.923882 -6.712511e-007 -0.3826776 0.923882 -6.712511e-007 -0.3826776 0.923882 -6.712511e-007 -0.3826776 0.5925916 -0.8050461 -0.02712761 0.9185777 6.932876e-007 0.3952405 0.9190933 0.02368447 0.3933276 0.9187832 0.00696745 0.394701 0.9238996 -0.0004665999 0.3826348 0.9239327 -0.0004161431 0.3825549 0.9239186 -0.000437537 0.3825887 0.3828869 -0.0006419325 0.923795 0.3828365 -0.000694919 0.9238158 0.3830031 -0.0005196381 0.9237469 0.6165774 -0.7846196 -0.06484046 -0.3828243 -1.245851e-015 0.9238212 -0.3828277 3.953859e-006 0.9238197 -0.3828243 -1.245851e-015 0.9238212 0.6624492 -0.7454408 0.07402081 0.1920196 -0.6734074 0.7138984 0.05369065 -0.702108 0.7100434 -0.5545498 -0.2692092 0.7874014 -0.5545498 -0.2692092 0.7874014 -0.5545498 -0.2692092 0.7874014 0.9947533 -0.1022881 0.001743674 0.8182408 -0.4757408 0.3227269 0.9622891 -0.2558489 0.09241793 0.9051592 -0.4240728 -0.02913989 0.5195428 -0.8527741 -0.05339966 -0.3826557 -0.0005624614 0.9238908 -0.3826247 -0.0004562393 0.9239037 -0.382609 -0.0004022977 0.9239103 0.9191517 0.03216568 0.3925883 0.9238833 -0.0001488489 -0.3826743 0.9238851 -0.0001512163 -0.3826699 0.9238875 -0.0001542131 -0.3826643 0.9238828 -0.0004921434 0.3826752 0.3826757 -0.000864032 0.9238823 0.9238896 -0.000156971 -0.3826591 0.3827121 0.00021492 -0.9238676 0.3827823 0.0001727494 -0.9238386 0.3827318 0.0002030921 -0.9238595 0.6126823 -0.7885062 -0.05365051 0.3826814 -1.295285e-015 0.9238804 0.3826814 -1.295285e-015 0.9238804 0.3826814 -1.295285e-015 0.9238804 0.7061265 -0.7045344 0.07082837 0.2816014 -0.6288312 0.7247565 0.2624306 -0.6295071 0.731335 0.99456 -0.1039627 0.006485784 0.8372 -0.4682692 0.2825247 0.9779425 -0.1892001 0.08849738 0.6995139 -0.7118204 0.06318282 0.5151744 -0.8562507 -0.03781576 -0.3826898 -0.0006793186 0.9238766 0.3826814 -3.602455e-008 0.9238804 0.3826814 -3.602455e-008 0.9238804 0.3826814 -3.602455e-008 0.9238804 0.5781667 -0.8098113 -0.0996444 0.3826787 0.00023496 -0.9238815 -0.3833612 0.001416903 -0.9235974 -0.3830729 0.001159585 -0.9237174 -0.3826926 0.0008202193 -0.9238754 0.5947798 -0.7983761 -0.09398197 0.3133842 -0.6085826 0.7289839 0.9790558 -0.1864235 0.08182958 0.4948533 -0.5034848 0.7082536 0.4948533 -0.5034848 0.7082536 0.4948533 -0.5034848 0.7082536 -0.9239613 0.002158412 0.3824798 -0.9239613 0.002158412 0.3824798 -0.9239613 0.002158412 0.3824798 -0.3842176 0.002181685 -0.92324 0.3553425 -0.8182705 0.4518463 0.3553425 -0.8182705 0.4518463 0.3553425 -0.8182705 0.4518463 0.7665498 -0.517728 0.3799461 0.7665498 -0.517728 0.3799461 0.7665498 -0.517728 0.3799461 0.6927474 -0.7188984 0.05732464 0.6927474 -0.7188984 0.05732464 0.6927474 -0.7188984 0.05732464 -0.924046 0.002578324 -0.3822725 -0.924046 0.002578324 -0.3822725 -0.924046 0.002578324 -0.3822725 - - - - - - - - - - 0.1669922 0.3310547 0.1723633 0.3046875 0.1586914 0.3081055 0.222168 0.2651367 0.1987305 0.2382813 0.2114258 0.2651367 0.1723633 0.3046875 0.1630859 0.2739258 0.222168 0.2651367 0.2075195 0.2202148 0.1987305 0.2382813 0.1894531 0.2509766 0.1870117 0.2333984 0.1689453 0.2392578 0.1586914 0.3081055 0.1630859 0.2739258 0.1503906 0.2861328 0.2431641 0.2426758 0.2075195 0.2202148 0.222168 0.2651367 0.2075195 0.2202148 0.1962891 0.2241211 0.1987305 0.2382812 0.1870117 0.2333984 0.1582031 0.1845703 0.1689453 0.2392578 0.1503906 0.2861328 0.1630859 0.2739258 0.1425781 0.2333984 0.2431641 0.2426758 0.2226562 0.2089844 0.2075195 0.2202148 0.1860352 0.1757812 0.1962891 0.2241211 0.1689453 0.2392578 0.1582031 0.1845703 0.1425781 0.2333984 0.1757812 0.1767578 0.1357422 0.2714844 0.1503906 0.2861328 0.1425781 0.2333984 0.2543945 0.2285156 0.2226563 0.2089844 0.2431641 0.2426758 0.2226563 0.2089844 0.1953125 0.1708984 0.2075195 0.2202148 0.2075195 0.2202148 0.1953125 0.1708984 0.1860352 0.1757813 0.1582031 0.1845703 0.144043 0.1948242 0.1425781 0.2333984 0.1757813 0.1767578 0.1655273 0.1611328 0.1582031 0.1845703 0.1289063 0.2216797 0.1357422 0.2714844 0.1425781 0.2333984 0.2543945 0.2285156 0.2363281 0.1938477 0.2226563 0.2089844 0.2226563 0.2089844 0.2104492 0.1606445 0.1953125 0.1708984 0.1953125 0.1708984 0.1762695 0.1191406 0.1860352 0.1757812 0.2719727 0.1943359 0.2597656 0.2158203 0.2597656 0.2055664 0.1425781 0.2333984 0.144043 0.1948242 0.1289062 0.2216797 0.3461914 0.2275391 0.3461914 0.2138672 0.3588867 0.2158203 0.1757812 0.1767578 0.1655273 0.125 0.1655273 0.1611328 0.1235352 0.2636719 0.1357422 0.2714844 0.1289063 0.2216797 0.2363281 0.1938477 0.2104492 0.1606445 0.2226563 0.2089844 0.2104492 0.1606445 0.1879883 0.1157227 0.1953125 0.1708984 0.1953125 0.1708984 0.1879883 0.1157227 0.1762695 0.1191406 0.2719727 0.1943359 0.2597656 0.2055664 0.2719727 0.1875 0.3588867 0.2158203 0.3461914 0.2138672 0.3588867 0.2055664 0.1289063 0.2216797 0.144043 0.1948242 0.1303711 0.1860352 0.3461914 0.2275391 0.3339844 0.2089844 0.3461914 0.2138672 0.1655273 0.125 0.1586914 0.1396484 0.1655273 0.1611328 0.1235352 0.2636719 0.1289062 0.2216797 0.1240234 0.2099609 0.2363281 0.1938477 0.2250977 0.1518555 0.2104492 0.1606445 0.2104492 0.1606445 0.2041016 0.1137695 0.1879883 0.1157227 0.1879883 0.1157227 0.1870117 0.09033203 0.1762695 0.1191406 0.6811523 0.02880859 0.6777344 0.01367187 0.6738281 0.02050781 0.284668 0.1757812 0.2719727 0.1943359 0.2719727 0.1875 0.6777344 0.01367188 0.6699219 0.006347656 0.6699219 0.01708984 0.1289062 0.2216797 0.1303711 0.1860352 0.1240234 0.2099609 0.6699219 0.006347656 0.6621094 0.01269531 0.6660156 0.02001953 0.3461914 0.2275391 0.3339844 0.21875 0.3339844 0.2089844 0.1655273 0.125 0.1445313 0.1313477 0.1586914 0.1396484 0.1235352 0.2636719 0.1240234 0.2099609 0.1040039 0.2558594 0.2250977 0.1518555 0.2041016 0.1137695 0.2104492 0.1606445 0.2041016 0.1137695 0.1870117 0.09033203 0.1879883 0.1157227 0.1870117 0.09033203 0.1708984 0.1074219 0.1762695 0.1191406 0.6811523 0.02880859 0.6738281 0.02050781 0.6757812 0.02832031 0.6777344 0.01367188 0.6699219 0.01708984 0.6738281 0.02050781 0.284668 0.1757812 0.2719727 0.1875 0.284668 0.1708984 0.6699219 0.01708984 0.6699219 0.006347656 0.6660156 0.02001953 0.1240234 0.2099609 0.1303711 0.1860352 0.125 0.1640625 0.6660156 0.02001953 0.6621094 0.01269531 0.6640625 0.02734375 0.3222656 0.1928711 0.3339844 0.2089844 0.3339844 0.21875 0.3217773 0.1972656 0.3222656 0.1928711 0.3339844 0.21875 0.1445312 0.1313477 0.1655273 0.125 0.1611328 0.1152344 0.1040039 0.2558594 0.1240234 0.2099609 0.08935547 0.2192383 0.2250977 0.1518555 0.21875 0.1108398 0.2041016 0.1137695 0.2041016 0.1137695 0.199707 0.08496094 0.1870117 0.09033203 0.1650391 0.08496094 0.1455078 0.1108398 0.1611328 0.1152344 0.2802734 0.2036133 0.2714844 0.2172852 0.2714844 0.2250977 0.6811523 0.02880859 0.6757813 0.02832031 0.6777344 0.04296875 0.2714844 0.2250977 0.2714844 0.2172852 0.262207 0.2241211 0.284668 0.1757813 0.284668 0.1708984 0.296875 0.1704102 0.3261719 0.2250977 0.3349609 0.2241211 0.3261719 0.2197266 0.125 0.1640625 0.121582 0.1870117 0.1240234 0.2099609 0.3168945 0.2070312 0.3168945 0.2250977 0.3261719 0.2197266 0.6621094 0.01269531 0.6586914 0.02636719 0.6640625 0.02734375 0.309082 0.1733398 0.3222656 0.1928711 0.3217773 0.1972656 0.1445313 0.1313477 0.1611328 0.1152344 0.1455078 0.1108398 0.08935547 0.2192383 0.08984375 0.2324219 0.1040039 0.2558594 0.08935546 0.2192383 0.1240234 0.2099609 0.08935546 0.2099609 0.21875 0.1108398 0.199707 0.08496094 0.2041016 0.1137695 0.199707 0.08496094 0.1918945 0.07519531 0.1870117 0.09033203 0.1455078 0.1108398 0.1650391 0.08496094 0.1489258 0.06884766 0.2802734 0.2036133 0.2714844 0.2250977 0.2802734 0.2250977 0.6757812 0.02832031 0.6738281 0.03515625 0.6777344 0.04296875 0.284668 0.1708984 0.296875 0.1655273 0.296875 0.1704102 0.3168945 0.2250977 0.3261719 0.2250977 0.3261719 0.2197266 0.121582 0.1870117 0.125 0.1640625 0.1206055 0.1308594 0.1240234 0.2099609 0.121582 0.1870117 0.08935547 0.2099609 0.3076172 0.2250977 0.3168945 0.2250977 0.3168945 0.2070312 0.6660156 0.03466797 0.6640625 0.02734375 0.6586914 0.02636719 0.6660156 0.03466797 0.6586914 0.02636719 0.6621094 0.04248047 0.309082 0.1782227 0.309082 0.1733398 0.3217773 0.1972656 0.1445313 0.1313477 0.1455078 0.1108398 0.121582 0.109375 0.21875 0.1108398 0.215332 0.07958984 0.199707 0.08496094 0.1728516 0.06933594 0.1796875 0.07666016 0.1914063 0.05859375 0.1650391 0.08496094 0.1728516 0.06933594 0.1489258 0.06884766 0.1191406 0.04833984 0.1455078 0.1108398 0.1489258 0.06884766 0.2895508 0.1928711 0.2802734 0.2036133 0.2802734 0.2250977 0.6777344 0.04296875 0.6738281 0.03515625 0.6699219 0.04833984 0.309082 0.1782227 0.296875 0.1704102 0.296875 0.1655273 0.125 0.1640625 0.1308594 0.1411133 0.1206055 0.1308594 0.121582 0.1870117 0.1206055 0.1308594 0.08886719 0.1298828 0.08935547 0.2099609 0.121582 0.1870117 0.08935547 0.1865234 0.3076172 0.1948242 0.3076172 0.2250977 0.3168945 0.2070313 0.6699219 0.03808594 0.6660156 0.03466797 0.6621094 0.04248047 0.1308594 0.1411133 0.1445312 0.1313477 0.1206055 0.1308594 0.309082 0.1782227 0.296875 0.1655273 0.309082 0.1733398 0.1191406 0.04833984 0.121582 0.109375 0.1455078 0.1108398 0.1445313 0.1313477 0.121582 0.109375 0.1206055 0.1308594 0.1787109 0.04638672 0.1728516 0.06933594 0.1914062 0.05859375 0.1489258 0.06884766 0.1728516 0.06933594 0.1542969 0.05810547 0.1191406 0.04833984 0.1489258 0.06884766 0.1542969 0.05810547 0.2895508 0.1928711 0.2802734 0.2250977 0.2895508 0.2250977 0.6738281 0.03515625 0.6699219 0.03808594 0.6699219 0.04833984 0.121582 0.1870117 0.08886719 0.1298828 0.08935547 0.1865234 0.1206055 0.1308594 0.08886719 0.1103516 0.08886719 0.1298828 0.3076172 0.2250977 0.3076172 0.1948242 0.2988281 0.2250977 0.2988281 0.2250977 0.3076172 0.1948242 0.2988281 0.1889648 0.6699219 0.03808594 0.6621094 0.04248047 0.6699219 0.04833984 0.08837891 0.04589844 0.121582 0.109375 0.1191406 0.04833984 0.1206055 0.1308594 0.121582 0.109375 0.08886719 0.1103516 0.1655273 0.03759766 0.1728516 0.06933594 0.1787109 0.04638672 0.1542969 0.05810547 0.1655273 0.03759766 0.1171875 0.01220703 0.1191406 0.04833984 0.1542969 0.05810547 0.2895508 0.2250977 0.2988281 0.1889648 0.2895508 0.1928711 0.2988281 0.2250977 0.2988281 0.1889648 0.2895508 0.2250977 0.08837891 0.04589844 0.08886719 0.1103516 0.121582 0.109375 0.08837891 0.04589844 0.1191406 0.04833984 0.1015625 0.02490234 0.1171875 0.01220703 0.1542969 0.05810547 0.1655273 0.03759766 0.008789063 0.04638672 0.08837891 0.04589844 0.1015625 0.02490234 0.8378906 0.9858398 0.8378906 0.9692383 0.7910156 0.9858398 0.008789062 0.04638672 0.1015625 0.02490234 0.008789062 0.02490234 0.7910156 0.9858398 0.8378906 0.9692383 0.7915039 0.9692383 0.7910156 0.9858398 0.6967773 0.9707031 0.6967773 0.9873047 0.08837891 0.04589844 0.008789063 0.04638672 0.008789063 0.02490234 0.7910156 0.9858398 0.7915039 0.9692383 0.6967773 0.9707031 0.7910156 0.9858398 0.6967773 0.9873047 0.6967773 0.9707031 0.1015625 0.02490234 0.08837891 0.04589844 0.008789063 0.02490234 0.7910156 0.9858398 0.6967773 0.9707031 0.7915039 0.9692383 0.1191406 0.04833984 0.08837891 0.04589844 0.1015625 0.02490234 0.7910156 0.9858398 0.7915039 0.9692383 0.8378906 0.9692383 0.1542969 0.05810547 0.1191406 0.04833984 0.1171875 0.01220703 0.1191406 0.04833984 0.08886719 0.1103516 0.08837891 0.04589844 0.8378906 0.9858398 0.7910156 0.9858398 0.8378906 0.9692383 0.1542969 0.05810547 0.1489258 0.06884766 0.1191406 0.04833984 0.1655273 0.03759766 0.1542969 0.05810547 0.1171875 0.01220703 0.121582 0.109375 0.08886719 0.1103516 0.1191406 0.04833984 0.1728516 0.06933594 0.1489258 0.06884766 0.1542969 0.05810547 0.1489258 0.06884766 0.1455078 0.1108398 0.1728516 0.06933594 0.1542969 0.05810547 0.1655273 0.03759766 0.1455078 0.1108398 0.121582 0.109375 0.1191406 0.04833984 0.08886719 0.1298828 0.08886719 0.1103516 0.121582 0.109375 0.1650391 0.08496094 0.1489258 0.06884766 0.1728516 0.06933594 0.1650391 0.08496094 0.1455078 0.1108398 0.1728516 0.06933594 0.1655273 0.03759766 0.1787109 0.04638672 0.1445312 0.1313477 0.121582 0.109375 0.1455078 0.1108398 0.121582 0.109375 0.199707 0.08496094 0.1870117 0.09033203 0.1918945 0.07519531 0.1650391 0.08496094 0.1611328 0.1152344 0.1455078 0.1108398 0.1796875 0.07666016 0.1728516 0.06933594 0.1787109 0.04638672 0.1445312 0.1313477 0.1611328 0.1152344 0.1445312 0.1313477 0.1206055 0.1308594 0.121582 0.109375 0.121582 0.1870117 0.08886719 0.1298828 0.1206055 0.1308594 0.2041016 0.1137695 0.1870117 0.09033203 0.199707 0.08496094 0.1870117 0.09033203 0.1762695 0.1191406 0.1708984 0.1074219 0.1914063 0.05859375 0.1796875 0.07666016 0.1787109 0.04638672 0.1445312 0.1313477 0.1611328 0.1152344 0.1655273 0.125 0.1308594 0.1411133 0.1206055 0.1308594 0.1445312 0.1313477 0.121582 0.1870117 0.1206055 0.1308594 0.125 0.1640625 0.08935547 0.1865234 0.08886719 0.1298828 0.121582 0.1870117 0.215332 0.07958984 0.2041016 0.1137695 0.199707 0.08496094 0.2041016 0.1137695 0.1879883 0.1157227 0.1870117 0.09033203 0.1879883 0.1157227 0.1762695 0.1191406 0.1870117 0.09033203 0.1655273 0.125 0.1586914 0.1396484 0.1445312 0.1313477 0.3222656 0.1928711 0.309082 0.1782227 0.3217773 0.1972656 0.125 0.1640625 0.1206055 0.1308594 0.1308594 0.1411133 0.121582 0.1870117 0.125 0.1640625 0.1303711 0.1860352 0.1240234 0.2099609 0.08935547 0.1865234 0.121582 0.1870117 0.21875 0.1108398 0.2041016 0.1137695 0.215332 0.07958984 0.2104492 0.1606445 0.1879883 0.1157227 0.2041016 0.1137695 0.1879883 0.1157227 0.1860352 0.1757813 0.1762695 0.1191406 0.3339844 0.21875 0.3222656 0.1928711 0.3217773 0.1972656 0.1757813 0.1767578 0.1586914 0.1396484 0.1655273 0.125 0.3222656 0.1928711 0.309082 0.1733398 0.309082 0.1782227 0.309082 0.1782227 0.309082 0.1733398 0.296875 0.1704102 0.284668 0.1757812 0.296875 0.1704102 0.296875 0.1655273 0.1240234 0.2099609 0.121582 0.1870117 0.1303711 0.1860352 0.08935547 0.2099609 0.08935547 0.1865234 0.1240234 0.2099609 0.2250977 0.1518555 0.2041016 0.1137695 0.21875 0.1108398 0.2250977 0.1518555 0.2104492 0.1606445 0.2041016 0.1137695 0.2104492 0.1606445 0.1953125 0.1708984 0.1879883 0.1157227 0.1953125 0.1708984 0.1860352 0.1757813 0.1879883 0.1157227 0.3339844 0.2089844 0.3222656 0.1928711 0.3339844 0.21875 0.1757813 0.1767578 0.1655273 0.1611328 0.1586914 0.1396484 0.6660156 0.03466797 0.6621094 0.04248047 0.6586914 0.02636719 0.309082 0.1733398 0.296875 0.1655273 0.296875 0.1704102 0.284668 0.1757813 0.296875 0.1655273 0.284668 0.1708984 0.1240234 0.2099609 0.1303711 0.1860352 0.144043 0.1948242 0.08935547 0.2192383 0.08935547 0.2099609 0.1240234 0.2099609 0.2363281 0.1938477 0.2104492 0.1606445 0.2250977 0.1518555 0.2226563 0.2089844 0.1953125 0.1708984 0.2104492 0.1606445 0.1953125 0.1708984 0.1962891 0.2241211 0.1860352 0.1757813 0.3461914 0.2275391 0.3339844 0.2089844 0.3339844 0.21875 0.6621094 0.01269531 0.6640625 0.02734375 0.6586914 0.02636719 0.1757813 0.1767578 0.1582031 0.1845703 0.1655273 0.1611328 0.6699219 0.03808594 0.6621094 0.04248047 0.6660156 0.03466797 0.6660156 0.03466797 0.6586914 0.02636719 0.6640625 0.02734375 0.6699219 0.04833984 0.6621094 0.04248047 0.6699219 0.03808594 0.6777344 0.04296875 0.6699219 0.04833984 0.6738281 0.03515625 0.2719727 0.1943359 0.284668 0.1757812 0.284668 0.1708984 0.1289062 0.2216797 0.1240234 0.2099609 0.144043 0.1948242 0.1040039 0.2558594 0.08935547 0.2192383 0.1240234 0.2099609 0.2363281 0.1938477 0.2226562 0.2089844 0.2104492 0.1606445 0.2226563 0.2089844 0.2075195 0.2202148 0.1953125 0.1708984 0.2075195 0.2202148 0.1962891 0.2241211 0.1953125 0.1708984 0.1870117 0.2333984 0.1582031 0.1845703 0.1757813 0.1767578 0.3461914 0.2275391 0.3461914 0.2138672 0.3339844 0.2089844 0.6660156 0.02001953 0.6640625 0.02734375 0.6621094 0.01269531 0.3461914 0.2275391 0.3588867 0.2158203 0.3461914 0.2138672 0.2988281 0.2250977 0.2988281 0.1889648 0.3076172 0.1948242 0.3168945 0.2070312 0.3076172 0.2250977 0.3076172 0.1948242 0.6738281 0.03515625 0.6699219 0.04833984 0.6699219 0.03808594 0.6757812 0.02832031 0.6777344 0.04296875 0.6738281 0.03515625 0.2719727 0.1943359 0.284668 0.1708984 0.2719727 0.1875 0.1425781 0.2333984 0.1289062 0.2216797 0.144043 0.1948242 0.1235352 0.2636719 0.1240234 0.2099609 0.1289063 0.2216797 0.1040039 0.2558594 0.08984375 0.2324219 0.08935547 0.2192383 0.1235352 0.2636719 0.1040039 0.2558594 0.1240234 0.2099609 0.2543945 0.2285156 0.2226562 0.2089844 0.2363281 0.1938477 0.2431641 0.2426758 0.2075195 0.2202148 0.2226562 0.2089844 0.2075195 0.2202148 0.1987305 0.2382812 0.1962891 0.2241211 0.1870117 0.2333984 0.1689453 0.2392578 0.1582031 0.1845703 0.6699219 0.006347656 0.6660156 0.02001953 0.6621094 0.01269531 0.3261719 0.2197266 0.3168945 0.2250977 0.3168945 0.2070312 0.3588867 0.2158203 0.3588867 0.2055664 0.3461914 0.2138672 0.2988281 0.2250977 0.2895508 0.2250977 0.2988281 0.1889648 0.2988281 0.2250977 0.3076172 0.1948242 0.3076172 0.2250977 0.3168945 0.2250977 0.3076172 0.2250977 0.3168945 0.2070312 0.2895508 0.2250977 0.2895508 0.1928711 0.2988281 0.1889648 0.2802734 0.2250977 0.2802734 0.2036133 0.2895508 0.1928711 0.6811523 0.02880859 0.6777344 0.04296875 0.6757812 0.02832031 0.2597656 0.2158203 0.2719727 0.1943359 0.2719727 0.1875 0.1582031 0.1845703 0.1425781 0.2333984 0.144043 0.1948242 0.1425781 0.2333984 0.1357422 0.2714844 0.1289062 0.2216797 0.1357422 0.2714844 0.1235352 0.2636719 0.1289062 0.2216797 0.2543945 0.2285156 0.2431641 0.2426758 0.2226563 0.2089844 0.2431641 0.2426758 0.222168 0.2651367 0.2075195 0.2202148 0.222168 0.2651367 0.1987305 0.2382812 0.2075195 0.2202148 0.1894531 0.2509766 0.1689453 0.2392578 0.1870117 0.2333984 0.1689453 0.2392578 0.1425781 0.2333984 0.1582031 0.1845703 0.6699219 0.01708984 0.6660156 0.02001953 0.6699219 0.006347656 0.3261719 0.2250977 0.3168945 0.2250977 0.3261719 0.2197266 0.2597656 0.2055664 0.2597656 0.2158203 0.2719727 0.1875 0.6777344 0.01367187 0.6699219 0.01708984 0.6699219 0.006347656 0.2802734 0.2250977 0.2895508 0.1928711 0.2895508 0.2250977 0.2714844 0.2250977 0.2802734 0.2036133 0.2802734 0.2250977 0.6811523 0.02880859 0.6757813 0.02832031 0.6738281 0.02050781 0.1630859 0.2739258 0.1357422 0.2714844 0.1425781 0.2333984 0.222168 0.2651367 0.2114258 0.2651367 0.1987305 0.2382812 0.1723633 0.3046875 0.1503906 0.2861328 0.1630859 0.2739258 0.3261719 0.2250977 0.3261719 0.2197266 0.3349609 0.2241211 0.6811523 0.02880859 0.6738281 0.02050781 0.6777344 0.01367187 0.6777344 0.01367188 0.6738281 0.02050781 0.6699219 0.01708984 0.2714844 0.2250977 0.2714844 0.2172852 0.2802734 0.2036133 0.1503906 0.2861328 0.1357422 0.2714844 0.1630859 0.2739258 0.1669922 0.3310547 0.1586914 0.3081055 0.1723633 0.3046875 0.1503906 0.2861328 0.1723633 0.3046875 0.2714844 0.2250977 0.262207 0.2241211 0.2714844 0.2172852 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 1 4 4 5 1 6 5 7 2 2 3 8 6 9 1 10 1 11 7 12 5 13 8 14 9 15 10 16 11 17 6 18 12 19 6 20 7 21 1 22 7 23 13 24 5 25 10 26 9 27 14 28 11 29 15 30 6 9 6 31 16 32 7 33 17 34 18 35 19 36 7 12 16 37 13 24 20 38 10 39 14 40 21 41 22 42 23 43 15 44 24 45 6 46 6 47 24 48 16 49 18 50 25 51 19 52 16 53 26 54 13 55 27 56 20 57 14 58 21 59 28 60 22 61 15 62 29 63 24 64 24 65 30 66 16 67 31 68 32 69 33 70 19 71 25 72 34 73 35 74 36 75 37 76 16 77 30 78 26 79 38 80 20 81 27 82 28 83 39 84 22 85 29 86 40 87 24 88 24 89 40 90 30 91 41 92 42 93 43 94 37 95 36 96 44 97 34 98 25 99 45 100 46 101 47 102 48 103 30 104 49 105 26 106 38 107 27 108 50 109 28 110 51 111 39 112 29 113 52 114 40 115 40 116 53 117 30 118 54 119 55 120 56 121 57 122 58 123 59 124 55 125 60 126 61 127 34 128 45 129 62 130 60 131 63 132 64 133 46 134 65 135 47 136 30 137 66 138 49 139 38 140 50 141 67 142 51 143 68 144 39 145 52 146 53 147 40 148 53 149 69 150 30 151 54 152 56 153 70 154 55 155 61 156 56 157 71 158 72 159 73 160 61 161 60 162 64 163 62 164 45 165 74 166 64 167 63 168 75 169 76 170 77 171 78 172 79 173 76 174 78 175 66 176 30 177 69 178 67 179 50 180 80 181 51 182 81 183 68 184 52 185 82 186 53 187 53 188 83 189 69 190 84 191 85 192 86 193 54 194 70 195 87 196 88 197 89 198 90 199 91 200 92 201 93 202 94 203 95 204 96 205 97 206 98 207 99 208 100 209 101 210 102 211 63 212 103 213 75 214 104 215 105 216 106 217 66 218 69 219 83 220 107 221 108 222 109 223 80 224 50 225 110 226 81 227 111 228 68 229 82 230 112 231 53 232 83 233 53 234 113 235 84 236 86 237 114 238 70 239 115 240 87 241 92 242 116 243 93 244 101 245 117 246 102 247 118 248 119 249 120 250 50 251 118 252 110 253 121 254 122 255 123 256 124 257 75 258 103 259 124 260 103 261 125 262 126 263 104 264 106 265 66 266 83 267 127 268 81 269 128 270 111 271 129 272 130 273 131 274 53 275 112 276 113 277 132 278 83 279 113 280 133 281 134 282 135 283 87 284 115 285 136 286 137 287 138 288 139 289 119 290 140 291 120 292 118 293 120 294 141 295 110 296 118 297 142 298 143 299 121 300 123 301 144 302 124 303 125 304 140 305 66 306 120 307 137 308 139 309 145 310 132 311 146 312 83 313 66 314 127 315 120 316 147 317 129 318 131 319 113 320 112 321 148 322 132 323 113 324 148 325 133 326 135 327 149 328 115 329 144 330 136 331 118 332 141 333 142 334 120 335 150 336 141 337 151 338 152 339 153 340 153 341 152 342 154 343 144 344 125 345 136 346 155 347 146 348 132 349 120 350 156 351 150 352 157 353 158 354 159 355 148 356 158 318 157 357 160 358 132 359 148 360 161 361 162 362 163 363 164 364 162 365 161 366 155 367 165 368 146 369 155 370 132 371 160 372 160 373 148 374 157 375 166 376 155 377 160 378 167 379 168 380 169 381 166 382 160 383 170 384 169 385 168 386 171 387 172 388 173 389 174 390 175 391 166 392 170 393 172 394 176 395 173 396 177 397 174 398 173 399 178 400 175 401 170 402 177 403 173 404 179 405 180 406 175 407 178 408 181 409 182 410 183 411 184 412 180 413 178 414 180 415 185 416 175 417 186 418 181 419 183 420 184 421 187 422 180 423 188 424 184 425 178 426 189 427 185 428 180 429 190 430 187 431 184 432 187 433 191 434 180 406 192 435 184 436 188 437 191 438 189 439 180 440 193 441 194 442 195 443 196 444 187 445 190 446 196 447 191 448 187 445 192 449 188 450 197 451 198 452 199 453 191 454 200 250 193 333 195 455 201 456 196 457 190 458 196 459 202 460 191 461 203 462 204 463 205 464 198 465 191 448 202 466 198 467 200 468 199 469 206 470 193 471 200 472 207 473 196 474 201 475 196 476 208 477 202 478 209 479 203 480 205 481 198 482 202 483 208 484 210 485 200 486 198 487 206 488 200 489 211 490 212 491 193 492 206 493 213 494 214 495 215 496 207 497 216 498 196 499 216 500 208 501 196 502 208 503 217 504 198 505 218 506 219 507 220 508 211 509 200 510 210 511 206 512 211 513 221 514 222 515 212 516 206 517 223 518 214 519 213 520 224 521 216 522 207 523 216 524 225 525 208 526 226 527 227 528 228 529 225 530 217 531 208 532 218 533 229 534 219 535 230 536 231 537 232 538 233 539 234 540 235 541 236 542 206 543 221 544 237 545 212 546 222 547 238 548 214 549 223 550 238 551 239 552 214 553 224 554 240 555 216 556 241 557 225 558 216 559 242 560 227 561 226 562 225 563 243 564 244 565 245 566 246 567 247 568 231 569 248 570 232 571 249 572 250 573 251 574 236 575 221 576 252 577 253 578 237 579 222 580 254 581 239 582 238 583 255 584 240 585 224 586 241 587 256 588 225 589 257 590 258 591 259 592 260 593 261 594 247 595 225 596 262 597 243 598 263 599 246 600 245 601 245 602 247 603 261 604 264 605 246 606 263 607 265 608 264 609 266 610 267 611 268 612 269 613 270 614 236 615 252 616 271 617 253 618 222 619 254 620 272 621 239 622 255 623 273 624 240 625 274 626 256 627 241 628 256 629 262 630 225 631 275 632 276 633 277 634 278 635 261 636 260 637 279 638 280 639 281 640 282 641 283 642 284 643 285 644 286 645 287 646 266 647 264 648 263 649 288 650 265 651 266 652 289 653 290 654 291 655 292 656 270 657 252 658 293 659 222 660 294 661 295 662 296 663 297 664 293 665 271 666 222 667 298 668 272 669 254 670 299 671 273 672 255 673 274 674 300 675 256 676 256 677 301 678 262 679 302 680 278 681 260 682 303 683 304 684 305 685 280 686 306 687 281 688 307 689 308 690 309 691 282 692 284 693 310 694 311 695 286 696 285 697 308 698 312 699 309 700 313 701 314 702 315 703 316 704 265 705 288 706 317 707 318 708 319 709 320 710 292 711 252 712 321 713 322 714 294 715 322 716 293 717 294 718 298 719 323 720 272 721 299 722 324 723 273 724 325 725 300 726 274 727 300 728 301 729 256 730 326 731 292 732 320 733 327 734 278 735 302 736 328 737 304 738 303 739 329 740 330 741 331 742 332 743 327 744 302 745 313 746 315 747 333 748 334 749 335 750 336 751 316 752 288 753 337 754 338 755 322 756 321 757 325 758 339 759 300 760 340 761 341 762 342 763 343 764 344 765 345 766 316 767 337 768 332 769 332 770 337 771 327 772 334 773 346 774 335 775 347 776 348 777 349 778 350 779 351 780 352 781 353 14 354 782 355 783 356 784 357 785 358 786

-
-
-
- - - - -422.4821 -444.8067 1.659833 -422.4658 -444.4176 -1.650419 -408.674 -445.1229 -1.747239 -408.6741 -445.5122 1.810807 -394.866 -444.8068 1.659831 -394.8824 -444.4176 -1.650414 - - - - - - - - - - -0.05121762 -0.9919842 -0.1155167 -0.05153854 -0.9918134 -0.1168332 -8.620066e-007 -0.9939306 -0.1100092 -1.747772e-006 -0.994067 -0.1087694 0.05121733 -0.9919831 -0.115526 0.05153874 -0.991812 -0.1168445 - - - - - - - - - - 0.5390625 0.8842773 0.5390625 0.8657227 0.4907227 0.8657227 0.4907227 0.8842773 0.5390625 0.8842773 0.4907227 0.8657227 0.4907227 0.8657227 0.5390625 0.8842773 0.5390625 0.8842773 0.4907227 0.8657227 0.5390625 0.8657227 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 0 4 2 5 3 3 2 6 4 7 4 8 2 9 5 10

-
-
-
- - - - -408.6739 -456.0088 2.903348 -408.6739 -455.9496 0.7783518 -400.7653 -455.6712 0.7783506 -416.5826 -455.6711 0.7783506 -394.8659 -453.6906 0.3811498 -400.7653 -455.6712 0.7783506 -408.6739 -455.9496 0.7783518 -400.7653 -455.7287 2.90334 -416.5826 -455.7287 2.903341 -416.5826 -455.6711 0.7783506 -408.674 -454.396 0.5321253 -394.2637 -454.8259 0.7783553 -400.7653 -455.3724 5.246644 -394.2637 -454.8259 0.7783553 -408.674 -455.6778 5.246658 -423.0842 -454.8259 0.7783518 -422.482 -453.6905 0.3811522 -393.7666 -454.7413 0.2301767 -394.2637 -454.8259 0.7783553 -394.8659 -453.6906 0.3811498 -392.0456 -454.3245 5.246648 -392.1281 -454.7152 2.903347 -416.5826 -455.3724 5.246646 -425.2198 -454.7152 2.903334 -423.0842 -454.8259 0.7783518 -393.7666 -454.7413 0.2301767 -394.8659 -453.6906 0.3811498 -394.8822 -453.3014 -2.929095 -393.7666 -454.7413 0.2301767 -400.7653 -454.9577 6.027519 -392.0165 -453.8869 6.073028 -408.674 -455.2816 5.986397 -425.3023 -454.3245 5.246646 -423.5813 -454.7413 0.2301791 -422.482 -453.6905 0.3811522 -423.0842 -454.8259 0.7783518 -423.5813 -454.7413 0.2301791 -393.7785 -454.5346 -2.655015 -393.7785 -454.5346 -2.655015 -416.5826 -454.9576 6.02752 -425.0391 -454.346 -2.666918 -422.482 -453.6905 0.3811522 -423.5813 -454.7413 0.2301791 -423.5694 -454.5346 -2.655011 -392.3088 -454.346 -2.66692 -394.8822 -453.3014 -2.929095 -394.284 -454.4719 -3.203182 -393.7785 -454.5346 -2.655015 -391.9548 -452.5887 6.560294 -400.7653 -454.9577 6.027519 -392.0165 -453.8869 6.073028 -408.674 -454.0053 6.472424 -408.674 -455.2816 5.986397 -416.5826 -453.6734 6.513992 -416.5826 -454.9576 6.02752 -425.3314 -453.8869 6.073022 -423.5694 -454.5346 -2.655011 -422.4656 -453.3014 -2.9291 -394.284 -454.4719 -3.203182 -394.284 -454.4719 -3.203182 -394.8822 -453.3014 -2.929095 -400.7653 -455.3289 -3.203187 -400.7653 -453.6734 6.513984 -425.3931 -452.5886 6.560293 -425.3314 -453.8869 6.073022 -424.9553 -453.9505 -4.417066 -422.4656 -453.3014 -2.9291 -423.5694 -454.5346 -2.655011 -423.0639 -454.4719 -3.203185 -392.3926 -453.9505 -4.417066 -400.7653 -455.3289 -3.203187 -408.674 -455.6236 -3.20318 -423.0639 -454.4719 -3.203185 -416.5826 -455.3289 -3.203189 -422.4656 -453.3014 -2.9291 -423.0639 -454.4719 -3.203185 -400.7653 -454.8199 -4.360798 -408.674 -455.6236 -3.20318 -408.6739 -454.0067 -3.02592 -416.5826 -454.8199 -4.360801 -416.5826 -455.3289 -3.203189 -392.3926 -453.9505 -4.417066 -400.7653 -454.8199 -4.360798 -392.5137 -449.0985 -7.511052 -408.674 -454.9749 -4.307314 -416.5826 -454.8199 -4.360801 -424.9553 -453.9505 -4.417066 -424.8343 -449.0985 -7.511052 -408.674 -450.2633 -7.554782 -408.674 -454.9749 -4.307314 - - - - - - - - - - 0.0006425663 -0.9983934 0.05665941 -4.575723e-006 -0.999613 -0.02781761 0.08227055 -0.9962434 -0.02703042 -0.08226552 -0.9962429 -0.02706265 0.03527467 -0.2946912 -0.9549413 0.00989437 -0.2248669 -0.9743393 -0.003712709 -0.1591725 -0.9872438 0.07878285 -0.9950799 0.0600765 -0.07942982 -0.9950592 0.05956582 -0.002378091 -0.19983 -0.9798277 -0.003739656 -0.1590425 -0.9872647 0.04041011 -0.3108011 -0.9496155 0.07406226 -0.9473456 0.3115304 0.1135745 -0.9918085 -0.05845226 0.0005735792 -0.9507625 0.3099198 -0.1135737 -0.9918085 -0.05845529 -0.03467608 -0.2947921 -0.954932 -0.5877305 -0.5266151 -0.6142063 -0.5877305 -0.5266151 -0.6142063 -0.5877305 -0.5266151 -0.6142063 0.1119056 -0.9404439 0.3210021 0.117873 -0.9917695 0.04999263 -0.07472362 -0.9470964 0.3121294 -0.1179098 -0.9917583 0.05012746 -0.04040444 -0.3107891 -0.9496197 0.1238821 -0.9900826 -0.06625454 -0.6944915 -0.7149699 -0.08062008 -0.7250516 -0.6863495 -0.05678436 -0.7077738 -0.7029188 -0.07043729 0.07056075 -0.8809098 0.4679948 0.1057391 -0.8801528 0.4627637 -0.0001834451 -0.8815871 0.4720214 -0.1116782 -0.940422 0.3211457 -0.1217595 -0.9904037 -0.06538385 0.5877277 -0.5266138 -0.6142101 0.5877277 -0.5266138 -0.6142101 0.5877277 -0.5266138 -0.6142101 0.1248157 -0.9790146 -0.1610948 -0.739365 -0.671793 -0.0450956 -0.07063339 -0.8810107 0.4677938 -0.1252661 -0.9811092 -0.1474214 0.7073544 -0.7045182 -0.05748022 0.693642 -0.7186763 -0.0486327 0.7240194 -0.6863705 -0.06849448 0.1248865 -0.9812579 -0.1467526 -0.6728165 -0.476414 0.5659926 -0.6728165 -0.476414 0.5659926 -0.6728165 -0.476414 0.5659926 0.03834883 -0.3528708 0.9348859 0.02355237 -0.3541686 0.9348849 0.0383106 -0.3527401 0.9349368 -0.000139436 -0.3557889 0.9345663 -0.000131177 -0.3557863 0.9345673 -0.02489486 -0.3542262 0.9348283 -0.02340868 -0.3540915 0.9349178 -0.1053396 -0.8803363 0.4625057 -0.1245446 -0.9788971 -0.1620159 0.7345779 -0.6742959 -0.07563314 0.1260173 -0.9675345 -0.2190814 0.02831773 -0.2141668 0.9763865 0.02467218 -0.20268 0.9789342 0.007116629 -0.1542194 0.988011 0.02501545 -0.3541246 0.9348636 -0.03834791 -0.3528679 0.934887 -0.03830905 -0.352735 0.9349387 -0.1137262 -0.9648138 -0.2370669 0.67282 -0.4764138 0.5659886 0.67282 -0.4764138 0.5659886 0.67282 -0.4764138 0.5659886 0.1213364 -0.9634107 -0.2389923 0.06419793 -0.917115 -0.3934193 -0.002435616 -0.1107253 0.9938481 -0.1079905 -0.961135 -0.2540817 -0.002069797 -0.1374215 0.9905105 -0.02426669 -0.2027545 0.9789289 -0.0283175 -0.214165 0.9763869 0.06259347 -0.9112445 -0.4070816 -0.008267978 -0.8651731 -0.5014052 -0.002452097 -0.1106374 0.9938578 -0.06755751 -0.9168776 -0.3934099 -0.06751808 -0.910882 -0.407106 0.05000842 -0.5361025 -0.8426703 0.03491098 -0.5364943 -0.8431816 0.0461129 -0.5320264 -0.8454712 -0.00848771 -0.8651225 -0.5014888 -0.01234974 -0.495898 -0.8682929 -0.05000824 -0.5361028 -0.8426702 -0.04015647 -0.5341364 -0.844444 -0.01162733 -0.5590656 -0.8290419 -0.01405872 -0.557976 -0.829738 - - - - - - - - - - 0.008789062 0.1826172 0.008789062 0.1586914 0.046875 0.1586914 0.008789062 0.1826172 0.008789062 0.1586914 0.07128904 0.1508789 0.04687498 0.1586914 0.00878906 0.1586914 0.046875 0.1845703 0.008789063 0.1826172 0.046875 0.1845703 0.046875 0.1586914 0.008789062 0.1586914 0.046875 0.1586914 0.008789062 0.1450195 0.07128906 0.1508789 0.008789063 0.1586914 0.008789063 0.1450195 0.08056641 0.1586914 0.046875 0.1586914 0.07128906 0.1508789 0.04736328 0.2080078 0.008789063 0.1826172 0.046875 0.1845703 0.046875 0.1845703 0.046875 0.1586914 0.08056641 0.1586914 0.008789063 0.2084961 0.046875 0.1845703 0.008789063 0.1826172 0.046875 0.1845703 0.08056641 0.1586914 0.046875 0.1586914 0.008789062 0.1450195 0.046875 0.1586914 0.07128906 0.1508789 0.08300781 0.1547852 0.08056641 0.1586914 0.07128906 0.1508789 0.008789063 0.2084961 0.008789063 0.1826172 0.04736328 0.2080078 0.08935547 0.2099609 0.04736328 0.2080078 0.046875 0.1845703 0.08935547 0.1865234 0.046875 0.1845703 0.008789063 0.2084961 0.04736328 0.2080078 0.046875 0.1845703 0.08935547 0.1865234 0.08056641 0.1586914 0.04687503 0.1586915 0.08056646 0.1586915 0.07128911 0.150879 0.08935547 0.1865234 0.08056641 0.1586914 0.08300781 0.1547852 0.07128906 0.1508789 0.07177734 0.1362305 0.08300781 0.1547852 0.04736328 0.2172852 0.008789063 0.2084961 0.046875 0.1845703 0.08935547 0.1865234 0.08935547 0.2192383 0.04736328 0.2080078 0.08935547 0.2099609 0.008789063 0.21875 0.04736328 0.2080078 0.008789063 0.2084961 0.08935547 0.2099609 0.046875 0.1845703 0.04736328 0.2080078 0.08935547 0.2099609 0.08935547 0.1865234 0.046875 0.1845703 0.08935547 0.1865234 0.08300781 0.1547852 0.08056641 0.1586914 0.07128906 0.1508789 0.08056641 0.1586914 0.08300781 0.1547852 0.08935547 0.1865234 0.08300781 0.1547852 0.08300781 0.1293945 0.07177734 0.1362305 0.08300781 0.1293945 0.08300781 0.1547852 0.08935547 0.2192383 0.04736328 0.2172852 0.04736328 0.2080078 0.04736328 0.2172852 0.008789063 0.21875 0.008789063 0.2084961 0.04736328 0.2172852 0.04736328 0.2080078 0.008789063 0.21875 0.04736328 0.2172852 0.08935547 0.2099609 0.04736328 0.2080078 0.08935547 0.1865234 0.08886719 0.1298828 0.08300781 0.1547852 0.07128906 0.1508789 0.08300781 0.1547852 0.08300781 0.1293945 0.08935547 0.1865234 0.08300781 0.1293945 0.08886719 0.1298828 0.07177734 0.1362305 0.08105469 0.1181641 0.08300781 0.1293945 0.08984375 0.2324219 0.04736328 0.2172852 0.08935547 0.2192383 0.04736328 0.2172852 0.008789063 0.2329102 0.008789063 0.21875 0.008789063 0.21875 0.04785156 0.230957 0.04736328 0.2172852 0.08935547 0.2192383 0.08935547 0.2099609 0.04736328 0.2172852 0.08300781 0.1547852 0.08886719 0.1298828 0.08300781 0.1293945 0.07177734 0.1362305 0.07128906 0.1508789 0.08300781 0.1293945 0.08300781 0.1293945 0.08105469 0.1181641 0.08886719 0.1298828 0.08105469 0.1181641 0.07177734 0.1362305 0.04736328 0.1181641 0.04785156 0.230957 0.04736328 0.2172852 0.04736328 0.2172852 0.04785156 0.230957 0.008789062 0.2329102 0.008789062 0.2329102 0.04785156 0.230957 0.008789062 0.21875 0.04736328 0.2172852 0.04785156 0.230957 0.08984375 0.2324219 0.04736328 0.2172852 0.08984375 0.2324219 0.08935547 0.2192383 0.08300781 0.1293945 0.08886719 0.1298828 0.08886719 0.1103516 0.07177734 0.1362305 0.08300781 0.1293945 0.08105469 0.1181641 0.08886719 0.1298828 0.08105469 0.1181641 0.08886719 0.1103516 0.08105471 0.1181641 0.04736329 0.1181641 0.08886721 0.1103516 0.07177734 0.1362305 0.008789062 0.1181641 0.04736328 0.1181641 0.08300781 0.1293945 0.08886719 0.1103516 0.08105469 0.1181641 0.04736328 0.1181641 0.07177734 0.1362305 0.08105469 0.1181641 0.04736328 0.1181641 0.04833984 0.1103516 0.08886719 0.1103516 0.008789064 0.1181641 0.04833985 0.1103516 0.04736329 0.1181641 0.07177734 0.1362305 0.008789062 0.1367187 0.008789062 0.1181641 0.08105469 0.1181641 0.08886719 0.1103516 0.04833984 0.1103516 0.08105468 0.1181641 0.04833984 0.1103516 0.04736328 0.1181641 0.008789063 0.1367188 0.07177734 0.1362305 0.04736328 0.1181641 0.08886719 0.1103516 0.04833984 0.1103516 0.08837891 0.04589844 0.008789063 0.1181641 0.008789063 0.1103516 0.04833984 0.1103516 0.008789066 0.1367188 0.0473633 0.1181641 0.008789066 0.1181641 0.04833984 0.1103516 0.08886719 0.1103516 0.08837891 0.04589844 0.04736328 0.1181641 0.04833984 0.1103516 0.008789062 0.1103516 0.08837891 0.04589844 0.04833984 0.1103516 0.008789063 0.04638672 0.04833984 0.1103516 0.008789062 0.1103516 0.008789062 0.04638672 0.008789062 0.1181641 0.04736328 0.1181641 0.008789062 0.1103516 0.008789063 0.1103516 0.04833984 0.1103516 0.08837891 0.04589844 0.008789063 0.1103516 0.08837891 0.04589844 0.008789063 0.04638672 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 3 2 1 4 4 5 5 6 6 7 0 3 2 2 7 8 0 9 8 10 3 11 6 12 9 13 10 14 4 15 6 16 10 17 11 18 5 19 4 20 12 21 0 22 7 23 7 24 2 25 13 26 14 27 8 28 0 29 8 30 15 31 3 32 10 33 9 34 16 35 17 36 18 37 19 38 14 39 0 40 12 41 20 42 12 43 7 44 21 45 7 46 13 37 14 47 22 48 8 30 8 49 23 50 15 51 9 52 24 53 16 54 21 55 13 56 25 57 26 58 27 59 28 60 29 61 14 62 12 43 20 42 7 63 21 64 30 65 12 66 20 67 31 68 22 69 14 70 32 71 8 72 22 73 32 74 23 75 8 76 23 77 33 78 15 79 34 80 35 81 36 82 21 83 25 84 37 85 27 86 38 87 28 88 30 89 29 90 12 91 29 92 31 93 14 94 39 95 22 96 31 97 39 98 32 99 22 100 23 101 40 102 33 103 41 104 42 105 43 106 21 107 37 108 44 109 45 110 46 111 47 112 48 113 49 114 50 115 49 116 51 117 52 118 52 119 53 120 54 121 55 122 32 123 39 124 33 125 40 126 56 127 57 128 41 129 43 130 37 131 58 132 44 133 59 134 60 135 61 136 48 113 62 137 49 138 49 139 62 140 51 141 51 142 53 143 52 144 54 145 53 146 63 147 54 148 63 149 64 150 56 151 40 152 65 153 66 154 67 155 68 156 44 157 58 158 69 159 58 160 70 161 69 162 60 163 71 164 61 165 56 166 65 167 72 168 73 169 74 170 75 171 70 172 76 173 69 174 77 175 76 176 70 177 60 178 78 179 71 180 72 181 65 182 79 183 72 184 79 185 80 186 78 187 74 188 73 189 81 190 82 191 83 192 77 193 84 194 76 195 78 196 73 197 71 198 85 199 86 200 87 201 80 202 79 203 84 204 83 205 82 206 88 207 82 208 89 209 88 210 77 211 80 212 84 213 89 214 85 215 87 216 89 217 87 218 88 219

-
-
-
- - - - -400.297 -453.96 -3.35294 -400.3046 -454.3795 0.606997 -400.4272 -454.4319 -3.352942 -400.4272 -454.8546 0.6273141 -400.4272 -454.8546 0.6273141 -400.7857 -454.4319 -3.352945 -400.4272 -454.4319 -3.352942 -400.7857 -454.8546 0.6273141 -400.7857 -454.4319 -3.352945 -400.4272 -454.8546 0.6273141 -400.9159 -453.96 -3.352945 -400.7857 -454.4319 -3.352945 -400.7857 -454.8546 0.6273141 -400.9083 -454.3795 0.606997 - - - - - - - - - - 0.9636453 -0.2658859 -0.02631486 0.9674082 -0.251819 -0.02661741 0.9639508 -0.2647737 -0.02633903 0.967691 -0.2507277 -0.0266406 6.914644e-007 -0.9944063 -0.1056226 6.914644e-007 -0.9944063 -0.1056226 6.914644e-007 -0.9944063 -0.1056226 0 -0.9944063 -0.1056225 0 -0.9944063 -0.1056225 0 -0.9944063 -0.1056225 -0.9639414 -0.2646426 -0.02795234 -0.9635946 -0.2658721 -0.02824004 -0.9674075 -0.2519882 -0.02499448 -0.9677457 -0.2507154 -0.02469731 - - - - - - - - - - 0.05126956 0.5454104 0.05126956 0.6347659 0.04589846 0.5454104 0.05126953 0.6347656 0.04589844 0.6347656 0.04589844 0.5454102 0.04199219 0.5454102 0.04589844 0.5454102 0.04199219 0.6347656 0.04199219 0.5454102 0.04589844 0.6347656 0.03662109 0.5454102 0.04199219 0.5454102 0.04199219 0.6347656 0.03662109 0.5454102 0.04199219 0.6347656 0.03662109 0.6347656 - - - - - - - - - - - - - - -

0 0 1 1 2 2 1 3 3 4 2 5 4 4 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 10 14 12 15 13 16

-
-
-
- - - - -408.3645 -453.96 -3.352947 -408.3722 -454.3795 0.6069993 -408.4947 -454.4319 -3.352945 -408.4947 -454.8547 0.6273118 -408.4947 -454.8547 0.6273118 -408.8532 -454.4319 -3.35294 -408.4947 -454.4319 -3.352945 -408.8532 -454.8547 0.6273165 -408.9834 -453.96 -3.352945 -408.8532 -454.4319 -3.35294 -408.8532 -454.8547 0.6273165 -408.9758 -454.3795 0.6069993 - - - - - - - - - - 0.9636454 -0.2658862 -0.0263057 0.9674131 -0.2518013 -0.02660859 0.9639514 -0.2647726 -0.0263299 0.9676962 -0.2507086 -0.02663181 4.539524e-006 -0.9944062 -0.1056231 9.684329e-005 -0.9944054 -0.1056313 0.0001027651 -0.9944053 -0.1056318 -1.382929e-006 -0.9944063 -0.1056226 -0.963963 -0.2645653 -0.02793673 -0.9636201 -0.2657816 -0.02822135 -0.9673918 -0.2520469 -0.02501055 -0.9677265 -0.2507877 -0.02471654 - - - - - - - - - - 0.05126951 0.5454099 0.05126951 0.6347653 0.04589841 0.5454099 0.05126953 0.6347656 0.04589844 0.6347656 0.04589844 0.5454102 0.04589844 0.6347656 0.04199219 0.5454102 0.04589844 0.5454102 0.04199219 0.6347656 0.04199219 0.5454102 0.04589844 0.6347656 0.03662106 0.5454096 0.04199215 0.5454096 0.04199215 0.634765 0.03662109 0.5454102 0.04199219 0.6347656 0.03662109 0.6347656 - - - - - - - - - - - - - - -

0 0 1 1 2 2 1 3 3 4 2 5 4 6 5 7 6 8 7 9 5 10 4 11 8 12 9 13 10 14 8 15 10 16 11 17

-
-
-
- - - - -416.432 -453.96 -3.352947 -416.4397 -454.3795 0.606997 -416.5623 -454.4319 -3.352947 -416.5622 -454.8546 0.6273141 -416.5622 -454.8546 0.6273141 -416.9207 -454.4319 -3.352945 -416.5623 -454.4319 -3.352947 -416.9207 -454.8546 0.6273165 -417.0509 -453.96 -3.352945 -416.9207 -454.4319 -3.352945 -416.9207 -454.8546 0.6273165 -417.0433 -454.3795 0.6069946 - - - - - - - - - - 0.9636257 -0.2659573 -0.02631076 0.9674115 -0.2518069 -0.02661525 0.9639331 -0.2648385 -0.02633509 0.9676959 -0.2507091 -0.02663859 -6.914635e-007 -0.9944063 -0.1056224 -6.914635e-007 -0.9944063 -0.1056224 -6.914635e-007 -0.9944063 -0.1056224 -6.914635e-007 -0.9944063 -0.1056224 -0.9639395 -0.2646501 -0.02794498 -0.9635948 -0.2658721 -0.02823094 -0.9673855 -0.2520715 -0.02500477 -0.9677219 -0.2508063 -0.02470937 - - - - - - - - - - 0.05126953 0.5454102 0.05126953 0.6347656 0.04589844 0.5454102 0.05126953 0.6347656 0.04589844 0.6347656 0.04589844 0.5454102 0.04589844 0.6347656 0.04199219 0.5454102 0.04589844 0.5454102 0.04199219 0.6347656 0.04199219 0.5454102 0.04589844 0.6347656 0.03662109 0.5454102 0.04199219 0.5454102 0.04199219 0.6347656 0.03662109 0.5454102 0.04199219 0.6347656 0.03662109 0.6347656 - - - - - - - - - - - - - - -

0 0 1 1 2 2 1 3 3 4 2 5 4 6 5 7 6 8 7 9 5 10 4 11 8 12 9 13 10 14 8 15 10 16 11 17

-
-
-
- - - - -408.6752 -123.794 9.059449 -395.7644 -124.3278 9.059448 -407.1586 -124.0876 2.04165 -410.1918 -124.0875 2.04165 -395.4082 -129.6845 9.405062 -395.7644 -124.3278 9.059448 -408.6752 -123.794 9.059449 -395.7644 -124.7079 2.064933 -407.1268 -127.7532 2.131507 -410.1918 -124.0875 2.04165 -407.1586 -124.0876 2.04165 -421.586 -124.3278 9.059449 -383.963 -126.3382 8.912417 -408.6752 -129.209 9.405067 -395.7644 -124.7079 2.064933 -407.1268 -125.7468 -1.067146 -407.1586 -124.0876 2.04165 -383.963 -126.3382 8.912417 -407.1586 -124.0876 2.04165 -407.1268 -125.7468 -1.067146 -407.1268 -127.7532 2.131507 -407.1268 -127.7532 2.131507 -410.2236 -127.7532 2.131507 -410.1918 -124.0875 2.04165 -421.586 -124.3278 9.059449 -421.9422 -129.6846 9.405062 -421.586 -124.7079 2.064928 -384.4854 -130.7582 9.405064 -395.8357 -126.4897 -0.9263083 -384.6552 -126.446 2.037463 -407.1268 -128.7072 -1.065846 -410.1918 -124.0875 2.04165 -410.2236 -127.7532 2.131507 -410.2236 -125.7468 -1.067144 -432.8649 -130.7582 9.405067 -421.586 -124.7079 2.064928 -410.1918 -124.0875 2.04165 -410.2236 -125.7468 -1.067144 -433.3874 -126.3381 8.912412 -383.963 -126.3382 8.912417 -384.4854 -130.7582 9.405064 -383.49 -129.9343 14.15868 -384.6552 -126.446 2.037463 -380.459 -127.7397 1.943901 -410.2236 -128.7073 -1.065851 -433.3874 -126.3381 8.912412 -421.5147 -126.4897 -0.9263153 -432.6952 -126.446 2.037459 -383.4252 -130.3308 15.20753 -383.4961 -126.5616 12.28739 -384.8437 -128.1417 -0.9545266 -379.5969 -127.626 8.520607 -380.459 -127.7397 1.943901 -433.3874 -126.3381 8.912412 -433.8542 -126.5616 12.2874 -432.8649 -130.7582 9.405067 -432.5066 -128.1417 -0.9545219 -436.8914 -127.7397 1.943894 -432.6952 -126.446 2.037459 -383.4252 -130.3308 15.20753 -378.1922 -131.7529 13.93056 -383.49 -129.9343 14.15868 -379.172 -127.7552 12.30329 -383.4961 -126.5616 12.28739 -383.49 -129.9343 14.15868 -383.4961 -126.5616 12.28739 -379.5969 -127.626 8.520607 -378.8069 -129.8679 1.758955 -380.459 -127.7397 1.943901 -381.5133 -129.3592 -1.09773 -433.8604 -129.9343 14.15868 -433.8542 -126.5616 12.2874 -437.7535 -127.626 8.520609 -435.837 -129.3593 -1.097725 -436.8914 -127.7397 1.943894 -378.1922 -131.7529 13.93056 -378.1735 -131.9442 15.163 -379.172 -127.7552 12.30329 -380.459 -127.7397 1.943901 -378.8069 -129.8679 1.758955 -380.1524 -130.7539 -1.232387 -377.7841 -129.8344 8.196612 -381.5133 -129.3592 -1.09773 -433.8542 -126.5616 12.2874 -438.1784 -127.7552 12.30329 -433.8604 -129.9343 14.15868 -433.9251 -130.3309 15.20753 -438.1784 -127.7552 12.30329 -437.7535 -127.626 8.520609 -436.8914 -127.7397 1.943894 -439.5662 -129.8344 8.196618 -436.8914 -127.7397 1.943894 -435.837 -129.3593 -1.097725 -437.198 -130.754 -1.232382 -377.3721 -130.0513 12.387 -379.172 -127.7552 12.30329 -378.1922 -131.7529 13.93056 -378.1922 -131.7529 13.93056 -378.1735 -131.9442 15.163 -376.1317 -137.5704 15.1953 -379.172 -127.7552 12.30329 -377.3721 -130.0513 12.387 -378.8069 -129.8679 1.758955 -378.0818 -133.9184 1.089777 -380.1524 -130.7539 -1.232387 -377.7841 -129.8344 8.196612 -439.9783 -130.0513 12.38699 -433.9251 -130.3309 15.20753 -433.8604 -129.9343 14.15868 -439.1582 -131.7529 13.93055 -439.9783 -130.0513 12.38699 -438.1784 -127.7552 12.30329 -438.5434 -129.8679 1.75896 -438.5434 -129.8679 1.75896 -376.3648 -135.7733 13.21445 -376.3648 -135.7733 13.21445 -379.541 -133.8473 -1.758678 -377.0141 -134.6944 6.865226 -377.3721 -130.0513 12.387 -433.8604 -129.9343 14.15868 -439.9783 -130.0513 12.38699 -439.1582 -131.7529 13.93055 -439.1768 -131.9442 15.16299 -439.5662 -129.8344 8.196618 -438.5434 -129.8679 1.75896 -439.2686 -133.9184 1.089777 -440.3362 -134.6944 6.865226 -439.9783 -130.0513 12.38699 -437.198 -130.754 -1.232382 -376.3648 -135.7733 13.21445 -376.428 -136.1285 11.49395 -376.1317 -137.5704 15.1953 -379.1995 -137.842 -2.474372 -377.5486 -138.0812 0.3544521 -439.9783 -130.0513 12.38699 -440.9855 -135.7733 13.21445 -439.1582 -131.7529 13.93055 -439.1582 -131.7529 13.93055 -441.2186 -137.5704 15.1953 -439.1768 -131.9442 15.16299 -440.9224 -136.1285 11.49395 -437.8093 -133.8473 -1.758674 -375.564 -143.9304 14.79763 -376.5388 -139.1845 5.611124 -440.9855 -135.7733 13.21445 -440.9855 -135.7733 13.21445 -440.8115 -139.1845 5.611124 -441.5279 -141.3086 10.67288 -438.1508 -137.842 -2.474364 -375.8224 -141.3086 10.67288 -375.7059 -141.2758 -0.285806 -377.5486 -138.0812 0.3544521 -376.5388 -139.1845 5.611124 -374.6633 -142.4688 4.465766 -441.2186 -137.5704 15.1953 -439.8016 -138.0812 0.3544592 -441.7862 -143.9304 14.79763 -439.8016 -138.0812 0.3544592 -373.6743 -147.665 13.10812 -375.7059 -141.2758 -0.285806 -378.3099 -141.0329 -3.419981 -374.0703 -144.4725 9.07684 -440.8115 -139.1845 5.611124 -442.687 -142.4689 4.465765 -441.5279 -141.3086 10.67288 -439.8016 -138.0812 0.3544592 -443.28 -144.4726 9.076846 -441.7862 -143.9304 14.79763 -439.0404 -141.0328 -3.419971 -375.7059 -141.2758 -0.285806 -374.6633 -142.4688 4.465766 -375.4366 -144.3054 -0.8493598 -375.4366 -144.3054 -0.8493598 -374.0703 -144.4725 9.07684 -374.5229 -145.3755 3.419392 -441.6444 -141.2758 -0.285806 -443.676 -147.6651 13.10812 -441.6444 -141.2758 -0.285806 -373.6743 -147.665 13.10812 -373.3248 -150.4718 11.64223 -377.9167 -143.8912 -4.027076 -373.7368 -147.2753 7.590795 -442.687 -142.4689 4.465765 -442.8273 -145.3755 3.419399 -441.6444 -141.2758 -0.285806 -441.9137 -144.3054 -0.8493574 -443.6134 -147.2754 7.590796 -439.4335 -143.8912 -4.027079 -441.9137 -144.3054 -0.8493574 -444.0254 -150.4718 11.64224 - - - - - - - - - - 2.738724e-007 0.9994189 -0.03408744 0.1081655 0.9928664 -0.05016427 0.02574785 0.9988489 -0.04047008 -0.02574349 0.9988491 -0.0404684 0.01244567 0.07044282 0.9974382 0.01197741 0.06517431 0.997802 -3.458318e-008 0.06391002 0.9979557 0.1089992 0.9927744 -0.05018194 -1.516688e-007 -0.02450573 -0.9996997 -1.516688e-007 -0.02450573 -0.9996997 -1.516688e-007 -0.02450573 -0.9996997 -0.1081651 0.9928666 -0.05016201 0.0143791 0.09732468 0.9951488 -4.937111e-008 0.06369647 0.9979693 0.0952314 0.8566545 -0.5070248 0.05153553 0.8769439 -0.4778216 0.04894735 0.8813626 -0.469898 0.2441064 0.9694974 -0.02206465 -0.9999458 -0.008820886 -0.005533208 -0.9999859 -0.004496983 -0.002820889 -0.9999844 -0.004736836 -0.002971346 -1.48552e-007 -0.02450573 -0.9996997 -1.48552e-007 -0.02450573 -0.9996997 -1.48552e-007 -0.02450573 -0.9996997 -0.00713995 0.06961508 0.9975484 -0.004627101 0.06459079 0.9979011 -0.1089989 0.9927745 -0.05018058 0.01076393 0.1095093 0.9939275 0.09760446 0.8548359 -0.5096361 0.2208888 0.9745771 -0.03751842 -1 0 0 0.9999459 -0.008810483 -0.005526583 0.9999844 -0.004731262 -0.002967795 0.9999859 -0.004491659 -0.002817499 -0.02421808 0.09596255 0.9950903 -0.0933111 0.8576496 -0.5056977 -0.04894868 0.8813578 -0.4699069 -0.0515363 0.8769399 -0.4778288 -0.244106 0.9694976 -0.02206284 -0.9796238 0.1131773 0.1659158 -0.9734093 0.1428374 0.1790858 -0.9646471 0.2099664 0.1592798 0.1854902 0.8489803 -0.4947989 0.2878162 0.9564994 -0.04765201 1 -0 -0 -0.03063334 0.1071441 0.9937715 -0.09531816 0.854225 -0.5110911 -0.2208878 0.9745772 -0.03752098 -0.9541984 0.2555737 0.155523 -0.9869418 0.0767587 0.1416123 0.1969187 0.8425603 -0.5013134 0.2761068 0.9609192 -0.01998457 0.2600345 0.821587 -0.5073233 0.9806754 0.1320108 0.1443918 0.9791229 0.1163296 0.1666905 0.978137 0.1250417 0.1661703 -0.2112631 0.8437933 -0.4933364 -0.2878151 0.9564996 -0.04765411 -0.194709 0.8437239 -0.5002184 0.3169934 0.9012511 0.2954009 0.2958987 0.9408943 0.1648087 0.3200699 0.8925293 0.3177211 0.1594614 0.4375193 0.884957 0.1296529 0.4812489 0.8669427 0.1522251 0.4483289 0.8808114 0.2766517 0.9608555 0.01485079 0.7703896 0.6317503 -0.08597368 0.7744812 0.6219224 -0.1157208 0.780101 0.6153835 -0.1128963 0.2724604 0.8069076 -0.5240854 0.9642529 0.2064183 0.1661562 -0.2766544 0.9608545 0.01486142 -0.2761086 0.9609188 -0.01997938 -0.2581159 0.8229652 -0.5060676 -0.2410701 0.8194917 -0.5199216 0.178676 0.4081974 0.8952373 0.2917752 0.9458243 0.1424204 0.2660727 0.9639482 0.003025746 0.6449106 0.5844846 -0.4924104 0.6761758 0.565895 -0.4717512 0.6212642 0.5974679 -0.5070137 0.7641923 0.6395452 -0.08361875 0.580659 0.6178074 -0.530235 -0.1296572 0.4812434 0.8669451 -0.2301209 0.3250226 0.9172812 -0.177149 0.4105607 0.8944597 0.9541826 0.2556369 0.1555165 -0.2660783 0.9639466 0.003039419 -0.7685664 0.634634 -0.08090375 -0.7735221 0.6218008 -0.1225863 -0.7674187 0.6362571 -0.07902784 -0.6449131 0.5844756 -0.4924179 -0.5806582 0.6178002 -0.5302443 -0.6212654 0.5974596 -0.507022 0.5831741 0.3733805 0.7214534 0.5120396 0.4285166 0.7444387 0.6880983 0.276809 0.670744 0.9334792 0.3487756 0.08349959 0.9392354 0.3410816 0.03873154 0.912952 0.3636167 0.1852068 0.7864206 0.6140061 -0.06737368 0.7793561 0.6239784 -0.05705332 0.9343962 0.2142961 -0.2845717 0.931526 0.1930107 -0.3082306 0.8625973 0.2360862 -0.4474251 0.9755611 0.1867919 -0.1157121 -0.2738195 0.2485098 0.929121 -0.3169914 0.9012447 0.2954225 -0.3200682 0.8925211 0.3177459 -0.2958943 0.940895 0.1648124 -0.7793639 0.6239686 -0.05705344 -0.7864222 0.614005 -0.0673648 -0.7781853 0.6150955 -0.1268275 -0.6761789 0.5658854 -0.4717583 0.7381805 0.2220654 0.6370059 0.9009619 0.3688016 0.2285891 0.8742595 0.1987308 -0.4429181 0.9796467 0.1619565 -0.1185848 0.9822392 0.1702367 -0.07890295 -0.2352858 0.5883616 0.7736092 -0.2352858 0.5883616 0.7736092 -0.2352858 0.5883616 0.7736092 -0.2917702 0.9458258 0.1424208 -0.9755605 0.1867925 -0.1157165 -0.9343977 0.214289 -0.2845719 -0.9318152 0.192362 -0.3077619 -0.9796161 0.1616782 -0.1192157 -0.9822392 0.1702344 -0.07890741 -0.8625954 0.2360831 -0.4474304 0.9920441 0.1110194 -0.05935718 0.9892075 0.132264 -0.06304493 0.9950554 0.08844833 -0.04518444 0.8131929 0.3177765 -0.4875812 0.8845087 0.3013779 -0.3561119 -0.7381835 0.2220604 0.6370042 -0.7381835 0.2220604 0.6370042 -0.7381835 0.2220604 0.6370042 -0.933483 0.3487651 0.08350054 -0.9129545 0.3636073 0.185213 -0.9392395 0.3410706 0.0387298 -0.9892072 0.1323141 -0.06294444 -0.8742593 0.1987268 -0.4429202 0.9546917 0.2767516 0.1094184 0.9831356 0.1378094 -0.1202203 -0.9920456 0.1110069 -0.05935473 -0.9009635 0.3687924 0.2285976 -0.9828347 0.1390147 -0.1212885 -0.9923449 0.120314 -0.02786101 -0.8452007 0.2731039 -0.4594018 0.961904 0.2689111 0.04926952 0.7637482 0.3081274 -0.5672268 0.858772 0.5088769 -0.05962241 0.872019 0.4893832 0.009327453 0.8714414 0.4901142 0.01944213 -0.9950568 0.08843577 -0.04517937 -0.9760012 0.1524535 -0.1554978 -0.9944308 0.1045805 -0.01305316 -0.8064854 0.3258373 -0.4933674 0.9030999 0.3810548 0.1980097 0.8592589 0.5078887 -0.06101869 0.7536641 0.2931245 -0.5882759 0.8931419 0.4232679 0.1521244 -0.8693574 0.4941396 0.006614508 -0.8729391 0.4876724 0.01236486 -0.8919489 0.4312378 0.1358719 -0.8587751 0.508872 -0.05961974 -0.956071 0.2882156 0.05347927 -0.9030483 0.3802647 0.1997564 -0.7591931 0.3380551 -0.5561875 0.9755203 0.1208894 -0.1837007 0.9856603 0.09841272 -0.1370718 0.9760632 0.1179104 -0.1827504 0.7707811 0.2021593 -0.6041755 0.9899347 0.1306786 -0.05433525 0.9837814 0.1130948 -0.1392255 -0.8592631 0.5078814 -0.06101948 -0.9692255 0.2306603 0.08600963 -0.7425548 0.3447708 -0.5742347 0.992354 0.1234241 0.0002627631 0.9924603 0.1225536 -0.001803851 0.7814156 0.2306189 -0.5798316 0.9878375 0.1459625 -0.05359049 -0.9856603 0.09841284 -0.1370717 -0.9837818 0.1130921 -0.1392247 -0.9755204 0.1208892 -0.1837003 -0.9760633 0.1179103 -0.18275 -0.9878868 0.1461552 -0.05213838 -0.7694502 0.2116115 -0.6026333 -0.7866977 0.1797884 -0.5905784 -0.9921811 0.1247829 -0.002429329 - - - - - - - - - - 0.1831055 0.4555664 0.1240234 0.4555664 0.175293 0.3837891 0.1831055 0.4555664 0.190918 0.3833008 0.1757813 0.3837891 0.06396485 0.331543 0.06591797 0.2827149 0.1333008 0.2827149 0.1240234 0.4555664 0.1240234 0.3837891 0.175293 0.3837891 0.3535156 0.1464844 0.3364258 0.1835938 0.3535156 0.1835938 0.1831055 0.4555664 0.1757812 0.3837891 0.1240234 0.4555664 0.0078125 0.2827148 0.06396484 0.331543 0.06396486 0.331543 0.1333008 0.2827149 0.1333008 0.331543 0.1240234 0.3837891 0.175293 0.3505859 0.175293 0.3837891 0.1240234 0.4555664 0.06933594 0.4555664 0.1240234 0.3837891 0.3535156 0.1835938 0.3706055 0.1679688 0.3535156 0.1464844 0.3535156 0.1464844 0.3364258 0.1464844 0.1333008 0.2827148 0.1240234 0.4555664 0.1240234 0.3837891 0.007812499 0.2827148 0.06396484 0.3315429 0.01074219 0.3315429 0.1333008 0.2827149 0.06396486 0.331543 0.1240234 0.3837891 0.1240234 0.3505859 0.175293 0.3505859 0.06933594 0.4555664 0.07373047 0.3837891 0.1240234 0.3837891 0.3706055 0.1679687 0.3710938 0.1381836 0.3535156 0.1464844 0.3364258 0.1835937 0.3364258 0.1464844 0.3193359 0.1679688 0.06591793 0.2827147 0.01074218 0.3315428 0.1757813 0.3837891 0.175293 0.3505859 0.1240234 0.3837891 0.06933594 0.4555664 0.1767578 0.269043 0.1982422 0.2685547 0.1933594 0.3188477 0.1240234 0.3837891 0.07373047 0.3837891 0.1240234 0.3505859 0.06689453 0.4589844 0.05224609 0.3837891 0.07373047 0.3837891 0.3193359 0.1679687 0.3364258 0.1464844 0.3188477 0.1381836 0.06591797 0.2827148 0.0078125 0.2827148 0.01074219 0.331543 0.1240234 0.3837891 0.175293 0.3505859 0.1240234 0.3505859 0.06933594 0.4555664 0.1240234 0.3837891 0.07373047 0.3837891 0.1933594 0.3188477 0.1982422 0.2685547 0.1953125 0.3212891 0.1767578 0.269043 0.1933594 0.3188477 0.1762695 0.2993164 0.07373047 0.3837891 0.07421875 0.3510742 0.1240234 0.3505859 0.06689453 0.4589844 0.04833984 0.4555664 0.05224609 0.3837891 0.07373047 0.3837891 0.05224609 0.3837891 0.07421875 0.3510742 0.1767578 0.269043 0.1762695 0.2993164 0.1982422 0.2685547 0.1240234 0.3837891 0.1240234 0.3505859 0.07421875 0.3510742 0.06689453 0.4589844 0.07373047 0.3837891 0.05224609 0.3837891 0.1240234 0.3837891 0.07421875 0.3510742 0.07373047 0.3837891 0.05859375 0.5351562 0.02929687 0.5268555 0.05859375 0.5258789 0.04150391 0.4975586 0.06396484 0.4970703 0.05859375 0.5258789 0.06396484 0.4970703 0.04833984 0.4555664 0.06689453 0.4589844 0.04833984 0.4555664 0.04052734 0.3828125 0.05224609 0.3837891 0.05224609 0.3837891 0.05615234 0.3496094 0.07421875 0.3510742 0.1762695 0.2993164 0.1933594 0.3188477 0.1982422 0.2685547 0.06689453 0.4589844 0.04833984 0.4555664 0.06689453 0.4589844 0.05224609 0.3837891 0.04833984 0.4555664 0.07373047 0.3837891 0.05615234 0.3496094 0.05224609 0.3837891 0.07373047 0.3837891 0.07421875 0.3510742 0.05615234 0.3496094 0.02929687 0.5268555 0.04150391 0.4975586 0.05859375 0.5258789 0.05859375 0.5351563 0.03027344 0.5361328 0.02929688 0.5268555 0.04150391 0.4975586 0.04833984 0.4555664 0.06396484 0.4970703 0.05224609 0.3837891 0.04052734 0.3828125 0.046875 0.3510742 0.04833984 0.4555664 0.03564453 0.4511719 0.04052734 0.3828125 0.05224609 0.3837891 0.046875 0.3510742 0.05615234 0.3496094 0.06396484 0.4970703 0.04150391 0.4975586 0.05859375 0.5258789 0.1933594 0.3188477 0.1953125 0.3212891 0.1982422 0.2685547 0.04150391 0.4975586 0.06396484 0.4970703 0.04833984 0.4555664 0.04833984 0.4555664 0.05224609 0.3837891 0.03564453 0.4511719 0.05224609 0.3837891 0.05615234 0.3496094 0.046875 0.3510742 0.02832031 0.5009766 0.04150391 0.4975586 0.02929688 0.5268555 0.02929687 0.5268555 0.03027344 0.5361328 0.007324219 0.5688477 0.04833984 0.4555664 0.04150391 0.4975586 0.02832031 0.5009766 0.9912109 0.09277344 0.9707031 0.0859375 0.9921875 0.05029297 0.9887695 0.1665039 0.9707031 0.0859375 0.9912109 0.09277344 0.04833984 0.4555664 0.02832031 0.5009766 0.03564453 0.4511719 0.05859375 0.5258789 0.04150391 0.4975586 0.02832031 0.5009766 0.05859375 0.5351563 0.05859375 0.5258789 0.02929687 0.5268555 0.04833984 0.4555664 0.02832031 0.5009766 0.04150391 0.4975586 0.05224609 0.3837891 0.04052734 0.3828125 0.03564453 0.4511719 0.04833984 0.4555664 0.03564453 0.4511719 0.02832031 0.5009766 0.05224609 0.3837891 0.046875 0.3510742 0.04052734 0.3828125 0.02832031 0.5009766 0.02929688 0.5268555 0.01074219 0.543457 0.02929688 0.5268555 0.007324219 0.5688477 0.01074219 0.543457 0.9921875 0.05029297 0.9707031 0.0859375 0.9726562 0.04199219 0.9887695 0.1665039 0.9633789 0.1533203 0.9707031 0.0859375 0.9887695 0.1665039 0.9829102 0.2099609 0.9633789 0.1533203 0.05859375 0.5258789 0.02832031 0.5009766 0.02929687 0.5268555 0.05859375 0.5351562 0.02929688 0.5268555 0.03027344 0.5361328 0.9887695 0.1665039 0.9912109 0.09277344 0.9707031 0.0859375 0.9887695 0.1665039 0.9633789 0.1533203 0.9829102 0.2099609 0.9912109 0.09277344 0.9921875 0.05029297 0.9707031 0.0859375 0.9829102 0.2099609 0.9570312 0.222168 0.9545898 0.2006836 0.9570313 0.222168 0.9487305 0.2265625 0.9545898 0.2006836 0.9726563 0.04199219 0.9707031 0.0859375 0.9482422 0.03369141 0.9707031 0.0859375 0.9633789 0.1533203 0.9462891 0.07617188 0.9829102 0.2099609 0.9545898 0.2006836 0.9633789 0.1533203 0.02832031 0.5009766 0.01074219 0.543457 0.02929687 0.5268555 0.02929688 0.5268555 0.007324219 0.5688477 0.03027344 0.5361328 0.9887695 0.1665039 0.9707031 0.0859375 0.9633789 0.1533203 0.9829102 0.2099609 0.9633789 0.1533203 0.9545898 0.2006836 0.9921875 0.05029297 0.9726562 0.04199219 0.9707031 0.0859375 0.9545898 0.2006836 0.9487305 0.2265625 0.9160156 0.2265625 0.9707031 0.0859375 0.9462891 0.07617187 0.9482422 0.03369141 0.9633789 0.1533203 0.9404297 0.1411133 0.9462891 0.07617187 0.9633789 0.1533203 0.9545898 0.2006836 0.9404297 0.1411133 0.9829102 0.2099609 0.9545898 0.2006836 0.9570313 0.222168 0.02929687 0.5268555 0.01074219 0.543457 0.007324219 0.5688477 0.9707031 0.0859375 0.9404297 0.1411133 0.9633789 0.1533203 0.9633789 0.1533203 0.9291992 0.1918945 0.9545898 0.2006836 0.9726562 0.04199219 0.9482422 0.03369141 0.9707031 0.0859375 0.9545898 0.2006836 0.9160156 0.2265625 0.9291992 0.1918945 0.9482422 0.03369141 0.9462891 0.07617187 0.9267578 0.06982422 0.9462891 0.07617188 0.9404297 0.1411133 0.9213867 0.1176758 0.9545898 0.2006836 0.9291992 0.1918945 0.9404297 0.1411133 0.9570313 0.222168 0.9545898 0.2006836 0.9487305 0.2265625 0.9633789 0.1533203 0.9291992 0.1918945 0.9707031 0.0859375 0.9462891 0.07617188 0.9404297 0.1411133 0.9545898 0.2006836 0.9291992 0.1918945 0.9160156 0.2265625 0.9707031 0.0859375 0.9482422 0.03369141 0.9462891 0.07617187 0.9291992 0.1918945 0.9160156 0.2265625 0.8959961 0.2070313 0.9462891 0.07617188 0.9213867 0.1176758 0.9267578 0.06982422 0.9482422 0.03369141 0.9267578 0.06982422 0.9291992 0.02929687 0.9404297 0.1411133 0.9116211 0.1650391 0.9213867 0.1176758 0.9404297 0.1411133 0.9291992 0.1918945 0.9116211 0.1650391 0.9545898 0.2006836 0.9160156 0.2265625 0.9487305 0.2265625 0.9404297 0.1411133 0.9213867 0.1176758 0.9291992 0.1918945 0.9462891 0.07617187 0.9213867 0.1176758 0.9404297 0.1411133 0.9291992 0.1918945 0.9116211 0.1650391 0.9160156 0.2265625 0.9482422 0.03369141 0.9291992 0.02929688 0.9462891 0.07617188 0.9291992 0.1918945 0.8959961 0.2070313 0.9116211 0.1650391 0.9267578 0.06982422 0.9213867 0.1176758 0.9111328 0.06542969 0.9291992 0.02929688 0.9267578 0.06982422 0.9111328 0.06542969 0.9213867 0.1176758 0.9116211 0.1650391 0.90625 0.1083984 0.9291992 0.1918945 0.9213867 0.1176758 0.9116211 0.1650391 0.9462891 0.07617188 0.9267578 0.06982422 0.9213867 0.1176758 0.9160156 0.2265625 0.9116211 0.1650391 0.8959961 0.2070312 0.9462891 0.07617188 0.9291992 0.02929688 0.9267578 0.06982422 0.9116211 0.1650391 0.8959961 0.2070313 0.8818359 0.1928711 0.9213867 0.1176758 0.90625 0.1083984 0.9111328 0.06542969 0.9291992 0.02929687 0.9111328 0.06542969 0.9145508 0.02490234 0.9116211 0.1650391 0.8969727 0.1508789 0.90625 0.1083984 0.9213867 0.1176758 0.90625 0.1083984 0.9116211 0.1650391 0.9267578 0.06982422 0.9111328 0.06542969 0.9213867 0.1176758 0.9116211 0.1650391 0.8969727 0.1508789 0.8959961 0.2070312 0.9291992 0.02929688 0.9145508 0.02490234 0.9267578 0.06982422 0.9116211 0.1650391 0.8818359 0.1928711 0.8969727 0.1508789 0.9213867 0.1176758 0.9111328 0.06542969 0.90625 0.1083984 0.9116211 0.1650391 0.90625 0.1083984 0.8969727 0.1508789 0.9267578 0.06982422 0.9145508 0.02490234 0.9111328 0.06542969 0.8969727 0.1508789 0.8818359 0.1928711 0.8959961 0.2070312 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 2 4 3 5 4 6 5 7 6 8 1 9 7 10 2 11 8 12 9 13 10 14 0 15 3 16 11 17 12 18 5 7 4 19 4 20 6 21 13 22 14 23 15 24 16 25 1 26 17 27 7 28 18 29 19 30 20 31 21 32 22 33 23 13 6 34 24 7 25 6 11 35 3 5 26 36 12 37 4 38 27 39 6 40 25 41 13 22 14 42 28 43 15 44 17 45 29 46 7 47 19 48 30 49 20 50 31 51 32 52 33 53 24 54 34 55 25 19 35 47 36 56 37 57 11 35 26 58 38 59 39 60 40 61 41 62 14 63 42 64 28 65 17 66 43 67 29 68 33 69 32 70 44 71 24 72 45 73 34 74 35 75 37 76 46 77 38 78 26 79 47 80 41 81 40 82 48 83 39 84 41 85 49 86 42 87 50 88 28 89 17 90 51 91 43 92 42 93 52 94 50 95 53 96 54 97 55 98 35 99 46 100 56 101 38 102 47 103 57 104 35 105 56 106 58 107 59 108 60 109 61 110 62 111 63 112 64 113 65 114 51 115 17 116 66 117 67 118 68 119 52 120 69 121 50 122 54 123 70 124 55 125 71 112 38 126 72 127 38 128 57 129 72 130 58 131 73 132 74 133 58 134 56 135 73 136 75 137 62 138 64 139 59 140 76 141 60 142 77 143 51 144 65 145 78 146 79 147 80 148 66 149 81 150 67 151 78 152 80 153 82 154 83 155 84 156 85 157 70 158 86 159 55 160 87 161 71 162 72 163 88 164 89 165 90 166 91 167 92 168 93 169 94 170 95 171 96 172 97 173 98 174 99 175 66 176 100 177 101 178 102 179 103 180 104 181 105 182 103 183 102 184 66 185 101 186 81 187 85 188 84 189 106 190 107 191 108 192 109 193 88 194 110 195 111 196 89 197 112 198 90 199 88 200 90 201 110 202 91 203 93 204 113 205 94 206 96 207 114 208 97 209 99 210 115 211 104 212 103 213 116 214 105 215 117 216 103 217 105 218 118 219 117 220 119 221 120 222 121 223 107 224 109 225 122 226 123 227 124 228 125 229 123 230 126 231 127 232 124 233 128 234 125 235 118 236 129 237 130 238 129 239 131 240 130 241 116 242 103 243 132 244 103 245 117 246 133 247 118 248 130 249 117 250 134 251 135 252 136 253 137 254 138 255 139 256 123 257 125 258 126 259 127 260 126 261 140 262 128 263 141 264 125 265 130 266 131 267 142 268 103 269 133 270 132 271 117 272 143 273 133 274 117 275 130 276 143 277 127 278 140 279 144 280 137 281 145 282 138 283 125 284 146 285 126 286 126 287 147 288 140 289 141 290 148 291 125 292 130 293 142 294 149 295 132 296 133 297 150 298 151 299 152 300 153 301 130 302 149 303 143 304 144 305 140 306 154 307 126 308 146 304 147 309 125 310 155 311 146 312 140 313 147 314 156 315 125 316 148 317 157 318 149 319 142 320 158 321 151 322 153 323 159 324 132 325 150 326 160 327 152 328 161 329 153 330 152 331 149 332 161 333 140 334 156 335 154 336 162 337 163 338 164 339 165 340 163 341 162 342 164 343 166 344 167 345 148 346 168 347 157 348 149 349 158 350 161 351 169 352 170 353 171 354 160 355 150 356 172 357 170 358 173 359 174 360 164 361 163 362 166 363 165 364 175 365 163 366 167 367 166 368 176 369 157 370 168 371 177 372 173 373 178 374 179 375 170 376 174 377 171 378 160 379 172 380 180 381 173 382 181 383 174 384 182 385 183 386 166 387 184 388 185 389 182 390 166 391 186 392 176 393 168 394 187 395 177 396 173 397 179 398 181 399 182 400 185 401 183 402 166 403 183 404 186 405 177 406 187 407 188 408 186 409 189 410 176 411

-
-
-
- - - - -379.4504 -383.5682 45.41049 -379.9501 -381.9255 46.02699 -381.3785 -384.2522 45.85978 -379.7358 -398.9789 43.55295 -384.1782 -399.0229 44.25335 -381.3785 -384.2522 45.85978 -385.6331 -399.023 45.22996 -384.1782 -399.0229 44.25335 -387.3042 -415.2053 42.11694 -382.9905 -385.1701 46.73544 -388.869 -415.2053 43.13027 -387.3042 -415.2053 42.11694 -380.618 -417.7059 40.60641 -382.9905 -385.1701 46.73544 -408.6743 -399.0458 45.85323 -385.6331 -399.023 45.22996 -408.6742 -415.2511 43.85566 -388.869 -415.2053 43.13027 -390.0485 -421.4263 42.05767 -388.499 -421.4987 40.80883 -396.5576 -389.1243 46.73563 -400.8373 -424.4096 42.05627 -392.335 -423.3944 41.85259 -390.0485 -421.4263 42.05767 -388.499 -421.4987 40.80883 -380.618 -417.7059 40.60641 -388.499 -421.4987 40.80883 -381.2605 -421.0552 38.61098 -408.6743 -389.8654 46.9187 -431.7155 -399.023 45.22996 -408.6742 -424.7196 42.06661 -390.0485 -421.4263 42.05767 -392.335 -423.3944 41.85259 -385.7413 -423.2212 38.61099 -420.7911 -389.1243 46.73562 -434.3581 -385.1701 46.73547 -428.4794 -415.2053 43.13027 -391.4381 -426.7066 38.68263 -392.335 -423.3944 41.85259 -400.8373 -424.4096 42.05627 -400.8372 -427.7807 38.86302 -408.6742 -424.7196 42.06661 -416.5111 -424.4096 42.05626 -389.4322 -425.1747 38.6663 -431.7155 -399.023 45.22996 -434.3581 -385.1701 46.73547 -435.9702 -384.2522 45.85976 -428.4794 -415.2053 43.13027 -430.0443 -415.2053 42.11697 -391.4381 -426.7066 38.68263 -408.6742 -428.0661 38.86301 -416.5111 -424.4096 42.05626 -433.1703 -399.0229 44.25336 -427.2999 -421.4263 42.05768 -425.0133 -423.3944 41.85258 -416.5111 -427.7807 38.86299 -433.1703 -399.0229 44.25336 -435.9702 -384.2522 45.85976 -437.6128 -398.9789 43.55297 -430.0443 -415.2053 42.11697 -436.7304 -417.706 40.60642 -428.8493 -421.4987 40.80882 -427.2999 -421.4263 42.05768 -425.0133 -423.3944 41.85258 -437.8982 -383.5682 45.41048 -428.8493 -421.4987 40.80882 -425.0133 -423.3944 41.85258 -427.2999 -421.4263 42.05768 -428.8493 -421.4987 40.80882 -425.9102 -426.7066 38.6826 -437.3985 -381.9254 46.02696 -436.7304 -417.706 40.60642 -436.0878 -421.0553 38.61098 -425.9102 -426.7066 38.6826 -431.607 -423.2213 38.61099 -427.9161 -425.1747 38.6663 - - - - - - - - - - 0.2873114 -0.1936932 0.9380486 0.3036514 -0.2524309 0.9187352 0.2644144 -0.1569244 0.9515565 0.160773 -0.1468032 0.9760127 0.1554439 -0.1486067 0.9766029 0.5505748 -0.1932166 0.8121174 0.5458024 -0.2038939 0.8127281 0.5453464 -0.2024762 0.8133884 0.148096 -0.1891892 0.9707085 0.5510358 -0.1933348 0.8117766 0.5298707 -0.2266159 0.8172406 0.5362594 -0.2280282 0.8126679 0.1494653 -0.1868706 0.9709477 0.02948058 -0.1176781 0.9926141 6.917341e-008 -0.1197863 0.9927997 0.02930533 -0.1204126 0.9922913 -1.520096e-007 -0.1502698 0.988645 0.0399699 -0.150497 0.9878021 0.5846893 -0.265234 0.7666742 0.1335086 -0.2259151 0.9649548 0.03653308 -0.132708 0.9904817 0.02958231 -0.1711291 0.9848044 0.04863405 -0.1740392 0.983537 0.06881439 -0.1821626 0.9808575 0.5964649 -0.2703246 0.7557474 0.2758822 -0.5304708 0.8015546 0.366997 -0.5549602 0.746547 0.2749495 -0.5377453 0.7970149 -4.088271e-007 -0.1152858 0.9933324 -0.02930527 -0.120414 0.9922911 -1.020492e-006 -0.1856613 0.9826138 0.4756871 -0.6178995 0.6260367 0.4544843 -0.5577089 0.6945537 0.2802556 -0.5527332 0.7848202 -0.03652902 -0.1327026 0.9904825 -0.02947953 -0.1176788 0.992614 -0.039969 -0.1504974 0.9878021 0.09611927 -0.677579 0.7291418 0.09803006 -0.6741059 0.7321006 0.0620245 -0.684862 0.7260282 0.05866166 -0.6871784 0.7241165 -0.001061222 -0.6908737 0.7229747 -0.02958277 -0.1711302 0.9848042 0.4014967 -0.5455816 0.735623 -0.5454289 -0.2029653 0.8132112 -0.5510593 -0.193344 0.8117585 -0.5505956 -0.1932251 0.8121014 -0.5293096 -0.2273019 0.8174137 -0.5365778 -0.2288876 0.812216 0.4329272 -0.5593188 0.7069204 -0.001008757 -0.6908689 0.7229794 -0.06374171 -0.6869322 0.7239207 -0.5458982 -0.2017484 0.8131991 -0.5846946 -0.2652473 0.7666656 -0.04863156 -0.1740395 0.9835371 -0.059715 -0.6850336 0.72606 -0.1560452 -0.1495636 0.9763609 -0.2644089 -0.1569196 0.9515588 -0.1601764 -0.1475105 0.9760042 -0.1487366 -0.1886863 0.9707085 -0.1491728 -0.1862819 0.9711058 -0.5964761 -0.2703405 0.7557329 -0.06880376 -0.1821597 0.9808587 -0.09344449 -0.67804 0.729061 -0.2873042 -0.1936831 0.9380528 -0.1335089 -0.2259242 0.9649527 -0.4637729 -0.5608662 0.6858162 -0.4756931 -0.6179108 0.626021 -0.3644234 -0.5580793 0.7454818 -0.09123623 -0.6755331 0.7316631 -0.3036425 -0.2524134 0.918743 -0.2758755 -0.5304686 0.8015584 -0.274943 -0.5377411 0.79702 -0.4416457 -0.5413498 0.7154646 -0.2802468 -0.5527251 0.7848291 -0.3802464 -0.5358937 0.7538107 - - - - - - - - - - 0.4873047 0.5712891 0.4916992 0.5712891 0.4838867 0.5874023 0.4873047 0.5712891 0.4838867 0.5874023 0.4150391 0.5712891 0.4150391 0.5712891 0.4838867 0.5874023 0.4160156 0.6176758 0.4838867 0.5874023 0.4169922 0.6274414 0.4160156 0.6176758 0.4150391 0.5712891 0.4160156 0.6176758 0.3378906 0.6445312 0.4838867 0.5874023 0.4824219 0.6010742 0.4169922 0.6274414 0.4160156 0.6176758 0.4169922 0.6274414 0.3393555 0.6601562 0.4160156 0.6176758 0.3393555 0.6601563 0.3378906 0.6445313 0.4150391 0.5712891 0.3378906 0.6445312 0.2915039 0.5712891 0.4824219 0.6010742 0.4179687 0.8642578 0.4169922 0.6274414 0.4169922 0.6274414 0.340332 0.8642578 0.3393555 0.6601563 0.3378906 0.6445313 0.3393555 0.6601563 0.309082 0.671875 0.3378906 0.6445313 0.2910156 0.6557617 0.4824219 0.6010742 0.4643555 0.7368164 0.4179688 0.8642578 0.4169922 0.6274414 0.4179688 0.8642578 0.340332 0.8642578 0.3393555 0.6601563 0.340332 0.8642578 0.2954102 0.7797852 0.3393555 0.6601562 0.2949219 0.6948242 0.309082 0.671875 0.3378906 0.6445313 0.2910156 0.6557617 0.2915039 0.5712891 0.2910156 0.6557617 0.277832 0.5766602 0.4643555 0.7368164 0.4609375 0.8642578 0.4179688 0.8642578 0.340332 0.8642578 0.4179687 0.8642578 0.4169922 0.6274414 0.3393555 0.6601562 0.2954102 0.7797852 0.2949219 0.6948242 0.2954102 0.7797852 0.340332 0.8642578 0.2939453 0.8642578 0.2910156 0.6557617 0.309082 0.671875 0.2949219 0.6948242 0.277832 0.5766602 0.2910156 0.6557617 0.277832 0.6259766 0.4179687 0.8642578 0.4609375 0.8642578 0.4643555 0.7368164 0.4179687 0.8642578 0.4169922 0.6274414 0.340332 0.8642578 0.4169922 0.6274414 0.3393555 0.6601562 0.277832 0.6855469 0.2949219 0.6948242 0.2954102 0.7797852 0.277832 0.7797852 0.2954102 0.7797852 0.2939453 0.8642578 0.340332 0.8642578 0.2954102 0.7797852 0.2939453 0.8642578 0.2910156 0.6557617 0.2949219 0.6948242 0.277832 0.65625 0.277832 0.6259766 0.2910156 0.6557617 0.277832 0.65625 0.4179688 0.8642578 0.4643555 0.7368164 0.4824219 0.6010742 0.4169922 0.6274414 0.4824219 0.6010742 0.4838867 0.5874023 0.3393555 0.6601563 0.3378906 0.6445313 0.340332 0.8642578 0.3393555 0.6601563 0.2954102 0.7797852 0.277832 0.65625 0.2949219 0.6948242 0.277832 0.6855469 0.277832 0.6855469 0.2954102 0.7797852 0.277832 0.7797852 0.277832 0.7797852 0.2939453 0.8642578 0.277832 0.8642578 0.2939453 0.8642578 0.2954102 0.7797852 0.277832 0.8642578 0.4169922 0.6274414 0.4838867 0.5874023 0.4160156 0.6176758 0.3378906 0.6445312 0.4169922 0.6274414 0.4160156 0.6176758 0.309082 0.671875 0.3393555 0.6601562 0.3378906 0.6445312 0.2954102 0.7797852 0.3393555 0.6601562 0.2949219 0.6948242 0.277832 0.8642578 0.2954102 0.7797852 0.277832 0.7797852 0.4160156 0.6176758 0.4838867 0.5874023 0.4150391 0.5712891 0.3378906 0.6445313 0.4160156 0.6176758 0.2915039 0.5712891 0.309082 0.671875 0.3378906 0.6445312 0.2910156 0.6557617 0.2949219 0.6948242 0.3393555 0.6601563 0.309082 0.671875 0.277832 0.7797852 0.2954102 0.7797852 0.2949219 0.6948242 0.4160156 0.6176758 0.4150391 0.5712891 0.2915039 0.5712891 0.4838867 0.5874023 0.4873047 0.5712891 0.4150391 0.5712891 0.2910156 0.6557617 0.3378906 0.6445312 0.2915039 0.5712891 0.2949219 0.6948242 0.309082 0.671875 0.2910156 0.6557617 0.277832 0.7797852 0.2949219 0.6948242 0.277832 0.6855469 0.4838867 0.5874023 0.4916992 0.5712891 0.4873047 0.5712891 0.2910156 0.6557617 0.2915039 0.5712891 0.277832 0.5766602 0.2949219 0.6948242 0.2910156 0.6557617 0.277832 0.6855469 0.2910156 0.6557617 0.277832 0.5766602 0.277832 0.6259766 0.277832 0.6855469 0.2910156 0.6557617 0.277832 0.65625 0.277832 0.65625 0.2910156 0.6557617 0.277832 0.6259766 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -413.4248 -128.8578 64.64607 -413.4341 -128.1821 64.63492 -422.3292 -129.1485 64.44237 -412.9267 -127.6988 64.08641 -413.4341 -128.1821 64.63492 -413.4248 -128.8578 64.64607 -422.3595 -128.6431 64.52965 -413.4341 -128.1821 64.63492 -412.9267 -127.6988 64.08641 -413.443 -127.5714 63.47346 -412.9173 -128.4702 63.79735 -422.3595 -128.6431 64.52965 -431.2323 -129.8401 64.25143 -413.443 -127.5714 63.47346 -412.9267 -127.6988 64.08641 -413.437 -128.1511 62.99841 -412.9173 -128.4702 63.79735 -422.3651 -128.2629 63.81198 -431.2552 -129.6666 64.33366 -413.437 -128.1511 62.99841 -422.3651 -128.2629 63.81198 -413.443 -127.5714 63.47346 -431.2552 -129.6666 64.33366 -422.3603 -128.7216 63.46652 -431.2853 -129.5169 64.05872 -431.2835 -129.7427 63.95061 -431.2853 -129.5169 64.05872 - - - - - - - - - - -0.02339596 0.01617278 0.9995955 -0.02264015 0.009195253 0.9997014 -0.005835677 -0.1661491 0.9860834 0.8381075 -0.101353 0.5360069 0.7244681 0.02135206 0.6889776 0.8167787 -0.07476442 0.5720864 -0.005049747 -0.1723302 0.9850263 -0.1305727 0.8771324 0.4621575 -0.319116 0.8378379 0.4429364 -0.1395789 0.8759579 0.4617526 0.8776073 -0.1587308 0.4523384 -0.08134071 0.8805314 0.4669563 0.02770851 -0.4166121 0.908662 0.7305835 0.4372748 -0.5244411 0.8145166 0.2898733 -0.5025297 0.8041553 0.3111139 -0.5065001 0.8559239 0.1906153 -0.4806871 -0.07954444 0.8804863 0.4673505 0.02898566 -0.4251491 0.9046591 -0.07828876 0.6301106 -0.7725487 -0.09491164 0.5977255 -0.7960628 -0.07820963 0.6314 -0.7715032 -0.108761 0.8685177 0.4835783 -0.09607311 0.5981685 -0.7955906 -0.108613 0.867963 0.4846065 -0.08645012 0.4371574 -0.8952205 -0.08527412 0.4297227 -0.8989253 - - - - - - - - - - 0.2358398 0.78125 0.2353516 0.7753906 0.2216797 0.7807617 0.2368164 0.769043 0.2353516 0.7753906 0.2358398 0.78125 0.2353516 0.7753906 0.2211914 0.7753906 0.2216797 0.7807617 0.2353516 0.7753906 0.2368164 0.769043 0.2358398 0.7636719 0.2368164 0.769043 0.237793 0.7753906 0.2353516 0.7753906 0.2358398 0.7636719 0.2211914 0.7753906 0.2216797 0.7807617 0.2211914 0.7753906 0.2075195 0.7802734 0.2368164 0.769043 0.2358398 0.7573242 0.2382813 0.7631836 0.2358398 0.7573242 0.2211914 0.7753906 0.2358398 0.7636719 0.2211914 0.7670898 0.2211914 0.7753906 0.2070313 0.7753906 0.2075195 0.7802734 0.2358398 0.7573242 0.2211914 0.7670898 0.2358398 0.7636719 0.2211914 0.7753906 0.2211914 0.7670898 0.2070312 0.7753906 0.2358398 0.7573242 0.2216797 0.7612305 0.2211914 0.7670898 0.2070313 0.7753906 0.2070313 0.7705078 0.2216797 0.7612305 0.2070312 0.7646484 0.2211914 0.7670898 0.2211914 0.7670898 0.2070313 0.7646484 0.2070313 0.7705078 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 1 6 6 7 2 8 7 9 8 10 9 11 3 12 5 0 10 13 7 14 9 15 11 16 2 17 6 18 12 19 13 11 14 20 15 21 14 20 16 22 15 23 11 24 9 25 17 26 6 27 18 28 12 29 19 30 20 31 21 32 11 33 17 34 22 35 19 36 23 37 20 38 22 39 17 38 24 40 23 41 25 42 20 43 20 44 25 45 26 46

-
-
-
- - - - -396.4472 -134.8944 75.90131 -396.1964 -136.7972 77.38786 -396.2449 -135.1379 75.46871 -396.4472 -134.8944 75.90131 -396.2449 -135.1379 75.46871 -397.4822 -134.8944 75.90131 -396.3905 -135.9206 77.89261 -397.6845 -135.1379 75.4687 -397.7087 -135.9206 77.89261 -396.4472 -134.8944 75.90131 -397.4822 -134.8944 75.90131 -396.3905 -135.9206 77.89261 -397.4822 -134.8944 75.90131 -397.6845 -135.1379 75.4687 -397.9037 -136.7972 77.38787 -397.7087 -135.9206 77.89261 - - - - - - - - - - 0.9333787 0.2891337 0.2126169 0.9750187 0.2015144 0.09343746 0.9151922 0.3160235 0.2501047 -3.161283e-005 0.8714394 -0.4905032 -2.302549e-005 0.8714499 -0.4904845 -1.016173e-005 0.8714656 -0.4904566 0.9815372 0.1799731 0.06476452 -4.96892e-006 0.871472 -0.4904453 -1.815025e-005 0.8889081 0.4580856 -2.564216e-005 0.88891 0.4580818 -3.224667e-005 0.8889117 0.4580785 -1.265924e-005 0.8889067 0.4580883 -0.9250183 0.3389604 0.1716013 -0.9043086 0.3685677 0.2153688 -0.9698589 0.2412996 0.03388684 -0.9762195 0.2167833 0.0007037651 - - - - - - - - - - 0.4931641 0.4604492 0.5229492 0.4916992 0.4892578 0.4741211 0.4931641 0.4604492 0.4868164 0.465332 0.4936523 0.4375 0.4931641 0.4604492 0.5239258 0.4643555 0.5229492 0.4916992 0.4936523 0.4375 0.4868164 0.465332 0.487793 0.4282227 0.5239258 0.4326172 0.4931641 0.4604492 0.4936523 0.4375 0.5239258 0.4643555 0.4931641 0.4604492 0.5239258 0.4326172 0.4936523 0.4375 0.4897461 0.425293 0.5253906 0.4042969 0.4936523 0.4375 0.5253906 0.4042969 0.5239258 0.4326172 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -425.9689 -134.8944 75.90133 -426.1711 -135.1379 75.46871 -426.2197 -136.7972 77.38786 -425.9689 -134.8944 75.90133 -424.9339 -134.8944 75.90131 -426.1711 -135.1379 75.46871 -426.0257 -135.9206 77.89263 -424.7074 -135.9206 77.89263 -424.9339 -134.8944 75.90131 -425.9689 -134.8944 75.90133 -424.7316 -135.1379 75.4687 -426.0257 -135.9206 77.89263 -424.9339 -134.8944 75.90131 -424.7074 -135.9206 77.89263 -424.5124 -136.7972 77.38788 -424.7316 -135.1379 75.4687 - - - - - - - - - - -0.9334174 0.2890617 0.2125446 -0.9152481 0.3159364 0.2500101 -0.9750232 0.2014933 0.09343547 2.271587e-005 0.8714503 -0.4904838 1.100265e-005 0.8714646 -0.4904584 1.802723e-005 0.871456 -0.4904737 -0.9815374 0.1799661 0.06478109 2.25861e-006 0.8889074 0.4580869 4.055397e-005 0.8889173 0.4580677 2.261156e-005 0.8889127 0.4580767 8.166953e-006 0.8714681 -0.4904522 -1.26592e-005 0.8889036 0.4580944 0.9250187 0.3389587 0.1716022 0.9762208 0.2167773 0.0006984919 0.9698603 0.2412945 0.03388274 0.9043076 0.368568 0.2153728 - - - - - - - - - - 0.4931641 0.4604492 0.4892578 0.4741211 0.5229492 0.4916992 0.4931641 0.4604492 0.4936523 0.4375 0.4868164 0.465332 0.4931641 0.4604492 0.5229492 0.4916992 0.5239258 0.4643555 0.5239258 0.4326172 0.4936523 0.4375 0.4931641 0.4604492 0.4936523 0.4375 0.487793 0.4282227 0.4868164 0.465332 0.5239258 0.4326172 0.4931641 0.4604492 0.5239258 0.4643555 0.4936523 0.4375 0.5239258 0.4326172 0.5253906 0.4042969 0.4936523 0.4375 0.5253906 0.4042969 0.4897461 0.425293 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -448.8033 -127.0111 57.75534 -448.8015 -127.2369 57.64723 -448.7503 -127.3342 57.94805 - - - - - - - - - - -0.9895161 -0.1004666 0.1037515 -0.9867301 -0.07645923 0.1432403 -0.9901903 -0.1159954 0.07789869 - - - - - - - - - - 0.2070312 0.7705078 0.2060547 0.7700195 0.2060547 0.7753906 - - - - - - - - - - - - - - -

0 0 1 1 2 2

-
-
-
- - - - -448.8033 -127.0111 57.75534 -448.7503 -127.3342 57.94805 -448.7731 -127.1608 58.03028 - - - - - - - - - - -0.9895161 -0.1004666 0.1037515 -0.9901903 -0.1159954 0.07789869 -0.989054 -0.1445242 0.02974944 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -427.1935 -367.5031 38.52408 -425.3476 -368.2839 37.28255 -417.8023 -369.1094 37.28254 -425.7471 -368.2935 37.05344 -417.8023 -369.1094 37.28254 -425.3476 -368.2839 37.28255 -424.2171 -367.3775 36.91738 -417.7944 -368.5771 38.70444 -426.92 -368.9454 33.39009 -425.3476 -368.2839 37.28255 -425.7471 -368.2935 37.05344 -424.2171 -367.3775 36.91738 -409.9574 -368.2102 36.97748 -409.9574 -369.3948 37.28254 -427.1935 -367.5031 38.52408 -429.1994 -365.9711 38.50774 -426.92 -368.9454 33.39009 -425.686 -369.015 34.14701 -425.7471 -368.2935 37.05344 -425.686 -369.015 34.14701 -424.2171 -367.3775 36.91738 -409.9574 -369.3948 37.28254 -409.9575 -368.8626 38.70445 -428.8754 -367.2903 33.3449 -425.6318 -369.3092 32.55448 -424.1741 -367.9368 34.24339 -395.6979 -367.3775 36.91738 -402.1126 -369.1094 37.28254 -426.6766 -369.6061 28.03281 -425.3916 -369.3115 32.87213 -425.6137 -369.7033 29.87345 -424.1741 -367.9368 34.24339 -425.686 -369.015 34.14701 -425.3916 -369.1118 33.90806 -402.1126 -369.1094 37.28254 -402.1205 -368.5771 38.70445 -426.6766 -369.6061 28.03281 -428.7712 -368.0464 30.04128 -425.3916 -369.3115 32.87213 -425.6318 -369.3092 32.55448 -424.1191 -368.2373 32.54384 -425.3916 -369.1118 33.90806 -425.6318 -369.3092 32.55448 -425.6137 -369.7033 29.87345 -424.1191 -368.2373 32.54384 -409.9574 -368.8923 34.25946 -424.1741 -367.9368 34.24339 -425.3916 -369.1118 33.90806 -394.5673 -368.2839 37.28254 -394.5673 -368.2839 37.28254 -425.1581 -369.8156 29.4714 -409.9574 -369.3418 32.57061 -425.3916 -369.3115 32.87213 -424.1191 -368.2373 32.54384 -409.9574 -370.5888 32.87212 -424.0421 -368.7022 29.76112 -409.9574 -370.3756 33.90805 -394.5673 -368.2839 37.28254 -395.6979 -367.3775 36.91738 -394.1678 -368.2934 37.05344 -392.7214 -367.5031 38.52407 -424.0421 -368.7022 29.76112 -425.6137 -369.7033 29.87345 -425.1581 -369.8156 29.4714 -417.8661 -370.6909 27.98649 -409.9574 -370.5888 32.87212 -409.9574 -370.3756 33.90805 -395.7408 -367.9368 34.24339 -394.1678 -368.2934 37.05344 -395.6979 -367.3775 36.91738 -395.7408 -367.9368 34.24339 -394.1678 -368.2934 37.05344 -417.8661 -370.6337 29.46253 -424.0421 -368.7022 29.76112 -425.1581 -369.8156 29.4714 -417.8661 -370.6337 29.46253 -394.5232 -369.3115 32.87212 -394.5233 -369.1117 33.90806 -394.5233 -369.1117 33.90806 -394.2288 -369.015 34.14701 -392.9948 -368.9454 33.39009 -409.9574 -369.6859 29.7554 -409.9574 -370.9126 29.45293 -394.5232 -369.3115 32.87212 -395.7958 -368.2374 32.54384 -394.2288 -369.015 34.14701 -395.7408 -367.9368 34.24339 -394.5233 -369.1117 33.90806 -394.2288 -369.015 34.14701 -392.7214 -367.5031 38.52407 -390.7155 -365.9711 38.50774 -409.9574 -370.9126 29.45293 -409.9574 -371.0229 27.94493 -394.2831 -369.3092 32.55448 -394.5232 -369.3115 32.87212 -395.7958 -368.2374 32.54384 -394.2831 -369.3092 32.55448 -391.0395 -367.2903 33.34489 -395.8728 -368.7023 29.76112 -402.0488 -370.6337 29.46253 -394.2831 -369.3092 32.55448 -395.7958 -368.2374 32.54384 -394.3012 -369.7033 29.87342 -394.3012 -369.7033 29.87342 -391.1436 -368.0463 30.04128 -402.0488 -370.6337 29.46253 -402.0488 -370.6909 27.98649 -395.8728 -368.7023 29.76112 -393.2382 -369.6061 28.03279 -394.7568 -369.8156 29.47137 -394.7568 -369.8156 29.47137 -394.3012 -369.7033 29.87342 -395.8728 -368.7023 29.76112 -394.7568 -369.8156 29.47137 - - - - - - - - - - -0.1823436 -0.9278124 0.3254457 -0.1207262 -0.9113153 0.393611 -0.07242312 -0.9326893 0.3533349 -0.2150483 -0.9344459 0.2838399 -0.01139657 -0.2470782 -0.9689285 -0.03653158 -0.3338859 -0.9419053 -0.03418502 -0.3258089 -0.9448174 -0.07388649 -0.9338381 0.3499816 -0.196114 -0.9632639 0.1834719 0.366523 -0.7027751 -0.6097278 0.366523 -0.7027751 -0.6097278 0.366523 -0.7027751 -0.6097278 0.0006536674 -0.2489739 -0.96851 -1.630823e-005 -0.9365408 0.3505586 -0.5971898 -0.7799269 0.1872921 -0.6102823 -0.7721681 0.1769516 -0.6385146 -0.7618691 0.108879 -0.1839732 -0.9610461 0.2062625 0.5155767 -0.8290072 0.2166281 0.5457985 -0.8154793 0.1926073 0.5327707 -0.8215287 0.2030909 0.0006405463 -0.2489516 -0.9685157 -1.803282e-005 -0.9365414 0.350557 -0.6238059 -0.7711356 0.1273419 -0.1868414 -0.9701151 0.1548129 0.5638012 -0.8065491 0.1777832 0.03412389 -0.3258226 -0.9448149 0.0675931 -0.9342765 0.3500838 -0.5645856 -0.8162825 0.1221718 -0.1703266 -0.9691428 0.1781885 -0.2351312 -0.9675633 0.09238276 0.3792663 -0.5951999 0.7084449 0.3792663 -0.5951999 0.7084449 0.3792663 -0.5951999 0.7084449 0.01010623 -0.241995 -0.9702249 0.06886574 -0.9329493 0.3533597 -0.1885368 -0.9811901 0.04147196 -0.4681887 -0.8644555 0.1830738 0.5269719 -0.7477369 -0.403968 0.5269719 -0.7477369 -0.403968 0.5269719 -0.7477369 -0.403968 -0.1320115 -0.9732708 0.187928 0.5743335 -0.8093498 0.1228574 0.552022 -0.821634 0.1420891 0.560691 -0.8169968 0.1346912 -0.001128187 -0.2311963 0.9729065 -0.01834878 -0.2567674 0.966299 -0.01840912 -0.253784 0.9670857 0.03652923 -0.3338893 -0.9419042 0.1289672 -0.9160592 0.3797408 -0.1477325 -0.9889085 0.01532969 -2.612913e-007 -0.2367481 -0.9715711 -0.01934404 -0.2674693 -0.9633722 -0.01933098 -0.271197 -0.9623297 1.066192e-006 -0.9795838 0.2010363 0.5386698 -0.8284518 0.1533051 -0.00101169 -0.231251 0.9728936 -0.3664778 -0.7027556 -0.6097775 -0.3664778 -0.7027556 -0.6097775 -0.3664778 -0.7027556 -0.6097775 0.1861499 -0.9267648 0.3262747 0.4352416 -0.6088692 0.6632066 0.4352416 -0.6088692 0.6632066 0.4352416 -0.6088692 0.6632066 -0.07417836 -0.9965442 0.03737968 -2.446696e-007 -0.2350056 -0.971994 1.121027e-006 -0.9794745 0.2015682 0.0206351 -0.2532734 0.9671746 -0.5327311 -0.8238267 0.1936678 -0.5168889 -0.8362138 0.1832275 -0.5447027 -0.8140341 0.2016122 0.215058 -0.9344507 0.2838167 -0.01354869 -0.1982675 0.9800543 -0.02328979 -0.2250629 0.9740658 -0.02447511 -0.228717 0.9731852 -0.07341457 -0.996552 0.03865786 0.01934353 -0.2674775 -0.9633699 0.1422592 -0.9732671 0.1803152 0.02083039 -0.2543716 0.9668822 -0.5585757 -0.8021987 0.2108801 0.4127199 -0.895365 0.1672838 0.004184559 -0.2367319 0.971566 -0.002831129 -0.9974757 0.07095223 0.1856566 -0.9648285 0.1861115 0.01933046 -0.2712063 -0.9623271 -0.3792945 -0.5952462 0.7083909 -0.3792945 -0.5952462 0.7083909 -0.3792945 -0.5952462 0.7083909 0.1831322 -0.9616425 0.2042213 0.597196 -0.7799224 0.1872912 0.6102867 -0.7721645 0.1769522 0.004069463 -0.2365718 0.9716055 -0.002804129 -0.9974768 0.07093826 0.186278 -0.969888 0.1569003 -0.5269605 -0.7477479 -0.4039625 -0.5269605 -0.7477479 -0.4039625 -0.5269605 -0.7477479 -0.4039625 0.6406017 -0.7526615 0.152086 0.02286851 -0.2251542 0.9740547 0.07627162 -0.9962579 0.04065457 -0.5743197 -0.8093583 0.1228656 -0.5606766 -0.8170054 0.1346994 -0.5520067 -0.8216428 0.1420977 0.2351451 -0.9675592 0.09239001 0.5752149 -0.8118657 0.1000094 0.005976021 -0.1714144 0.9851809 0.0770792 -0.9964012 0.03526182 -0.5386538 -0.8284606 0.1533138 0.3119496 -0.9485362 0.05446551 0.02448212 -0.2287344 0.973181 0.1477479 -0.9889063 0.01532268 -0.4352048 -0.6088461 0.663252 -0.4352048 -0.6088461 0.663252 -0.4352048 -0.6088461 0.663252 - - - - - - - - - - 0.3012695 0.5146484 0.2919922 0.4995117 0.2485352 0.4985352 0.3012695 0.5146484 0.2944336 0.4970703 0.2485352 0.4985352 0.2919922 0.4995117 0.2841797 0.487793 0.2490234 0.5151367 0.3012695 0.5146484 0.2485352 0.4985352 0.3012695 0.5146484 0.3007813 0.4550781 0.2944336 0.4970703 0.2919922 0.4995117 0.2944336 0.4970703 0.2841797 0.487793 0.2055664 0.4853516 0.2485352 0.4985352 0.2841797 0.487793 0.2490234 0.5151367 0.2485351 0.4985351 0.2055664 0.4985351 0.3012695 0.5146484 0.309082 0.5146484 0.3007812 0.4550781 0.2944336 0.4970703 0.3007813 0.4550781 0.293457 0.4633789 0.2944336 0.4970703 0.293457 0.4633789 0.2841797 0.487793 0.2055664 0.4985351 0.2485351 0.4985351 0.2055664 0.4853515 0.2060547 0.5151367 0.2490234 0.5151367 0.2055664 0.4985351 0.309082 0.4580078 0.3007812 0.4550781 0.293457 0.4633789 0.3007813 0.4550781 0.293457 0.4453125 0.2841797 0.487793 0.293457 0.4633789 0.2841797 0.4750977 0.2841797 0.487793 0.2055664 0.4985352 0.2055664 0.4853516 0.2060547 0.5151367 0.2055664 0.4985351 0.2485352 0.4985351 0.3007813 0.4550781 0.309082 0.4580078 0.2993164 0.3969727 0.293457 0.4633789 0.293457 0.4453125 0.2919922 0.4487305 0.293457 0.4155273 0.293457 0.4453125 0.293457 0.4633789 0.2915039 0.4604492 0.2841797 0.487793 0.2485352 0.4985352 0.2055664 0.4985352 0.2060547 0.5151367 0.2485351 0.4985351 0.2490234 0.5151367 0.3007812 0.4550781 0.2993164 0.3969727 0.293457 0.4155273 0.309082 0.4580078 0.309082 0.4155273 0.2993164 0.3969727 0.2919922 0.4487305 0.293457 0.4453125 0.2841797 0.4350586 0.293457 0.4633789 0.2919922 0.4487305 0.2915039 0.4604492 0.293457 0.4453125 0.293457 0.4155273 0.2841797 0.4350586 0.2060547 0.4760742 0.2841797 0.4750977 0.2915039 0.4604492 0.2919922 0.4995117 0.2485352 0.4985352 0.2841797 0.487793 0.2490234 0.5151367 0.2485352 0.4985352 0.2919922 0.4995117 0.293457 0.4155273 0.2993164 0.3969727 0.2900391 0.4101563 0.2050781 0.4331055 0.2919922 0.4487305 0.2841797 0.4350586 0.2915039 0.4604492 0.2919922 0.4487305 0.2045898 0.4472656 0.2841797 0.4350586 0.293457 0.4155273 0.2836914 0.4243164 0.2060547 0.4760742 0.2915039 0.4604492 0.2050781 0.4594727 0.2919922 0.4995117 0.2841797 0.487793 0.2944336 0.4970703 0.2490234 0.5151367 0.2919922 0.4995117 0.3012695 0.5146484 0.2836914 0.4243164 0.293457 0.4155273 0.2900391 0.4101563 0.2900391 0.4101562 0.2993164 0.3969727 0.2485352 0.3969727 0.2045898 0.4472656 0.2919922 0.4487305 0.2050781 0.4331055 0.2915039 0.4604492 0.2045898 0.4472656 0.2050781 0.4594727 0.2841797 0.4750977 0.2060547 0.4760742 0.2050781 0.4594727 0.2944336 0.4970703 0.2841797 0.487793 0.2841797 0.4750977 0.3012695 0.5146484 0.2919922 0.4995117 0.2944336 0.4970703 0.2485352 0.4091797 0.2836914 0.4243164 0.2900391 0.4101562 0.2900391 0.4101563 0.2485352 0.3969727 0.2485352 0.4091797 0.2919922 0.4487305 0.2045898 0.4472656 0.2050781 0.4331055 0.2915039 0.4604492 0.2050781 0.4594727 0.2045898 0.4472656 0.2915039 0.4604492 0.2841797 0.4750977 0.2050781 0.4594727 0.2944336 0.4970703 0.2841797 0.4750977 0.293457 0.4633789 0.3012695 0.5146484 0.2944336 0.4970703 0.3007813 0.4550781 0.2050781 0.4233398 0.2836914 0.4243164 0.2485352 0.4091797 0.2485353 0.3969729 0.20459 0.4091799 0.2915039 0.4604492 0.2045898 0.4472656 0.2919922 0.4487305 0.2919922 0.4487305 0.2050781 0.4331055 0.293457 0.4633789 0.2841797 0.4750977 0.2915039 0.4604492 0.2944336 0.4970703 0.293457 0.4633789 0.3007813 0.4550781 0.3012695 0.5146484 0.3007813 0.4550781 0.309082 0.5146484 0.2050781 0.4233398 0.2485352 0.4091797 0.2045898 0.4091797 0.2045898 0.4091797 0.2485352 0.3969727 0.2045898 0.3964844 0.2915039 0.4604492 0.2919922 0.4487305 0.293457 0.4453125 0.2919922 0.4487305 0.2841797 0.4350586 0.293457 0.4453125 0.293457 0.4633789 0.2915039 0.4604492 0.293457 0.4453125 0.293457 0.4633789 0.293457 0.4453125 0.3007813 0.4550781 0.309082 0.5146484 0.3007812 0.4550781 0.309082 0.4580078 0.2836914 0.4243164 0.2050781 0.4233398 0.2045898 0.4091797 0.2485352 0.4091797 0.2045898 0.4091797 0.2045898 0.3964844 0.293457 0.4453125 0.2841797 0.4350586 0.293457 0.4155273 0.3007812 0.4550781 0.293457 0.4453125 0.293457 0.4155273 0.3007813 0.4550781 0.309082 0.4155273 0.309082 0.4580078 0.2836914 0.4243164 0.2045898 0.4091797 0.2485352 0.4091797 0.2485352 0.4091797 0.2045898 0.3964844 0.2485352 0.3969727 0.2841797 0.4350586 0.2836914 0.4243164 0.293457 0.4155273 0.3007813 0.4550781 0.293457 0.4155273 0.2993164 0.3969727 0.3007812 0.4550781 0.2993164 0.3969727 0.309082 0.4155273 0.2900391 0.4101563 0.2836914 0.4243164 0.2485352 0.4091797 0.2900391 0.4101563 0.2485352 0.4091797 0.2485352 0.3969727 0.293457 0.4155273 0.2836914 0.4243164 0.2900391 0.4101562 0.293457 0.4155273 0.2900391 0.4101562 0.2993164 0.3969727 0.2900391 0.4101562 0.2485352 0.3969727 0.2993164 0.3969727 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 3 4 1 1 4 5 5 6 6 7 7 8 0 9 2 10 0 11 8 12 3 13 9 14 10 15 11 16 12 17 4 18 6 19 7 20 2 21 13 22 14 23 15 24 16 25 3 26 8 27 17 28 18 29 19 30 20 31 21 32 4 33 12 34 22 35 7 36 13 37 15 24 23 38 16 39 17 40 8 41 24 42 20 43 19 44 25 45 26 46 21 47 12 48 22 49 13 50 27 51 16 52 23 53 28 54 17 55 24 56 29 57 8 41 30 58 24 59 31 45 32 60 33 61 26 62 34 63 21 64 22 65 27 66 35 67 8 68 36 69 30 70 23 71 37 72 28 73 38 74 39 75 40 76 17 77 29 78 41 79 42 80 43 81 44 82 45 83 46 84 47 85 48 86 34 87 26 88 35 89 27 90 49 91 30 92 36 93 50 94 51 95 52 96 53 97 41 98 29 99 54 100 44 101 43 102 55 103 45 104 47 105 56 106 57 107 58 108 59 109 35 110 49 111 60 112 61 113 62 114 63 115 50 116 36 117 64 118 65 119 52 120 51 121 41 122 54 123 66 124 67 125 45 126 56 127 68 128 69 129 70 130 60 131 49 132 71 133 72 134 73 135 74 136 50 137 64 138 75 139 76 140 65 141 51 142 77 143 66 144 54 145 78 146 67 147 56 148 68 149 70 150 79 151 60 152 71 153 80 154 81 155 73 156 72 157 75 157 64 158 82 159 77 160 54 161 83 162 76 163 51 164 84 82 85 165 86 166 87 167 71 168 88 169 80 170 89 171 80 172 90 173 81 174 72 175 91 176 82 177 64 178 92 179 77 180 83 181 93 182 94 183 95 184 96 185 88 186 77 187 93 188 88 189 93 190 80 191 90 192 80 193 97 194 98 195 81 196 91 197 99 198 82 199 92 200 100 201 101 202 102 203 80 204 93 205 103 206 80 207 104 208 97 209 98 210 91 211 105 212 99 213 92 214 106 215 101 216 107 217 102 218 80 219 103 220 108 221 80 222 108 223 104 224 109 225 98 226 105 227 110 228 99 229 106 230 111 231 112 232 113 233 103 234 110 235 108 236 110 237 106 238 108 239

-
-
-
- - - - -431.4597 -202.1952 16.75629 -431.6129 -213.5132 16.0502 -431.0897 -213.4197 17.30986 -430.7198 -202.1545 17.06006 -431.4597 -202.1952 16.75629 -431.0897 -213.4197 17.30986 -431.7662 -202.2935 16.02294 -429.8266 -213.4584 16.78809 -430.7198 -202.1545 17.06006 -431.0897 -213.4197 17.30986 -430.7198 -202.1545 17.06006 -430.7198 -202.2935 16.02293 -431.4597 -202.1952 16.75629 -431.7662 -202.2935 16.02294 -431.7662 -202.2935 16.02294 -431.4597 -202.3919 15.28957 -431.6129 -213.5132 16.0502 -429.9799 -202.1952 16.75629 -429.9799 -202.1952 16.75629 -431.7662 -202.2935 16.02294 -431.4597 -202.3919 15.28957 -430.7197 -202.4326 14.9858 -431.6129 -213.5132 16.0502 -431.4597 -202.3919 15.28957 -429.9799 -202.1952 16.75629 -429.8266 -213.4584 16.78809 -429.6733 -202.2935 16.02293 -429.6733 -202.2935 16.02293 -430.7197 -202.4326 14.9858 -430.3498 -213.552 15.52843 -429.6733 -202.2935 16.02293 -429.8266 -213.4584 16.78809 -430.3498 -213.552 15.52843 -429.9799 -202.3919 15.28957 -429.9799 -202.3919 15.28957 -430.3498 -213.552 15.52843 -430.7197 -202.4326 14.9858 -429.9799 -202.3919 15.28957 - - - - - - - - - - -0.9221317 -0.01164378 0.3867008 -0.923092 -0.01148773 0.3844076 -0.9231429 -0.01147942 0.3842855 -0.3811297 0.03300246 0.9239323 -0.3811297 0.03300246 0.9239323 -0.3811297 0.03300246 0.9239323 -0.9220432 -0.01165812 0.3869114 0.3818954 0.0079419 0.9241714 0.3802789 0.007798105 0.924839 0.3819803 0.007949458 0.9241363 2.535736e-005 0.991129 -0.1329031 6.159451e-006 0.9911292 -0.1329015 9.536185e-006 0.9911277 -0.1329129 -2.980863e-007 0.9911264 -0.1329226 -0.9232421 -0.01354788 -0.3839798 -0.9232421 -0.01354788 -0.3839798 -0.9232421 -0.01354788 -0.3839798 0.3801359 0.007785385 0.9248979 1.56718e-005 0.9911311 -0.1328876 -2.980831e-007 0.9911266 -0.1329212 -1.874864e-005 0.9911291 -0.1329029 -0.3818992 -0.0578218 -0.9223934 -0.3826245 -0.05773498 -0.9220982 -0.3818372 -0.05782922 -0.9224186 0.9232111 0.01364998 0.3840508 0.9232111 0.01364998 0.3840508 0.9232111 0.01364998 0.3840508 -4.580178e-023 0.9911299 -0.1328964 -4.188111e-007 0.9911315 -0.1328846 -0.3826625 -0.05773044 -0.9220828 0.9237971 -0.03877288 -0.3809142 0.9238292 -0.03877824 -0.3808359 0.9238275 -0.03877797 -0.3808398 1.818058e-005 0.9911291 -0.1329026 0.3811225 -0.03240819 -0.9239564 0.3811225 -0.03240819 -0.9239564 0.3811225 -0.03240819 -0.9239564 0.9237943 -0.0387724 -0.380921 - - - - - - - - - - 0.237793 0.7490234 0.2314453 0.6342773 0.2397461 0.6347656 0.2084961 0.7495117 0.2045898 0.7490234 0.206543 0.6347656 0.237793 0.7490234 0.2333984 0.7480469 0.2314453 0.6342773 0.2148437 0.6347656 0.2084961 0.7495117 0.206543 0.6347656 0.2563477 0.8408203 0.2563477 0.8071289 0.2680664 0.8310547 0.2563477 0.8071289 0.2729492 0.8071289 0.2333984 0.7480469 0.2294922 0.7475586 0.2314453 0.6342773 0.2148438 0.6347656 0.2128906 0.7490234 0.2084961 0.7495117 0.2563477 0.8408203 0.2446289 0.8310547 0.2563477 0.8071289 0.2729492 0.8071289 0.2563477 0.8071289 0.2680664 0.7836914 0.2250977 0.7470703 0.2294922 0.7475586 0.2128906 0.7490234 0.2148438 0.6347656 0.2167969 0.7480469 0.2446289 0.8310547 0.2397461 0.8071289 0.2563477 0.8071289 0.2563477 0.8071289 0.2563477 0.7739258 0.2680664 0.7836914 0.2231445 0.6342773 0.2314453 0.6342773 0.2250977 0.7470703 0.2167969 0.7480469 0.2148438 0.6347656 0.2231445 0.6342773 0.2397461 0.8071289 0.2446289 0.7836914 0.2563477 0.8071289 0.2563477 0.8071289 0.2446289 0.7836914 0.2563477 0.7739258 0.2211914 0.7475586 0.2231445 0.6342773 0.2250977 0.7470703 0.2167969 0.7480469 0.2231445 0.6342773 0.2211914 0.7475586 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 0 6 6 7 1 8 7 9 8 10 9 11 10 12 11 13 12 14 12 14 11 15 13 16 14 17 15 18 16 19 7 20 17 21 8 22 10 23 18 24 11 25 19 26 11 27 20 28 21 29 22 19 23 30 24 31 25 32 26 33 18 34 27 35 11 36 11 37 28 38 20 39 29 40 22 41 21 42 30 43 31 44 32 45 27 46 33 47 11 48 11 49 33 50 28 51 34 52 35 53 36 54 30 55 32 56 37 57

-
-
-
- - - - -427.356 -229.3489 68.53168 -427.4896 -271.4839 69.49826 -427.4896 -270.2081 68.23078 -427.356 -229.3489 68.53168 -427.4896 -270.2081 68.23078 -428.9833 -270.2081 68.23077 -427.356 -228.4672 69.90965 -427.356 -229.3489 68.53168 -428.9833 -270.2081 68.23077 -428.8496 -229.3488 68.53169 -427.356 -228.4672 69.90965 -428.3759 -271.4837 69.49833 -427.4896 -271.4839 69.49826 -428.1332 -228.4459 69.90972 -428.8496 -229.3488 68.53169 -428.9833 -270.2081 68.23077 -428.1332 -228.4459 69.90972 -428.3759 -271.4837 69.49833 - - - - - - - - - - 0.9999933 -0.003127204 0.001925614 0.9999901 -0.003241364 -0.003051213 0.9999894 -0.003246322 -0.00326743 -5.722106e-006 0.007364439 -0.9999729 6.191369e-006 0.007363964 -0.9999729 6.191369e-006 0.007363964 -0.9999729 0.9999931 -0.003125498 0.001999938 -6.006399e-006 0.00736445 -0.9999729 5.907074e-006 0.007363976 -0.9999729 -6.006399e-006 0.00736445 -0.9999729 -0.0001614203 -0.009557588 0.9999543 7.017203e-005 -0.009563079 0.9999543 7.291187e-005 -0.009563144 0.9999543 -0.8876018 -0.0004495964 0.4606114 -0.887116 -0.0004970672 0.4615462 -0.9012276 0.0009239515 0.4333451 -0.0001644863 -0.009557515 0.9999543 -0.9014508 0.0009471716 0.4328805 - - - - - - - - - - 0.2480469 0.9711914 0.04296875 0.9536133 0.05029297 0.9667969 0.05566406 0.9038086 0.2617187 0.902832 0.2617187 0.8876953 0.2529297 0.9570312 0.04296875 0.9536133 0.2480469 0.9711914 0.05566406 0.9038086 0.2617187 0.8876953 0.05566406 0.8886719 0.2529297 0.9570313 0.04296875 0.9438477 0.04296875 0.9536133 0.2529297 0.9492187 0.2485351 0.9335937 0.05078125 0.9301757 0.2529297 0.9570313 0.2529297 0.9492188 0.04296875 0.9438477 0.2529297 0.9492187 0.05078125 0.9301758 0.04296875 0.9438477 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -392.5601 -229.3489 68.53169 -392.4261 -270.2081 68.23077 -392.4261 -271.4838 69.49826 -390.9324 -270.2081 68.23078 -392.4261 -270.2081 68.23077 -392.5601 -229.3489 68.53169 -392.5601 -228.4671 69.90965 -390.9324 -270.2081 68.23078 -392.5601 -229.3489 68.53169 -391.0664 -229.3488 68.53168 -391.5397 -271.4837 69.49833 -392.5601 -228.4671 69.90965 -392.4261 -271.4838 69.49826 -391.0664 -229.3488 68.53168 -391.5397 -271.4837 69.49833 -390.9324 -270.2081 68.23078 -391.7829 -228.4459 69.90972 -391.7829 -228.4459 69.90972 - - - - - - - - - - -0.9999933 -0.003135718 0.001904022 -0.9999893 -0.003254527 -0.003275616 -0.99999 -0.003249582 -0.003059962 6.283921e-006 0.007364458 -0.9999729 6.283921e-006 0.007364458 -0.9999729 -6.171946e-006 0.007363962 -0.9999729 -0.9999931 -0.003134017 0.001978155 5.986683e-006 0.007364446 -0.9999729 -6.469186e-006 0.00736395 -0.9999729 -6.469186e-006 0.00736395 -0.9999729 -7.037445e-005 -0.009563076 0.9999543 0.0001609618 -0.009557589 0.9999543 -7.311132e-005 -0.009563141 0.9999543 0.8876426 0.0005944794 0.4605326 0.90131 -0.0001866944 0.4331745 0.9019194 -0.0002226808 0.4319043 0.0001640246 -0.009557516 0.9999543 0.8874036 0.0006077252 0.4609929 - - - - - - - - - - 0.2480469 0.9711914 0.05029297 0.9667969 0.04296875 0.9536133 0.2617188 0.8876953 0.2617188 0.902832 0.05566406 0.9038086 0.2529297 0.9570313 0.2480469 0.9711914 0.04296875 0.9536133 0.2617187 0.8876953 0.05566406 0.9038086 0.05566406 0.8886719 0.04296875 0.9438477 0.2529297 0.9570313 0.04296875 0.9536133 0.2485352 0.9335938 0.04296875 0.9438477 0.05078125 0.9301758 0.04296875 0.9438477 0.2529297 0.9492187 0.2529297 0.9570312 0.2529297 0.9492188 0.04296875 0.9438477 0.2485352 0.9335938 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -428.204 -238.7199 69.40101 -428.204 -238.7198 68.52802 -391.7531 -238.7198 68.52802 -391.7531 -238.7198 69.40101 -391.7531 -238.7198 69.40101 -428.204 -236.2658 69.40101 -428.204 -238.7199 69.40101 -391.7531 -236.2659 69.40101 -391.7531 -236.2659 69.40101 -428.204 -236.2658 68.52802 -428.204 -236.2658 69.40101 -391.7531 -236.2658 68.52802 - - - - - - - - - - 3.140501e-008 -1 -6.320138e-005 3.212118e-022 -1 -6.451266e-005 2.028689e-006 -1 2.019297e-005 2.060093e-006 -1 2.150422e-005 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 3.925515e-008 1 4.136938e-005 2.53586e-006 1 -6.287367e-005 2.575116e-006 1 -6.451277e-005 -8.030262e-023 1 4.300844e-005 - - - - - - - - - - 0.6933594 0.9262695 0.6933594 0.9174805 0.8774414 0.9174805 0.8774414 0.9262695 0.8774414 0.9262695 0.6933594 0.9511719 0.8774414 0.9511719 0.6933594 0.9511719 0.8774414 0.9262695 0.8774414 0.9511719 0.6933594 0.9599609 0.6933594 0.9511719 0.8774414 0.9511719 0.8774414 0.9599609 0.6933594 0.9599609 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 0 2 2 3 3 4 4 5 5 6 0 7 6 5 7 4 8 8 9 9 10 10 11 8 12 11 13 9 14

-
-
-
- - - - -391.753 -265.4833 69.40101 -391.753 -265.4833 68.52802 -428.2039 -265.4833 68.52802 -428.2039 -265.4832 69.40101 -391.7529 -267.9372 69.40101 -391.753 -265.4833 69.40101 -428.2039 -265.4832 69.40101 -428.2039 -267.9373 69.40101 -428.2039 -267.9373 69.40101 -391.753 -267.9372 68.52803 -391.7529 -267.9372 69.40101 -428.2039 -267.9372 68.52803 - - - - - - - - - - 3.925515e-008 1 4.136938e-005 -8.030262e-023 1 4.300844e-005 2.53586e-006 1 -6.287367e-005 2.575116e-006 1 -6.451277e-005 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 3.140464e-008 -1 -6.320207e-005 2.028688e-006 -1 2.019315e-005 2.060091e-006 -1 2.150436e-005 1.606093e-022 -1 -6.451335e-005 - - - - - - - - - - 0.8774414 0.9511719 0.8774414 0.9599609 0.6933594 0.9599609 0.8774414 0.9511719 0.6933594 0.9511719 0.8774414 0.9262695 0.8774414 0.9511719 0.8774414 0.9262695 0.6933594 0.9262695 0.6933594 0.9262695 0.8774414 0.9174805 0.8774414 0.9262695 0.6933594 0.9262695 0.6933594 0.9174805 0.8774414 0.9174805 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 2 2 3 4 4 5 5 6 6 4 4 7 6 4 7 8 8 9 9 10 10 11 8 12 11 13 9 14

-
-
-
- - - - -402.282 -369.2158 29.57554 -402.0691 -369.9872 29.49141 -402.0691 -369.5141 33.45791 -402.0691 -369.5141 33.45791 -402.0691 -369.9872 29.49141 -401.7107 -369.9872 29.49141 -402.282 -368.7427 33.28986 -401.7107 -369.5141 33.45791 -402.282 -367.7557 37.07637 -401.4978 -369.2157 29.57554 -401.7107 -369.5141 33.45791 -401.7107 -369.9872 29.49141 -401.7107 -368.5271 37.24441 -402.0692 -368.5271 37.24442 -401.4978 -368.7427 33.28986 -401.4979 -367.7557 37.07637 -401.7107 -368.5271 37.24441 -402.0692 -368.5271 37.24442 -401.4979 -367.7557 37.07637 - - - - - - - - - - -0.9628974 -0.2679399 0.03219786 -0.9625762 -0.2691045 0.03209074 -0.9653354 -0.2562592 0.04958739 9.704614e-005 -0.9825952 0.1857596 -3.272005e-016 -0.9929647 0.1184112 5.925743e-006 -0.9929646 0.1184117 -0.9655076 -0.2556978 0.04912966 0.0001029219 -0.982595 0.1857609 -0.9654713 -0.2520878 0.06570335 0.9629 -0.2679307 0.0321987 0.965333 -0.2562661 0.04959743 0.9625795 -0.2690924 0.03209185 7.44975e-006 -0.9676631 0.252246 -0.9654709 -0.2520891 0.06570403 0.9655046 -0.2557072 0.0491392 0.9654707 -0.2520858 0.06571985 0.9654707 -0.2520858 0.06571985 1.651347e-006 -0.967663 0.2522466 0.9654707 -0.2520857 0.06571977 - - - - - - - - - - 0.006835937 0.6152344 0.01611328 0.6152344 0.01611328 0.7006836 0.01611328 0.7006836 0.01611328 0.6152344 0.02001953 0.6152344 0.006835937 0.7006836 0.006835937 0.6152344 0.01611328 0.7006836 0.02001953 0.6152344 0.02001953 0.7006836 0.006835937 0.7880859 0.006835937 0.7006836 0.01611328 0.7006836 0.02929688 0.6152344 0.02001953 0.7006836 0.02001953 0.6152344 0.02001953 0.7880859 0.01611328 0.7006836 0.02001953 0.7006836 0.006835938 0.7880859 0.01611328 0.7006836 0.01611328 0.7880859 0.02880859 0.7006836 0.02001953 0.7006836 0.02929688 0.6152344 0.02880859 0.7880859 0.02001953 0.7880859 0.02001953 0.7006836 0.01611328 0.7880859 0.01611328 0.7006836 0.02001953 0.7880859 0.02880859 0.7880859 0.02001953 0.7006836 0.02880859 0.7006836 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -409.5527 -368.0802 37.1605 -409.7656 -368.8516 37.32855 -409.7656 -369.8386 33.54205 -409.7656 -368.8516 37.32855 -410.1241 -369.8386 33.54205 -409.7656 -369.8386 33.54205 -409.5527 -368.0802 37.1605 -409.5527 -369.0672 33.37401 -410.124 -368.8516 37.32855 -409.7656 -368.8516 37.32855 -409.7656 -370.3116 29.57554 -409.5527 -369.5402 29.65968 -410.3369 -368.0802 37.1605 -410.1241 -369.8386 33.54205 -410.124 -368.8516 37.32855 -409.7656 -370.3116 29.57554 -410.124 -370.3117 29.57554 -410.3369 -369.0672 33.37401 -410.3369 -369.5402 29.65968 -410.124 -370.3117 29.57554 - - - - - - - - - - 0.9654707 -0.2520875 0.06571317 0.9654707 -0.2520875 0.06571317 0.9653326 -0.2562683 0.04959395 1.920686e-007 -0.9676629 0.2522468 5.261201e-006 -0.982595 0.185761 2.431918e-006 -0.9825952 0.1857596 0.9654706 -0.252088 0.06571343 0.9655044 -0.2557085 0.04913627 -3.499008e-016 -0.9676629 0.2522469 -3.499008e-016 -0.9676629 0.2522469 9.816993e-005 -0.9929636 0.1184198 0.962897 -0.2679416 0.03219776 -0.9654722 -0.2520802 0.06571967 -0.9653429 -0.2562307 0.04958692 -0.9654706 -0.2520855 0.0657223 0.9625762 -0.2691047 0.03209078 0.0001040079 -0.9929635 0.1184204 -0.965516 -0.2556662 0.04912808 -0.9629018 -0.2679252 0.03218994 -0.96258 -0.2690918 0.03208264 - - - - - - - - - - 0.02880859 0.7880859 0.02001953 0.7880859 0.02001953 0.7006836 0.01611328 0.7006836 0.02001953 0.7006836 0.02880859 0.7880859 0.02880859 0.7006836 0.01611328 0.7880859 0.01611328 0.7006836 0.02001953 0.7880859 0.01611328 0.7006836 0.02001953 0.6152344 0.02001953 0.7006836 0.02880859 0.7006836 0.02001953 0.7006836 0.02929687 0.6152344 0.006835937 0.7880859 0.01611328 0.7006836 0.01611328 0.7880859 0.02929687 0.6152344 0.02001953 0.7006836 0.02001953 0.6152344 0.01611328 0.7006836 0.01611328 0.6152344 0.02001953 0.6152344 0.006835938 0.7880859 0.006835938 0.7006836 0.006835937 0.6152344 0.01611328 0.6152344 0.01611328 0.7006836 0.006835938 0.7006836 0.006835938 0.6152344 0.01611328 0.7006836 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -418.417 -369.2158 29.58179 -418.2042 -369.9872 29.49766 -418.2042 -369.5141 33.46416 -418.2042 -369.5141 33.46416 -418.2042 -369.9872 29.49766 -417.8457 -369.9872 29.49766 -418.417 -368.7427 33.29612 -417.8457 -369.5141 33.46416 -418.417 -367.7557 37.08262 -417.6328 -369.2157 29.58179 -417.8457 -369.5141 33.46416 -417.8457 -369.9872 29.49766 -417.8457 -368.5271 37.25067 -418.2042 -368.5271 37.25067 -417.6329 -368.7427 33.29612 -417.6329 -367.7557 37.08262 -417.8457 -368.5271 37.25067 -418.2042 -368.5271 37.25067 -417.8457 -368.5271 37.25067 -417.6329 -367.7557 37.08262 - - - - - - - - - - -0.9629084 -0.2679014 0.03219214 -0.9625887 -0.2690606 0.03208553 -0.9653371 -0.2562528 0.04958596 0.0001000221 -0.9825953 0.1857593 7.751861e-007 -0.9929646 0.1184112 6.656788e-006 -0.9929646 0.1184117 -0.9655075 -0.255698 0.04912936 0.0001029219 -0.982595 0.185761 -0.9654839 -0.2520429 0.06569071 0.962889 -0.2679695 0.03220447 0.9653321 -0.2562695 0.04959718 0.962567 -0.2691366 0.03209712 0.0001029032 -0.9676654 0.2522374 -0.9654854 -0.2520376 0.06568805 0.9655045 -0.2557074 0.04913966 0.9654707 -0.252088 0.06571081 0.9654707 -0.252088 0.06571081 0.0001029986 -0.9676654 0.2522374 0.0001029986 -0.9676654 0.2522374 0.9654707 -0.252088 0.06571081 - - - - - - - - - - 0.006835937 0.6152344 0.01611328 0.6152344 0.01611328 0.7006836 0.01611328 0.6152344 0.02001953 0.6152344 0.006835938 0.7006836 0.01611328 0.7006836 0.01611328 0.7006836 0.02001953 0.6152344 0.02001953 0.7006836 0.006835937 0.7880859 0.006835937 0.7006836 0.01611328 0.7006836 0.02929687 0.6152344 0.02001953 0.7006836 0.02001953 0.6152344 0.02001953 0.7880859 0.01611328 0.7006836 0.02001953 0.7006836 0.006835937 0.7880859 0.01611328 0.7006836 0.01611328 0.7880859 0.02880859 0.7006836 0.02001953 0.7006836 0.02929687 0.6152344 0.02880859 0.7880859 0.02001953 0.7880859 0.02001953 0.7006836 0.01611328 0.7880859 0.01611328 0.7006836 0.02001953 0.7880859 0.02880859 0.7880859 0.02001953 0.7006836 0.02880859 0.7006836 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -438.1508 -210.1577 12.24004 -439.4335 -216.2069 10.68734 -439.0405 -213.3485 11.29443 -428.047 -216.2069 10.68734 -439.4335 -216.2069 10.68734 -438.1508 -210.1577 12.24004 -441.9137 -216.621 13.86506 -439.4335 -216.2069 10.68734 -428.047 -216.2069 10.68734 -437.8093 -206.1629 12.95574 -442.8274 -217.6911 18.13381 -437.198 -203.0696 13.48203 -428.047 -218.641 20.21951 -435.8371 -201.6749 13.61668 -443.6134 -219.591 22.3052 -432.5067 -200.4574 13.7599 -428.047 -224.3393 27.41666 -421.5147 -198.8053 13.7881 -444.0254 -222.7874 26.35665 -410.2237 -198.0624 13.64727 -444.0292 -225.8912 28.47666 -410.2237 -201.0229 13.64857 -428.047 -237.7683 28.81607 -444.0292 -225.8912 28.47666 -428.047 -224.3393 27.41666 -407.1268 -201.0229 13.64856 -444.1404 -230.6007 29.84886 -410.2237 -200.0689 16.84592 -407.1268 -201.0229 13.64856 -410.2237 -201.0229 13.64857 -389.3033 -216.2069 10.68733 -444.1084 -235.658 30.03612 -407.1268 -200.0689 16.84592 -428.2272 -251.2802 10.62678 -407.1268 -198.0624 13.64727 -444.0369 -240.3928 28.85757 -389.1228 -251.2802 10.62678 -428.047 -216.2069 10.68734 -428.2272 -251.2802 10.62678 -428.047 -216.2069 29.2286 -395.8358 -198.8053 13.7881 -443.8517 -244.4219 26.52174 -389.3033 -216.2069 29.22859 -389.1228 -251.2802 10.62678 -389.3033 -216.2069 10.68733 -389.2885 -319.7805 9.831665 -428.047 -216.2069 29.2286 -428.2272 -251.2802 10.62678 -428.2272 -251.2802 29.16805 -384.8438 -200.4573 13.75989 -428.0469 -248.7266 20.7394 -389.3033 -216.2069 29.22859 -389.1228 -251.2802 29.16805 -389.1228 -251.2802 10.62678 -428.061 -319.7805 9.831663 -378.9792 -319.8165 9.810663 -381.5134 -201.6749 13.61668 -384.8438 -200.4573 13.75989 -443.4775 -247.6908 22.83509 -389.2883 -355.4253 9.632788 -438.3994 -251.2802 10.62678 -389.2885 -320.7032 16.76836 -389.2885 -319.7805 9.831665 -378.9792 -319.8165 9.810663 -378.9507 -251.2802 10.62678 -380.1524 -203.0696 13.48203 -442.8812 -249.7624 18.64371 -389.2885 -319.7805 9.831665 -389.2885 -319.7806 28.76241 -389.2883 -355.4253 9.632788 -428.0609 -355.4253 9.632786 -438.3703 -319.8165 9.810656 -442.1564 -250.8869 14.67392 -428.2272 -251.2802 10.62678 -438.3994 -251.2802 10.62678 -374.537 -319.7805 13.77953 -375.1936 -250.8869 14.67392 -378.9507 -251.2802 10.62678 -389.1228 -251.2802 10.62678 -379.5411 -206.1629 12.95574 -389.2885 -319.7806 28.76241 -389.2883 -355.4253 28.56353 -389.2883 -355.4253 9.632788 -408.6746 -362.9619 7.523429 -428.061 -319.7805 9.831663 -428.0609 -355.4253 9.632786 -428.061 -319.7806 28.76242 -442.8125 -319.7805 13.77953 -438.3703 -319.8165 9.810656 -428.061 -319.7805 9.831663 -441.9291 -251.1137 11.44191 -374.9691 -319.5392 10.48796 -373.972 -320.8545 17.85794 -389.3031 -248.7266 20.7394 -375.4209 -251.1137 11.44192 -379.1996 -210.1577 12.24004 -427.643 -361.1579 7.705422 -389.7061 -361.1579 7.705424 -428.061 -319.7806 28.76242 -428.0609 -355.4253 9.632786 -428.0608 -355.4253 28.56353 -442.3804 -319.5392 10.48796 -428.061 -320.7032 16.76836 -440.6819 -251.2803 8.473299 -376.235 -319.384 7.662898 -373.5896 -322.3971 21.65644 -374.4689 -249.7624 18.64371 -378.2788 -251.2802 8.332356 -377.9168 -216.2069 10.68734 -436.3409 -356.6175 7.747656 -381.0083 -356.6175 7.747654 -439.0422 -319.3841 7.516229 -443.3775 -320.8545 17.85794 -439.0711 -251.2802 8.332356 -378.3074 -319.384 7.516231 -373.3758 -325.1531 25.24699 -373.8725 -247.6908 22.83509 -376.6681 -251.2803 8.473295 -375.4366 -216.621 13.86505 -389.3033 -216.2069 10.68733 -377.9168 -216.2069 10.68734 -428.0609 -355.4253 9.632786 -436.3409 -356.6175 7.747656 -436.3408 -356.6175 9.38209 -389.2883 -355.4253 9.632788 -381.0083 -356.6175 9.382083 -381.0083 -356.6175 7.747654 -441.1145 -319.3841 7.662898 -443.7599 -322.3971 21.65645 -389.2884 -327.0354 26.51508 -373.8725 -247.6908 22.83509 -389.3031 -248.7266 20.7394 -389.3032 -237.7683 28.81607 -374.523 -217.6911 18.13381 -428.0609 -355.4253 9.632786 -436.3408 -356.6175 9.38209 -438.8068 -355.4253 9.632788 -378.5424 -355.4253 9.632781 -381.0083 -356.6175 9.382083 -389.2883 -355.4253 9.632788 -428.061 -327.0354 26.51509 -373.3084 -328.9178 27.78317 -389.2884 -327.0354 26.51508 -373.3758 -325.1531 25.24699 -373.4984 -244.4218 26.52174 -389.3033 -218.6411 20.21951 -443.9736 -325.1531 25.24699 -373.3478 -333.4012 29.26164 -373.3133 -240.3928 28.85757 -373.7368 -219.591 22.3052 -444.041 -328.9178 27.78317 -389.2884 -340.5605 28.35392 -373.2418 -235.658 30.03612 -373.3249 -222.7874 26.35665 -428.0609 -340.5605 28.35392 -444.041 -328.9178 27.78317 -428.061 -327.0354 26.51509 -373.4429 -338.4634 29.44913 -373.2098 -230.6007 29.84886 -389.3033 -224.3393 27.41666 -444.0016 -333.4012 29.26164 -373.623 -343.1474 28.40746 -373.321 -225.8912 28.47666 -443.9065 -338.4635 29.44914 -373.8862 -347.2297 26.29744 -443.7263 -343.1474 28.40746 -389.2884 -340.5605 28.35392 -373.8862 -347.2297 26.29744 -374.2474 -350.586 22.69462 -443.463 -347.2297 26.29744 -389.2884 -351.6363 20.55701 -428.0609 -351.6363 20.55701 -374.2474 -350.586 22.69462 -374.6818 -352.6866 18.41941 -389.2884 -351.6363 20.55701 -443.1019 -350.586 22.69462 -375.3119 -353.7291 14.17046 -442.6674 -352.6866 18.41941 -389.2883 -355.4253 9.632788 -428.0609 -355.4253 9.632786 -376.1722 -354.1758 11.2115 -442.0372 -353.7291 14.17046 -441.177 -354.1758 11.2115 - - - - - - - - - - 0.507603 0.1116541 -0.8543258 0.507603 0.1116541 -0.8543258 0.507603 0.1116541 -0.8543258 -0.009223874 0.1281382 -0.9917134 -4.099047e-007 0.2486203 -0.968601 -0.02717115 0.2057106 -0.9782356 -0.02094555 -0.9755983 -0.218562 1.63489e-006 -0.9916131 -0.1292417 -0.02353331 -0.9727377 -0.2307108 -0.04587353 0.1774353 -0.9830627 -0.01363043 -0.9422951 -0.3345059 -0.06173104 0.166355 -0.9841318 -0.02892741 -0.896866 -0.4413554 -0.04537198 0.1739728 -0.9837047 -0.02072329 -0.8415009 -0.5398582 -0.0252143 0.1845362 -0.9825022 -0.03050106 -0.7571944 -0.6524771 -0.02466994 0.1843409 -0.9825527 -0.01846759 -0.6865863 -0.7268137 0.07336972 0.08995765 -0.9932394 -2.100411e-007 -0.5640273 -0.8257561 0.08001776 0.09950018 -0.9918149 -0.1023962 0.241972 -0.9648651 -0.1280295 -0.2000403 -0.9713868 -0.05581542 -0.1034859 -0.9930636 -0.08001929 0.09949827 -0.991815 -0.1449541 -0.1854226 -0.9719088 -2.869845e-006 0.9582516 -0.2859263 -3.155592e-006 0.9582515 -0.2859266 -6.025435e-006 0.9582508 -0.2859291 0.009223884 0.128138 -0.9917134 -0.06374485 0.08947808 -0.9939468 -2.604108e-017 0.9582524 -0.2859238 1.393883e-007 0.008320591 -0.9999654 -0.07336952 0.08995736 -0.9932394 -0.06518729 0.382586 -0.9216174 -6.355474e-005 0.008411519 -0.9999646 -0.9999868 0.005137278 -1.612955e-018 -0.9999868 0.005137278 -1.612955e-018 -0.9999868 0.005137278 -1.612955e-018 0.0246696 0.1843413 -0.9825527 -0.08209619 0.6134721 -0.7854376 0.9999868 0.005143701 -0 0.9999868 0.005143701 -0 0.9999868 0.005143701 -0 -0.00066546 0.009600759 -0.9999537 -0.9999868 0.005137278 -8.064775e-019 -0.9999868 0.005137278 -8.064775e-019 -0.9999868 0.005137278 -8.064775e-019 0.02521326 0.1845364 -0.9825022 -0.07048329 0.8437885 -0.5320274 0.9999868 0.005143703 -5.208014e-009 0.9999868 0.005143703 -5.208014e-009 0.9999868 0.005143703 -5.208014e-009 0.0006029788 0.009690136 -0.9999529 -0.001808984 0.01163932 -0.9999306 0.04537376 0.173972 -0.9837047 0.02521462 0.184536 -0.9825023 -0.02361593 0.8162106 -0.5772716 -0.05873033 0.2108031 -0.9757627 0.0001902583 0.01163543 -0.9999323 0.0342868 -0.9433689 -0.3299691 -0.003727117 -0.9912635 -0.131844 0.04921729 -0.9945854 -0.09152897 -6.920244e-007 0.01190694 -0.9999291 0.06173436 0.1663536 -0.9841318 -0.02295767 0.9342946 -0.355762 1 4.213374e-006 8.356563e-012 1 4.213374e-006 8.356563e-012 1 4.213374e-006 8.356563e-012 0.05873073 0.2108045 -0.9757623 0.001995977 0.01190789 -0.9999271 -0.02775361 0.9779187 -0.2071347 -0.03038464 0.9742109 -0.2235842 0.01264563 0.9975552 -0.06872933 0.03867194 -0.9869487 -0.1563223 0.01434361 0.9802959 -0.1970131 -0.01934097 0.9977466 -0.06424676 0.03579787 0.9752913 -0.2180031 0.0458744 0.1774356 -0.9830626 1 4.213378e-006 -0 1 4.213378e-006 -0 1 4.213378e-006 -0 -1.557243e-007 0.2795183 -0.9601404 -1 -3.160027e-006 -6.267414e-012 -1 -3.893279e-006 1.366281e-006 -1 -3.160027e-006 -6.267414e-012 -0.02780961 -0.9868555 -0.1591944 -0.03976081 -0.9976754 -0.05534239 -0.02882878 -0.9937631 -0.1077213 0.03357504 0.9977228 -0.05849687 0.08328793 -0.9927514 -0.08664713 0.01375059 -0.945741 -0.3246303 0.03330176 0.9576724 -0.2859277 -0.02965645 0.9980501 -0.05492276 0.02717092 0.2057114 -0.9782354 0.07571641 0.3227237 -0.9434598 -0.0757164 0.3227213 -0.9434606 -1 -3.491192e-006 6.170618e-007 -1 -4.224445e-006 1.983351e-006 -1 -4.224445e-006 1.983351e-006 -0.07357419 -0.9928012 -0.09451213 -0.05002968 -0.9413552 -0.3336877 0.02232032 0.9994703 -0.02368455 0.05863071 -0.9904806 -0.1245418 0.07279594 -0.8466252 -0.5271873 0.01405768 0.9323328 -0.3613281 -0.0235353 0.9992141 -0.03189549 1.008759e-006 0.2486194 -0.9686013 0.1651853 0.3251031 -0.9311401 -0.165185 0.3251002 -0.9311411 -0.06139123 -0.9907904 -0.120688 -0.01375064 -0.945741 -0.3246303 -2.342475e-005 1 -1.323599e-006 0.01285131 -0.9832913 -0.1815851 0.08519497 -0.8074918 -0.5836941 3.353654e-006 0.8964779 -0.4430884 0.00511372 0.9982932 -0.05817657 0.02094544 -0.9755984 -0.2185615 0.02353401 -0.9727375 -0.2307119 -1.554984e-006 -0.9916131 -0.129242 -0.1425172 0.9897923 3.273902e-006 -0.1425172 0.9897923 3.273902e-006 -0.1425172 0.9897923 3.273902e-006 0.1425209 0.9897918 -0 0.1425209 0.9897918 -0 0.1425209 0.9897918 -0 -0.004007444 -0.9983876 -0.05662305 -0.04280926 -0.8584827 -0.5110526 0.05569404 -0.8372652 -0.5439532 0.1495367 0.6705451 -0.7266416 0.06933593 0.5918752 -0.8030419 0.1005707 0.2688581 -0.9579149 0.0136314 -0.9422955 -0.3345046 -2.137006e-007 0.2057805 -0.9785982 -2.137006e-007 0.2057805 -0.9785982 -2.137006e-007 0.2057805 -0.9785982 -6.411023e-007 0.205776 -0.9785991 -6.411023e-007 0.205776 -0.9785991 -6.411023e-007 0.205776 -0.9785991 -0.06137377 -0.7922528 -0.6070986 0.02114818 -0.4288677 -0.9031198 0.08625448 -0.2350279 -0.968154 -5.96735e-007 -0.5587154 -0.8293595 0.1612053 0.6415372 -0.7499619 0.02881264 -0.896823 -0.4414503 -0.02435975 -0.6919874 -0.7214985 0.07204396 -0.1679051 -0.9831671 0.0651878 0.3825882 -0.9216164 0.02101415 -0.8413738 -0.5400449 8.408289e-007 -0.5587154 -0.8293595 0.09570713 0.01174101 -0.9953403 0.06374497 0.08947902 -0.9939467 0.0187137 -0.6867081 -0.7266924 -0.1060587 0.2160393 -0.9706073 -0.135759 -0.2335346 -0.9628245 -0.06263871 -0.1344541 -0.9889381 0.05876364 0.07583196 -0.9953875 0.07195373 -0.1451379 -0.9867916 0.06490301 -0.5006164 -0.8632328 -0.1502173 -0.2120386 -0.9656471 0.06025241 0.3454798 -0.9364899 0.02000295 -0.4152308 -0.9094962 -0.05876335 0.07583329 -0.9953875 0.0779726 0.4537958 -0.8876878 -0.06025164 0.3454777 -0.9364907 0.1060627 0.6047034 -0.789357 0.2143601 0.7038727 -0.6772097 0.1552019 0.6518569 -0.7422904 -0.08419329 0.5856793 -0.8061583 0.0757983 0.5739754 -0.8153569 -0.06633695 0.8184966 -0.5706687 1.311151e-006 0.8975134 -0.4409872 0.01765526 0.9398418 -0.3411535 0.0003411246 0.9421811 -0.3351039 -0.02691605 0.8091674 -0.5869614 -0.01314762 0.9734476 -0.228532 0.007310733 0.933849 -0.3575927 -0.01791357 0.9533917 -0.3012033 0.003481229 0.9582224 -0.286003 -0.0789978 0.9888403 -0.1263101 0.05433619 0.9786034 -0.1984513 0.07900071 0.9888402 -0.1263093 - - - - - - - - - - 0.7568359 0.1186523 0.7626953 0.1210937 0.7597656 0.1206055 0.7626953 0.09960938 0.7626953 0.1210938 0.8652344 0.1914062 0.8686523 0.1855469 0.8686523 0.1601562 0.7626953 0.09960937 0.7568359 0.1186523 0.7529297 0.1181641 0.8603516 0.1933594 0.8652344 0.1914062 0.8686523 0.1601562 0.7626953 0.09960937 0.7529297 0.1181641 0.75 0.1166992 0.8574219 0.1601563 0.8603516 0.1933594 0.8686523 0.1601563 0.7626953 0.09960938 0.75 0.1166992 0.7485352 0.1142578 0.8540039 0.1948242 0.8603516 0.1933594 0.8574219 0.1601563 0.7626953 0.09960937 0.7485352 0.1142578 0.7475586 0.1079102 0.8427734 0.1601563 0.8540039 0.1948242 0.8574219 0.1601563 0.7460937 0.08691406 0.7626953 0.09960937 0.7475586 0.1079102 0.8427734 0.1601563 0.8461914 0.1958008 0.8540039 0.1948242 0.7451172 0.06542969 0.7626953 0.09960937 0.7460937 0.08691406 0.8427734 0.1601562 0.8393555 0.1958008 0.8461914 0.1958008 0.7490234 0.06689453 0.7626953 0.09960937 0.7451172 0.06542969 0.8125 0.1601562 0.8393555 0.1958008 0.8427734 0.1601562 0.7480469 0.06005859 0.7626953 0.09960937 0.7490234 0.06689453 0.8125 0.1601562 0.8295898 0.1962891 0.8393555 0.1958008 0.3364258 0.1464844 0.3525391 0.1333008 0.3369141 0.1333008 0.7631836 0.02587891 0.7626953 0.09960938 0.7480469 0.06005859 0.8125 0.1601562 0.8178711 0.1962891 0.8295898 0.1962891 0.3535156 0.1464844 0.3525391 0.1333008 0.3364258 0.1464844 0.7631836 0.02587891 0.7954102 0.1000977 0.7626953 0.09960937 0.7631836 0.02587891 0.7480469 0.06005859 0.7446289 0.05957031 0.8125 0.1601563 0.8076172 0.1958008 0.8178711 0.1962891 0.7958984 0.02587891 0.7954102 0.1000977 0.7631836 0.02587891 0.9272461 0.3999023 0.8881836 0.3994141 0.9272461 0.440918 0.7631836 0.02587891 0.7446289 0.05957031 0.7460938 0.03808594 0.8125 0.1601562 0.7988281 0.1953125 0.8076172 0.1958008 0.9272461 0.440918 0.8881836 0.3994141 0.9272461 0.3999023 0.7958984 0.02587891 0.8598633 0.02685547 0.7954102 0.1000977 0.9272461 0.440918 0.8881836 0.3994141 0.8881836 0.440918 0.7475586 0.01708984 0.7631836 0.02587891 0.7460938 0.03808594 0.7880859 0.1601562 0.7988281 0.1953125 0.8125 0.1601562 0.9272461 0.440918 0.8881836 0.440918 0.8881836 0.3994141 0.8598633 0.02685547 0.8598633 0.1005859 0.7954102 0.1000977 0.8598633 0.007324219 0.8598633 0.02685547 0.7958984 0.02587891 0.7490234 0.01074219 0.7631836 0.02587891 0.7475586 0.01708984 0.7988281 0.1953125 0.7880859 0.1601563 0.7915039 0.1948242 0.8935547 0.02734375 0.8598633 0.1005859 0.8598633 0.02685547 0.8598633 0.1005859 0.7954102 0.1196289 0.7954102 0.1000977 0.8613281 0.1601563 0.8691406 0.1601563 0.8691406 0.1831055 0.7958984 0.006347656 0.8598633 0.007324219 0.7958984 0.02587891 0.7504883 0.008300781 0.7631836 0.02587891 0.7490234 0.01074219 0.7915039 0.1948242 0.7880859 0.1601563 0.7851563 0.1933594 0.9267572 0.4008786 0.9267572 0.4428708 0.8872064 0.4003903 0.8935547 0.02734375 0.8930664 0.1010742 0.8598633 0.1005859 0.8598633 0.1005859 0.8598633 0.1206055 0.7954102 0.1196289 0.7802734 0.1918945 0.7758789 0.1606445 0.7758789 0.1831055 0.8613281 0.1601562 0.8691406 0.1831055 0.8647461 0.1928711 0.7802734 0.1918945 0.7758789 0.1831055 0.7758789 0.1606445 0.753418 0.006835938 0.7504883 0.008300781 0.7880859 0.1601563 0.7758789 0.1606445 0.7851563 0.1933594 0.9267572 0.4428708 0.8872064 0.4423825 0.8872064 0.4003903 0.8935547 0.02734375 0.9008789 0.06396484 0.8930664 0.1010742 0.9267585 0.4008792 0.8872077 0.4003909 0.9267585 0.4428714 0.8647461 0.1928711 0.8691406 0.1831055 0.8691406 0.1601562 0.6738281 0.8662109 0.6821289 0.9204102 0.6674805 0.9042969 0.7851563 0.1933594 0.7758789 0.1606445 0.7802734 0.1918945 0.3149414 0.8662109 0.3085938 0.9233398 0.3212891 0.9003906 0.8598633 0.1943359 0.8613281 0.1601562 0.8647461 0.1928711 0.7880859 0.1601562 0.7802734 0.1918945 0.7758789 0.1606445 0.6738281 0.8662109 0.6674805 0.9042969 0.6821289 0.9204102 0.7573242 0.006347656 0.753418 0.006835937 0.9008789 0.06396484 0.8989258 0.1005859 0.8930664 0.1010742 0.8935547 0.02734375 0.8989258 0.02783203 0.9008789 0.06396484 0.9267585 0.4428714 0.8872077 0.4003909 0.8872077 0.4423831 0.3149414 0.8662109 0.3212891 0.9003906 0.3085937 0.9233398 0.8613281 0.1601562 0.8647461 0.1928711 0.8691406 0.1601562 0.6674805 0.9042969 0.6821289 0.9204102 0.6669922 0.9291992 0.3212891 0.9003906 0.3085938 0.9233398 0.3227539 0.9287109 0.8544922 0.1953125 0.8613281 0.1601562 0.8598633 0.1943359 0.7880859 0.1601563 0.7851563 0.1933594 0.7802734 0.1918945 0.6674805 0.9042969 0.6738281 0.9301758 0.6821289 0.9204102 0.7631836 0.00390625 0.7573242 0.006347656 0.8989258 0.1005859 0.8945312 0.1171875 0.8930664 0.1010742 0.8950195 0.01123047 0.8989258 0.02783203 0.8935547 0.02734375 0.3212891 0.9003906 0.3139648 0.9326172 0.3085938 0.9233398 0.8598633 0.1943359 0.8647461 0.1928711 0.8613281 0.1601562 0.6821289 0.9204102 0.6738281 0.9301758 0.6669922 0.9291992 0.3085937 0.9233398 0.3139648 0.9326172 0.3227539 0.9287109 0.8481445 0.1958008 0.8613281 0.1601562 0.8544922 0.1953125 0.7915039 0.1948242 0.7851562 0.1933594 0.7880859 0.1601562 0.6674805 0.9042969 0.6669922 0.9291992 0.6738281 0.9301758 0.8652344 0.1914063 0.8686523 0.1601563 0.8686523 0.1855469 0.8930664 0.1010742 0.8945312 0.1171875 0.8930664 0.1171875 0.8935547 0.02734375 0.8930664 0.01123047 0.8950195 0.01123047 0.3212891 0.9003906 0.3227539 0.9287109 0.3139648 0.9326172 0.8598633 0.1943359 0.8613281 0.1601562 0.8447266 0.1601563 0.8613281 0.1601563 0.8481445 0.1958008 0.7915039 0.1948242 0.7880859 0.1601562 0.8125 0.1601562 0.8603516 0.1933594 0.8686523 0.1601563 0.8652344 0.1914063 0.7753906 0.1601563 0.7734375 0.1787109 0.7753906 0.184082 0.7753906 0.184082 0.7734375 0.1787109 0.7753906 0.1601563 0.8447266 0.1601562 0.8544922 0.1953125 0.8613281 0.1601562 0.8408203 0.1958008 0.8447266 0.1601562 0.8481445 0.1958008 0.8125 0.1601562 0.7988281 0.1953125 0.7915039 0.1948242 0.8574219 0.1601563 0.8686523 0.1601563 0.8603516 0.1933594 0.8447266 0.1601562 0.8481445 0.1958008 0.8544922 0.1953125 0.8408203 0.1958008 0.831543 0.1958008 0.8447266 0.1601562 0.8076172 0.1958008 0.7988281 0.1953125 0.8125 0.1601562 0.8540039 0.1948242 0.8574219 0.1601562 0.8603516 0.1933594 0.8447266 0.1601562 0.8408203 0.1958008 0.8481445 0.1958008 0.831543 0.1958008 0.8149414 0.1601563 0.8447266 0.1601563 0.8178711 0.1962891 0.8076172 0.1958008 0.8125 0.1601562 0.8461914 0.1958008 0.8574219 0.1601563 0.8540039 0.1948242 0.8149414 0.1601562 0.8408203 0.1958008 0.8447266 0.1601562 0.831543 0.1958008 0.8203125 0.1953125 0.8149414 0.1601562 0.8295898 0.1962891 0.8178711 0.1962891 0.8125 0.1601563 0.8427734 0.1601563 0.8574219 0.1601563 0.8461914 0.1958008 0.8149414 0.1601563 0.831543 0.1958008 0.8408203 0.1958008 0.8203125 0.1953125 0.8095703 0.1948242 0.8149414 0.1601562 0.8295898 0.1962891 0.8125 0.1601562 0.8427734 0.1601562 0.8393555 0.1958008 0.8427734 0.1601563 0.8461914 0.1958008 0.8149414 0.1601562 0.8203125 0.1953125 0.831543 0.1958008 0.8095703 0.1948242 0.800293 0.1943359 0.8149414 0.1601563 0.8295898 0.1962891 0.8427734 0.1601562 0.8393555 0.1958008 0.8149414 0.1601562 0.8095703 0.1948242 0.8203125 0.1953125 0.8149414 0.1601562 0.800293 0.1943359 0.7919922 0.1938477 0.8149414 0.1601563 0.800293 0.1943359 0.8095703 0.1948242 0.7919922 0.1938477 0.7880859 0.1601562 0.8149414 0.1601562 0.7880859 0.1601563 0.800293 0.1943359 0.7919922 0.1938477 0.7851563 0.1928711 0.7880859 0.1601562 0.800293 0.1943359 0.7880859 0.1601563 0.7919922 0.1938477 0.7880859 0.1601563 0.7851563 0.1928711 0.7792969 0.1914063 0.7919922 0.1938477 0.7880859 0.1601563 0.7851562 0.1928711 0.7792969 0.1914062 0.7753906 0.1601562 0.7880859 0.1601563 0.7753906 0.1601563 0.7851562 0.1928711 0.7792969 0.1914062 0.7758789 0.1894531 0.7753906 0.1601562 0.7851563 0.1928711 0.7753906 0.1601562 0.7792969 0.1914062 0.7792969 0.1914063 0.7753906 0.1601563 0.7758789 0.1894531 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -377.9168 -216.2069 10.68734 -379.1996 -210.1577 12.24004 -378.3099 -213.3485 11.29443 - - - - - - - - - - -0.5076822 0.1116194 -0.8542832 -0.5076822 0.1116194 -0.8542832 -0.5076822 0.1116194 -0.8542832 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -376.1722 -354.1758 11.2115 -378.5424 -355.4253 9.632781 -389.2883 -355.4253 9.632788 - - - - - - - - - - -4.065716e-007 0.7841242 -0.6206039 -4.065716e-007 0.7841242 -0.6206039 -4.065716e-007 0.7841242 -0.6206039 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -441.177 -354.1758 11.2115 -428.0609 -355.4253 9.632786 -438.8068 -355.4253 9.632788 - - - - - - - - - - -1.35527e-007 0.7841129 -0.6206182 -1.35527e-007 0.7841129 -0.6206182 -1.35527e-007 0.7841129 -0.6206182 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -401.1381 -297.9092 38.30448 -401.9753 -298.9781 38.01433 -400.7078 -302.2292 43.10974 -401.9753 -298.9781 38.01433 -401.063 -300.0187 37.73186 -400.7078 -302.2292 43.10974 -399.8706 -301.0294 43.1588 -399.8706 -302.7699 42.03767 -394.2894 -303.7905 45.53352 -399.8706 -301.0294 43.1588 -400.7078 -302.2292 43.10974 -394.2893 -304.1275 44.14523 -400.7078 -302.2292 43.10974 -399.8706 -302.7699 42.03767 -394.2894 -303.7905 45.53352 -394.2893 -304.1275 44.14523 -394.2893 -302.3871 45.26644 -399.8706 -301.0294 43.1588 -394.2894 -303.7905 45.53352 -394.2893 -304.1275 44.14523 -388.4819 -302.7699 42.03763 -387.6346 -302.2292 43.10974 -394.2893 -302.3871 45.26644 -394.2894 -303.7905 45.53352 -387.6346 -302.2292 43.10974 -388.7081 -301.0294 43.1588 -387.3827 -300.0187 37.73184 -387.6346 -302.2292 43.10974 -388.4819 -302.7699 42.03763 -387.3827 -297.9093 38.30451 -388.7081 -301.0294 43.1588 -387.6346 -302.2292 43.10974 -386.5455 -298.9781 38.01432 -386.5455 -298.9781 38.01432 - - - - - - - - - - -0.7454345 0.4611368 0.4813318 -0.7497016 0.4573491 0.4783088 -0.7254924 0.47824 0.4949215 -0.7629658 -0.6140667 -0.2020034 -0.7572024 -0.6202073 -0.2049082 -0.7240433 -0.6534689 -0.2207705 -0.7205 0.4823745 0.4981913 -0.7152059 -0.6617839 -0.2247721 -0.3095094 0.1777791 0.9341298 -0.309512 0.1777739 0.9341299 -0.309512 0.1777739 0.9341299 -0.3094946 -0.9240597 0.2243363 -0.3094943 -0.9240608 0.224332 -0.3094942 -0.9240611 0.224331 -0.3094947 -0.9240595 0.224337 -0.3094947 -0.9240595 0.224337 -0.3095089 0.1777801 0.9341298 -0.3095117 0.1777745 0.9341299 0.2988756 -0.92719 0.2258143 0.2985385 -0.9274534 0.2251774 0.3004798 -0.9259268 0.2288481 0.2962237 0.2177243 0.9299718 0.2991028 0.1837261 0.9363665 0.2995227 0.1783612 0.9372691 0.3007043 -0.9257488 0.2292729 0.2954297 0.2263807 0.9281557 0.7805976 -0.590114 -0.2059925 0.7304688 -0.6430208 -0.230086 0.7170955 -0.6558139 -0.2359706 0.7379351 0.4821945 0.4721655 0.6422758 0.5529606 0.5307696 0.6618269 0.5399189 0.52007 0.7891535 -0.5801967 -0.2015156 0.7554956 0.4670369 0.4594594 - - - - - - - - - - 0.2612305 0.8544922 0.2612305 0.8671875 0.2470703 0.8671875 0.2612305 0.8671875 0.2602539 0.8793945 0.2470703 0.8671875 0.2612305 0.8544922 0.2470703 0.8671875 0.2470703 0.8544922 0.2602539 0.8793945 0.2470703 0.8793945 0.2470703 0.8671875 0.2304688 0.8671875 0.2470703 0.8544922 0.2470703 0.8671875 0.2304688 0.8793945 0.2470703 0.8671875 0.2470703 0.8793945 0.2304688 0.8671875 0.2470703 0.8671875 0.2304688 0.8793945 0.2304687 0.8544922 0.2470703 0.8544922 0.2304688 0.8671875 0.2304687 0.8671875 0.2304687 0.8793945 0.2133789 0.8793945 0.2138672 0.8671875 0.2304687 0.8544922 0.2304687 0.8671875 0.2304688 0.8671875 0.2133789 0.8793945 0.2138672 0.8671875 0.2138672 0.8671875 0.2138672 0.8544922 0.2304687 0.8544922 0.2021484 0.8793945 0.2138672 0.8671875 0.2006836 0.8544922 0.2138672 0.8544922 0.2138672 0.8671875 0.2006836 0.8671875 0.2138672 0.8671875 0.2021484 0.8793945 0.2006836 0.8544922 0.2138672 0.8671875 0.2006836 0.8671875 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 0 6 2 7 6 8 4 9 7 10 5 11 8 12 9 13 10 14 11 15 12 16 13 17 14 18 12 19 15 20 16 21 17 22 8 23 18 24 19 25 20 26 21 27 22 28 23 29 18 30 20 31 24 32 21 33 25 34 22 35 26 36 27 37 28 26 29 38 30 39 31 40 32 41 27 42 26 43 29 44 31 45 33 46

-
-
-
- - - - -389.153 -273.2686 47.94923 -386.6054 -280.2599 44.42461 -385.1721 -274.7878 43.69226 -389.153 -273.2686 47.94923 -385.1721 -274.7878 43.69226 -403.2449 -274.7878 43.69226 -389.9031 -277.1803 47.75703 -389.153 -273.2686 47.94923 -399.264 -273.2686 47.94923 -403.2449 -277.3674 35.63377 -389.153 -273.2686 47.94923 -389.4765 -273.9214 53.23733 -389.9031 -277.1803 47.75703 -398.5139 -277.1803 47.75704 -386.6054 -280.2599 44.42461 -389.9031 -277.1803 47.75703 -399.264 -273.2686 47.94923 -403.2449 -274.7878 43.69226 -401.8115 -280.2598 44.42466 -398.9404 -273.9214 53.23729 -389.153 -273.2686 47.94923 -399.264 -273.2686 47.94923 -403.2449 -274.7878 43.69226 -403.2449 -277.3674 35.63377 -401.8115 -280.2598 44.42466 -385.1721 -277.3673 35.63377 -390.1653 -276.5306 52.74424 -389.4765 -273.9214 53.23733 -398.2516 -276.5306 52.74424 -398.5139 -277.1803 47.75704 -389.9031 -277.1803 47.75703 -398.5139 -277.1803 47.75704 -401.8115 -280.2598 44.42466 -386.6054 -280.2599 44.42461 -398.5139 -277.1803 47.75704 -399.264 -273.2686 47.94923 -398.5139 -277.1803 47.75704 -398.9404 -273.9214 53.23729 -401.8115 -282.8662 35.55968 -389.4765 -273.9214 53.23733 -398.9404 -273.9214 53.23729 -390.1653 -276.5306 52.74424 -390.1653 -276.5306 52.74424 -398.2516 -276.5306 52.74424 -401.8115 -280.2598 44.42466 -386.6054 -282.8662 35.55964 -386.6054 -280.2599 44.42461 -401.8115 -282.8662 35.55968 -398.2516 -276.5306 52.74424 - - - - - - - - - - 0.6726842 -0.1227449 0.7296777 0.6817798 -0.1157337 0.7223448 0.7105238 -0.09275121 0.6975336 -6.783587e-018 0.9418228 -0.3361097 -1.408414e-006 0.9488048 -0.3158631 3.891298e-007 0.9488034 -0.3158671 0.6253227 -0.1574648 0.7643143 2.367133e-007 0.9418226 -0.3361104 1.748666e-006 0.941821 -0.3361149 -8.38352e-007 0.9523953 -0.3048659 0.9811151 -0.1899332 0.03658542 0.969948 -0.2347205 0.06408738 0.9754677 -0.2140639 0.05137431 7.398377e-007 -0.7344207 0.6786945 7.398377e-007 -0.7344207 0.6786945 7.398377e-007 -0.7344207 0.6786945 -0.6726783 -0.1227548 0.7296816 -0.7105176 -0.09276249 0.6975385 -0.6817734 -0.1157442 0.7223491 1.112515e-006 0.9924653 0.1225262 2.419854e-007 0.9924655 0.1225247 1.842696e-006 0.9924651 0.1225276 -0.9669336 -0.242889 0.07774581 -0.9655079 -0.2492071 0.07543453 -0.966157 -0.246357 0.07647812 -3.007489e-006 0.9523967 -0.3048615 0.9592266 -0.2693846 0.0855349 -5.468485e-007 0.9924656 0.1225232 -6.503083e-007 -0.9916211 0.1291803 1.408194e-007 -0.991621 0.1291816 -1.381758e-006 -0.9916213 0.129179 4.908275e-007 -0.7344211 0.678694 4.908275e-007 -0.7344211 0.678694 4.908275e-007 -0.7344211 0.678694 -0.6253169 -0.1574733 0.7643173 -0.9811116 -0.1899506 0.03658964 -0.9754651 -0.2140758 0.05137541 -0.9699464 -0.2347276 0.06408569 -0.9647495 -0.2524835 0.07423281 -4.385596e-006 -0.185695 0.9826074 -8.703342e-007 -0.1856836 0.9826096 -3.656897e-006 -0.1856926 0.9826079 -2.22716e-006 -0.9916215 0.1291777 -0.9592273 -0.269384 0.08552874 7.93303e-007 -0.9593939 0.2820698 -2.365701e-007 -0.9593944 0.2820682 -1.411258e-006 -0.9593949 0.2820664 1.967988e-006 -0.9593933 0.2820717 1.392307e-007 -0.1856803 0.9826102 - - - - - - - - - - 0.1933594 0.8286133 0.1879883 0.828125 0.1889648 0.8232422 0.1621094 0.8608398 0.1660156 0.8564453 0.1660156 0.8774414 0.1879883 0.828125 0.1918945 0.831543 0.1621094 0.8608398 0.1660156 0.8774414 0.1621094 0.8725586 0.1660156 0.8564453 0.1733398 0.8774414 0.1660156 0.8774414 0.1513672 0.8583984 0.1557617 0.8598633 0.1503906 0.8613281 0.1923828 0.8417969 0.1879883 0.828125 0.1918945 0.831543 0.1933594 0.8457031 0.1889648 0.8510742 0.1879883 0.8457031 0.1572266 0.8720703 0.1621094 0.8608398 0.1621094 0.8725586 0.1889648 0.8510742 0.1811523 0.8510742 0.1879883 0.8457031 0.1660156 0.8564453 0.1733398 0.8564453 0.1733398 0.8774414 0.1557617 0.8598633 0.1547852 0.8623047 0.1503906 0.8613281 0.1572266 0.8613281 0.1621094 0.8608398 0.1572266 0.8720703 0.1547852 0.871582 0.1503906 0.871582 0.1503906 0.8613281 0.1923828 0.8417969 0.1879883 0.8457031 0.1879883 0.828125 0.1933594 0.8457031 0.1879883 0.8457031 0.1518555 0.875 0.1503906 0.871582 0.15625 0.8740234 0.1811523 0.8510742 0.1801758 0.8457031 0.1879883 0.8457031 0.1572266 0.8613281 0.1547852 0.8623047 0.1547852 0.871582 0.1503906 0.8613281 0.1547852 0.8623047 0.15625 0.8740234 0.1503906 0.871582 0.1547852 0.871582 0.1879883 0.8457031 0.1801758 0.828125 0.1879883 0.828125 0.1879883 0.8457031 0.1801758 0.8457031 0.1801758 0.828125 0.1547852 0.8623047 0.1572266 0.8720703 0.1547852 0.871582 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 1 6 0 0 6 7 7 8 5 9 8 10 4 11 9 12 5 13 10 14 11 15 12 16 13 17 14 18 15 19 16 20 17 21 18 22 19 23 20 24 21 25 22 26 23 27 24 28 4 29 25 30 9 31 11 32 26 33 12 34 27 35 20 36 19 37 28 38 29 39 30 40 31 41 32 42 33 43 34 17 16 44 18 45 35 46 36 47 37 48 23 49 38 50 24 51 39 52 40 23 41 53 28 54 30 55 42 56 37 57 36 58 43 59 44 60 45 61 46 62 44 63 47 64 45 65 41 66 40 67 48 68

-
-
-
- - - - -379.4508 -319.2834 41.4391 -437.8986 -319.2834 41.4391 -437.6132 -337.3632 38.98703 -379.7362 -337.3631 38.98703 -436.7308 -356.0902 36.04047 -380.6184 -356.0902 36.04047 -408.6746 -359.4395 34.57206 -436.0882 -359.4395 34.57206 -381.2609 -359.4395 34.57206 -408.6746 -359.4395 34.57206 -436.0882 -359.4395 34.57206 -430.9994 -361.5341 34.59415 -381.2609 -359.4395 34.57206 -386.3497 -361.5341 34.59415 -391.8571 -365.0909 34.60287 - - - - - - - - - - -4.842529e-018 -0.134395 0.9909278 -4.842529e-018 -0.134395 0.9909278 5.793122e-008 -0.1447109 0.989474 3.889517e-008 -0.1447109 0.989474 -1.955032e-007 -0.2717108 0.962379 2.091162e-007 -0.2717116 0.9623787 -3.830102e-008 -0.4015256 0.9158478 -5.499413e-007 -0.4015292 0.9158462 5.499413e-007 -0.4015297 0.915846 0.0002753514 0.006574765 0.9999783 1.444536e-008 0.010547 0.9999444 2.070637e-005 0.009150521 0.9999581 -1.444534e-008 0.010547 0.9999444 -0.0001330877 0.009128832 0.9999583 -0.0005218174 -0.00622665 0.9999805 - - - - - - - - - - 0.6088867 0.9838867 0.5854492 0.9838867 0.5854492 0.9765625 0.6088867 0.9838867 0.5854492 0.9765625 0.6088867 0.9765625 0.6088867 0.9765625 0.5854492 0.9765625 0.5859375 0.9692383 0.6088867 0.9765625 0.5859375 0.9692383 0.6083984 0.9692383 0.6083984 0.9692383 0.5859375 0.9692383 0.597168 0.9677734 0.597168 0.9677734 0.5859375 0.9692383 0.5859375 0.9677734 0.6083984 0.9692383 0.597168 0.9677734 0.6079102 0.9677734 0.597168 0.9677734 0.5859375 0.9677734 0.5883789 0.9667969 0.6079102 0.9677734 0.597168 0.9677734 0.605957 0.9667969 0.6040039 0.9658203 0.597168 0.9677734 0.5883789 0.9667969 0.605957 0.9667969 0.6040039 0.9658203 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -391.8571 -365.0909 34.60287 -430.9994 -361.5341 34.59415 -425.4921 -365.0909 34.60286 - - - - - - - - - - -0.0005218174 -0.00622665 0.9999805 2.070637e-005 0.009150521 0.9999581 -7.307277e-008 -0.007443424 0.9999723 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -391.8571 -365.0909 34.60287 -425.4921 -365.0909 34.60286 -403.7423 -366.4874 34.28903 - - - - - - - - - - -0.0005218174 -0.00622665 0.9999805 -7.307277e-008 -0.007443424 0.9999723 -6.806984e-008 -0.219266 0.9756651 - - - - - - - - - - 0.6040039 0.9658203 0.590332 0.9658203 0.5991211 0.9648438 - - - - - - - - - - - - - - -

0 0 1 1 2 2

-
-
-
- - - - -403.7423 -366.4874 34.28903 -425.4921 -365.0909 34.60286 -413.6068 -366.4874 34.28902 - - - - - - - - - - -7.163694e-008 -0.2192661 0.9756651 -7.307277e-008 -0.007443424 0.9999723 -2.320968e-007 -0.2192684 0.9756646 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -385.6722 -291.3047 59.21669 -408.6748 -298.982 60.34729 -431.2542 -272.5887 60.60549 -397.7528 -298.2535 59.97429 -431.6775 -291.3047 59.21669 -386.0957 -272.5887 60.60549 -385.6879 -296.747 58.60417 -419.5969 -298.2535 59.9743 -430.719 -245.5425 61.91033 -431.6618 -296.747 58.60417 -386.6311 -245.5425 61.91033 -428.6834 -215.3517 61.27301 -428.6834 -215.3517 61.27301 -388.6669 -215.3517 61.27303 -383.9171 -240.4278 60.18271 -386.6311 -245.5425 61.91033 -388.6669 -215.3517 61.27303 -384.3231 -220.4711 59.68762 -384.1254 -218.0002 58.96677 - - - - - - - - - - -0.05394493 0.05594338 -0.9969756 -0.01331299 -0.01280421 -0.9998294 0.01086374 0.04599697 -0.9988825 -0.04282557 -0.03440793 -0.9984899 0.08825736 0.07730934 -0.9930931 -2.744538e-008 0.06127331 -0.998121 -0.1258468 0.1113113 -0.9857852 0.04282446 -0.03441116 -0.9984898 -7.125277e-008 0.01452567 -0.9998945 0.1258473 0.1113122 -0.985785 6.620469e-008 0.01452607 -0.9998945 -1.154155e-007 -0.0211051 -0.9997773 4.690289e-007 -0.02110428 -0.9997773 4.690289e-007 -0.02110428 -0.9997773 -0.4610218 -0.0487992 -0.886046 -0.4673539 -0.0501464 -0.882647 -0.4451856 -0.09239656 -0.8906586 -0.4211035 -0.07744369 -0.9037004 -0.532947 -0.1973951 -0.8228017 - - - - - - - - - - 0.8840619 0.4849777 0.8867172 0.5037279 0.876201 0.5216238 0.8088856 0.5413572 0.8094109 0.5524707 0.8074865 0.5608334 74.75592 -491.9785 96.38877 -502.9949 109.3994 -489.4626 0.8883826 0.4775253 0.8810536 0.5146345 0.8810536 0.4775251 0.8933374 0.4691311 0.8952864 0.4689316 0.8964266 0.478676 -501.7246 72.10164 -510.983 66.24988 -518.2993 54.36408 0.8813477 0.4775391 0.8813477 0.5146484 0.8706055 0.5141602 0.883474 0.5106506 0.8823337 0.520395 0.8803847 0.5201955 0.8813477 0.4775391 0.8706055 0.5141602 0.8706055 0.4780273 0.8706055 0.4780273 0.8706055 0.5141602 0.8588867 0.512207 0.8706055 0.4780273 0.8588867 0.512207 0.8588867 0.4794922 0.8686523 0.4750977 0.8706055 0.4780273 0.8588867 0.4794922 0.8686523 0.4750977 0.8588867 0.4794922 0.8608398 0.4750977 0.9008789 0.4589844 0.9008789 0.4570313 0.9033203 0.4594727 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -416.1852 -277.3673 35.63377 -417.6185 -280.2599 44.42462 -417.6185 -282.8662 35.55964 -416.1853 -274.7878 43.69226 -417.6185 -280.2599 44.42462 -432.8246 -282.8662 35.55968 -417.6185 -282.8662 35.55964 -420.166 -273.2686 47.94923 -417.6185 -280.2599 44.42462 -416.1853 -274.7878 43.69226 -416.1853 -274.7878 43.69226 -416.1852 -277.3673 35.63377 -434.2579 -277.3674 35.63377 -432.8246 -280.2599 44.42466 -420.166 -273.2686 47.94923 -434.258 -274.7878 43.69226 -420.9162 -277.1803 47.75703 -429.5269 -277.1803 47.75704 -432.8246 -280.2599 44.42466 -417.6185 -280.2599 44.42462 -420.166 -273.2686 47.94923 -430.2772 -273.2686 47.94923 -420.166 -273.2686 47.94923 -420.4897 -273.9214 53.23733 -420.9162 -277.1803 47.75703 -429.5269 -277.1803 47.75704 -420.9162 -277.1803 47.75703 -429.9535 -273.9214 53.23729 -420.166 -273.2686 47.94923 -430.2772 -273.2686 47.94923 -420.4897 -273.9214 53.23733 -420.166 -273.2686 47.94923 -429.9535 -273.9214 53.23729 -421.1784 -276.5306 52.74424 -421.1784 -276.5306 52.74424 -429.5269 -277.1803 47.75704 -420.9162 -277.1803 47.75703 -420.4897 -273.9214 53.23733 -429.9535 -273.9214 53.23729 -421.1784 -276.5306 52.74424 -429.2648 -276.5306 52.74424 -429.2648 -276.5306 52.74424 - - - - - - - - - - 0.9655127 -0.2491895 0.0754306 0.9661626 -0.2463358 0.07647555 0.9647534 -0.2524702 0.07422731 0.9669401 -0.2428633 0.07774489 7.914351e-007 -0.9593944 0.2820681 -2.782281e-007 -0.9593939 0.2820698 2.011504e-006 -0.9593949 0.2820662 0.6726815 -0.1227496 0.7296795 0.6817782 -0.1157376 0.7223457 0.7105267 -0.09275177 0.6975306 -9.71535e-007 0.9488044 -0.3158641 -1.978607e-006 0.9523967 -0.3048615 -6.086463e-007 0.9523958 -0.3048643 -1.498295e-006 -0.9593933 0.2820718 -8.728443e-008 0.9418215 -0.3361135 -6.260297e-008 0.9488038 -0.3158659 0.6253133 -0.1574737 0.7643202 2.813645e-007 -0.734419 0.6786964 2.813645e-007 -0.734419 0.6786964 -6.468969e-007 -0.7344206 0.6786946 -2.167264e-017 0.9418214 -0.3361137 -2.167264e-017 0.9418214 -0.3361137 0.9811116 -0.1899507 0.03659001 0.9699488 -0.2347191 0.06408073 0.9754662 -0.2140713 0.05137289 3.097678e-008 -0.7344194 0.6786959 -1.231263e-006 -0.7344217 0.6786935 -0 0.9924655 0.1225242 -0 0.9924655 0.1225242 -0 0.9924655 0.1225242 -5.468506e-007 0.9924656 0.1225232 -5.468506e-007 0.9924656 0.1225232 -5.468506e-007 0.9924656 0.1225232 0.9592322 -0.2693694 0.08551987 -1.367702e-006 -0.9916211 0.1291803 -6.984866e-007 -0.9916213 0.1291792 -2.091519e-006 -0.991621 0.1291815 -4.385614e-006 -0.185695 0.9826074 -5.354252e-007 -0.1856825 0.9826098 -3.58748e-006 -0.1856924 0.9826079 7.49737e-008 -0.9916214 0.1291779 5.702984e-007 -0.1856789 0.9826105 - - - - - - - - - - 0.1396484 0.8530273 0.1464844 0.8579102 0.1381836 0.8579102 0.1474609 0.8525391 0.1464844 0.8579102 0.1396484 0.8530273 0.1464844 0.8579102 0.1381836 0.8754883 0.1381836 0.8579102 0.1513672 0.8583984 0.1464844 0.8579102 0.1474609 0.8525391 0.1660156 0.8564453 0.1733398 0.8564453 0.1733398 0.8774414 0.1464844 0.8754883 0.1381836 0.8754883 0.1464844 0.8579102 0.1621094 0.8608398 0.1660156 0.8564453 0.1660156 0.8774414 0.1513672 0.8583984 0.1503906 0.8613281 0.1660156 0.8774414 0.1660156 0.8564453 0.1733398 0.8774414 0.1503906 0.871582 0.1464844 0.8754883 0.1464844 0.8579102 0.1621094 0.8608398 0.1660156 0.8774414 0.1621094 0.8725586 0.1513672 0.8583984 0.1557617 0.8598633 0.1503906 0.8613281 0.1503906 0.871582 0.1464844 0.8579102 0.1572266 0.8720703 0.1621094 0.8608398 0.1621094 0.8725586 0.1572266 0.8613281 0.1572266 0.8720703 0.1557617 0.8598633 0.1547852 0.8623047 0.1503906 0.8613281 0.1547852 0.8623047 0.1503906 0.871582 0.1503906 0.8613281 0.1572266 0.8613281 0.1572266 0.8720703 0.1547852 0.8623047 0.1547852 0.871582 0.1503906 0.871582 0.1547852 0.8623047 0.1547852 0.8623047 0.1572266 0.8720703 0.1547852 0.871582 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 1 4 0 5 4 6 5 7 6 8 7 9 8 10 9 11 10 12 11 13 12 14 13 15 5 16 4 17 14 18 10 19 15 20 8 1 7 21 16 22 15 23 10 24 12 25 17 26 18 27 19 28 20 29 15 30 21 31 22 32 23 33 24 34 25 35 19 36 26 34 27 37 28 38 29 39 30 40 31 18 32 41 23 42 33 43 24 44 34 45 35 46 36 47 37 48 38 49 39 50 40 51 35 52 34 53 39 54 38 55 41 56

-
-
-
- - - - -390.2568 -269.0715 65.78397 -391.1432 -269.0716 65.78391 -391.1577 -270.9667 65.3043 -391.1432 -267.7959 64.51642 -391.1577 -270.9667 65.3043 -391.1432 -269.0716 65.78391 -390.2674 -270.9667 65.30437 -391.1432 -272.5864 64.62833 -389.6495 -267.7959 64.51642 -390.2568 -269.0715 65.78397 -390.2674 -270.9667 65.30437 -391.1432 -272.5864 64.62833 -390.1348 -270.9165 61.86082 -390.0137 -272.6136 64.60556 -390.0137 -272.6136 64.60556 -388.4418 -270.9164 61.72063 -390.1348 -270.9165 61.86082 -391.1432 -267.7959 64.51642 -390.1347 -275.8983 61.73561 -388.4418 -270.9164 61.72063 -390.1347 -275.8983 61.73561 -389.6495 -267.7959 64.51642 -388.4418 -275.8983 61.50855 -388.4418 -275.8983 61.50855 - - - - - - - - - - -5.005475e-005 -0.2453343 0.9694385 -4.588175e-005 -0.2453361 0.9694381 -5.460288e-005 -0.316086 0.9487306 -0.9842052 -0.002002407 -0.17702 -0.9998726 0.0005952032 -0.01594924 -0.9999628 0.00607889 0.006118304 0.001645946 -0.3197876 0.9474878 -0.9553444 0.001007464 -0.2954929 0.9049973 -0.07078455 0.4194871 0.9314324 -0.09414362 0.3515262 0.8952198 -0.06488393 0.440876 0.003318121 -0.5159394 0.8566186 -0.9394277 -0.0007320525 -0.3427464 0.8866193 -0.04139403 0.4606439 0.01468142 -0.5522841 0.8335267 -0.0487376 0.642758 -0.7645174 -0.06377806 0.6347341 -0.7700941 -0.01593256 0.6595145 -0.751523 -0.941172 0.008483598 -0.3378213 0.8872407 -0.0406782 0.4595098 0.08672993 -0.6572922 0.7486286 2.340199e-006 0.6672866 -0.744801 0.8828216 -0.01997044 0.4692837 0.100236 -0.6567393 0.7474264 - - - - - - - - - - 0.04296875 0.9438477 0.04296875 0.9536133 0.03466797 0.9536133 0.05029297 0.9667969 0.03417969 0.9580078 0.04296875 0.9536133 0.04296875 0.9438477 0.03466797 0.9536133 0.03466797 0.9423828 0.05029297 0.9667969 0.02587891 0.9648438 0.03417969 0.9580078 0.05078125 0.9301758 0.04296875 0.9438477 0.03466797 0.9423828 0.03466797 0.9423828 0.03466797 0.9536133 0.0234375 0.9458008 0.05029297 0.9667969 0.03320313 0.9936523 0.02587891 0.9648437 0.05078125 0.9301758 0.03466797 0.9423828 0.02587891 0.9365234 0.02587891 0.9365234 0.03466797 0.9423828 0.0234375 0.9458008 0.2773437 0.875 0.2773437 0.8920898 0.2617187 0.902832 0.03320313 0.9936523 0.008300781 0.9941406 0.02587891 0.9648437 0.05078125 0.9301758 0.02587891 0.9365234 0.03466797 0.8994141 0.02587891 0.9365234 0.0234375 0.9458008 0.006347656 0.9145508 0.2773437 0.875 0.2617187 0.902832 0.2617187 0.8876953 0.03466797 0.8994141 0.02587891 0.9365234 0.009765625 0.8979492 0.009765625 0.8979492 0.02587891 0.9365234 0.006347656 0.9145508 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 0 6 2 7 6 8 3 9 7 10 4 11 8 12 9 13 10 14 6 15 2 16 11 17 3 18 12 19 7 20 8 21 10 22 13 23 14 24 6 25 11 26 15 27 16 28 17 29 12 30 18 31 7 32 8 33 13 34 19 35 14 36 11 37 20 38 15 39 17 40 21 41 19 42 13 43 22 44 23 45 14 46 20 47

-
-
-
- - - - -390.5 -226.0337 66.19537 -391.2772 -224.7282 65.9819 -391.2772 -226.0549 66.19529 -391.2772 -224.7282 65.9819 -391.2772 -226.9366 64.81733 -391.2772 -226.0549 66.19529 -390.5027 -224.7282 65.9819 -391.2772 -222.8789 65.32325 -391.2772 -222.8789 65.32325 -390.5027 -224.7282 65.9819 -390.5 -226.0337 66.19537 -389.7835 -226.9366 64.81732 -390.761 -224.5291 62.49788 -390.288 -222.8599 65.31089 -390.288 -222.8599 65.31089 -388.7826 -224.5292 62.39344 -391.2772 -226.9366 64.81733 -390.761 -224.5291 62.49788 -390.761 -219.9015 62.49788 -390.288 -222.8599 65.31089 -390.761 -219.9015 62.49788 -391.2772 -222.8789 65.32325 -388.7826 -224.5292 62.39344 -389.7835 -226.9366 64.81732 -388.7826 -219.4159 62.29362 -388.7826 -219.4159 62.29362 - - - - - - - - - - -0.002956371 0.1596569 0.9871681 -0.0007401642 0.2490376 0.9684935 -0.00442605 0.1588036 0.9873003 -1 -1.423027e-005 2.698553e-005 -0.9950767 0.0122541 -0.09834718 -1 2.168591e-005 -4.112402e-005 0.0007965538 0.2525955 0.9675716 -0.9880498 0.008231883 -0.153915 0.004030718 0.3370114 0.9414919 0.8963162 0.06021918 0.4393073 0.9032892 0.07103109 0.4231113 0.8999486 0.0618695 0.4315838 -0.9822154 0.01338928 -0.1872798 0.00526921 0.3374695 0.9413217 0.8950603 0.03538554 0.4445391 -0.02765115 -0.6948689 -0.7186047 -0.01288002 -0.7027952 -0.7112756 -0.03823095 -0.6890455 -0.723709 -0.9837153 0 -0.1797338 -0.02401367 0.6868632 0.7263899 -0.08053953 0.6800492 0.7287293 -0.00419281 0.6887229 0.7250125 0.8961796 0.03514785 0.4422972 1.340678e-005 -0.7095199 -0.7046854 -0.09130727 0.6784965 0.7289071 0.8906991 0.008866253 0.4545069 - - - - - - - - - - 0.2529297 0.9492188 0.2680664 0.9570313 0.2529297 0.9570313 0.2680664 0.9594727 0.2480469 0.9711914 0.2529297 0.9570312 0.2529297 0.9492187 0.2680664 0.9482422 0.2680664 0.9570312 0.2773438 0.9667969 0.2480469 0.9711914 0.2680664 0.9594727 0.2680664 0.9482422 0.2788086 0.9526367 0.2680664 0.9570312 0.2680664 0.9482422 0.2529297 0.9492188 0.2485352 0.9335938 0.2773437 0.9667969 0.2680664 0.9951172 0.2480469 0.9711914 0.277832 0.9433594 0.2788086 0.9526367 0.2680664 0.9482422 0.277832 0.9433594 0.2680664 0.9482422 0.2485352 0.9335938 0.04296875 0.8779297 0.05566406 0.9038086 0.04296875 0.8979492 0.2910156 0.9960938 0.2680664 0.9951172 0.2773437 0.9667969 0.277832 0.9433594 0.2973633 0.9272461 0.2788086 0.9526367 0.277832 0.9433594 0.2485352 0.9335938 0.269043 0.9067383 0.05566406 0.9038086 0.04296875 0.8779297 0.05566406 0.8886719 0.2949219 0.90625 0.2973633 0.9272461 0.277832 0.9433594 0.2949219 0.90625 0.277832 0.9433594 0.269043 0.9067383 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 0 6 6 7 1 8 7 9 4 10 3 11 6 12 8 13 1 14 9 15 10 16 11 17 7 18 12 19 4 20 13 21 8 22 6 23 14 24 9 25 11 26 15 27 16 28 17 29 18 30 12 31 7 32 19 33 20 34 21 35 14 36 11 37 22 38 16 39 15 40 23 41 24 42 20 43 19 44 25 45 14 46 22 47

-
-
-
- - - - -426.073 -224.7282 65.9819 -426.8503 -226.0337 66.19537 -426.0731 -226.0549 66.19529 -426.073 -224.7282 65.9819 -426.0731 -226.0549 66.19529 -426.0731 -226.9366 64.81732 -426.8476 -224.7282 65.9819 -426.0731 -222.8789 65.32325 -426.8476 -224.7282 65.9819 -427.5667 -226.9366 64.81733 -426.8503 -226.0337 66.19537 -426.0731 -222.8789 65.32325 -426.5893 -224.5291 62.49788 -427.0623 -222.8599 65.31089 -427.0623 -222.8599 65.31089 -426.0731 -226.9366 64.81732 -428.5676 -224.5292 62.39344 -426.5893 -224.5291 62.49788 -426.5893 -219.9015 62.49788 -428.5676 -224.5292 62.39344 -426.0731 -222.8789 65.32325 -426.5893 -219.9015 62.49788 -427.0623 -222.8599 65.31089 -427.5667 -226.9366 64.81733 -428.5677 -219.4159 62.29362 -428.5677 -219.4159 62.29362 - - - - - - - - - - 0.0007430144 0.2490365 0.9684938 0.002964662 0.1596576 0.987168 0.004439617 0.1588012 0.9873006 1 -1.473698e-006 -2.94456e-005 1 -2.565928e-005 1.641886e-005 0.9950768 0.0122553 -0.09834638 -0.000796674 0.2525987 0.9675708 0.9880485 0.008243048 -0.1539229 -0.8963226 0.06021491 0.4392948 -0.8999515 0.06186399 0.4315787 -0.9032983 0.07103098 0.4230919 -0.004030247 0.337009 0.9414928 0.9822166 0.01339924 -0.1872728 -0.8950602 0.03537869 0.4445398 -0.00526946 0.3374674 0.9413225 0.01286976 -0.7027944 -0.7112766 0.02764716 -0.6948646 -0.7186089 0.03823128 -0.6890388 -0.7237154 0.9837176 -3.833314e-018 -0.1797211 -0.8961781 0.03514041 0.4423007 0.004192968 0.6887229 0.7250125 0.08053293 0.6800501 0.7287292 0.02401227 0.6868634 0.7263898 -2.896707e-005 -0.7095217 -0.7046836 -0.8906976 0.008859803 0.4545099 0.0912994 0.6784976 0.728907 - - - - - - - - - - 0.2680664 0.9570312 0.2529297 0.9492187 0.2529297 0.9570312 0.2680664 0.9594727 0.2529297 0.9570313 0.2480469 0.9711914 0.2680664 0.9482422 0.2529297 0.9492188 0.2773438 0.9667969 0.2680664 0.9594727 0.2480469 0.9711914 0.2680664 0.9482422 0.2485352 0.9335938 0.2529297 0.9492188 0.2680664 0.9570312 0.2788086 0.9526367 0.2680664 0.9482422 0.2773438 0.9667969 0.2480469 0.9711914 0.2680664 0.9951172 0.277832 0.9433594 0.2485352 0.9335937 0.2680664 0.9482422 0.2788086 0.9526367 0.2680664 0.9482422 0.05566406 0.9038086 0.04296875 0.8779297 0.04296875 0.8979492 0.2910156 0.9960938 0.2773438 0.9667969 0.2680664 0.9951172 0.277832 0.9433594 0.269043 0.9067383 0.2485352 0.9335937 0.2788086 0.9526367 0.2973633 0.9272461 0.277832 0.9433594 0.05566406 0.8886719 0.04296875 0.8779297 0.05566406 0.9038086 0.2949219 0.90625 0.269043 0.9067383 0.277832 0.9433594 0.2973633 0.9272461 0.2949219 0.90625 0.277832 0.9433594 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 0 0 6 6 1 7 7 8 3 9 5 10 8 11 9 12 10 13 0 14 11 15 6 16 7 17 5 18 12 19 13 20 9 21 8 22 11 23 14 20 6 24 15 25 16 26 17 27 18 28 7 29 12 30 13 31 19 32 9 33 20 34 21 35 22 36 23 37 16 38 15 39 24 40 19 41 13 42 21 43 25 44 22 45

-
-
-
- - - - -426.1923 -270.9667 65.3043 -426.2067 -269.0716 65.78391 -427.0931 -269.0715 65.78397 -426.2067 -267.7959 64.51642 -426.2067 -269.0716 65.78391 -426.1923 -270.9667 65.3043 -427.0825 -270.9667 65.30437 -426.2067 -272.5864 64.62834 -426.2067 -272.5864 64.62834 -427.7004 -267.7959 64.51642 -427.0825 -270.9667 65.30437 -427.0931 -269.0715 65.78397 -427.2152 -270.9165 61.86082 -427.3361 -272.6136 64.60556 -427.3361 -272.6136 64.60556 -427.2152 -275.8983 61.73561 -426.2067 -267.7959 64.51642 -427.2152 -270.9165 61.86082 -428.9081 -270.9165 61.72063 -427.2152 -275.8983 61.73561 -428.9081 -270.9165 61.72063 -427.7004 -267.7959 64.51642 -428.9081 -275.8983 61.50856 -428.9081 -275.8983 61.50856 - - - - - - - - - - 5.389803e-005 -0.3160842 0.9487312 4.068709e-005 -0.2453385 0.9694375 4.627571e-005 -0.245336 0.9694381 0.9842057 -0.001998111 -0.1770174 0.999963 0.006063128 0.006102551 0.9998742 0.0006080987 -0.01584982 -0.001647848 -0.3197849 0.9474887 0.955345 0.00101928 -0.2954908 -0.003328577 -0.5159406 0.8566179 -0.9049926 -0.07079027 0.4194962 -0.8952361 -0.06489549 0.4408412 -0.9314211 -0.09413335 0.3515588 0.9394219 -0.0007207241 -0.3427623 -0.01469306 -0.5522797 0.8335294 -0.886617 -0.04140504 0.4606473 0.9411655 0.008491112 -0.3378393 0.01592754 0.6595148 -0.7515228 0.06376875 0.6347369 -0.7700926 0.04872962 0.64276 -0.7645162 -0.08673658 -0.6572893 0.7486304 -0.887233 -0.04068841 0.4595237 -6.046374e-006 0.6672862 -0.7448014 -0.1002414 -0.6567363 0.7474284 -0.8828134 -0.01997781 0.4692988 - - - - - - - - - - 0.03466797 0.9536133 0.04296875 0.9536133 0.04296875 0.9438477 0.05029297 0.9667969 0.04296875 0.9536133 0.03417969 0.9580078 0.03466797 0.9536133 0.04296875 0.9438477 0.03466797 0.9423828 0.05029297 0.9667969 0.03417969 0.9580078 0.02587891 0.9648438 0.03466797 0.9536133 0.03466797 0.9423828 0.0234375 0.9458008 0.05078125 0.9301758 0.03466797 0.9423828 0.04296875 0.9438477 0.05029297 0.9667969 0.02587891 0.9648438 0.03320313 0.9936523 0.0234375 0.9458008 0.02587891 0.9365234 0.05078125 0.9301758 0.02587891 0.9365234 0.03466797 0.9423828 0.03320312 0.9936523 0.02587891 0.9648438 0.008300781 0.9941406 0.2617187 0.902832 0.2773437 0.8920898 0.2773437 0.875 0.0234375 0.9458008 0.02587891 0.9365234 0.006347656 0.9145508 0.05078125 0.9301758 0.03466797 0.8994141 0.02587891 0.9365234 0.2617188 0.902832 0.2773438 0.875 0.2617188 0.8876953 0.006347656 0.9145508 0.02587891 0.9365234 0.009765625 0.8979492 0.03466797 0.8994141 0.009765625 0.8979492 0.02587891 0.9365234 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 0 6 2 7 6 8 3 9 5 10 7 11 0 12 6 13 8 14 9 15 10 16 11 17 3 18 7 19 12 20 8 21 6 13 13 22 9 23 14 24 10 25 12 26 7 27 15 28 16 29 17 30 18 31 8 32 13 33 19 34 9 35 20 36 14 37 16 38 18 39 21 40 19 41 13 42 22 43 20 44 23 45 14 46

-
-
-
- - - - -436.9396 -239.6646 44.42462 -436.9396 -242.271 36.02922 -386.7831 -242.7178 36.02922 -386.783 -239.6646 44.42462 -423.5668 -236.5852 47.75704 -436.9396 -239.6646 44.42462 -386.783 -239.6646 44.42462 -433.5495 -236.5852 47.75704 -436.9396 -239.6646 44.42462 -423.5668 -236.5852 47.75704 -400.1559 -236.5851 47.75708 -423.5668 -236.5852 47.75704 -386.783 -239.6646 44.42462 -433.2456 -235.9355 52.74424 -433.5495 -236.5852 47.75704 -423.5668 -236.5852 47.75704 -400.1559 -236.5851 47.75708 -422.6971 -232.6735 47.94925 -423.5668 -236.5852 47.75704 -400.1559 -236.5851 47.75708 -390.1732 -236.5852 47.75704 -423.8708 -235.9354 52.74424 -422.6971 -232.6735 47.94925 -423.0723 -233.3263 53.23734 -423.5668 -236.5852 47.75704 -401.0257 -232.6735 47.94923 -390.4773 -235.9354 52.7442 -400.1559 -236.5851 47.75708 -390.1732 -236.5852 47.75704 -386.783 -239.6646 44.42462 -389.3036 -232.6735 47.94923 -390.1732 -236.5852 47.75704 -423.8708 -235.9354 52.74424 -423.8708 -235.9354 52.74424 -434.044 -233.3263 53.23733 -433.2456 -235.9355 52.74424 -423.0723 -233.3263 53.23734 -422.6971 -232.6735 47.94925 -434.4192 -232.6734 47.94925 -422.6971 -232.6735 47.94925 -401.0257 -232.6735 47.94923 -385.1214 -237.2189 36.14077 -401.0257 -232.6735 47.94923 -400.1559 -236.5851 47.75708 -400.6505 -233.3263 53.23734 -389.6788 -233.3263 53.23729 -390.4773 -235.9354 52.7442 -390.1732 -236.5852 47.75704 -399.852 -235.9355 52.74424 -389.3036 -232.6735 47.94923 -385.1214 -234.1511 43.69226 -423.0723 -233.3263 53.23734 -438.6013 -236.7721 36.14077 -434.4192 -232.6734 47.94925 -434.044 -233.3263 53.23733 -385.1214 -234.1511 43.69226 -399.852 -235.9355 52.74424 -400.6505 -233.3263 53.23734 -389.3036 -232.6735 47.94923 -401.0257 -232.6735 47.94923 -389.6788 -233.3263 53.23729 -399.852 -235.9355 52.74424 -390.4773 -235.9354 52.7442 -400.6505 -233.3263 53.23734 -389.6788 -233.3263 53.23729 -389.3036 -232.6735 47.94923 -389.3036 -232.6735 47.94923 -438.6013 -234.151 43.69226 -389.6788 -233.3263 53.23729 -400.6505 -233.3263 53.23734 -399.852 -235.9355 52.74424 - - - - - - - - - - -0.007553 -0.9534042 0.3016012 -0.008506517 -0.9549997 0.2964849 -0.0009409338 -0.9415751 0.3368017 0 -0.9397831 0.3417714 2.24155e-018 -0.7344318 0.6786825 2.24155e-018 -0.7344318 0.6786825 2.24155e-018 -0.7344318 0.6786825 -2.829315e-017 -0.7344318 0.6786825 -2.829315e-017 -0.7344318 0.6786825 -2.829315e-017 -0.7344318 0.6786825 -6.355743e-007 -0.7344353 0.6786787 -2.483054e-008 -0.734432 0.6786823 8.259606e-007 -0.7344321 0.6786821 4.083805e-006 -0.9916214 0.1291785 8.528089e-018 -0.9916224 0.1291707 9.489919e-006 -0.99162 0.1291888 5.309007e-007 -0.04906503 0.9987956 -1.510077e-006 -0.04907677 0.998795 -1.762731e-006 -0.04907822 0.9987949 -4.14197e-007 -0.7344349 0.6786791 1.490551e-006 -0.7344311 0.6786833 1.390012e-005 -0.9916189 0.1291972 0.9748573 -0.2188087 0.04214196 0.9602899 -0.2691742 0.07340674 0.9673958 -0.2462668 0.05914348 8.652136e-007 -0.04906311 0.9987957 1.535695e-006 -0.9916201 0.129188 5.31369e-006 -0.9916211 0.1291808 -1.318155e-006 -0.9916194 0.1291934 0.6609457 -0.1339603 0.7383803 0.6518527 -0.1406691 0.7451847 0.6060993 -0.1728883 0.7763719 0.9463085 -0.308109 0.09782124 5.424406e-007 -0.1857035 0.9826058 2.126243e-006 -0.1856976 0.9826069 2.60301e-006 -0.1856958 0.9826073 2.570179e-006 0.9924654 0.122525 4.768369e-006 0.992466 0.1225203 -1.044573e-006 0.9924645 0.1225326 0.005385669 0.9412693 -0.3376137 -0.001850063 0.9334619 -0.3586718 -0.006796478 0.9311334 -0.3646155 -0.9748527 -0.2188273 0.04215302 -0.9673942 -0.2462725 0.05914662 -0.9602919 -0.2691681 0.07340257 0.9602933 -0.2691607 0.07341126 0.9463119 -0.3080969 0.09782647 0.9673993 -0.2462521 0.05914734 8.395665e-006 -0.9916218 0.1291749 0.9748608 -0.2187928 0.04214517 0.6890059 -0.1125424 0.7159644 2.151771e-007 -0.1857048 0.9826056 0.003342639 0.9433018 -0.3319195 1.576159e-006 0.9447097 -0.3279079 -3.448707e-006 0.9924639 0.1225377 -0.01132172 0.9307915 -0.3653752 -0.9463182 -0.3080842 0.09780535 3.178913e-006 0.9924661 0.1225193 2.50214e-006 0.9924663 0.1225179 3.178913e-006 0.9924661 0.1225193 4.930943e-006 -0.185701 0.9826063 4.02876e-006 -0.1856976 0.9826069 4.930943e-006 -0.185701 0.9826063 2.92299e-006 0.9924662 0.1225188 2.222237e-006 0.9924664 0.1225173 2.222237e-006 0.9924664 0.1225173 3.025958e-006 0.9447132 -0.3278977 -1.161725e-005 0.9447111 -0.3279038 4.722189e-006 -0.1857002 0.9826064 3.885477e-006 -0.1856971 0.982607 3.885477e-006 -0.1856971 0.982607 - - - - - - - - - - 0.09375 0.809082 0.09375 0.7880859 0.1269531 0.7880859 0.1269531 0.809082 0.1015625 0.8198242 0.09375 0.809082 0.1269531 0.809082 0.09570313 0.8198242 0.09375 0.809082 0.1015625 0.8198242 0.1191406 0.8198242 0.1015625 0.8198242 0.1269531 0.809082 0.09570313 0.831543 0.09570313 0.8198242 0.1015625 0.8198242 0.1191406 0.8198242 0.1020508 0.8291016 0.1015625 0.8198242 0.1269531 0.809082 0.125 0.8198242 0.09570313 0.831543 0.1015625 0.8198242 0.1015625 0.831543 0.1049805 0.8398438 0.1020508 0.8378906 0.1040039 0.8310547 0.1191406 0.8198242 0.1186523 0.8291016 0.1020508 0.8291016 0.125 0.8315428 0.1191406 0.819824 0.125 0.819824 0.1274414 0.8227539 0.125 0.8198242 0.1020508 0.8378906 0.1015625 0.831543 0.1040039 0.8310547 0.1015625 0.831543 0.09521484 0.8378906 0.09570312 0.831543 0.1020508 0.8378906 0.1020508 0.8505859 0.09521484 0.8505859 0.1020508 0.8505857 0.1186523 0.8505857 0.1279297 0.8803708 0.1157227 0.8398437 0.1166992 0.8310547 0.1186523 0.8378906 0.1264648 0.8344727 0.125 0.831543 0.125 0.8198242 0.1191407 0.8315431 0.1191407 0.8198244 0.125 0.8315431 0.1274414 0.8227539 0.1264648 0.8344727 0.125 0.8198242 0.1303711 0.8110352 0.1274414 0.8227539 0.1269531 0.809082 0.1020508 0.8378906 0.1015625 0.831543 0.1020508 0.8505859 0.09277344 0.8803711 0.09521484 0.8505859 0.1020508 0.8378906 0.09521484 0.8505859 0.09521484 0.8378906 0.1020508 0.8505859 0.1279297 0.8803711 0.09277344 0.8803711 0.1186523 0.8505859 0.1279297 0.8613281 0.1279297 0.8803711 0.1186523 0.8378906 0.1166992 0.8310547 0.1191406 0.831543 0.1254883 0.8505859 0.1186523 0.8505859 0.1254883 0.8378907 0.1191406 0.8315431 0.125 0.8315431 0.1186523 0.8378904 0.1254882 0.8378904 0.1254882 0.8505857 0.1254883 0.8505859 0.1279297 0.8613281 0.1186523 0.8505859 0.09521484 0.8505859 0.09277344 0.8803711 0.09277344 0.8613281 0.1254883 0.8378905 0.1186523 0.8378905 0.1191406 0.8315429 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 0 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 16 12 19 20 20 13 21 15 22 21 23 22 24 23 25 24 26 16 27 25 28 17 29 26 30 27 31 28 32 29 19 30 33 31 34 23 35 32 36 24 37 33 38 34 39 35 40 36 41 37 42 38 43 39 44 40 45 41 46 42 47 43 48 44 49 45 50 46 51 47 52 48 53 27 54 26 55 49 56 45 57 47 58 50 59 30 60 29 61 51 62 34 39 33 63 39 64 52 65 53 66 36 67 38 68 54 69 39 70 41 71 52 72 40 73 55 74 41 75 44 76 43 77 56 78 57 49 58 79 59 80 60 81 61 82 62 83 63 84 64 85 65 86 66 87 55 88 40 89 53 90 52 91 67 92 68 93 69 94 70 95

-
-
-
- - - - -427.5159 -230.6764 6.71755 -435.8473 -231.5357 6.11874 -435.6257 -231.5462 3.842732 -427.0397 -230.687 4.945599 -427.0397 -230.687 4.945599 -435.6257 -231.5462 3.842732 -435.6257 -229.3292 3.905352 -408.6751 -229.181 8.063098 -435.6257 -229.3292 3.905352 -427.0397 -228.47 5.008218 -408.6751 -229.181 8.063098 -408.6751 -229.181 11.31647 -435.8472 -229.3054 6.210324 -427.0397 -228.47 5.008218 -435.6257 -229.3292 3.905352 -408.6751 -226.9925 8.063098 -408.6751 -229.181 11.31647 -408.6751 -226.9925 11.31647 -427.5159 -230.6764 6.71755 -389.8343 -230.6764 6.717557 -427.5159 -228.4462 6.809146 -408.6751 -226.9925 8.063098 -390.3105 -230.6869 4.945599 -427.5159 -228.4462 6.809146 -389.8343 -228.4462 6.809143 -408.6751 -226.9925 11.31647 -408.6751 -229.181 11.31647 -389.8343 -230.6764 6.717557 -390.3105 -230.6869 4.945599 -408.6751 -226.9925 11.31647 -390.3105 -228.47 5.008218 -389.8343 -228.4462 6.809143 -390.3105 -228.47 5.008218 -381.503 -229.3054 6.210324 -381.503 -231.5357 6.11874 -381.7245 -231.5462 3.842727 -381.7245 -229.3292 3.905352 -381.503 -229.3054 6.210324 -381.503 -229.3054 6.210324 -381.503 -231.5357 6.11874 -381.7245 -231.5462 3.842727 -381.7245 -231.5462 3.842727 -381.7245 -229.3292 3.905352 - - - - - - - - - - 0.08753684 -0.9958074 0.0265504 0.1015552 -0.9947245 0.0144823 0.1007262 -0.9947717 0.0168351 0.08569167 -0.9959011 0.02894635 0.1436619 0.02794135 -0.9892323 0.1245949 0.028014 -0.9918121 0.1245949 0.028014 -0.9918121 1.248221e-006 -0.9999989 0.001491522 0.1245949 0.02801424 -0.9918121 0.1460389 0.02688496 -0.9889135 -0.001619566 0.00101643 -0.9999982 2.186706e-008 -1 5.77034e-006 -0.09742153 0.9949941 -0.02226444 -0.08609888 0.9956955 -0.03431393 -0.0970674 0.9950847 -0.01960696 -0.001441867 0.001104655 -0.9999984 -0.2371312 -4.068234e-006 0.9714776 -0.2365738 -0.00301862 0.9716088 -0.2301428 -0.03696452 0.9724546 -0.08954553 -0.9955719 0.02860447 -0.08811 0.995504 -0.03476269 0.001699623 0.9999981 -0.0009396715 -0.1423415 0.02693245 -0.9894511 -0.2295651 -0.03994275 0.9724734 0.1562679 -0.03907804 0.9869414 0.2326671 3.991648e-006 0.9725564 0.2327689 -0.002779191 0.9725281 0.1461497 -0.04058817 0.9884295 -0.08766526 -0.9957573 0.02796739 0.001251253 0.9999986 -0.001138265 -0.1443567 0.02793866 -0.9891312 0.08335469 0.9959546 -0.03356251 0.08170719 0.9961123 -0.0329269 0.06742942 -0.04093677 0.9968839 -0.09809972 -0.9950387 0.01656868 -0.1245943 0.02801579 -0.9918122 0.100244 0.9947078 -0.02252725 0.10115 0.9946704 -0.01998536 0.06742926 -0.04093582 0.9968839 0.06742926 -0.04093582 0.9968839 -0.09777825 -0.9951083 0.01410488 -0.1245942 0.0280161 -0.9918122 -0.1245942 0.0280161 -0.9918122 - - - - - - - - - - 0.5791016 0.4443359 0.5791016 0.4057617 0.5742187 0.4057617 0.5791016 0.4443359 0.5742188 0.4057617 0.574707 0.4443359 0.5927734 0.4443359 0.5942383 0.4072266 0.5893555 0.4072266 0.5717773 0.5219727 0.5791016 0.4443359 0.574707 0.4443359 0.5927734 0.4443359 0.5893555 0.4072266 0.5878906 0.4443359 0.5957031 0.5224609 0.5927734 0.4443359 0.5878906 0.4443359 0.5791016 0.5253906 0.5791016 0.4443359 0.5717773 0.5219727 0.5839844 0.4067383 0.5878906 0.4443359 0.5893555 0.4072266 0.5957031 0.5224609 0.5908203 0.5224609 0.5791016 0.5253906 0.5834961 0.5263672 0.5791016 0.4443359 0.5791016 0.5253906 0.5717773 0.5219727 0.5791016 0.4443359 0.5834961 0.4443359 0.5878906 0.4443359 0.5839844 0.4067383 0.5908203 0.5224609 0.5878906 0.4443359 0.5834961 0.4443359 0.5927734 0.4443359 0.5957031 0.5224609 0.5908203 0.5224609 0.5834961 0.5263672 0.5834961 0.4443359 0.5791016 0.4443359 0.5834961 0.4443359 0.5834961 0.5263672 0.5791016 0.5253906 0.5834961 0.4443359 0.5791016 0.5253906 0.5717773 0.5219727 0.574707 0.4443359 0.5791016 0.4443359 0.5834961 0.5263672 0.5908203 0.5224609 0.5834961 0.4443359 0.5927734 0.4443359 0.5908203 0.5224609 0.5878906 0.4443359 0.5834961 0.5263672 0.5834961 0.4443359 0.5878906 0.4443359 0.5839844 0.4067383 0.5834961 0.4443359 0.5791016 0.4443359 0.5791016 0.4443359 0.574707 0.4443359 0.5791016 0.4057617 0.5834961 0.5263672 0.5878906 0.4443359 0.5908203 0.5224609 0.5942383 0.4072266 0.5927734 0.4443359 0.5878906 0.4443359 0.5834961 0.4443359 0.5893555 0.4072266 0.5878906 0.4443359 0.5834961 0.4443359 0.5839844 0.4067383 0.5893555 0.4072266 0.5839844 0.4067383 0.5791016 0.4443359 0.5791016 0.4057617 0.5791016 0.4057617 0.574707 0.4443359 0.5742188 0.4057617 0.5942383 0.4072266 0.5878906 0.4443359 0.5893555 0.4072266 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 2 4 3 5 4 6 5 7 6 8 7 9 0 10 3 11 4 12 8 13 9 14 10 15 4 16 9 17 11 18 0 19 7 20 12 21 13 22 14 23 10 24 9 22 15 25 16 26 17 27 18 28 11 29 7 30 19 31 20 32 13 33 12 34 21 35 13 36 20 37 22 38 10 39 15 40 17 41 23 42 18 43 24 44 25 45 26 46 27 19 24 47 26 48 7 49 28 50 19 51 29 52 21 53 20 54 22 55 15 56 30 57 29 58 31 59 32 60 33 61 24 62 27 63 19 64 28 65 34 66 29 67 32 68 21 69 35 70 22 71 30 72 31 73 36 74 32 75 31 76 37 77 36 78 38 79 27 80 39 81 34 82 28 83 40 84 41 85 30 86 42 87

-
-
-
- - - - -407.5442 -197.0297 13.30268 -405.9595 -197.0297 13.24793 -405.9596 -197.0297 13.0332 -405.9595 -197.0297 13.24793 -407.5442 -197.0297 13.30268 -407.5442 -198.9763 13.30268 -405.9595 -197.0297 13.24793 -405.9596 -198.5475 13.03319 -405.9596 -197.0297 13.0332 -407.7977 -197.0297 13.08795 -407.5442 -197.0297 13.30268 -407.8158 -198.9763 14.47507 -407.5442 -198.9763 13.30268 -405.9595 -198.5475 13.24793 -405.9595 -197.0297 13.24793 -405.9595 -198.5475 13.24793 -405.9596 -198.5475 13.03319 -405.9596 -198.5475 13.03319 -407.7977 -197.0297 13.08795 -405.9596 -197.0297 13.0332 -407.8158 -197.0296 14.47507 -407.8158 -197.0296 14.47507 -407.8158 -198.9763 14.47507 -407.5442 -197.0297 13.30268 -407.7977 -198.9763 13.08794 -407.7977 -197.0297 13.08795 -408.0692 -197.0297 14.26034 -407.7977 -197.0297 13.08795 -407.7977 -198.9763 13.08794 -408.0692 -197.0297 14.26034 -407.7977 -198.9763 13.08794 -408.0692 -198.9763 14.26033 -408.0692 -198.9763 14.26033 -409.2813 -198.9763 14.26034 -408.0692 -197.0297 14.26034 -409.2813 -197.0297 14.26034 -409.5347 -197.0297 14.47507 -408.0692 -197.0297 14.26034 -409.2813 -197.0297 14.26034 -409.2813 -197.0297 14.26034 -409.2813 -198.9763 14.26034 -409.5528 -198.9763 13.08794 -409.8062 -197.0297 13.30268 -409.2813 -197.0297 14.26034 -409.5528 -198.9763 13.08794 -409.5528 -197.0297 13.08795 -409.8062 -197.0297 13.30268 -409.5347 -198.9763 14.47507 -409.5347 -197.0297 14.47507 -409.5528 -197.0297 13.08795 -409.5528 -198.9763 13.08794 -411.3909 -198.5475 13.0332 -409.5528 -197.0297 13.08795 -409.8062 -197.0297 13.30268 -409.8062 -198.9763 13.30268 -409.5347 -198.9763 14.47507 -411.3909 -197.0297 13.24794 -411.3909 -197.0296 13.03319 -409.8062 -197.0297 13.30268 -411.3909 -197.0297 13.24794 -409.8062 -198.9763 13.30268 -411.3909 -197.0296 13.03319 -411.3909 -197.0296 13.03319 -411.3909 -198.5475 13.0332 -411.3909 -197.0297 13.24794 -409.8062 -198.9763 13.30268 -411.3909 -197.0297 13.24794 -411.3909 -198.5475 13.24794 -411.3909 -197.0297 13.24794 -411.3909 -198.5475 13.0332 -411.3909 -198.5475 13.24794 - - - - - - - - - - -2.957172e-005 1 -4.989266e-005 -0 1 -0 -1.114078e-006 1 -6.551138e-006 0.03452724 -6.885915e-007 0.9994038 0.03452935 -2.409502e-006 0.9994037 0.03452704 -5.236394e-007 0.9994038 1 2.703246e-010 -0.0001748481 1 2.703246e-010 -0.0001748481 1 2.703246e-010 -0.0001748481 -3.527108e-005 1 -4.579672e-005 0.9742051 -5.440632e-007 0.2256643 0.9742051 -5.440632e-007 0.2256643 0.9742051 -5.440632e-007 0.2256643 0.0345245 1.545132e-006 0.9994039 1 -2.703187e-010 -0.0001748443 1 -2.703187e-010 -0.0001748443 1 -2.703187e-010 -0.0001748443 -0.02977415 2.602142e-006 -0.9995567 -0.02977406 2.705731e-006 -0.9995567 -0.02977502 1.545368e-006 -0.9995566 -3.50791e-005 1 -4.602286e-005 0.9742051 -5.440632e-007 0.2256643 0.9742051 -5.440632e-007 0.2256643 0.9742051 -5.440632e-007 0.2256643 -0.02977331 3.614807e-006 -0.9995567 -0.02977331 3.614807e-006 -0.9995567 -0.974205 8.160963e-007 -0.2256648 -0.974205 8.160963e-007 -0.2256648 -0.974205 8.160963e-007 -0.2256648 -0.9742051 5.440632e-007 -0.2256643 -0.9742051 5.440632e-007 -0.2256643 -0.9742051 5.440632e-007 -0.2256643 -5.80837e-006 2.41094e-006 -1 -4.435563e-006 1.556202e-006 -1 -3.308931e-006 8.547381e-007 -1 -1.936123e-006 -1.141191e-022 -1 -8.83626e-007 1 -6.030082e-006 -2.866062e-005 1 -5.076179e-005 -0 1 -0 0.9742054 3.114768e-017 -0.2256631 0.9742054 3.114768e-017 -0.2256631 0.9742054 3.114768e-017 -0.2256631 -0 1 -0 0.9742052 5.440621e-007 -0.2256639 0.9742052 5.440621e-007 -0.2256639 0.9742052 5.440621e-007 -0.2256639 -0.9742052 -1.557396e-017 0.2256639 -0.9742052 -1.557396e-017 0.2256639 -0.9742052 -1.557396e-017 0.2256639 4.853113e-007 1 5.575735e-006 0.02977237 2.409871e-006 -0.9995567 0.02977396 4.744296e-007 -0.9995567 0.0297738 6.723638e-007 -0.9995567 -0.9742052 -1.557396e-017 0.2256639 -0.9742052 -1.557396e-017 0.2256639 -0.9742052 -1.557396e-017 0.2256639 7.033965e-006 1 8.081312e-005 0.02977563 -1.545368e-006 -0.9995566 -0.0345264 -2.186122e-018 0.9994038 -0.0345264 -2.186122e-018 0.9994038 -0.0345264 -2.186122e-018 0.9994038 7.609246e-006 1 8.742251e-005 -1 -2.703157e-010 -0.0001748424 -1 -2.703157e-010 -0.0001748424 -1 -2.703157e-010 -0.0001748424 -0.0345264 -1.43837e-017 0.9994038 -0.0345264 -1.43837e-017 0.9994038 -0.0345264 -1.43837e-017 0.9994038 -1 2.989934e-021 -0.0001748443 -1 2.989934e-021 -0.0001748443 -1 2.989934e-021 -0.0001748443 - - - - - - - - - - 0.5693355 0.01953124 0.561523 0.01904296 0.561523 0.01708983 0.4189453 0.009277344 0.4189453 0.02539062 0.4091797 0.02539062 0.5615234 0.01904297 0.5532227 0.01708984 0.5615234 0.01708984 0.5615234 0.01708984 0.5708008 0.01757812 0.4189453 0.02539062 0.4091797 0.03759766 0.4091797 0.02539062 0.4189453 0.009277344 0.4091797 0.02539062 0.4111328 0.009277344 0.5615234 0.01904297 0.5532227 0.01904297 0.5532227 0.01708984 0.5253906 0.02929687 0.5068359 0.02148437 0.5253906 0.02148437 0.5708008 0.03173828 0.5693359 0.01953125 0.5708008 0.01757812 0.4189453 0.03759766 0.4091797 0.03759766 0.4189453 0.02539062 0.5253906 0.02929688 0.5068359 0.03125 0.5068359 0.02148438 0.4946289 0.02148437 0.5068359 0.02148437 0.5068359 0.03125 0.4946289 0.02148437 0.5068359 0.03125 0.4946289 0.03125 0.4946289 0.03125 0.4824219 0.03125 0.4946289 0.02148437 0.4946289 0.02148438 0.4824219 0.03125 0.4824219 0.02148438 0.57959 0.03173829 0.5717775 0.02929688 0.5781251 0.02929688 0.4824219 0.02148438 0.4824219 0.03125 0.4702148 0.03125 0.5795901 0.03173829 0.570801 0.03173829 0.5717776 0.02929689 0.5795898 0.03173828 0.578125 0.02929687 0.5805664 0.01953125 0.4824219 0.02148437 0.4702148 0.03125 0.4702148 0.02148437 0.4189453 0.02539063 0.4091797 0.03759766 0.4189453 0.03759766 0.578125 0.02929688 0.5795898 0.01757813 0.5805664 0.01953125 0.4702148 0.03125 0.4511719 0.02929688 0.4702148 0.02148438 0.4189453 0.02539062 0.4091797 0.02539062 0.4091797 0.03759766 0.5805664 0.01953125 0.5795898 0.01757812 0.5888672 0.01904297 0.4702148 0.02148438 0.4511719 0.02929688 0.4511719 0.02148438 0.4189453 0.02539062 0.4189453 0.009277344 0.4091797 0.02539062 0.5888669 0.01904296 0.5795895 0.01757812 0.5888669 0.01708984 0.5888672 0.01708984 0.5961914 0.01708984 0.5888672 0.01904297 0.4091797 0.02539062 0.4189453 0.009277344 0.4111328 0.009277344 0.5888672 0.01904297 0.5961914 0.01708984 0.5961914 0.01904297 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 0 0 2 9 9 10 10 11 11 12 12 13 3 14 5 15 13 16 14 17 15 18 16 19 17 20 18 21 19 22 20 23 0 24 9 25 21 26 22 27 23 28 17 29 24 30 25 31 26 32 27 33 28 34 29 35 30 36 31 37 32 38 33 39 34 40 34 41 33 42 35 43 36 44 37 45 38 46 39 47 40 48 41 49 36 50 20 51 37 52 36 53 38 54 42 55 43 56 44 57 45 58 46 59 47 60 48 61 38 62 49 63 42 64 50 65 51 66 52 67 53 68 54 69 55 70 42 71 49 72 56 73 52 74 51 75 57 76 58 77 59 78 60 79 56 80 49 81 61 82 62 83 63 84 64 85 65 86 66 87 67 88 68 89 69 90 70 91

-
-
-
- - - - -407.8158 -197.0296 14.47507 -407.7977 -197.0297 13.08795 -408.0692 -197.0297 14.26034 - - - - - - - - - - -3.50791e-005 1 -4.602286e-005 -3.527108e-005 1 -4.579672e-005 -2.866062e-005 1 -5.076179e-005 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -382.609 -320.6061 41.72689 -396.558 -323.9813 42.0285 -382.9909 -323.5543 42.86255 -380.539 -311.4966 43.55463 -396.558 -323.9813 42.0285 -382.609 -320.6061 41.72689 -396.5579 -327.5086 42.86273 -408.6747 -324.6707 42.14742 -408.6747 -324.6707 42.14742 -436.8106 -311.4966 43.55463 -408.6747 -328.2496 43.0458 -380.539 -311.4966 43.55463 -438.373 -307.0996 37.94405 -436.8106 -311.4966 43.55463 -420.7915 -323.9813 42.0285 -420.7915 -323.9813 42.0285 -380.539 -311.4966 43.55463 -378.9766 -307.0996 37.94404 -438.373 -307.0996 37.94405 -434.7405 -320.6061 41.72689 -420.7915 -327.5086 42.86273 -378.9368 -274.5196 39.54005 -438.373 -307.0996 37.94405 -378.9766 -307.0996 37.94404 -434.7405 -320.6061 41.72689 -434.3585 -323.5543 42.86256 -438.4131 -274.5196 39.54005 -438.373 -307.0996 37.94405 -437.7032 -237.9001 40.13863 -379.647 -237.9001 40.13863 -435.2886 -208.4297 40.9824 -382.0618 -208.4297 40.9824 -435.2886 -208.4297 40.9824 -382.0618 -208.4297 40.9824 -379.647 -237.9001 40.13863 -378.2622 -230.1464 44.02552 -379.3061 -211.5672 44.41777 - - - - - - - - - - -0.06857606 0.3663267 0.9279559 -0.03820638 0.2392744 0.9702 -0.0684373 0.3486285 0.9347591 0.0398495 -0.1665713 0.9852238 0.02590102 -0.1539733 0.9877355 0.07236762 -0.211987 0.9745894 -0.03124444 0.2314133 0.9723537 -8.673312e-009 -0.1158071 0.9932717 0.001749054 0.2422639 0.9702088 -0.0398494 -0.1665717 0.9852238 0.00158032 0.2422121 0.970222 5.386286e-018 0.7870867 0.6168424 5.386286e-018 0.7870867 0.6168424 5.386286e-018 0.7870867 0.6168424 -0.02590103 -0.1539736 0.9877354 0.03673959 0.2404491 0.9699662 4.874049e-008 0.7870869 0.6168421 4.874049e-008 0.7870869 0.6168421 4.874049e-008 0.7870869 0.6168421 -0.07236735 -0.2119875 0.9745893 0.02925773 0.2300621 0.9727361 2.70016e-008 -0.03273549 0.9994641 7.892151e-008 -0.0489289 0.9988023 7.892151e-008 -0.0489289 0.9988023 0.0685764 0.3663295 0.9279547 0.06843765 0.3486311 0.9347581 2.032061e-018 -0.03273535 0.9994641 2.903166e-018 -0.04892876 0.9988023 1.06845e-018 -0.02228032 0.9997518 -3.285577e-019 -0.02228029 0.9997518 1.863389e-018 -0.02861907 0.9995904 -0 -0.02861907 0.9995904 -0 -0.02861907 0.9995904 -0.8190247 -0.06339224 0.5702455 -0.8725773 -0.08527125 0.4809757 -0.86801 -0.08327572 0.4895138 -0.8038013 -0.05766679 0.5920963 - - - - - - - - - - 0.4980469 0.597168 0.4824219 0.7368164 0.4858398 0.6010742 0.855957 0.4746094 0.8510742 0.4873047 0.8525391 0.4760742 0.4824219 0.7368164 0.4672852 0.7368164 0.8505859 0.4975586 0.8510742 0.4873047 0.4672852 0.7368164 0.4824219 0.7368164 0.4794922 0.8583984 0.855957 0.4746094 0.8564453 0.5205078 0.8505859 0.4975586 0.4672852 0.7368164 0.4794922 0.8583984 0.4643555 0.8583984 0.855957 0.4746094 0.8588867 0.5214844 0.8564453 0.5205078 0.8505859 0.4975586 0.8564453 0.5205078 0.8510742 0.5073242 0.4643555 0.8583984 0.4794922 0.8583984 0.4824219 0.7368164 0.855957 0.4746094 0.8588867 0.4731445 0.8588867 0.5214844 0.8510742 0.5073242 0.8564453 0.5205078 0.8525391 0.5185547 0.4643555 0.8583984 0.4824219 0.7368164 0.4672852 0.7368164 0.8720703 0.4726563 0.8588867 0.5214844 0.8588867 0.4731445 0.4824219 0.7368164 0.4980469 0.597168 0.4858398 0.6010742 0.4824219 0.7368164 0.4858398 0.6010742 0.4672852 0.7368164 0.8720703 0.4726562 0.8720703 0.5214844 0.8588867 0.5214844 0.8720703 0.4726563 0.8867188 0.5205078 0.8720703 0.5214844 0.8720703 0.4726563 0.8867188 0.4731445 0.8867188 0.5205078 0.8867188 0.4731445 0.8984375 0.5185547 0.8867188 0.5205078 0.8984375 0.4750977 0.8984375 0.5185547 0.8984375 0.4750977 0.8867187 0.4731445 0.8901367 0.4707031 0.8984375 0.4750977 0.8901367 0.4707031 0.8979492 0.4711914 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 2 2 1 6 6 7 3 3 7 8 4 9 6 10 1 11 8 12 3 13 9 14 7 15 6 16 8 17 10 18 11 19 12 20 13 21 7 22 9 23 14 24 10 25 8 26 15 27 16 28 17 29 18 30 14 31 9 32 19 33 10 34 15 35 20 36 21 37 22 38 23 39 15 40 24 41 25 42 15 43 25 44 20 45 21 46 26 47 27 48 21 49 28 50 26 51 21 52 29 53 28 54 29 55 30 56 28 57 29 53 31 58 32 59 33 60 34 61 35 62 33 63 35 64 36 65

-
-
-
- - - - -432.2244 -203.9482 33.2944 -408.6752 -202.9891 31.76499 -434.5503 -207.7097 12.82704 -432.2244 -203.9482 33.2944 -434.5503 -207.7097 12.82704 -443.2269 -229.5068 32.84176 -408.6752 -202.9891 31.76499 -414.808 -200.2696 13.93072 -434.5503 -207.7097 12.82704 -434.5503 -218.089 21.89855 -443.2269 -229.5068 32.84176 -434.5503 -207.7097 12.82704 -408.6752 -202.9891 31.76499 -402.5425 -200.2696 13.93072 -414.808 -200.2696 13.93072 -382.8001 -204.9902 12.82703 -385.1261 -203.9482 33.2944 -385.1261 -203.9482 33.2944 -382.8001 -218.089 21.89855 -382.8001 -204.9902 12.82703 -385.1261 -203.9482 33.2944 -374.1234 -229.5068 32.84176 -382.8001 -218.089 21.89855 - - - - - - - - - - -0.051401 0.9832503 -0.1748622 -0.051401 0.9832503 -0.1748622 -0.051401 0.9832503 -0.1748622 -0.918249 0.3947242 0.03180502 -0.918249 0.3947242 0.03180502 -0.918249 0.3947242 0.03180502 -0.3532804 0.8990712 0.2585806 -0.3532804 0.8990712 0.2585806 -0.3532804 0.8990712 0.2585806 -0.08336213 -0.6557897 -0.750327 -0.08336213 -0.6557897 -0.750327 -0.08336213 -0.6557897 -0.750327 0.09303332 0.9898373 0.1075495 0.145499 0.9693734 0.1978516 -1.484237e-006 0.9885726 0.1507456 0.1270139 0.9894991 0.06898526 0.04362281 0.9979954 -0.04585079 0.9912026 0.07535442 0.1088075 0.9965537 0.0472269 0.06819295 0.997156 0.0429088 0.06195785 0.8755774 0.3821594 -0.2954969 0.8755774 0.3821594 -0.2954969 0.8755774 0.3821594 -0.2954969 - - - - - - - - - - 0.3369141 0.9775391 0.3603516 0.9760742 0.3349609 0.9575195 0.3369141 0.9775391 0.3349609 0.9575195 0.3261719 0.9775391 0.3603516 0.9760742 0.3540039 0.9589844 0.3349609 0.9575195 0.3349609 0.9667969 0.3261719 0.9775391 0.3349609 0.9575195 0.3603516 0.9760742 0.3662109 0.9589844 0.3540039 0.9589844 0.3603516 0.9760742 0.3852539 0.9575195 0.3662109 0.9589844 0.3833008 0.9775391 0.3852539 0.9575195 0.3603516 0.9760742 0.3833008 0.9775391 0.3852539 0.9667969 0.3852539 0.9575195 0.3833008 0.9775391 0.394043 0.9775391 0.3852539 0.9667969 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -402.7283 -321.965 44.42182 -413.104 -321.5497 44.76881 -413.3531 -320.7938 44.67665 -402.7536 -321.6001 44.99863 -413.104 -321.5497 44.76881 -402.7283 -321.965 44.42182 -413.3531 -320.7938 44.67665 -413.104 -321.5497 44.76881 -413.1377 -321.2546 45.34342 -401.7959 -321.237 44.28222 -402.7536 -321.6001 44.99863 -402.7283 -321.965 44.42182 -389.8636 -320.9233 43.58146 -402.7536 -321.6001 44.99863 -402.7283 -321.965 44.42182 -402.6344 -321.9136 45.22659 -413.1377 -321.2546 45.34342 -413.1377 -321.2546 45.34342 -401.7959 -321.237 44.28222 -413.3531 -320.7938 44.67665 -389.8604 -321.3348 43.00283 -389.8604 -321.3348 43.00283 -402.7536 -321.6001 44.99863 -389.8636 -320.9233 43.58146 -390.0825 -320.5439 42.91318 -384.0713 -321.4237 41.8511 -402.7536 -321.6001 44.99863 -402.6344 -321.9136 45.22659 -390.0825 -320.5439 42.91318 -390.0825 -320.5439 42.91318 -389.8636 -320.9233 43.58146 -389.8604 -321.3348 43.00283 -383.8401 -322.0344 41.8436 -384.0713 -321.4237 41.8511 -402.6344 -321.9136 45.22659 -402.7536 -321.6001 44.99863 -384.0713 -321.4237 41.8511 -384.0959 -321.4567 41.07663 -402.6344 -321.9136 45.22659 -402.6073 -322.2874 44.64958 -383.8401 -322.0344 41.8436 -402.6073 -322.2874 44.64958 -383.8692 -322.0674 41.24714 -383.8401 -322.0344 41.8436 -383.8692 -322.0674 41.24714 -402.6073 -322.2874 44.64958 -402.7283 -321.965 44.42182 - - - - - - - - - - -0.05272136 -0.1223519 -0.9910855 -0.03845819 -0.1334161 -0.9903136 -0.03849741 -0.133783 -0.9902626 -0.01591805 -0.8471129 0.5311745 -0.01452232 -0.8881535 0.4593173 -0.01597262 -0.8453171 0.5340261 -0.9486056 -0.3006351 0.09882261 -0.9486056 -0.3006351 0.09882261 -0.9486056 -0.3006351 0.09882261 -0.09226856 -0.07408993 -0.9929739 0.1028479 -0.8385857 0.5349732 0.1028666 -0.8376929 0.5363665 0.1032825 -0.8112197 0.5755479 -0.9544055 -0.2693922 0.1286003 -0.9547477 -0.2681943 0.1285638 -0.9545865 -0.2687593 0.128581 -0.01446061 -0.889768 0.4561839 0.05058704 0.8306825 0.5544435 0.009739342 0.8859814 0.4636185 0.05078929 0.8292393 0.5565812 -0.1066818 -0.1378348 -0.9846931 0.1032927 -0.8102769 0.5768726 0.03694015 0.8702155 0.4912844 0.008330995 0.8707629 0.4916325 0.008080705 0.8714316 0.4904505 0.1254605 0.6142192 0.7790984 0.1254605 0.6142192 0.7790984 0.1254605 0.6142192 0.7790984 -0.1066565 -0.1414893 -0.9841774 0.9534377 0.2482558 -0.1712474 0.9534377 0.2482558 -0.1712474 0.9534377 0.2482558 -0.1712474 0.1772279 0.05503912 0.9826296 0.1772279 0.05503912 0.9826296 0.1772279 0.05503912 0.9826296 -0.01651585 0.9989791 -0.04204639 -0.01651585 0.9989791 -0.04204639 -0.01651585 0.9989791 -0.04204639 0.09263885 -0.8336732 0.5444328 0.09263885 -0.8336732 0.5444328 0.09263885 -0.8336732 0.5444328 0.02154937 -0.9983018 0.05412229 0.02154937 -0.9983018 0.05412229 0.02154937 -0.9983018 0.05412229 -0.1353652 -0.6050249 -0.7846152 -0.1353652 -0.6050249 -0.7846152 -0.1353652 -0.6050249 -0.7846152 - - - - - - - - - - 0.1704102 0.7900391 0.1943359 0.7890625 0.1948242 0.7958984 0.1708984 0.7841797 0.1943359 0.7890625 0.1704102 0.7900391 0.1958008 0.7866211 0.1943359 0.7890625 0.1943359 0.7832031 0.168457 0.7963867 0.1704102 0.7900391 0.1948242 0.7958984 0.1708984 0.7841797 0.1416016 0.78125 0.1933594 0.8041992 0.1928711 0.8100586 0.1923828 0.8032227 0.1943359 0.7832031 0.1943359 0.7890625 0.1708984 0.7841797 0.1943359 0.7832031 0.168457 0.7773437 0.1948242 0.7758789 0.1411133 0.7875977 0.1704102 0.7900391 0.168457 0.7963867 0.1411133 0.7875977 0.1708984 0.7841797 0.1420898 0.7739258 0.1494141 0.8095703 0.1923828 0.8012695 0.1923828 0.8032227 0.1943359 0.7832031 0.1708984 0.7841797 0.168457 0.7773438 0.1411133 0.7875977 0.168457 0.7963867 0.1416016 0.7949219 0.1396484 0.7836914 0.1416016 0.78125 0.1411133 0.7875977 0.1708984 0.7841797 0.1420898 0.7739258 0.168457 0.7773438 0.1489258 0.8139648 0.1494141 0.8095703 0.1923828 0.8032227 0.1923828 0.8012695 0.1494141 0.8095703 0.1489258 0.8046875 0.1923828 0.8032227 0.1923828 0.8095703 0.1489258 0.8139648 0.1923828 0.8095703 0.1489258 0.8188477 0.1489258 0.8139648 0.1489258 0.8188477 0.1923828 0.8095703 0.1923828 0.8125 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 0 10 2 11 10 12 11 0 12 13 13 14 14 15 15 16 16 17 4 18 3 19 17 20 18 21 19 22 20 23 0 24 9 25 11 0 21 26 12 13 22 27 23 13 24 28 25 29 26 30 27 31 17 32 22 33 18 34 20 35 9 36 28 37 29 38 30 39 31 40 22 41 24 42 18 43 32 44 33 45 34 46 35 47 36 48 37 49 38 50 39 51 40 52 41 53 42 54 43 55 44 56 45 57 46 58

-
-
-
- - - - -412.0504 -324.3406 42.86656 -423.7946 -321.7965 43.34685 -412.0957 -323.5224 42.7598 -424.8588 -321.9415 43.98614 -412.0957 -323.5224 42.7598 -423.7946 -321.7965 43.34685 -412.0957 -323.5224 42.7598 -412.0123 -323.928 43.44312 -412.0504 -324.3406 42.86656 -424.8659 -322.3131 43.41306 -434.7063 -319.176 43.80052 -412.0123 -323.928 43.44312 -412.0123 -323.928 43.44312 -424.8659 -322.3131 43.41306 -412.0504 -324.3406 42.86656 -434.7697 -318.6916 43.11894 -424.8588 -321.9415 43.98614 -434.7063 -319.176 43.80052 -434.6727 -319.4712 43.22594 -434.7697 -318.6916 43.11894 -424.8588 -321.9415 43.98614 -434.6727 -319.4712 43.22594 -424.8659 -322.3131 43.41306 -424.8588 -321.9415 43.98614 -424.8659 -322.3131 43.41306 -424.8252 -322.2692 44.22273 -406.3603 -325.6644 42.40669 -424.8588 -321.9415 43.98614 -424.8252 -322.2692 44.22273 -406.2657 -326.3106 42.41502 -406.3603 -325.6644 42.40669 -424.8252 -322.2692 44.22273 -424.8588 -321.9415 43.98614 -406.3603 -325.6644 42.40669 -406.3336 -325.6976 41.81035 -424.8252 -322.2692 44.22273 -424.8233 -322.6461 43.64707 -406.2657 -326.3106 42.41502 -424.8233 -322.6461 43.64707 -406.2435 -326.3427 41.81823 -406.2657 -326.3106 42.41502 -406.2435 -326.3427 41.81823 -424.8233 -322.6461 43.64707 -424.8659 -322.3131 43.41306 - - - - - - - - - - -0.06831995 -0.1286102 -0.9893391 -0.03942062 -0.04924926 -0.9980083 -0.06920918 -0.1328321 -0.9887192 0.2053173 0.8232336 0.5292742 0.1533538 0.8584834 0.489376 0.166043 0.8653628 0.4728393 0.9944652 0.04244407 -0.09611129 0.9944652 0.04244407 -0.09611129 0.9944652 0.04244407 -0.09611129 -0.01754247 -0.0925058 -0.9955576 0.2163571 0.8053468 0.5519114 0.1533815 0.8578417 0.4904913 -0.1026997 -0.8065888 0.5821231 -0.1059099 -0.8328635 0.5432508 -0.102586 -0.8056595 0.5834285 -0.02051266 -0.1365336 -0.990423 -0.2457001 -0.8142424 0.5259665 -0.2515389 -0.866792 0.4305808 -0.2513625 -0.8648854 0.4344999 0.2163256 0.8051685 0.5521838 -0.1060173 -0.8337442 0.5418773 -0.02125294 -0.1385342 -0.9901296 -0.2454159 -0.8120179 0.5295263 -0.9965497 -0.06342944 0.05352959 -0.9952999 -0.08013634 0.05437165 -0.9959286 -0.07220233 0.05397353 0.1855062 0.58761 0.7875925 0.1855062 0.58761 0.7875925 0.1855062 0.58761 0.7875925 0.1029149 0.02787375 0.9942995 0.1029149 0.02787375 0.9942995 0.1029149 0.02787375 0.9942995 0.1933344 0.9800642 -0.0457816 0.1933344 0.9800642 -0.0457816 0.1933344 0.9800642 -0.0457816 -0.127852 -0.8299923 0.5429241 -0.127852 -0.8299923 0.5429241 -0.127852 -0.8299923 0.5429241 -0.1906066 -0.980604 0.04566122 -0.1906066 -0.980604 0.04566122 -0.1906066 -0.980604 0.04566122 -0.1933601 -0.5805611 -0.790924 -0.1933601 -0.5805611 -0.790924 -0.1933601 -0.5805611 -0.790924 - - - - - - - - - - 0.1411133 0.7875977 0.168457 0.7963867 0.1416016 0.7949219 0.1708984 0.7841797 0.1420898 0.7739258 0.168457 0.7773438 0.1396484 0.7836914 0.1416016 0.78125 0.1411133 0.7875977 0.1704102 0.7900391 0.168457 0.7963867 0.1708984 0.7841797 0.168457 0.7773437 0.1943359 0.7832031 0.1708984 0.7841797 0.1416016 0.78125 0.1704102 0.7900391 0.1411133 0.7875977 0.168457 0.7963867 0.1704102 0.7900391 0.1948242 0.7958984 0.1708984 0.7841797 0.1943359 0.7832031 0.1943359 0.7890625 0.168457 0.7773438 0.1948242 0.7758789 0.1708984 0.7841797 0.1704102 0.7900391 0.1416016 0.78125 0.1704102 0.7900391 0.1943359 0.7890625 0.1948242 0.7958984 0.1708984 0.7841797 0.1943359 0.7890625 0.1704102 0.7900391 0.1933594 0.8041992 0.1928711 0.8100586 0.1923828 0.8032227 0.1494141 0.8095703 0.1923828 0.8012695 0.1923828 0.8032227 0.1489258 0.8139648 0.1494141 0.8095703 0.1923828 0.8032227 0.1923828 0.8012695 0.1494141 0.8095703 0.1489258 0.8046875 0.1923828 0.8032227 0.1923828 0.8095703 0.1489258 0.8139648 0.1923828 0.8095703 0.1489258 0.8188477 0.1489258 0.8139648 0.1489258 0.8188477 0.1923828 0.8095703 0.1923828 0.8125 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 0 0 8 9 9 1 10 3 11 5 12 10 13 3 14 11 7 4 4 12 15 13 16 14 17 1 18 9 19 15 20 16 21 17 22 18 23 10 22 5 24 19 25 20 26 13 27 12 28 9 29 21 30 15 31 16 32 18 33 22 34 23 35 24 36 25 37 26 38 27 39 28 40 29 41 30 42 31 43 32 44 33 45 34 46 35 47 36 48 37 49 38 50 39 51 40 52 41 53 42 54 43 55

-
-
-
- - - - -422.9342 -364.9652 33.20303 -422.8912 -365.5246 30.52903 -408.6746 -366.48 30.5451 -408.6746 -365.7979 33.26312 -394.415 -364.9652 33.20302 -394.4579 -365.5246 30.52903 - - - - - - - - - - -0.06485058 -0.9759182 0.2082739 -0.06588285 -0.9768985 0.2032946 1.291544e-007 -0.971114 0.2386162 1.273161e-007 -0.9699273 0.243395 0.06485067 -0.975918 0.2082748 0.06588291 -0.9768983 0.2032956 - - - - - - - - - - 0.4399414 0.5595703 0.4399414 0.4614258 0.3251953 0.4614258 0.3251953 0.5595703 0.3251953 0.4614258 0.3251953 0.5595703 0.4399414 0.5595703 0.4399414 0.5595703 0.3251953 0.4614258 0.4399414 0.4614258 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -422.8362 -365.8251 28.82949 -422.7592 -366.29 26.04677 -408.6746 -367.2737 26.04104 -408.6746 -366.9295 28.85625 -394.5129 -365.8251 28.82948 -394.5899 -366.29 26.04677 - - - - - - - - - - -0.06980573 -0.9850927 0.1572244 -0.06867798 -0.9843082 0.1625444 -1.360613e-006 -0.9919581 0.1265666 -1.400713e-006 -0.9926107 0.1213426 0.06980311 -0.985093 0.157224 0.06867538 -0.9843085 0.162544 - - - - - - - - - - 0.4399414 0.5595703 0.4399414 0.4614258 0.3251953 0.4614258 0.3251953 0.5595703 0.4399414 0.5595703 0.3251953 0.4614258 0.3251953 0.5595703 0.3251953 0.4614258 0.4399414 0.5595703 0.4399414 0.5595703 0.3251953 0.4614258 0.4399414 0.4614258 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 0 4 2 5 3 6 2 7 4 8 4 9 2 10 5 11

-
-
-
- - - - -401.4486 -200.7942 10.69884 -423.1284 -213.1182 8.509879 -415.9019 -200.7942 10.69884 -415.9019 -200.7942 10.69884 -423.1284 -213.1182 8.509879 -415.9019 -201.677 15.66875 -401.4486 -201.6769 15.66875 -401.4486 -200.7942 10.69884 -415.9019 -200.7942 10.69884 -394.2219 -213.1182 8.509879 -423.1284 -213.1182 8.509879 -401.4486 -200.7942 10.69884 -415.9019 -201.677 15.66875 -401.4486 -201.6769 15.66875 -415.9019 -200.7942 10.69884 -423.1284 -214.001 13.47979 -401.4486 -200.7942 10.69884 -401.4486 -201.6769 15.66875 -394.222 -214.0009 13.47979 -401.4486 -200.7942 10.69884 -394.222 -214.0009 13.47979 -394.2219 -213.1182 8.509879 -394.2219 -213.1182 8.509879 -415.9017 -225.4422 6.320919 -423.1284 -213.1182 8.509879 -423.1284 -213.1182 8.509879 -415.9017 -225.4422 6.320919 -423.1284 -214.001 13.47979 -394.2219 -213.1182 8.509879 -394.222 -214.0009 13.47979 -401.4485 -226.3249 11.29082 -394.2219 -213.1182 8.509879 -401.4485 -225.4422 6.320921 -415.9017 -225.4422 6.320919 -415.9017 -226.3249 11.29083 -401.4485 -225.4422 6.320921 - - - - - - - - - - -2.271489e-007 0.1748806 -0.9845896 -2.271489e-007 0.1748806 -0.9845896 -2.271489e-007 0.1748806 -0.9845896 -0.8660279 0.4922902 0.08744164 -0.866027 0.4922926 0.08743693 -0.8660277 0.4922908 0.08744036 -1.278863e-006 0.9845889 0.174885 -1.278863e-006 0.9845889 0.174885 -1.278863e-006 0.9845889 0.174885 -1.135746e-007 0.1748804 -0.9845897 -1.135746e-007 0.1748804 -0.9845897 -1.135746e-007 0.1748804 -0.9845897 -1.222078e-006 0.9845889 0.1748848 -1.222078e-006 0.9845889 0.1748848 -1.222078e-006 0.9845889 0.1748848 -0.8660268 0.4922932 0.08743564 0.8660245 0.4922948 0.08744909 0.8660245 0.4922948 0.08744909 0.8660245 0.4922948 0.08744909 0.8660245 0.4922948 0.08744905 0.8660245 0.4922948 0.08744905 0.8660245 0.4922948 0.08744905 -1.135748e-007 0.1748807 -0.9845896 -1.135748e-007 0.1748807 -0.9845896 -1.135748e-007 0.1748807 -0.9845896 -0.8660242 -0.4922954 -0.0874491 -0.8660231 -0.4922984 -0.08744311 -0.8660239 -0.4922962 -0.08744747 0.8660275 -0.4922916 -0.08743782 0.8660279 -0.4922913 -0.08743534 0.8660264 -0.4922924 -0.08744445 3.870079e-007 0.1748798 -0.9845898 3.870079e-007 0.1748798 -0.9845898 3.870079e-007 0.1748798 -0.9845898 -0.8660228 -0.4922992 -0.08744147 0.866026 -0.4922927 -0.08744693 - - - - - - - - - - 0.4873047 0.9755859 0.4990234 0.96875 0.4951172 0.9755859 0.4438477 0.9624023 0.480957 0.9624023 0.4438477 0.9750977 0.4438477 0.9750977 0.4438477 0.9624023 0.480957 0.9624023 0.4829102 0.96875 0.4990234 0.96875 0.4873047 0.9755859 0.480957 0.9750977 0.4438477 0.9750977 0.480957 0.9624023 0.4438477 0.9750977 0.480957 0.9624023 0.480957 0.9750977 0.480957 0.9624023 0.480957 0.9750977 0.4438477 0.9750977 0.480957 0.9624023 0.4438477 0.9750977 0.4438477 0.9624023 0.4829102 0.96875 0.4951172 0.9619141 0.4990234 0.96875 0.4438477 0.9624023 0.480957 0.9624023 0.4438477 0.9750977 0.480957 0.9624023 0.480957 0.9750977 0.4829102 0.9687501 0.4873047 0.9619141 0.4951172 0.9619141 0.4438477 0.9750977 0.480957 0.9624023 0.480957 0.9750977 0.4438477 0.9750977 0.4438477 0.9624023 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -381.5577 -213.0193 51.07845 -382.0618 -208.4297 40.9824 -379.5113 -211.0777 44.93536 - - - - - - - - - - -0.314598 -0.8699459 -0.3797659 -0.314598 -0.8699459 -0.3797659 -0.314598 -0.8699459 -0.3797659 - - - - - - - - - - 0.8994141 0.4663086 0.8984375 0.4750977 0.8979492 0.4707031 - - - - - - - - - - - - - - -

0 0 1 1 2 2

-
-
-
- - - - -382.0618 -208.4297 40.9824 -379.3061 -211.5672 44.41777 -379.5113 -211.0777 44.93536 - - - - - - - - - - -0.8272951 -0.5333057 0.1765441 -0.8272951 -0.5333057 0.1765441 -0.8272951 -0.5333057 0.1765441 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -385.6722 -291.3047 59.21669 -381.6959 -305.6758 49.78056 -384.6912 -297.2489 58.25334 -384.6912 -297.2489 58.25334 -381.6959 -305.6758 49.78056 -380.5241 -316.2206 43.69667 -381.6959 -305.6758 49.78056 -380.539 -311.4966 43.55463 -380.5241 -316.2206 43.69667 - - - - - - - - - - -0.9678836 -0.1243308 -0.2185019 -0.9678836 -0.1243308 -0.2185019 -0.9678836 -0.1243308 -0.2185019 -0.8535665 0.1859334 -0.4866754 -0.8535665 0.1859334 -0.4866754 -0.8535665 0.1859334 -0.4866754 -0.9845112 -0.00837201 -0.1751216 -0.9845112 -0.00837201 -0.1751216 -0.9845112 -0.00837201 -0.1751216 - - - - - - - - - - 0.8551631 0.4519408 0.8565488 0.4660512 0.8546042 0.4567669 0.8530273 0.4584961 0.8549805 0.4677734 0.8530273 0.4716797 0.8549805 0.4677734 0.855957 0.4746094 0.8530273 0.4716797 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -402.6344 -321.9136 45.22659 -402.7283 -321.965 44.42182 -402.6073 -322.2874 44.64958 - - - - - - - - - - -0.9545865 -0.2687593 0.128581 -0.9547477 -0.2681943 0.1285638 -0.954924 -0.2675751 0.1285449 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -424.8252 -322.2692 44.22273 -424.8659 -322.3131 43.41306 -424.8233 -322.6461 43.64707 - - - - - - - - - - -0.9959286 -0.07220233 0.05397353 -0.9952999 -0.08013634 0.05437165 -0.994544 -0.08876462 0.05480099 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -390.1281 -253.4349 64.81698 -390.6111 -252.2481 62.50409 -389.4902 -252.2481 62.39152 -389.4903 -243.6525 62.50914 -390.1281 -253.4349 64.81698 -389.4902 -252.2481 62.39152 -391.1611 -253.4349 64.81698 -390.1282 -245.0124 64.81698 -390.6111 -243.6524 62.59988 -390.6111 -252.2481 62.50409 -391.1611 -253.4349 64.81698 -390.1282 -245.0124 64.81698 -389.4903 -243.6525 62.50914 -391.1611 -245.0124 64.81698 -391.1611 -245.0124 64.81698 -390.6111 -243.6524 62.59988 - - - - - - - - - - -0.01041655 -0.8905297 -0.4548058 -0.03562199 -0.8921334 -0.4503655 -0.04507189 -0.8925837 -0.4486233 0.9647441 -0.0008164812 0.2631885 0.9667577 -0.002719238 0.2556796 0.9675196 -0.003454725 0.2527726 -1.824425e-005 -0.8896977 -0.4565501 0.9638566 4.148249e-006 0.2664217 -0.9711878 0.0005853614 -0.2383146 -0.9731653 0.002559908 -0.2300928 -0.9726407 0.002028928 -0.2323055 1.565815e-005 0.8615426 0.5076853 0.03197376 0.8508107 0.5244987 0.01102972 0.857982 0.5135613 -0.9705831 -4.326692e-006 -0.2407664 0.0429281 0.8468504 0.5300958 - - - - - - - - - - 0.2529297 0.5498047 0.2529297 0.5395508 0.2548828 0.5405273 0.2714844 0.5405273 0.2529297 0.5498047 0.2548828 0.5405273 0.2509766 0.5493164 0.2529297 0.5395508 0.2714844 0.5405274 0.269043 0.5498047 0.2529297 0.5498047 0.07714844 0.7602539 0.1206055 0.7592773 0.1269531 0.7832031 0.269043 0.5498047 0.2714844 0.5405273 0.2705078 0.5527344 0.07714844 0.7602539 0.1269531 0.7832031 0.08398437 0.7832031 0.2705078 0.5527344 0.2714844 0.5405273 0.2729492 0.5439453 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -426.189 -245.0124 64.81699 -427.8598 -243.6525 62.50914 -427.2219 -245.0124 64.81699 -427.8598 -243.6525 62.50914 -427.2219 -253.4349 64.81698 -427.2219 -245.0124 64.81699 -426.7389 -243.6525 62.59988 -427.8598 -252.2481 62.39152 -426.7389 -243.6525 62.59988 -426.189 -245.0124 64.81699 -426.1889 -253.4349 64.81698 -427.2219 -253.4349 64.81698 -427.8598 -252.2481 62.39152 -426.7389 -252.2481 62.5041 -426.7389 -252.2481 62.5041 -426.1889 -253.4349 64.81698 - - - - - - - - - - -0.01100275 0.8579883 0.5135514 -0.03195393 0.8508151 0.5244927 1.565828e-005 0.8615499 0.507673 -0.9647454 -0.000825024 0.2631835 -0.9667589 -0.002727673 0.2556751 -0.963858 -4.445158e-006 0.2664165 -0.04291216 0.8468536 0.530092 -0.9675206 -0.003463119 0.2527683 0.9711919 0.0005930702 -0.238298 0.9705883 4.460856e-006 -0.2407454 0.9726421 0.002034002 -0.2322999 0.0103834 -0.8905331 -0.4548 0.04504325 -0.8925882 -0.4486172 0.03559219 -0.8921376 -0.4503594 0.9731657 0.00256401 -0.2300913 -1.616991e-005 -0.8897007 -0.4565444 - - - - - - - - - - 0.2705078 0.5527344 0.2714844 0.5405273 0.269043 0.5498047 0.2714844 0.5405274 0.2529297 0.5498047 0.269043 0.5498047 0.2705078 0.5527344 0.2729492 0.5439453 0.2714844 0.5405273 0.2714844 0.5405273 0.2548828 0.5405273 0.2529297 0.5498047 0.07714844 0.7602539 0.08398438 0.7832031 0.1269531 0.7832031 0.2529297 0.5498047 0.2548828 0.5405273 0.2529297 0.5395508 0.07714844 0.7602539 0.1269531 0.7832031 0.1206055 0.7592773 0.2529297 0.5498047 0.2529297 0.5395508 0.2509766 0.5493164 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -407.1268 -198.0624 13.64727 -407.1268 -201.0229 13.64856 -407.3053 -202.7211 26.51067 -407.3053 -205.01 26.51189 - - - - - - - - - - -0.9999036 -1.873446e-005 -0.01388451 -0.9999036 -1.770689e-005 -0.01388438 -0.9999036 -8.652739e-006 -0.01388318 -0.9999036 -7.37265e-006 -0.01388301 - - - - - - - - - - - - - - -

0 1 2 1 3 2

-
-
-
- - - - -409.6348 -196.2547 14.44113 -409.6348 -199.3029 14.44113 -409.6347 -199.3029 16.36109 -407.7025 -196.2547 14.44113 -409.6348 -199.3029 14.44113 -409.6348 -196.2547 14.44113 -409.6348 -196.2547 16.36109 -407.7025 -196.2547 16.36108 -407.7025 -196.2547 14.44113 -409.6348 -196.2547 14.44113 -407.7025 -199.3029 14.44113 -409.6348 -199.3029 14.44113 -407.7025 -196.2547 14.44113 -409.6348 -196.2547 16.36109 -407.7025 -199.3029 16.36109 -409.6348 -196.2547 16.36109 -409.6347 -199.3029 16.36109 -407.7025 -196.2547 16.36108 -407.7025 -199.3029 14.44113 -407.7025 -196.2547 14.44113 -407.7025 -196.2547 16.36108 -409.6348 -196.2547 16.36109 -407.7025 -199.3029 16.36109 -407.7025 -199.3029 16.36109 - - - - - - - - - - -1 -7.909809e-006 6.997844e-006 -1 1.505479e-011 1.955569e-005 -1 -4.407643e-006 1.255798e-005 1.214465e-006 -7.698419e-007 -1 1.214465e-006 -7.698419e-007 -1 1.214465e-006 -7.698419e-007 -1 -1 -1.231747e-005 1.204385e-010 4.838136e-006 1 -4.869086e-006 -0 1 -0 4.877578e-006 1 -4.90878e-006 1.214465e-006 -7.698419e-007 -1 1.214465e-006 -7.698419e-007 -1 1.214465e-006 -7.698419e-007 -1 9.715706e-006 1 -9.777859e-006 -1.214488e-006 1.539669e-006 1 3.408674e-007 2.5256e-006 1 -1.214488e-006 1.539669e-006 1 1 -0 -0 1 -0 -0 1 -0 -0 1.214495e-006 3.079387e-006 1 1.214495e-006 3.079387e-006 1 -3.408543e-007 2.09346e-006 1 1 -0 -0 - - - - - - - - - - 0.215332 0.5688477 0.2001953 0.5688477 0.2001953 0.5878906 0.2250977 0.5688477 0.215332 0.5375977 0.215332 0.5688477 0.215332 0.5878906 0.215332 0.5688477 0.2001953 0.5878906 0.2250977 0.5878906 0.2250977 0.5688477 0.215332 0.5688477 0.2250977 0.5375977 0.215332 0.5375977 0.2250977 0.5688477 0.215332 0.5878906 0.2250977 0.5878906 0.215332 0.5688477 0.2250977 0.6191406 0.215332 0.5878906 0.215332 0.6191406 0.2250977 0.5878906 0.2407227 0.5688477 0.2250977 0.5688477 0.2250977 0.5878906 0.215332 0.5878906 0.2250977 0.6191406 0.2250977 0.5878906 0.2407227 0.5878906 0.2407227 0.5688477 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -409.7786 -197.1767 15.76909 -409.7786 -200.4374 15.76908 -409.7786 -200.2248 16.91986 -407.5587 -197.1767 15.76908 -409.7786 -200.4374 15.76908 -409.7786 -197.1767 15.76909 -409.7786 -197.1766 16.91986 -407.5587 -197.1766 16.91986 -407.5587 -197.1767 15.76908 -409.7786 -197.1767 15.76909 -407.5587 -200.4374 15.76908 -409.7786 -200.4374 15.76908 -407.5587 -197.1767 15.76908 -407.5587 -197.1766 16.91986 -409.7786 -197.1767 15.76909 -409.7786 -197.1766 16.91986 -407.5587 -197.1766 16.91986 -407.5587 -200.4374 15.76908 -407.5587 -197.1767 15.76908 -407.5587 -200.2248 16.91986 - - - - - - - - - - -1 0 0 -1 0 0 -1 0 0 -1.057082e-006 1.439346e-006 -1 -1.057082e-006 1.439346e-006 -1 -1.057082e-006 1.439346e-006 -1 -1 0 0 -1.724455e-011 1 -1.631335e-005 -1.724455e-011 1 -1.631335e-005 -1.724455e-011 1 -1.631335e-005 -1.057082e-006 1.439346e-006 -1 -1.057082e-006 1.439346e-006 -1 -1.057082e-006 1.439346e-006 -1 -0 1 -1.631338e-005 -0 1 -1.631338e-005 -0 1 -1.631338e-005 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 - - - - - - - - - - 0.3662109 0.04248047 0.3828125 0.04248047 0.3818359 0.05419922 0.3549805 0.04248047 0.3662109 0.009277344 0.3662109 0.04248047 0.3662109 0.05419922 0.3662109 0.04248047 0.3818359 0.05419922 0.3549805 0.05419922 0.3549805 0.04248047 0.3662109 0.04248047 0.3549805 0.009277344 0.3662109 0.009277344 0.3549805 0.04248047 0.3549805 0.05419922 0.3662109 0.04248047 0.3662109 0.05419922 0.3549805 0.05419922 0.3388672 0.04248047 0.3549805 0.04248047 0.3549805 0.05419922 0.3398437 0.05419922 0.3388672 0.04248047 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -382.8001 -204.9902 12.82703 -382.8001 -218.089 21.89855 -382.8 -215.9317 10.95533 - - - - - - - - - - 0.997156 0.0429088 0.06195785 0.9965537 0.0472269 0.06819295 1 2.751813e-006 3.973461e-006 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -434.5503 -207.7097 12.82704 -434.5502 -215.9317 10.95533 -434.5503 -218.089 21.89855 - - - - - - - - - - -1 -3.622916e-006 -4.145188e-006 -1 -3.622916e-006 -4.145188e-006 -1 -3.622916e-006 -4.145188e-006 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -419.5967 -274.1105 85.9415 -427.6272 -268.7366 86.42608 -431.6616 -272.604 84.96508 -434.066 -271.5049 84.10141 -419.5967 -269.8693 87.10237 -433.5455 -267.1617 85.36239 -419.5967 -266.0086 87.6975 -408.6746 -274.839 86.31449 -425.7361 -265.9968 87.18306 -408.6746 -270.6358 87.48171 -433.029 -263.4909 86.00236 -408.6747 -266.2129 88.04818 -397.7526 -274.1105 85.94149 -425.2968 -246.454 88.37342 -397.7525 -269.8693 87.10237 -432.7671 -248.1163 87.33612 -397.7526 -266.0086 87.6975 -385.6876 -272.604 84.96508 -426.7911 -221.5101 88.72302 -389.7221 -268.7366 86.42608 -419.5968 -246.4612 89.02827 -432.4067 -220.798 88.04949 -391.6132 -265.9968 87.18306 -383.2832 -271.5048 84.10141 -419.5969 -221.556 89.52922 -431.7062 -192.1173 87.25351 -384.3204 -263.4909 86.00236 -384.6264 -273.1955 84.36858 -383.8037 -267.1617 85.36239 -429.4719 -192.7289 88.30596 -408.6748 -221.556 89.8055 -384.5822 -248.1163 87.33611 -385.6876 -272.604 84.96508 -384.6909 -273.1059 84.22054 -384.6264 -273.1955 84.36858 -419.597 -192.7237 89.04843 -408.6747 -246.3999 89.28914 -392.0527 -246.454 88.37342 -408.6749 -192.7237 89.32839 -397.7528 -221.556 89.52922 -384.9429 -220.798 88.04949 -397.7526 -246.4611 89.02827 -390.5585 -221.5101 88.72302 -397.7529 -192.7237 89.04843 -385.6437 -192.1173 87.2535 -387.878 -192.7289 88.30595 - - - - - - - - - - -0.08110564 -0.2611552 0.9618835 -0.1637803 -0.1877042 0.9684747 -0.2713818 -0.07926153 0.9592026 -0.2830406 -0.1386243 0.949037 -0.0796943 -0.2090614 0.9746498 -0.2195221 -0.1880212 0.9573182 -0.0709418 -0.1553626 0.9853069 -0.0005347272 -0.2671349 0.963659 -0.1420879 -0.1486153 0.978634 0.001312606 -0.2016774 0.9794511 -0.1825299 -0.0956793 0.9785338 0.00361187 -0.1297946 0.9915343 0.07958338 -0.2636114 0.9613405 -0.1275354 -0.03656915 0.9911596 0.07612998 -0.2062101 0.9755417 -0.1240258 -0.05771551 0.9905991 0.06707486 -0.1585228 0.9850744 0.3043284 -0.1032764 0.9469521 -0.1199583 -0.004604873 0.9927682 0.1642505 -0.1865946 0.9686094 -0.06907918 -0.02062917 0.9973979 -0.1184734 0.00489519 0.9929452 0.137673 -0.1531319 0.9785687 0.3101078 -0.1477959 0.939143 -0.06646319 -0.004209739 0.99778 -0.389799 -0.01915165 0.9207008 0.1958646 -0.1051003 0.9749826 0.4041633 -0.1793516 0.8969309 0.2222928 -0.1894135 0.9564039 -0.2832845 -0.009074498 0.958993 8.092863e-005 -0.001969061 0.9999981 0.1357945 -0.04645083 0.9896475 -0.5692682 -0.7893313 -0.229978 -0.5692682 -0.7893313 -0.229978 -0.5692682 -0.7893313 -0.229978 -0.05028301 0.0166029 0.998597 0.0002021285 -0.02053303 0.9997892 0.1233589 -0.03226723 0.9918374 -3.903279e-005 0.01659464 0.9998623 0.0663824 -0.004357307 0.9977847 0.1192524 0.006073729 0.9928454 0.06888078 -0.02038283 0.9974167 0.1193703 -0.003848868 0.9928423 0.05032217 0.01665241 0.9985942 0.3898062 -0.01914941 0.9206978 0.28329 -0.009072949 0.9589914 - - - - - - - - - - 0.5439453 0.7353516 0.5708008 0.6416016 0.5541992 0.5952148 0.5708008 0.6416016 0.5600586 0.5727539 0.5541992 0.5952148 0.5439453 0.7353516 0.5654297 0.7353516 0.5708008 0.6416016 0.5771484 0.5830078 0.5600586 0.5727539 0.5654297 0.7353516 0.5864258 0.7353516 0.5708008 0.6416016 0.5410156 0.8457031 0.5654297 0.7353516 0.5439453 0.7353516 0.5864258 0.6655273 0.5771484 0.5830078 0.5708008 0.6416016 0.5620117 0.8457031 0.5864258 0.7353516 0.5654297 0.7353516 0.5864258 0.7353516 0.5864258 0.6655273 0.5708008 0.6416016 0.5410156 0.8457031 0.5620117 0.8457031 0.5654297 0.7353516 0.5864258 0.6655273 0.5957031 0.5913086 0.5771484 0.5830078 0.5620117 0.8457031 0.5864258 0.8457031 0.5439453 0.7353516 0.5620117 0.8457031 0.5410156 0.8457031 0.6821289 0.6655273 0.5957031 0.5913086 0.5864258 0.6655273 0.5654297 0.7353516 0.5864258 0.8457031 0.5620117 0.8457031 0.5654297 0.7353516 0.5439453 0.7353516 0.6821289 0.6655273 0.6738281 0.5961914 0.5957031 0.5913086 0.5654297 0.7353516 0.5864258 0.7353516 0.5864258 0.8457031 0.5541992 0.5952148 0.5654297 0.7353516 0.5439453 0.7353516 0.6821289 0.6655273 0.8095703 0.652832 0.6738281 0.5961914 0.5708008 0.6416016 0.5864258 0.7353516 0.5654297 0.7353516 0.5541992 0.5952148 0.5708008 0.6416016 0.5654297 0.7353516 0.6821289 0.7353516 0.8095703 0.652832 0.6821289 0.6655273 0.8095703 0.652832 0.8129883 0.5961914 0.6738281 0.5961914 0.5708008 0.6416016 0.5864258 0.6655273 0.5864258 0.7353516 0.5600586 0.5727539 0.5708008 0.6416016 0.5541992 0.5952148 0.6821289 0.7353516 0.8095703 0.7353516 0.8095703 0.652832 0.8095703 0.652832 0.9580078 0.6044922 0.8129883 0.5961914 0.5957031 0.5913086 0.5864258 0.6655273 0.5708008 0.6416016 0.5214844 0.8422852 0.512207 0.840332 0.5131836 0.8256836 0.5600586 0.5727539 0.5771484 0.5830078 0.5708008 0.6416016 0.8095703 0.7353516 0.9550781 0.6293945 0.8095703 0.652832 0.8100586 0.8457031 0.8095703 0.7353516 0.6821289 0.7353516 0.8095703 0.652832 0.9550781 0.6293945 0.9580078 0.6044922 0.5771484 0.5830078 0.5957031 0.5913086 0.5957031 0.5913086 0.6738281 0.5961914 0.5864258 0.6655273 0.5009766 0.840332 0.4995117 0.8208008 0.5053711 0.8256836 0.8095703 0.7353516 0.9555664 0.7353516 0.9550781 0.6293945 0.8100586 0.8457031 0.9555664 0.7353516 0.8095703 0.7353516 0.6821289 0.8457031 0.8100586 0.8457031 0.6821289 0.7353516 0.6738281 0.5961914 0.6821289 0.6655273 0.5864258 0.6655273 0.8100586 0.8457031 0.9560547 0.8457031 0.9555664 0.7353516 0.8095703 0.7353516 0.8100586 0.8457031 0.6821289 0.8457031 0.6738281 0.5961914 0.8129883 0.5961914 0.6821289 0.6655273 0.8095703 0.7353516 0.9560547 0.8457031 0.8100586 0.8457031 0.6821289 0.7353516 0.8095703 0.7353516 0.6821289 0.8457031 0.8129883 0.5961914 0.8095703 0.652832 0.6821289 0.6655273 0.8095703 0.7353516 0.9555664 0.7353516 0.9560547 0.8457031 0.8095703 0.652832 0.8095703 0.7353516 0.6821289 0.7353516 0.8095703 0.652832 0.6821289 0.7353516 0.6821289 0.6655273 0.8129883 0.5961914 0.9580078 0.6044922 0.8095703 0.652832 0.9550781 0.6293945 0.9555664 0.7353516 0.8095703 0.7353516 0.9550781 0.6293945 0.8095703 0.7353516 0.8095703 0.652832 0.9580078 0.6044922 0.9550781 0.6293945 0.8095703 0.652832 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -423.4144 -271.5037 86.58821 -423.3627 -271.3919 86.17419 -422.6604 -271.0146 86.36385 -423.4144 -271.5037 86.58821 -424.0899 -271.0146 86.18506 -423.3627 -271.3919 86.17419 -422.7122 -271.1264 86.77789 -424.1417 -271.1264 86.5991 -423.4682 -271.092 87.01869 -423.4144 -271.5037 86.58821 -422.7122 -271.1264 86.77789 -422.3946 -270.1039 86.64296 -422.7122 -271.1264 86.77789 -422.6604 -271.0146 86.36385 -423.4682 -271.092 87.01869 -424.1417 -271.1264 86.5991 -423.4144 -271.5037 86.58821 -424.468 -270.2157 86.80414 -424.0899 -271.0146 86.18506 -424.1417 -271.1264 86.5991 -422.8704 -270.2965 87.30821 -422.4465 -270.2157 87.05699 -423.4682 -271.092 87.01869 -424.468 -270.2157 86.80414 -424.1417 -271.1264 86.5991 -424.4163 -270.1039 86.39013 -422.8704 -270.2965 87.30821 -424.119 -270.2965 87.15206 -423.4682 -271.092 87.01869 -422.4465 -270.2157 87.05699 -422.721 -269.1931 86.84802 -422.4465 -270.2157 87.05699 -422.3946 -270.1039 86.64296 -424.468 -270.2157 86.80414 -423.4682 -271.092 87.01869 -424.119 -270.2965 87.15206 -424.2023 -269.3049 87.08326 -424.4163 -270.1039 86.39013 -424.468 -270.2157 86.80414 -423.5211 -269.501 87.44157 -422.4465 -270.2157 87.05699 -423.5211 -269.501 87.44157 -422.8704 -270.2965 87.30821 -422.7728 -269.3049 87.26204 -424.2023 -269.3049 87.08326 -424.468 -270.2157 86.80414 -424.119 -270.2965 87.15206 -424.1505 -269.1931 86.66923 -423.5211 -269.501 87.44157 -422.4465 -270.2157 87.05699 -422.7728 -269.3049 87.26204 -423.5211 -269.501 87.44157 -422.7728 -269.3049 87.26204 -422.721 -269.1931 86.84802 -423.4483 -268.8158 86.8589 -423.5001 -268.9276 87.27292 -424.1505 -269.1931 86.66923 -424.2023 -269.3049 87.08326 -423.5001 -268.9276 87.27292 -422.7728 -269.3049 87.26204 -423.5001 -268.9276 87.27292 -423.5211 -269.501 87.44157 -423.5001 -268.9276 87.27292 -423.4483 -268.8158 86.8589 - - - - - - - - - - 0.5011983 -0.8491539 -0.1665469 0.5012006 -0.849154 -0.1665392 0.5011954 -0.8491538 -0.1665564 -0.4447714 -0.8491685 -0.2847654 -0.4447659 -0.8491683 -0.2847744 -0.4447758 -0.8491686 -0.284758 0.501193 -0.8491537 -0.1665641 -0.4447614 -0.8491682 -0.2847817 0.2170108 -0.6031154 0.7675664 0.1883014 -0.697914 0.6909838 0.2893241 -0.540542 0.7900038 0.9557208 -0.2914193 0.04089674 0.9557209 -0.2914242 0.04086006 0.9557209 -0.2914269 0.04083984 -0.3527023 -0.6979106 0.6233153 -0.3527023 -0.6979106 0.6233153 -0.3527023 -0.6979106 0.6233153 -0.9363508 -0.2914619 -0.1956965 -0.9363505 -0.2914699 -0.195686 -0.9363503 -0.2914743 -0.1956803 0.4219421 -0.4297074 0.798321 0.9557207 -0.2914166 0.04091696 -0.4816729 -0.3531682 0.802037 -0.4816729 -0.3531682 0.802037 -0.4816729 -0.3531682 0.802037 -0.936351 -0.2914575 -0.1957023 -0.1198672 -0.2587548 0.9584768 -0.1198672 -0.2587548 0.9584768 -0.1198668 -0.2587684 0.9584732 0.5236689 -0.3856056 0.7596573 0.936349 0.2913977 0.1958007 0.9363393 0.291403 0.1958392 0.936334 0.2914059 0.1958604 -0.6307555 -0.5987714 0.493579 -0.6307555 -0.5987714 0.493579 -0.6307555 -0.5987714 0.493579 -0.9557252 0.2914137 -0.04083237 -0.9557359 0.2913842 -0.04079504 -0.9557417 0.2913679 -0.04077446 -0.1198677 -0.2587412 0.9584804 0.4620494 0.2345712 0.8552699 0.4620494 0.2345712 0.8552699 0.4620494 0.2345712 0.8552699 0.9363543 0.2913948 0.1957795 -0.4960947 0.09426982 0.8631357 -0.7071443 -0.01033186 0.7069938 -0.6199528 0.002377349 0.7846355 -0.9557194 0.29143 -0.04085294 -0.4245783 0.1551079 0.892006 0.2616262 -0.121819 0.9574507 0.2616262 -0.121819 0.9574507 0.2616262 -0.121819 0.9574507 0.4447211 0.8491446 0.284915 0.4447292 0.8491449 0.2849016 0.444711 0.8491444 0.2849316 -0.5012006 0.8491511 0.1665547 -0.5011924 0.8491582 0.1665427 -0.5011858 0.8491641 0.1665331 -0.3849766 0.2734188 0.881496 0.1560295 0.2734444 0.9491485 0.1560295 0.2734444 0.9491485 0.1560295 0.2734444 0.9491485 0.4447028 0.8491441 0.2849449 -0.5012072 0.8491453 0.1665644 - - - - - - - - - - 0.9882813 0.3066406 0.9799805 0.3066406 0.9799805 0.2983398 0.9882812 0.230957 0.9799805 0.2397461 0.9799805 0.230957 0.9882813 0.2983398 0.9882813 0.3066406 0.9799805 0.2983398 0.9882812 0.2397461 0.9799805 0.2397461 0.9882812 0.230957 0.9638672 0.3017578 0.9638672 0.2905273 0.9711914 0.2978516 0.9799805 0.2880859 0.9882812 0.2983398 0.9799805 0.2983398 0.9638672 0.3017578 0.9560547 0.2978516 0.9638672 0.2905273 0.9882813 0.25 0.9799805 0.2397461 0.9882813 0.2397461 0.9711914 0.2978516 0.9697266 0.3173828 0.9638672 0.3017578 0.9799805 0.2880859 0.9882812 0.2875977 0.9882812 0.2983398 0.9638672 0.3017578 0.9526367 0.3168945 0.9560547 0.2978516 0.9799805 0.25 0.9799805 0.2397461 0.9882813 0.25 0.9697266 0.3173828 0.9575195 0.3168945 0.9638672 0.3017578 0.9741211 0.3173828 0.9697266 0.3173828 0.9711914 0.2978516 0.9799805 0.2773437 0.9882812 0.2875977 0.9799805 0.2880859 0.9526367 0.3168945 0.9638672 0.3017578 0.9575195 0.3168945 0.9882812 0.2602539 0.9799805 0.25 0.9882812 0.25 0.9697266 0.3173828 0.9633789 0.3325195 0.9575195 0.3168945 0.9741211 0.3173828 0.9633789 0.3325195 0.9697266 0.3173828 0.9799805 0.2773437 0.9882812 0.2773437 0.9882812 0.2875977 0.9555664 0.3359375 0.9526367 0.3168945 0.9575195 0.3168945 0.9799805 0.2602539 0.9799805 0.25 0.9882813 0.2602539 0.9633789 0.3325195 0.9555664 0.3359375 0.9575195 0.3168945 0.9741211 0.3173828 0.9707031 0.3359375 0.9633789 0.3325195 0.9882812 0.2773438 0.9799805 0.2773438 0.9799805 0.269043 0.9882812 0.269043 0.9799805 0.2602539 0.9882812 0.2602539 0.9633789 0.3432617 0.9555664 0.3359375 0.9633789 0.3325195 0.9707031 0.3359375 0.9633789 0.3432617 0.9633789 0.3325195 0.9882813 0.269043 0.9882813 0.2773437 0.9799805 0.269043 0.9799805 0.269043 0.9799805 0.2602539 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 0 7 2 8 7 9 4 10 3 11 8 12 9 13 10 14 11 15 12 16 13 17 14 18 15 19 16 20 17 21 18 22 19 23 10 24 20 25 8 26 11 27 21 28 12 29 22 30 23 31 24 32 25 33 18 34 17 35 26 36 27 37 28 38 29 39 20 40 10 41 30 42 31 43 32 44 33 45 34 46 35 47 36 48 37 49 38 50 26 51 39 52 27 53 40 54 41 55 42 56 30 57 43 58 31 59 44 60 45 61 46 62 47 63 37 64 36 65 48 66 44 67 46 68 49 69 50 70 51 71 52 72 53 73 54 74 55 75 56 76 57 77 58 78 44 79 48 80 59 81 60 82 61 83 62 84 52 85 54 86 55 84 63 87 56 88

-
-
-
- - - - -384.6909 -273.1059 84.22054 -385.672 -267.1617 85.36239 - - - - - - - - - - - - - -

1 0

-
-
-
- - - - -414.7619 -123.4658 39.23934 -402.5888 -122.3619 33.42497 -414.7619 -122.3619 33.42497 -402.5888 -123.4658 39.23934 -402.5888 -122.3619 33.42497 -414.7619 -123.4658 39.23934 - - - - - - - - - - 1.479157e-006 0.9824509 0.1865214 1.479157e-006 0.9824509 0.1865214 1.479157e-006 0.9824509 0.1865214 1.479157e-006 0.9824509 0.1865214 1.479157e-006 0.9824509 0.1865214 1.479157e-006 0.9824509 0.1865214 - - - - - - - - - - 1 2 0 1 1 1 0 2 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 1 5 0

-
-
-
- - - - -397.7847 -135.826 76.71349 -388.8077 -136.5883 76.37122 -387.4587 -136.3094 75.6185 -387.4587 -136.3094 75.6185 -388.8077 -136.5883 76.37122 -397.7847 -135.826 76.71349 -396.1899 -131.1631 68.50078 -396.1899 -131.1631 68.50078 -401.5129 -135.6201 76.77013 -401.5129 -135.6201 76.77013 -384.5471 -132.2886 68.50028 -384.5471 -132.2886 68.50028 -408.6752 -130.5922 68.50078 -408.6752 -130.5922 68.50078 -394.5481 -127.4689 59.74513 -394.5481 -127.4689 59.74513 -408.6753 -126.8981 59.74515 -408.6753 -126.8981 59.74515 -408.6752 -135.2244 76.87894 -408.6752 -135.2244 76.87894 -383.0959 -129.5675 61.75403 -383.0959 -129.5675 61.75403 -422.8024 -127.469 59.74513 -422.8024 -127.469 59.74513 -421.1606 -131.1631 68.50078 -421.1606 -131.1631 68.50078 -384.2951 -128.6909 60.10025 -384.2951 -128.6909 60.10025 -415.8375 -135.62 76.77012 -415.8375 -135.62 76.77012 -383.2707 -129.0844 60.60745 -383.2707 -129.0844 60.60745 -432.8034 -132.2886 68.50024 -432.8034 -132.2886 68.50024 -415.8375 -135.62 76.77012 -419.5658 -135.826 76.71349 -419.5658 -135.826 76.71349 -415.8375 -135.62 76.77012 -434.2546 -129.5675 61.75403 -434.2546 -129.5675 61.75403 -429.8917 -136.3094 75.61849 -429.8917 -136.3094 75.61849 -433.0555 -128.6909 60.10024 -433.0555 -128.6909 60.10024 -428.5427 -136.5883 76.37124 -428.5427 -136.5883 76.37124 -434.0798 -129.0844 60.60745 -434.0798 -129.0844 60.60745 - - - - - - - - - - 0.07260179 0.8614556 0.5026165 0.09231865 0.8683565 0.4872723 0.08826415 0.8576222 0.5066494 -0.08826415 -0.8576222 -0.5066494 -0.09231865 -0.8683565 -0.4872723 -0.07260179 -0.8614556 -0.5026165 0.06483268 0.8905087 0.4503232 -0.06483268 -0.8905087 -0.4503232 0.04967892 0.8685141 0.4931685 -0.04967892 -0.8685141 -0.4931685 0.08957596 0.8899228 0.4472288 -0.08957596 -0.8899228 -0.4472288 0.002339846 0.8987469 0.4384615 -0.002339846 -0.8987469 -0.4384615 0.06696355 0.9154377 0.3968496 -0.06696355 -0.9154377 -0.3968496 0.001408084 0.9208312 0.3899589 -0.001408084 -0.9208312 -0.3899589 0.004653887 0.8730659 0.48758 -0.004653887 -0.8730659 -0.48758 0.1094416 0.9134783 0.3918928 -0.1094416 -0.9134783 -0.3918928 -0.06827537 0.9157617 0.3958775 0.06827537 -0.9157617 -0.3958775 -0.06671376 0.8902948 0.4504714 0.06671376 -0.8902948 -0.4504714 0.1074659 0.9085718 0.4036685 -0.1074659 -0.9085718 -0.4036685 -0.05531736 0.8636316 0.5010792 0.05531736 -0.8636316 -0.5010792 0.1740464 0.9166927 0.3596975 -0.1740464 -0.9166927 -0.3596975 -0.08957836 0.8899227 0.4472284 0.08957836 -0.8899227 -0.4472284 -0.05531606 0.8636321 0.5010786 -0.07260247 0.8614561 0.5026154 0.07260247 -0.8614561 -0.5026154 0.05531606 -0.8636321 -0.5010786 -0.1094441 0.9134784 0.3918919 0.1094441 -0.9134784 -0.3918919 -0.08826811 0.8576233 0.5066468 0.08826811 -0.8576233 -0.5066468 -0.1074698 0.9085733 0.4036642 0.1074698 -0.9085733 -0.4036642 -0.09232131 0.8683604 0.4872649 0.09232131 -0.8683604 -0.4872649 -0.1740797 0.916696 0.3596731 0.1740797 -0.916696 -0.3596731 - - - - - - - - - - 0.1992187 0.2578125 0.08105469 0.2578125 0.06347656 0.2470703 370.877 152.0408 372.1889 152.9028 381.1962 153.2948 0.1992188 0.2578125 0.06347656 0.2470703 0.1796875 0.1342773 379.5988 146.7371 370.3604 154.9851 380.6777 156.254 0.2480469 0.2578125 0.1992188 0.2578125 0.1796875 0.1342773 386.9956 137.5592 388.2891 147.0493 392.0229 147.1147 0.06347656 0.2470703 0.02685547 0.1396484 0.1796875 0.1342773 381.7269 145.6552 370.0298 145.6546 372.541 153.9617 0.2480469 0.2578125 0.1796875 0.1342773 0.3432617 0.1318359 402.2832 133.2004 389.7848 133.2004 394.8987 142.7098 0.1796875 0.1342773 0.02685547 0.1396484 0.1586914 0.009765625 380.4494 120.8641 370.031 130.4223 381.728 130.4228 0.1796875 0.1342773 0.3442383 0.0078125 0.3432617 0.1318359 402.2832 121.0411 402.452 111.5396 389.7848 121.0411 0.3422852 0.2573242 0.2480469 0.2578125 0.3432617 0.1318359 399.5562 135.479 392.089 144.9237 399.2619 145.048 0.1586914 0.009765625 0.3442383 0.0078125 403.2182 111.414 389.0795 111.414 390.5708 120.9418 0.02685547 0.1396484 0.0078125 0.04492187 0.1586914 0.009765625 378.5139 121.0929 366.9022 123.2751 368.0517 130.6032 0.3432617 0.1318359 0.3442383 0.0078125 0.5302734 0.01367187 427.6047 97.89746 413.4661 97.89748 413.6152 107.3993 0.3422852 0.2573242 0.3432617 0.1318359 0.5068359 0.137207 426.7125 114.0092 414.2141 114.0092 414.4256 123.5803 0.0078125 0.04492187 0.0234375 0.02050781 0.1586914 0.009765625 379.3428 123.4512 369.0185 123.841 367.7355 125.6563 0.3432617 0.1318359 0.5302734 0.01367188 0.5068359 0.137207 426.7125 107.0914 428.1838 97.56047 414.2141 107.0914 0.3422852 0.2573242 0.5068359 0.137207 0.4360352 0.2592773 423.6561 120.9353 428.6834 111.3798 416.4831 121.0611 0.0078125 0.04492187 0.01025391 0.02880859 0.0234375 0.02050781 353.5455 127.3392 352.4657 127.8828 352.2039 129.1116 0.5068359 0.137207 0.5302734 0.01367188 0.659668 0.1459961 443.5261 98.86205 433.1076 89.30395 431.8291 98.86263 0.4360352 0.2592773 0.5068359 0.137207 0.4848633 0.2607422 427.3897 120.8702 428.6833 111.3801 423.6559 120.9356 0.659668 0.1459961 0.5302734 0.01367187 0.6801758 0.05126953 445.6882 88.87938 434.0765 86.69721 444.5387 96.20745 0.6206055 0.2524414 0.5068359 0.137207 0.659668 0.1459961 443.5268 105.1009 431.8298 105.1015 441.0157 113.408 0.4848633 0.2607422 0.5068359 0.137207 0.6206055 0.2524414 442.1544 110.1268 432.916 101.8788 431.8371 111.3957 0.6801758 0.05126953 0.5302734 0.01367187 0.6650391 0.02636719 443.996 89.16973 433.6716 88.77994 445.2789 90.98506 0.4848633 0.2607422 0.6206055 0.2524414 0.6030273 0.2626953 440.5814 110.7972 441.8933 109.9352 431.5741 111.1891 0.6801758 0.05126953 0.6650391 0.02636719 0.6782227 0.03515625 450.5411 73.03675 449.4613 72.49316 450.8029 74.26557 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -427.916 -441.9797 25.21615 -431.6069 -440.0262 25.16084 -429.5671 -441.5326 22.99909 -429.5671 -441.5326 22.99909 -431.6069 -440.0262 25.16084 -427.916 -441.9797 25.21615 -429.5671 -441.5326 22.99909 -431.6069 -440.0262 25.16084 -431.6355 -440.8556 24.79381 -431.6355 -440.8556 24.79381 -431.6069 -440.0262 25.16084 -429.5671 -441.5326 22.99909 -429.6068 -442.1903 21.17665 -429.6068 -442.1903 21.17665 -429.8485 -442.2824 22.82982 -429.8485 -442.2824 22.82982 -431.6069 -440.0262 25.16084 -435.8688 -438.8063 24.87908 -431.6355 -440.8556 24.79381 -431.6355 -440.8556 24.79381 -435.8688 -438.8063 24.87908 -431.6069 -440.0262 25.16084 -429.5671 -441.5326 22.99909 -429.8485 -442.2824 22.82982 -429.6068 -442.1903 21.17665 -429.6068 -442.1903 21.17665 -429.8485 -442.2824 22.82982 -429.5671 -441.5326 22.99909 -428.4558 -442.8353 20.64122 -428.4558 -442.8353 20.64122 -435.8688 -438.8063 24.87908 -429.8485 -442.2824 22.82982 -431.6355 -440.8556 24.79381 -431.6355 -440.8556 24.79381 -429.8485 -442.2824 22.82982 -435.8688 -438.8063 24.87908 -436.0878 -437.8603 25.16084 -436.0878 -437.8603 25.16084 -429.8733 -442.7723 21.10695 -429.8733 -442.7723 21.10695 -428.4558 -442.8353 20.64122 -429.6068 -442.1903 21.17665 -429.8733 -442.7723 21.10695 -429.8733 -442.7723 21.10695 -429.6068 -442.1903 21.17665 -428.4558 -442.8353 20.64122 -427.5921 -443.2988 20.05331 -427.5921 -443.2988 20.05331 -435.8688 -438.8063 24.87908 -437.1559 -438.8102 22.75238 -437.1559 -438.8102 22.75238 -435.8688 -438.8063 24.87908 -436.0878 -437.8603 25.16084 -437.1559 -438.8102 22.75238 -435.8688 -438.8063 24.87908 -435.8688 -438.8063 24.87908 -437.1559 -438.8102 22.75238 -436.0878 -437.8603 25.16084 -429.8733 -442.7723 21.10695 -429.8733 -442.7723 21.10695 -428.678 -443.632 20.48581 -428.678 -443.632 20.48581 -427.8953 -443.354 19.28795 -427.8953 -443.354 19.28795 -437.5103 -437.2877 22.8713 -437.5103 -437.2877 22.8713 -431.1114 -442.3378 20.56598 -431.1114 -442.3378 20.56598 -428.4558 -442.8353 20.64122 -428.678 -443.632 20.48581 -427.8953 -443.354 19.28795 -427.8953 -443.354 19.28795 -428.678 -443.632 20.48581 -428.4558 -442.8353 20.64122 -429.858 -443.1353 20.97346 -429.858 -443.1353 20.97346 -427.4879 -444.0549 16.74968 -427.4879 -444.0549 16.74968 -436.0878 -437.8603 25.16084 -436.5209 -437.5519 25.15752 -437.5103 -437.2877 22.8713 -437.5103 -437.2877 22.8713 -436.5209 -437.5519 25.15752 -436.0878 -437.8603 25.16084 -437.5103 -437.2877 22.8713 -437.0271 -439.5622 20.38202 -437.1559 -438.8102 22.75238 -437.1559 -438.8102 22.75238 -437.0271 -439.5622 20.38202 -437.5103 -437.2877 22.8713 -429.858 -443.1353 20.97346 -429.8733 -442.7723 21.10695 -431.1114 -442.3378 20.56598 -431.1114 -442.3378 20.56598 -429.8733 -442.7723 21.10695 -429.858 -443.1353 20.97346 -437.0271 -439.5622 20.38202 -437.0271 -439.5622 20.38202 -428.1725 -444.0194 19.28796 -428.1725 -444.0194 19.28796 -429.858 -443.1353 20.97346 -429.8574 -443.4332 19.28669 -428.678 -443.632 20.48581 -428.678 -443.632 20.48581 -429.8574 -443.4332 19.28669 -429.858 -443.1353 20.97346 -428.4558 -443.4426 17.93468 -428.4558 -443.4426 17.93468 -438.0738 -436.1255 25.14563 -438.0738 -436.1255 25.14563 -437.3562 -438.852 20.23318 -437.3562 -438.852 20.23318 -431.0379 -442.8128 20.47376 -431.0379 -442.8128 20.47376 -431.6023 -442.4293 19.44607 -431.6023 -442.4293 19.44607 -428.1725 -444.0194 19.28796 -428.1725 -444.0194 19.28796 -427.8953 -443.354 19.28795 -428.1725 -444.0194 19.28796 -428.6543 -444.0632 18.0901 -428.6543 -444.0632 18.0901 -428.1725 -444.0194 19.28796 -427.8953 -443.354 19.28795 -431.0379 -442.8128 20.47376 -431.0379 -442.8128 20.47376 -428.4558 -443.4426 17.93468 -428.4558 -443.4426 17.93468 -429.8091 -443.0683 17.37414 -429.8091 -443.0683 17.37414 -439.1514 -434.0041 25.08064 -438.0738 -436.1255 25.14563 -438.0738 -436.1255 25.14563 -439.1514 -434.0041 25.08064 -437.3562 -438.852 20.23318 -435.567 -440.7889 18.56814 -437.0271 -439.5622 20.38202 -437.0271 -439.5622 20.38202 -435.567 -440.7889 18.56814 -437.3562 -438.852 20.23318 -431.1114 -442.3378 20.56598 -431.6023 -442.4293 19.44607 -431.0379 -442.8128 20.47376 -431.0379 -442.8128 20.47376 -431.6023 -442.4293 19.44607 -431.1114 -442.3378 20.56598 -435.567 -440.7889 18.56814 -435.567 -440.7889 18.56814 -428.6543 -444.0632 18.0901 -428.6543 -444.0632 18.0901 -431.5435 -442.8463 19.28796 -431.5435 -442.8463 19.28796 -428.4558 -443.4426 17.93468 -428.6543 -444.0632 18.0901 -429.858 -443.7304 17.60244 -429.858 -443.7304 17.60244 -428.6543 -444.0632 18.0901 -428.4558 -443.4426 17.93468 -429.8091 -443.0683 17.37414 -429.8091 -443.0683 17.37414 -431.2463 -442.6415 16.91396 -431.2463 -442.6415 16.91396 -440.01 -434.7967 19.9785 -440.01 -434.7967 19.9785 -435.7669 -440.0332 18.35295 -435.7669 -440.0332 18.35295 -431.5435 -442.8463 19.28796 -431.5435 -442.8463 19.28796 -431.3766 -442.7376 18.75808 -431.3766 -442.7376 18.75808 -429.858 -443.7304 17.60244 -429.858 -443.7304 17.60244 -431.0616 -443.2233 18.10214 -431.0616 -443.2233 18.10214 -429.8091 -443.0683 17.37414 -429.858 -443.7304 17.60244 -431.0616 -443.2233 18.10214 -431.0616 -443.2233 18.10214 -429.858 -443.7304 17.60244 -429.8091 -443.0683 17.37414 -431.1623 -442.4735 17.93468 -431.1623 -442.4735 17.93468 -437.7244 -438.4122 19.6632 -437.7244 -438.4122 19.6632 -439.4875 -433.4376 24.71469 -439.4875 -433.4376 24.71469 -435.7669 -440.0332 18.35295 -435.7669 -440.0332 18.35295 -433.3522 -442.0169 17.98841 -435.567 -440.7889 18.56814 -435.7669 -440.0332 18.35295 -435.7669 -440.0332 18.35295 -435.567 -440.7889 18.56814 -433.3522 -442.0169 17.98841 -431.6023 -442.4293 19.44607 -431.0616 -443.2233 18.10214 -431.5435 -442.8463 19.28796 -431.5435 -442.8463 19.28796 -431.0616 -443.2233 18.10214 -431.6023 -442.4293 19.44607 -431.6023 -442.4293 19.44607 -431.3766 -442.7376 18.75808 -431.0616 -443.2233 18.10214 -431.0616 -443.2233 18.10214 -431.3766 -442.7376 18.75808 -431.6023 -442.4293 19.44607 -433.3522 -442.0169 17.98841 -433.3522 -442.0169 17.98841 -431.1623 -442.4735 17.93468 -431.1623 -442.4735 17.93468 -431.2567 -442.1821 18.50461 -431.2463 -442.6415 16.91396 -431.1623 -442.4735 17.93468 -431.1623 -442.4735 17.93468 -431.2463 -442.6415 16.91396 -431.2567 -442.1821 18.50461 -439.7376 -433.1483 23.87429 -439.7376 -433.1483 23.87429 -437.7244 -438.4122 19.6632 -436.2424 -439.9703 18.03268 -435.7669 -440.0332 18.35295 -435.7669 -440.0332 18.35295 -436.2424 -439.9703 18.03268 -437.7244 -438.4122 19.6632 -433.3503 -441.4455 17.70313 -433.3503 -441.4455 17.70313 -431.2567 -442.1821 18.50461 -431.0616 -443.2233 18.10214 -431.3766 -442.7376 18.75808 -431.3766 -442.7376 18.75808 -431.0616 -443.2233 18.10214 -431.2567 -442.1821 18.50461 -431.3766 -442.7376 18.75808 -433.3522 -442.0169 17.98841 -433.3503 -441.4455 17.70313 -433.3503 -441.4455 17.70313 -433.3522 -442.0169 17.98841 -431.3766 -442.7376 18.75808 -431.2567 -442.1821 18.50461 -431.1623 -442.4735 17.93468 -431.0616 -443.2233 18.10214 -431.0616 -443.2233 18.10214 -431.1623 -442.4735 17.93468 -431.2567 -442.1821 18.50461 -431.2567 -442.1821 18.50461 -433.4763 -441.6426 17.17945 -431.2463 -442.6415 16.91396 -431.2463 -442.6415 16.91396 -433.4763 -441.6426 17.17945 -431.2567 -442.1821 18.50461 -433.3503 -441.4455 17.70313 -433.3503 -441.4455 17.70313 -431.2567 -442.1821 18.50461 -431.2567 -442.1821 18.50461 - - - - - - - - - - -0.4645363 -0.8616675 0.2042917 -0.4630113 -0.8700225 0.1693557 -0.5425361 -0.8044797 0.2417995 0.5425361 0.8044797 -0.2417995 0.4630113 0.8700225 -0.1693557 0.4645363 0.8616675 -0.2042917 0.5368118 -0.3700074 0.7582398 0.5435643 -0.3552829 0.7604682 0.5426577 -0.357284 0.7601781 -0.5426577 0.357284 -0.7601781 -0.5435643 0.3552829 -0.7604682 -0.5368118 0.3700074 -0.7582398 -0.4446412 -0.8653494 0.231224 0.4446412 0.8653494 -0.231224 0.5358086 -0.3721602 0.7578957 -0.5358086 0.3721602 -0.7578957 -0.1705185 -0.3863353 0.9064593 -0.1537183 -0.3211774 0.9344601 -0.1723786 -0.3936424 0.902957 0.1723786 0.3936424 -0.902957 0.1537183 0.3211774 -0.9344601 0.1705185 0.3863353 -0.9064593 0.9213992 -0.3715098 0.1140353 0.9175814 -0.3811681 0.1129393 0.9040472 -0.4132552 0.1091734 -0.9040472 0.4132552 -0.1091734 -0.9175814 0.3811681 -0.1129393 -0.9213992 0.3715098 -0.1140353 -0.363979 -0.9070664 0.2115413 0.363979 0.9070664 -0.2115413 -0.4172753 -0.8725154 0.2541618 -0.4172767 -0.8725186 0.2541486 -0.4172742 -0.8725151 0.2541647 0.4172742 0.8725151 -0.2541647 0.4172767 0.8725186 -0.2541486 0.4172753 0.8725154 -0.2541618 -0.1519205 -0.3142888 0.9370927 0.1519205 0.3142888 -0.9370927 0.8989204 -0.4246452 0.1077895 -0.8989204 0.4246452 -0.1077895 0.291337 -0.2569102 0.921477 0.2928037 -0.2448037 0.9243036 0.2760142 -0.274267 0.9211915 -0.2760142 0.274267 -0.9211915 -0.2928037 0.2448037 -0.9243036 -0.291337 0.2569102 -0.921477 -0.3476921 -0.9146661 0.2061458 0.3476921 0.9146661 -0.2061458 -0.4172755 -0.8725154 0.2541613 -0.4172763 -0.8725173 0.2541535 0.4172763 0.8725173 -0.2541535 0.4172755 0.8725154 -0.2541613 -0.8230776 -0.2988989 0.4829106 -0.8417704 -0.2570643 0.4747006 -0.8066171 -0.3323337 0.4887976 0.8066171 0.3323337 -0.4887976 0.8417704 0.2570643 -0.4747006 0.8230776 0.2988989 -0.4829106 -0.4172759 -0.8725193 0.2541475 0.4172759 0.8725193 -0.2541475 0.2833303 -0.2707621 0.9200065 -0.2833303 0.2707621 -0.9200065 -0.3399382 -0.9187338 0.2009234 0.3399382 0.9187338 -0.2009234 -0.850885 -0.2347998 0.4699615 0.850885 0.2347998 -0.4699615 -0.4172733 -0.8725153 0.2541654 0.4172733 0.8725153 -0.2541654 0.8252528 -0.3208151 0.4647963 0.8241604 -0.3265174 0.4627591 0.8224375 -0.3351747 0.4596242 -0.8224375 0.3351747 -0.4596242 -0.8241604 0.3265174 -0.4627591 -0.8252528 0.3208151 -0.4647963 0.2405998 -0.3260049 0.9142388 -0.2405998 0.3260049 -0.9142388 -0.3372203 -0.9199578 0.1999 0.3372203 0.9199578 -0.1999 -0.5737525 -0.8041522 0.1553943 -0.6087361 -0.7740542 0.1740128 -0.6483784 -0.7357638 0.1955941 0.6483784 0.7357638 -0.1955941 0.6087361 0.7740542 -0.1740128 0.5737525 0.8041522 -0.1553943 -0.8402558 -0.4999316 0.2098538 -0.9319932 -0.338855 0.1287092 -0.9734321 -0.2281434 0.01950812 0.9734321 0.2281434 -0.01950812 0.9319932 0.338855 -0.1287092 0.8402558 0.4999316 -0.2098538 -0.4638184 -0.3037502 0.8322309 -0.4716823 -0.3218919 0.820915 -0.441312 -0.2538271 0.8607064 0.441312 0.2538271 -0.8607064 0.4716823 0.3218919 -0.820915 0.4638184 0.3037502 -0.8322309 -0.4172769 -0.8725162 0.2541562 0.4172769 0.8725162 -0.2541562 0.8210226 -0.3420068 0.4571141 -0.8210226 0.3420068 -0.4571141 -0.3242166 -0.9315807 0.1644413 -0.3242035 -0.9315834 0.164452 -0.3242151 -0.9315828 0.1644325 0.3242151 0.9315828 -0.1644325 0.3242035 0.9315834 -0.164452 0.3242166 0.9315807 -0.1644413 -0.3372299 -0.9199558 0.1998935 0.3372299 0.9199558 -0.1998935 -0.6631289 -0.7202339 0.2037724 0.6631289 0.7202339 -0.2037724 -0.8278248 -0.5524478 0.09750668 0.8278248 0.5524478 -0.09750668 -0.4328993 -0.2358322 0.8700468 0.4328993 0.2358322 -0.8700468 -0.4172747 -0.8725147 0.254165 0.4172747 0.8725147 -0.254165 -0.3242062 -0.9315826 0.164451 0.3242062 0.9315826 -0.164451 0.8693059 -0.3621478 -0.336387 0.8693086 -0.3621296 -0.3363995 0.8693025 -0.3621705 -0.3363714 -0.8693025 0.3621705 0.3363714 -0.8693086 0.3621296 0.3363995 -0.8693059 0.3621478 0.336387 -0.324195 -0.9315852 0.1644586 0.324195 0.9315852 -0.1644586 0.8693001 -0.3621866 -0.3363603 -0.8693001 0.3621866 0.3363603 -0.3364184 -0.9209944 0.1964485 0.3364184 0.9209944 -0.1964485 -0.8681593 -0.4624849 0.1800195 -0.891646 -0.4526141 0.01038893 0.891646 0.4526141 -0.01038893 0.8681593 0.4624849 -0.1800195 -0.8190137 -0.4297586 -0.3801634 -0.8150373 -0.3685761 -0.4470637 -0.8187167 -0.4532422 -0.3525258 0.8187167 0.4532422 0.3525258 0.8150373 0.3685761 0.4470637 0.8190137 0.4297586 0.3801634 -0.887586 -0.2161871 0.4067607 -0.8841397 -0.2589187 0.3889191 -0.8868657 -0.2274624 0.4021568 0.8868657 0.2274624 -0.4021568 0.8841397 0.2589187 -0.3889191 0.887586 0.2161871 -0.4067607 -0.4172772 -0.8725147 0.2541608 0.4172772 0.8725147 -0.2541608 -0.3242117 -0.9315778 0.1644676 0.3242117 0.9315778 -0.1644676 -0.324181 -0.93159 0.1644588 0.324181 0.93159 -0.1644588 0.2802139 -0.3208149 -0.9047419 0.279717 -0.3164383 -0.9064354 0.2809718 -0.327585 -0.902077 -0.2809718 0.327585 0.902077 -0.279717 0.3164383 0.9064354 -0.2802139 0.3208149 0.9047419 0.2813887 -0.331359 -0.9005674 -0.2813887 0.331359 0.9005674 -0.3335374 -0.9245795 0.1841345 0.3335374 0.9245795 -0.1841345 -0.838814 -0.5017094 0.2113735 0.838814 0.5017094 -0.2113735 -0.8123156 -0.34814 -0.4679123 0.8123156 0.34814 0.4679123 -0.8829103 -0.2701199 0.3840632 0.8829103 0.2701199 -0.3840632 -0.4172759 -0.8725238 0.2541319 0.4172759 0.8725238 -0.2541319 -0.3242095 -0.9315798 0.1644603 0.3242095 0.9315798 -0.1644603 -0.3241902 -0.9315882 0.164451 0.3241902 0.9315882 -0.164451 -0.4617334 -0.2566735 -0.8490707 -0.4612948 -0.2585969 -0.8487253 -0.4624195 -0.2536461 -0.8496069 0.4624195 0.2536461 0.8496069 0.4612948 0.2585969 0.8487253 0.4617334 0.2566735 0.8490707 -0.3324989 -0.9258167 0.1797438 0.3324989 0.9258167 -0.1797438 -0.7893619 -0.6128084 0.03706366 0.7893619 0.6128084 -0.03706366 -0.9076924 -0.3660535 0.2051814 0.9076924 0.3660535 -0.2051814 -0.6794911 -0.7238702 -0.1195983 0.6794911 0.7238702 0.1195983 -0.442337 -0.3900353 -0.8075954 -0.4135652 -0.3488776 -0.8409805 -0.420932 -0.3593328 -0.8328842 0.420932 0.3593328 0.8328842 0.4135652 0.3488776 0.8409805 0.442337 0.3900353 0.8075954 -0.9248123 0.01374801 -0.3801752 -0.9248123 0.01374801 -0.3801752 -0.9248123 0.01374801 -0.3801752 0.9248123 -0.01374801 0.3801752 0.9248123 -0.01374801 0.3801752 0.9248123 -0.01374801 0.3801752 -0.8838804 -0.4601579 -0.08372664 -0.8838804 -0.4601579 -0.08372664 -0.8838804 -0.4601579 -0.08372664 0.8838804 0.4601579 0.08372664 0.8838804 0.4601579 0.08372664 0.8838804 0.4601579 0.08372664 -0.4172794 -0.8725362 0.2540836 0.4172794 0.8725362 -0.2540836 -0.4627951 -0.2519787 -0.8498984 0.4627951 0.2519787 0.8498984 -0.8028634 -0.5741398 0.160542 -0.8028634 -0.5741398 0.160542 -0.8028634 -0.5741398 0.160542 0.8028634 0.5741398 -0.160542 0.8028634 0.5741398 -0.160542 0.8028634 0.5741398 -0.160542 -0.9423004 -0.2795518 0.1841761 0.9423004 0.2795518 -0.1841761 -0.3929245 -0.8164652 0.4230778 -0.3883315 -0.8225645 0.4154351 -0.384408 -0.8280287 0.4081654 0.384408 0.8280287 -0.4081654 0.3883315 0.8225645 -0.4154351 0.3929245 0.8164652 -0.4230778 -0.4479571 -0.398182 -0.8004908 0.4479571 0.398182 0.8004908 -0.9020958 -0.002219912 -0.4315302 -0.9020958 -0.002219912 -0.4315302 -0.9020958 -0.002219912 -0.4315302 0.9020958 0.002219912 0.4315302 0.9020958 0.002219912 0.4315302 0.9020958 0.002219912 0.4315302 0.1817385 -0.4402935 -0.8792683 0.1822453 -0.4396831 -0.8794688 0.1821177 -0.4398368 -0.8794184 -0.1821177 0.4398368 0.8794184 -0.1822453 0.4396831 0.8794688 -0.1817385 0.4402935 0.8792683 -0.9847509 -0.1513998 -0.08569531 -0.9847509 -0.1513998 -0.08569531 -0.9847509 -0.1513998 -0.08569531 0.9847509 0.1513998 0.08569531 0.9847509 0.1513998 0.08569531 0.9847509 0.1513998 0.08569531 -0.3808117 -0.8815819 0.278919 -0.3970009 -0.8384501 0.373352 -0.3697154 -0.8933084 0.2555594 0.3697154 0.8933084 -0.2555594 0.3970009 0.8384501 -0.373352 0.3808117 0.8815819 -0.278919 -0.4102207 -0.8166833 0.4058909 0.4102207 0.8166833 -0.4058909 0.181634 -0.4404193 -0.8792269 -0.181634 0.4404193 0.8792269 - - - - - - - - - - 0.05126953 0.3955078 0.1054687 0.3945312 0.07324219 0.3662109 -171.7799 -77.52113 -174.2882 -75.32769 -170.1122 -75.27157 0.4179688 0.8046875 0.4267578 0.8432617 0.4375 0.8364258 -605.1757 107.4365 -604.4658 108.0017 -604.6107 104.6728 0.05126953 0.3955078 0.07324219 0.3662109 0.06933594 0.3408203 -67.48996 -154.8233 -67.86259 -152.9216 -66.28491 -150.608 0.4179688 0.8046875 0.4375 0.8364258 0.4331055 0.8012695 -608.4702 91.23978 -608.3178 94.25029 -607.6939 91.49923 0.4267578 0.8432617 0.4448242 0.8959961 0.4375 0.8364258 -218.5459 -510.3293 -223.2457 -510.1308 -218.8524 -509.4752 0.4179688 0.8046875 0.4331055 0.8012695 0.3989258 0.7944336 -570.7601 47.61806 -570.9359 49.28209 -570.1353 49.45247 0.05126953 0.3955078 0.06933594 0.3408203 0.05224609 0.3339844 -209.5837 -103.763 -210.8978 -103.2149 -209.4415 -99.07973 0.5214844 0.699707 0.4433594 0.6728516 0.4677734 0.6992188 -199.1921 -124.4372 -196.9644 -126.4679 -203.8953 -124.3491 0.4267578 0.8432617 0.4350586 0.9057617 0.4448242 0.8959961 -201.4578 -539.2919 -202.0666 -538.4848 -197.0898 -538.4848 0.3989258 0.7944336 0.4331055 0.8012695 0.449707 0.7929687 -583.963 42.49483 -583.5094 44.2278 -583.3229 42.56493 0.59375 0.5366211 0.574707 0.5307617 0.5722656 0.5385742 -615.4199 50.3797 -614.8024 50.56232 -614.559 49.15941 0.05126953 0.3955078 0.05224609 0.3339844 0.03955078 0.3266602 -242.765 -100.2811 -243.7369 -99.67955 -243.5353 -94.99844 0.5214844 0.699707 0.5390625 0.6723633 0.4433594 0.6728516 -196.9638 -126.4659 -205.0541 -126.546 -203.8946 -124.3471 0.4350586 0.9057617 0.5151367 0.902832 0.4448242 0.8959961 239.6784 -256.9903 239.1917 -259.428 238.7203 -256.6673 0.4433594 0.6728516 0.5390625 0.6723633 0.4438477 0.6503906 -196.7749 -128.2359 -205.0542 -126.5346 -196.9639 -126.4545 0.59375 0.5366211 0.5722656 0.5385742 0.5947266 0.5473633 -616.4725 29.31211 -616.63 30.90237 -615.7309 29.70999 0.05224609 0.3339844 0.04296875 0.3164063 0.03955078 0.3266602 -240.2482 -96.58128 -240.5115 -97.36323 -241.2207 -95.98062 0.5927734 0.9179688 0.5151367 0.902832 0.4350586 0.9057617 306.0829 -230.0894 306.7145 -232.818 305.1526 -232.6833 0.5390625 0.6723633 0.4604492 0.6430664 0.4438477 0.6503906 -196.7771 -128.2456 -198.0814 -128.8049 -205.0563 -126.5443 0.4311523 0.5366211 0.4321289 0.5473633 0.4521484 0.5424805 -568.2679 127.7822 -568.8106 129.1351 -567.9875 129.3106 0.5947266 0.5473633 0.5722656 0.5385742 0.5732422 0.543457 -609.0049 -84.10602 -608.8017 -83.77655 -608.3505 -85.30957 0.03955078 0.3266602 0.04296875 0.3164063 0.03417969 0.2827148 -248.5896 -96.34675 -249.2133 -93.75619 -248.9476 -92.97506 0.1699219 0.394043 0.1767578 0.394043 0.1904297 0.3642578 -102.1711 -72.20938 -101.2122 -69.89505 -100.6805 -69.89169 0.5927734 0.9179687 0.5673828 0.8886719 0.5151367 0.902832 327.48 12.4916 328.2415 10.12078 325.9168 12.61054 0.5732422 0.543457 0.5722656 0.5385742 0.5527344 0.5356445 122.3564 -485.2645 123.4131 -484.3172 123.7216 -484.551 0.5390625 0.6723633 0.5385742 0.6416016 0.4604492 0.6430664 -198.0791 -128.7984 -204.6135 -128.9886 -205.0541 -126.5378 0.4521484 0.5424805 0.4321289 0.5473633 0.4521484 0.5517578 -574.5258 119.7819 -574.3626 121.1287 -573.805 119.7818 0.7143555 0.1601562 0.6923828 0.1606445 0.7075195 0.1767578 -259.038 -71.86139 -260.2172 -73.07706 -260.3156 -71.36701 0.04296875 0.3164062 0.04882812 0.2978516 0.03417969 0.2827148 -248.5368 -96.33912 -249.6564 -95.12972 -249.1606 -93.74857 0.1767578 0.394043 0.2041016 0.3955078 0.1904297 0.3642578 -25.67026 -103.5487 -26.87207 -101.2256 -24.76341 -101.2134 0.5927734 0.9179687 0.5869141 0.9008789 0.5673828 0.8886719 234.5582 -80.05153 233.7759 -80.20269 232.2752 -77.52345 0.5732422 0.543457 0.5527344 0.5356445 0.5527344 0.5419922 182.6498 -503.5413 182.1975 -503.3542 183.4975 -502.5276 0.4604492 0.6430664 0.5385742 0.6416016 0.4667969 0.628418 -198.4819 -129.9781 -204.6128 -129.0104 -198.0784 -128.8201 0.7075195 0.1767578 0.6923828 0.1606445 0.6914062 0.184082 -258.4428 -73.06586 -260.2268 -73.06714 -259.0476 -71.85147 0.4521484 0.5424805 0.4521484 0.5517578 0.4716797 0.5537109 -574.7534 -58.63178 -574.5277 -57.35979 -573.8069 -57.35979 0.7143555 0.1601563 0.7084961 0.144043 0.6923828 0.1606445 -260.2243 -73.07691 -261.5432 -71.87346 -260.3228 -71.36686 0.4521484 0.5424805 0.4716797 0.5537109 0.472168 0.5449219 -574.1175 -58.77627 -574.7667 -58.61124 -573.8202 -57.33927 0.04882813 0.2978516 0.06640625 0.2900391 0.03417969 0.2827148 -248.5381 -96.34016 -251.057 -95.70284 -249.6577 -95.13076 0.2314453 0.3994141 0.1904297 0.3642578 0.2041016 0.3955078 190.6014 19.03522 191.8929 16.76077 188.222 18.97023 0.2314453 0.3994141 0.1816406 0.328125 0.1904297 0.3642578 81.05221 -162.0192 82.38764 -164.7845 77.44752 -159.7034 0.5869141 0.9008789 0.5771484 0.8588867 0.5673828 0.8886719 172.8974 228.912 174.6778 226.9737 172.1167 228.753 0.5527344 0.5356445 0.5356445 0.5371094 0.5527344 0.5419922 328.2302 -194.2706 327.7239 -195.3955 327.7512 -194.1696 0.5385742 0.6416016 0.519043 0.6176758 0.4667969 0.628418 -198.4807 -129.971 -202.7651 -130.8788 -204.6116 -129.0033 0.6914063 0.184082 0.6923828 0.1606445 0.6757813 0.1777344 -258.8834 -74.30868 -260.2268 -73.09556 -258.4428 -73.09428 0.7084961 0.144043 0.6928711 0.137207 0.6923828 0.1606445 -260.2417 -73.09423 -262.0271 -73.09295 -261.5605 -71.89078 0.472168 0.5449219 0.4716797 0.5537109 0.4921875 0.5512695 -615.9486 50.73321 -615.2672 51.88785 -614.7075 51.51986 0.472168 0.5449219 0.4921875 0.5512695 0.4931641 0.5424805 -614.4132 61.14829 -614.879 61.67346 -613.624 62.43772 0.06640625 0.2900391 0.08544922 0.2832031 0.03417969 0.2827148 -248.5426 -96.35694 -252.5578 -96.18929 -251.0615 -95.71962 0.2314453 0.3994141 0.2368164 0.3310547 0.1816406 0.328125 134.8957 -113.2392 130.0496 -113.5003 129.8429 -108.2701 0.5869141 0.9008789 0.5864258 0.8662109 0.5771484 0.8588867 233.5679 284.985 232.7945 284.7415 231.0827 286.869 0.5356445 0.5371094 0.5336914 0.5429688 0.5527344 0.5419922 297.3357 -189.1539 297.2198 -190.4382 296.8038 -190.267 0.4667969 0.628418 0.519043 0.6176758 0.4633789 0.6191406 -198.1476 -130.6662 -202.7687 -130.8626 -198.4842 -129.9548 0.6923828 0.1606445 0.6699219 0.1611328 0.6757812 0.1777344 -258.8755 -74.30067 -260.1217 -74.79505 -260.2189 -73.08755 0.6928711 0.137207 0.6767578 0.1445313 0.6923828 0.1606445 -260.2417 -73.07571 -261.448 -74.27661 -262.0271 -73.07443 0.4931641 0.5424805 0.4921875 0.5512695 0.5136719 0.5463867 175.831 512.6492 176.8619 511.7043 176.3084 511.2726 0.08544922 0.2963867 0.08544922 0.2832031 0.06640625 0.2900391 -254.7538 -83.97309 -256.2507 -84.4409 -256.2284 -83.40327 0.2368164 0.3310547 0.1855469 0.3203125 0.1816406 0.328125 131.688 -54.74307 131.1189 -55.31745 126.8417 -54.99972 0.2392578 0.3959961 0.2368164 0.3310547 0.2314453 0.3994141 220.1773 -97.61388 220.5566 -102.8344 219.5234 -97.98832 0.1816406 0.328125 0.1855469 0.3203125 0.152832 0.3017578 -16.55894 92.26094 -19.09555 93.58066 -18.52612 94.15476 0.5820312 0.8251953 0.5771484 0.8588867 0.5864258 0.8662109 55.35941 528.6572 56.06597 529.055 58.43271 527.9835 0.5356445 0.5371094 0.5136719 0.5463867 0.5336914 0.5429687 449.2118 179.3812 449.5816 178.0991 448.7958 179.5522 0.5249023 0.5405273 0.5136719 0.5463867 194.0814 67.18786 193.5052 67.84611 193.1275 68.53652 0.4633789 0.6191406 0.519043 0.6176758 0.4897461 0.609375 -200.2424 -131.4255 -202.7703 -130.8261 -198.1492 -130.6298 0.6923828 0.1606445 0.6767578 0.1445313 0.6699219 0.1611328 -260.1336 -74.79481 -261.4371 -74.28821 -260.2308 -73.08731 0.4931641 0.5424805 0.5136719 0.5463867 0.5141602 0.5375977 182.43 511.1089 183.1366 511.4267 183.5995 510.0452 0.08837891 0.3046875 0.08544922 0.2832031 0.08544922 0.2963867 109.1136 -79.9225 109.2015 -80.95664 108.8217 -79.34508 0.2446289 0.3857422 0.2368164 0.3310547 0.2392578 0.3959961 290.539 -76.01299 291.6934 -80.83161 290.1905 -76.86802 0.1855469 0.3203125 0.1586914 0.2973633 0.152832 0.3017578 -201.8431 -231.0721 -202.2988 -231.4256 -204.3099 -229.6261 0.5893555 0.8286133 0.5820313 0.8251953 0.5864258 0.8662109 39.37871 505.7337 42.46565 505.1255 42.03982 504.6495 0.5214844 0.5336914 0.5136719 0.5463867 0.5249023 0.5405273 441.6747 203.5433 442.1611 202.8161 441.1196 203.2623 0.5834961 0.8017578 0.5820313 0.8251953 0.5893555 0.8286133 -569.355 221.1439 -569.5755 221.7433 -568.0264 223.3604 0.5214844 0.5336914 0.5141602 0.5375977 0.5136719 0.5463867 372.5724 60.31824 371.8161 60.15017 371.5137 60.7222 0.08837891 0.3046875 0.1166992 0.2856445 0.08544922 0.2832031 -229.1954 -130.3162 -231.6378 -130.0416 -229.3807 -128.6709 0.152832 0.3017578 0.1586914 0.2973633 0.1166992 0.293457 -211.4219 -216.4188 -214.6652 -216.0592 -214.2065 -215.7097 0.5947266 0.8037109 0.5834961 0.8017578 0.5893555 0.8286133 -568.9242 221.9826 -567.5922 224.197 -567.2696 223.6649 0.08837891 0.3046875 0.1166992 0.293457 0.1166992 0.2856445 -168.7008 -226.6663 -168.6847 -226.093 -166.4942 -225.2155 0.1586914 0.2973633 0.1166992 0.2856445 0.1166992 0.293457 -211.7497 -218.8793 -211.7827 -219.4519 -214.993 -218.519 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 0 12 2 13 12 14 13 15 3 16 5 17 6 18 8 19 14 20 15 21 9 22 11 23 16 24 17 25 18 26 19 27 20 28 21 29 22 30 23 31 24 32 25 33 26 34 27 35 0 36 12 37 28 38 29 39 13 40 5 41 30 42 31 43 32 44 33 45 34 46 35 47 16 48 36 49 17 50 20 51 37 52 21 53 24 54 23 55 38 56 39 57 26 58 25 59 40 60 41 61 42 62 43 63 44 64 45 65 0 66 28 67 46 68 47 69 29 70 5 71 48 72 49 73 31 74 34 75 50 76 51 77 52 78 53 79 54 80 55 81 56 82 57 83 31 84 49 85 58 86 59 87 50 88 34 89 40 90 42 91 60 92 61 93 43 94 45 95 28 96 62 97 46 98 47 99 63 100 29 101 64 102 53 103 52 104 57 105 56 106 65 107 49 108 66 109 58 110 59 111 67 112 50 113 68 114 69 115 70 116 71 117 72 118 73 119 60 120 42 121 74 122 75 123 43 124 61 125 46 126 62 127 76 128 77 129 63 130 47 131 78 132 79 133 80 134 81 135 82 136 83 137 84 138 85 139 86 140 87 141 88 142 89 143 90 144 91 145 92 146 93 147 94 148 95 149 49 150 96 151 66 152 67 153 97 154 50 155 70 156 69 157 98 158 99 159 72 160 71 161 100 162 101 163 102 164 103 165 104 166 105 167 62 168 106 169 76 170 77 171 107 172 63 173 79 174 108 175 80 176 81 177 109 178 82 179 84 180 110 181 85 182 88 183 111 184 89 185 90 186 92 187 112 188 113 189 93 190 95 191 66 192 96 193 114 194 115 195 97 196 67 197 102 198 101 199 116 200 117 201 104 202 103 203 118 204 119 205 120 206 121 207 122 208 123 209 100 210 124 211 101 212 104 213 125 214 105 215 118 216 120 217 126 218 127 219 121 220 123 221 106 222 128 223 76 224 77 225 129 226 107 227 130 228 84 229 131 230 132 231 89 232 133 233 130 234 110 235 84 236 89 237 111 238 133 239 134 240 135 241 136 242 137 243 138 244 139 245 140 246 141 247 142 248 143 249 144 250 145 251 96 252 146 253 114 254 115 255 147 256 97 257 116 258 101 259 148 260 149 261 104 262 117 263 124 264 150 265 101 266 104 267 151 268 125 269 152 270 153 271 154 272 155 273 156 274 157 275 152 276 154 277 158 278 159 279 155 280 157 281 128 282 160 283 76 284 77 285 161 286 129 287 130 288 162 289 110 290 111 291 163 292 133 293 134 294 164 295 135 296 138 297 165 298 139 299 141 300 166 301 142 302 143 303 167 304 144 305 114 306 146 307 168 308 169 309 147 310 115 311 101 312 170 313 148 314 149 315 171 316 104 317 150 318 172 319 101 320 104 321 173 322 151 323 174 324 175 325 176 326 177 327 178 328 179 329 180 330 160 331 128 332 129 333 161 334 181 335 162 336 182 337 110 338 111 339 183 340 163 341 184 342 162 343 130 344 133 345 163 346 185 347 110 348 182 349 186 350 187 351 183 352 111 353 188 354 189 355 190 356 191 357 192 358 193 359 194 360 195 361 196 362 197 363 198 364 199 365 200 300 201 366 202 367 203 368 204 369 205 370 168 371 146 372 206 373 207 374 147 375 169 376 101 377 172 378 170 379 171 380 173 381 104 382 174 383 176 384 208 385 209 386 177 387 179 388 210 389 211 390 212 391 213 392 214 393 215 394 216 395 162 396 184 397 185 398 163 399 217 400 218 401 219 402 220 403 221 404 222 405 223 406 224 407 188 408 190 409 191 410 193 411 225 412 226 413 227 414 228 415 229 416 230 417 231 418 232 419 233 420 234 421 235 422 236 423 237 424 238 425 239 426 240 427 241 428 242 429 243 430 244 431 245 432 246 433 247 434 248 435 249 436 220 437 219 438 250 439 251 440 222 441 221 442 252 443 232 444 234 445 235 446 237 447 253 448 244 449 250 450 245 451 248 452 251 453 249 454 219 455 245 456 250 457 251 458 248 459 222 460

-
-
-
- - - - -389.4322 -441.9797 25.21615 -387.7811 -441.5326 22.99908 -385.7412 -440.0262 25.16084 -385.7412 -440.0262 25.16084 -387.7811 -441.5326 22.99908 -389.4322 -441.9797 25.21615 -385.7412 -440.0262 25.16084 -387.7811 -441.5326 22.99908 -387.4997 -442.2824 22.82982 -387.4997 -442.2824 22.82982 -387.7811 -441.5326 22.99908 -385.7412 -440.0262 25.16084 -387.7414 -442.1903 21.17665 -387.7414 -442.1903 21.17665 -387.7811 -441.5326 22.99908 -387.4748 -442.7723 21.10695 -387.4997 -442.2824 22.82982 -387.4997 -442.2824 22.82982 -387.4748 -442.7723 21.10695 -387.7811 -441.5326 22.99908 -385.7126 -440.8556 24.79381 -385.7126 -440.8556 24.79381 -387.7414 -442.1903 21.17665 -387.7414 -442.1903 21.17665 -388.8924 -442.8353 20.64122 -388.8924 -442.8353 20.64122 -387.4997 -442.2824 22.82982 -387.4748 -442.7723 21.10695 -380.1923 -438.8102 22.75238 -380.1923 -438.8102 22.75238 -387.4748 -442.7723 21.10695 -387.4997 -442.2824 22.82982 -381.4794 -438.8063 24.87908 -385.7126 -440.8556 24.79381 -385.7126 -440.8556 24.79381 -381.4794 -438.8063 24.87908 -381.2605 -437.8602 25.16084 -385.7412 -440.0262 25.16084 -385.7126 -440.8556 24.79381 -385.7126 -440.8556 24.79381 -385.7412 -440.0262 25.16084 -381.2605 -437.8602 25.16084 -387.4748 -442.7723 21.10695 -387.7414 -442.1903 21.17665 -388.8924 -442.8353 20.64122 -388.8924 -442.8353 20.64122 -387.7414 -442.1903 21.17665 -387.4748 -442.7723 21.10695 -389.7561 -443.2988 20.05331 -389.7561 -443.2988 20.05331 -380.321 -439.5622 20.38202 -380.321 -439.5622 20.38202 -381.4794 -438.8063 24.87908 -381.4794 -438.8063 24.87908 -388.6702 -443.632 20.48581 -388.6702 -443.632 20.48581 -389.4529 -443.354 19.28795 -389.4529 -443.354 19.28795 -379.8379 -437.2877 22.8713 -381.4794 -438.8063 24.87908 -380.1923 -438.8102 22.75238 -380.1923 -438.8102 22.75238 -381.4794 -438.8063 24.87908 -379.8379 -437.2877 22.8713 -380.1923 -438.8102 22.75238 -380.321 -439.5622 20.38202 -379.992 -438.852 20.23318 -379.992 -438.852 20.23318 -380.321 -439.5622 20.38202 -380.1923 -438.8102 22.75238 -386.2368 -442.3378 20.56598 -386.2368 -442.3378 20.56598 -381.2605 -437.8602 25.16084 -381.2605 -437.8602 25.16084 -388.8924 -442.8353 20.64122 -389.1757 -444.0194 19.28795 -388.6702 -443.632 20.48581 -388.6702 -443.632 20.48581 -389.1757 -444.0194 19.28795 -388.8924 -442.8353 20.64122 -387.4902 -443.1352 20.97346 -387.4902 -443.1352 20.97346 -389.4529 -443.354 19.28795 -389.4529 -443.354 19.28795 -389.8603 -444.0549 16.74968 -389.8603 -444.0549 16.74968 -379.8379 -437.2877 22.8713 -379.8379 -437.2877 22.8713 -379.992 -438.852 20.23318 -380.321 -439.5622 20.38202 -381.5813 -440.0331 18.35295 -381.5813 -440.0331 18.35295 -380.321 -439.5622 20.38202 -379.992 -438.852 20.23318 -386.2368 -442.3378 20.56598 -387.4748 -442.7723 21.10695 -387.4902 -443.1352 20.97346 -387.4902 -443.1352 20.97346 -387.4748 -442.7723 21.10695 -386.2368 -442.3378 20.56598 -381.7812 -440.7889 18.56814 -381.7812 -440.7889 18.56814 -381.2605 -437.8602 25.16084 -379.8379 -437.2877 22.8713 -380.8274 -437.5519 25.15752 -380.8274 -437.5519 25.15752 -379.8379 -437.2877 22.8713 -381.2605 -437.8602 25.16084 -388.6702 -443.632 20.48581 -389.1757 -444.0194 19.28795 -387.4907 -443.4332 19.28669 -387.4907 -443.4332 19.28669 -389.1757 -444.0194 19.28795 -388.6702 -443.632 20.48581 -387.4902 -443.1352 20.97346 -388.6702 -443.632 20.48581 -388.6702 -443.632 20.48581 -387.4902 -443.1352 20.97346 -389.4529 -443.354 19.28795 -388.6939 -444.0632 18.0901 -389.1757 -444.0194 19.28795 -389.1757 -444.0194 19.28795 -388.6939 -444.0632 18.0901 -389.4529 -443.354 19.28795 -388.8924 -443.4426 17.93468 -388.8924 -443.4426 17.93468 -378.1968 -434.004 25.08064 -379.8379 -437.2877 22.8713 -379.992 -438.852 20.23318 -379.992 -438.852 20.23318 -379.8379 -437.2877 22.8713 -378.1968 -434.004 25.08064 -381.5813 -440.0331 18.35295 -379.6237 -438.4122 19.66319 -379.6237 -438.4122 19.66319 -381.5813 -440.0331 18.35295 -381.7812 -440.7889 18.56814 -381.7812 -440.7889 18.56814 -386.3102 -442.8128 20.47376 -386.3102 -442.8128 20.47376 -385.7459 -442.4292 19.44607 -381.7812 -440.7889 18.56814 -381.7812 -440.7889 18.56814 -385.7459 -442.4292 19.44607 -379.2744 -436.1255 25.14563 -379.2744 -436.1255 25.14563 -388.6939 -444.0632 18.0901 -388.6939 -444.0632 18.0901 -386.3102 -442.8128 20.47376 -386.3102 -442.8128 20.47376 -388.8924 -443.4426 17.93468 -388.8924 -443.4426 17.93468 -387.5391 -443.0683 17.37414 -387.5391 -443.0683 17.37414 -379.2744 -436.1255 25.14563 -379.2744 -436.1255 25.14563 -377.3382 -434.7967 19.9785 -377.3382 -434.7967 19.9785 -379.6237 -438.4122 19.66319 -381.5813 -440.0331 18.35295 -381.1058 -439.9703 18.03268 -381.1058 -439.9703 18.03268 -381.5813 -440.0331 18.35295 -379.6237 -438.4122 19.66319 -381.5813 -440.0331 18.35295 -381.7812 -440.7889 18.56814 -383.9979 -441.4455 17.70313 -383.9979 -441.4455 17.70313 -381.7812 -440.7889 18.56814 -381.5813 -440.0331 18.35295 -386.2368 -442.3378 20.56598 -386.3102 -442.8128 20.47376 -385.7459 -442.4292 19.44607 -385.7459 -442.4292 19.44607 -386.3102 -442.8128 20.47376 -386.2368 -442.3378 20.56598 -385.7459 -442.4292 19.44607 -383.996 -442.0169 17.98841 -383.996 -442.0169 17.98841 -385.7459 -442.4292 19.44607 -387.4902 -443.7304 17.60245 -387.4902 -443.7304 17.60245 -385.8047 -442.8463 19.28795 -385.8047 -442.8463 19.28795 -387.5391 -443.0683 17.37414 -388.6939 -444.0632 18.0901 -388.8924 -443.4426 17.93468 -388.8924 -443.4426 17.93468 -388.6939 -444.0632 18.0901 -387.5391 -443.0683 17.37414 -386.1018 -442.6415 16.91395 -386.1018 -442.6415 16.91395 -377.8607 -433.4376 24.71469 -377.8607 -433.4376 24.71469 -383.9979 -441.4455 17.70313 -383.9979 -441.4455 17.70313 -383.996 -442.0169 17.98841 -383.996 -442.0169 17.98841 -385.8047 -442.8463 19.28795 -385.8047 -442.8463 19.28795 -385.9716 -442.7376 18.75808 -383.996 -442.0169 17.98841 -383.996 -442.0169 17.98841 -385.9716 -442.7376 18.75808 -387.4902 -443.7304 17.60245 -387.4902 -443.7304 17.60245 -386.2865 -443.2233 18.10214 -386.2865 -443.2233 18.10214 -386.1858 -442.4735 17.93469 -386.1858 -442.4735 17.93469 -377.6106 -433.1482 23.87429 -377.6106 -433.1482 23.87429 -383.8719 -441.6427 17.17945 -383.8719 -441.6427 17.17945 -383.996 -442.0169 17.98841 -386.0914 -442.1821 18.50461 -383.9979 -441.4455 17.70313 -383.9979 -441.4455 17.70313 -386.0914 -442.1821 18.50461 -383.996 -442.0169 17.98841 -385.7459 -442.4292 19.44607 -385.8047 -442.8463 19.28795 -385.9716 -442.7376 18.75808 -385.9716 -442.7376 18.75808 -385.8047 -442.8463 19.28795 -385.7459 -442.4292 19.44607 -385.9716 -442.7376 18.75808 -385.9716 -442.7376 18.75808 -386.1858 -442.4735 17.93469 -387.4902 -443.7304 17.60245 -387.5391 -443.0683 17.37414 -387.5391 -443.0683 17.37414 -387.4902 -443.7304 17.60245 -386.1858 -442.4735 17.93469 -386.2865 -443.2233 18.10214 -386.2865 -443.2233 18.10214 -386.2865 -443.2233 18.10214 -386.2865 -443.2233 18.10214 -386.0914 -442.1821 18.50461 -386.1858 -442.4735 17.93469 -386.1018 -442.6415 16.91395 -386.1018 -442.6415 16.91395 -386.1858 -442.4735 17.93469 -386.0914 -442.1821 18.50461 -386.0914 -442.1821 18.50461 -386.0914 -442.1821 18.50461 -386.0914 -442.1821 18.50461 -386.0914 -442.1821 18.50461 -386.0914 -442.1821 18.50461 -386.2865 -443.2233 18.10214 -386.1858 -442.4735 17.93469 -386.1858 -442.4735 17.93469 -386.2865 -443.2233 18.10214 -386.0914 -442.1821 18.50461 -386.1018 -442.6415 16.91395 -386.1018 -442.6415 16.91395 - - - - - - - - - - 0.46453 -0.8616711 0.2042908 0.5425324 -0.8044819 0.2418005 0.4630043 -0.8700261 0.1693565 -0.4630043 0.8700261 -0.1693565 -0.5425324 0.8044819 -0.2418005 -0.46453 0.8616711 -0.2042908 -0.5451086 -0.3582539 0.7579649 -0.5320691 -0.371431 0.7608821 -0.5347104 -0.3687876 0.7603161 0.5347104 0.3687876 -0.7603161 0.5320691 0.371431 -0.7608821 0.5451086 0.3582539 -0.7579649 0.4446236 -0.8653593 0.2312209 -0.4446236 0.8653593 -0.2312209 -0.9182284 -0.3826691 0.1020828 -0.9035238 -0.4105811 0.1227513 -0.9253965 -0.3678592 0.09121885 0.9253965 0.3678592 -0.09121885 0.9035238 0.4105811 -0.1227513 0.9182284 0.3826691 -0.1020828 -0.5493217 -0.353927 0.7569553 0.5493217 0.353927 -0.7569553 -0.894702 -0.4260006 0.1342824 0.894702 0.4260006 -0.1342824 0.3639883 -0.9070638 0.2115367 -0.3639883 0.9070638 -0.2115367 0.417275 -0.8725166 0.254158 0.4172763 -0.8725169 0.2541549 0.4172771 -0.8725177 0.2541509 -0.4172771 0.8725177 -0.2541509 -0.4172763 0.8725169 -0.2541549 -0.417275 0.8725166 -0.254158 0.4172762 -0.8725188 0.2541485 0.4172713 -0.8725176 0.2541609 -0.4172713 0.8725176 -0.2541609 -0.4172762 0.8725188 -0.2541485 0.1414678 -0.3248541 0.9351239 0.1894324 -0.3918797 0.9003031 0.1822209 -0.3818681 0.9060752 -0.1822209 0.3818681 -0.9060752 -0.1894324 0.3918797 -0.9003031 -0.1414678 0.3248541 -0.9351239 -0.2760008 -0.2742875 0.9211894 -0.2927922 -0.244832 0.9242997 -0.2913283 -0.2569175 0.9214777 0.2913283 0.2569175 -0.9214777 0.2927922 0.244832 -0.9242997 0.2760008 0.2742875 -0.9211894 0.3477237 -0.9146566 0.2061347 -0.3477237 0.9146566 -0.2061347 0.4172773 -0.8725174 0.2541518 -0.4172773 0.8725174 -0.2541518 0.1314948 -0.3107922 0.941338 -0.1314948 0.3107922 -0.941338 -0.2833221 -0.2707644 0.9200083 0.2833221 0.2707644 -0.9200083 0.3399753 -0.9187216 0.2009165 -0.3399753 0.9187216 -0.2009165 0.8343229 -0.2571632 0.4876191 0.8369055 -0.2955698 0.4606817 0.8317858 -0.2329728 0.5038414 -0.8317858 0.2329728 -0.5038414 -0.8369055 0.2955698 -0.4606817 -0.8343229 0.2571632 -0.4876191 0.9620309 -0.2606963 0.08083249 0.9107236 -0.405361 0.07915186 0.9303681 -0.3578087 0.07992534 -0.9303681 0.3578087 -0.07992534 -0.9107236 0.405361 -0.07915186 -0.9620309 0.2606963 -0.08083249 0.4172772 -0.8725207 0.2541404 -0.4172772 0.8725207 -0.2541404 0.8376354 -0.3246964 0.4392484 -0.8376354 0.3246964 -0.4392484 -0.8259854 -0.3270563 0.4591104 -0.8205819 -0.3338258 0.4639026 -0.8311656 -0.3204383 0.4544041 0.8311656 0.3204383 -0.4544041 0.8205819 0.3338258 -0.4639026 0.8259854 0.3270563 -0.4591104 -0.2405806 -0.3260256 0.9142365 0.2405806 0.3260256 -0.9142365 -0.8157076 -0.3398203 0.4681274 0.8157076 0.3398203 -0.4681274 0.3372086 -0.9199627 0.1998975 -0.3372086 0.9199627 -0.1998975 0.9693516 -0.2319622 0.08093804 -0.9693516 0.2319622 -0.08093804 0.8006007 -0.4530985 -0.3920973 0.8058769 -0.437441 -0.3990085 0.8275303 -0.3606189 -0.4302878 -0.8275303 0.3606189 0.4302878 -0.8058769 0.437441 0.3990085 -0.8006007 0.4530985 0.3920973 0.4413079 -0.2538352 0.8607061 0.4717061 -0.3219694 0.820871 0.4638351 -0.303809 0.8322002 -0.4638351 0.303809 -0.8322002 -0.4717061 0.3219694 -0.820871 -0.4413079 0.2538352 -0.8607061 0.4172769 -0.8725182 0.2541496 -0.4172769 0.8725182 -0.2541496 0.5737089 -0.8041904 0.1553575 0.6483737 -0.7357721 0.1955786 0.6087105 -0.7740805 0.1739855 -0.6087105 0.7740805 -0.1739855 -0.6483737 0.7357721 -0.1955786 -0.5737089 0.8041904 -0.1553575 0.3242056 -0.9315808 0.1644629 0.324206 -0.9315821 0.1644546 0.3241971 -0.931584 0.1644611 -0.3241971 0.931584 -0.1644611 -0.324206 0.9315821 -0.1644546 -0.3242056 0.9315808 -0.1644629 0.3241974 -0.9315836 0.1644627 0.324205 -0.9315811 0.1644623 -0.324205 0.9315811 -0.1644623 -0.3241974 0.9315836 -0.1644627 -0.8692919 -0.3621835 -0.3363849 -0.869286 -0.3622221 -0.3363583 -0.8692965 -0.3621526 -0.3364061 0.8692965 0.3621526 0.3364061 0.869286 0.3622221 0.3363583 0.8692919 0.3621835 0.3363849 0.337208 -0.9199631 0.1998966 -0.337208 0.9199631 -0.1998966 0.8681655 -0.4624728 0.1800208 0.7859003 -0.5637352 0.2540933 0.7694218 -0.6365356 0.05303253 -0.7694218 0.6365356 -0.05303253 -0.7859003 0.5637352 -0.2540933 -0.8681655 0.4624728 -0.1800208 0.6794809 -0.7238774 -0.119613 0.7893637 -0.6128051 0.03707897 -0.7893637 0.6128051 -0.03707897 -0.6794809 0.7238774 0.119613 0.8313022 -0.3441629 -0.4364499 -0.8313022 0.3441629 0.4364499 0.4328876 -0.2358234 0.870055 -0.4328876 0.2358234 -0.870055 0.417275 -0.8725209 0.2541433 0.4172765 -0.8725186 0.2541487 -0.4172765 0.8725186 -0.2541487 -0.417275 0.8725209 -0.2541433 0.6631306 -0.7202356 0.2037608 -0.6631306 0.7202356 -0.2037608 0.3241967 -0.9315848 0.1644577 -0.3241967 0.9315848 -0.1644577 0.3241891 -0.9315862 0.1644644 -0.3241891 0.9315862 -0.1644644 -0.8692819 -0.3622495 -0.3363395 0.8692819 0.3622495 0.3363395 0.3364131 -0.9209999 0.1964319 -0.3364131 0.9209999 -0.1964319 0.8916492 -0.4526081 0.01037756 -0.8916492 0.4526081 -0.01037756 0.8388181 -0.5017006 0.2113783 -0.8388181 0.5017006 -0.2113783 0.3929182 -0.8164713 0.4230719 0.3844087 -0.8280253 0.4081716 0.3883278 -0.8225639 0.4154397 -0.3883278 0.8225639 -0.4154397 -0.3844087 0.8280253 -0.4081716 -0.3929182 0.8164713 -0.4230719 0.4287482 -0.3505038 -0.8326596 0.4293735 -0.356268 -0.8298864 0.4330925 -0.3943599 -0.8105006 -0.4330925 0.3943599 0.8105006 -0.4293735 0.356268 0.8298864 -0.4287482 0.3505038 0.8326596 0.8876012 -0.2161797 0.4067315 0.8868811 -0.2274539 0.4021277 0.8841562 -0.2589029 0.3888923 -0.8841562 0.2589029 -0.3888923 -0.8868811 0.2274539 -0.4021277 -0.8876012 0.2161797 -0.4067315 0.4172745 -0.8725209 0.2541442 0.4172753 -0.8725196 0.2541472 -0.4172753 0.8725196 -0.2541472 -0.4172745 0.8725209 -0.2541442 0.3241953 -0.9315834 0.1644685 -0.3241953 0.9315834 -0.1644685 0.3241884 -0.9315876 0.164458 -0.3241884 0.9315876 -0.164458 -0.2780475 -0.3272013 -0.9031218 -0.2831104 -0.3216318 -0.9035494 -0.2864303 -0.3179603 -0.9038025 0.2864303 0.3179603 0.9038025 0.2831104 0.3216318 0.9035494 0.2780475 0.3272013 0.9031218 0.3335359 -0.9245812 0.1841289 -0.3335359 0.9245812 -0.1841289 0.9077035 -0.3660255 0.2051821 -0.9077035 0.3660255 -0.2051821 0.4102301 -0.8166419 0.4059646 -0.4102301 0.8166419 -0.4059646 0.433691 -0.4013023 -0.8067643 -0.433691 0.4013023 0.8067643 0.8829272 -0.2701021 0.384037 -0.8829272 0.2701021 -0.384037 0.4172735 -0.8725213 0.2541446 0.4172751 -0.8725199 0.2541468 -0.4172751 0.8725199 -0.2541468 -0.4172735 0.8725213 -0.2541446 -0.2740793 -0.3315414 -0.9027518 0.2740793 0.3315414 0.9027518 0.3241967 -0.9315846 0.1644586 -0.3241967 0.9315846 -0.1644586 0.3324986 -0.925817 0.179743 -0.3324986 0.925817 -0.179743 0.942309 -0.2795223 0.1841763 -0.942309 0.2795223 -0.1841763 0.3970023 -0.838423 0.3734113 -0.3970023 0.838423 -0.3734113 -0.1819736 -0.4398226 -0.8794553 -0.1818734 -0.4403437 -0.8792153 -0.1819931 -0.439721 -0.8795021 0.1819931 0.439721 0.8795021 0.1818734 0.4403437 0.8792153 0.1819736 0.4398226 0.8794553 0.9525065 -0.01905732 -0.3039214 0.9496063 -0.05020722 -0.309398 0.9275534 -0.08603575 -0.3636517 -0.9275534 0.08603575 0.3636517 -0.9496063 0.05020722 0.309398 -0.9525065 0.01905732 0.3039214 -0.1818525 -0.4404521 -0.8791653 0.1818525 0.4404521 0.8791653 0.4612086 -0.2539234 -0.8501821 0.4630052 -0.2562295 -0.848512 0.464327 -0.2579284 -0.8472741 -0.464327 0.2579284 0.8472741 -0.4630052 0.2562295 0.848512 -0.4612086 0.2539234 0.8501821 0.4596589 -0.2519373 -0.851611 -0.4596589 0.2519373 0.851611 0.9160928 -0.0582484 -0.3967129 -0.9160928 0.0582484 0.3967129 0.802865 -0.5741379 0.160541 0.802865 -0.5741379 0.160541 0.802865 -0.5741379 0.160541 -0.802865 0.5741379 -0.160541 -0.802865 0.5741379 -0.160541 -0.802865 0.5741379 -0.160541 0.3808105 -0.8815781 0.2789324 -0.3808105 0.8815781 -0.2789324 0.9021233 -0.002246917 -0.4314724 -0.9021233 0.002246917 0.4314724 0.9847509 -0.1513996 -0.08569559 0.9847509 -0.1513996 -0.08569559 0.9847509 -0.1513996 -0.08569559 -0.9847509 0.1513996 0.08569559 -0.9847509 0.1513996 0.08569559 -0.9847509 0.1513996 0.08569559 0.3697077 -0.8933115 0.2555598 -0.3697077 0.8933115 -0.2555598 - - - - - - - - - - 0.05126953 0.3955078 0.07324219 0.3662109 0.1054687 0.3945312 -547.244 -10.298 -549.7524 -12.49145 -551.42 -10.24188 0.4267578 0.8432617 0.4179688 0.8046875 0.4331055 0.8012695 140.8487 -419.5765 140.0729 -419.3157 140.0053 -415.9842 0.05126953 0.3955078 0.06933594 0.3408203 0.07324219 0.3662109 -577.196 -9.484282 -577.5686 -11.38602 -578.7736 -7.170745 0.4179688 0.8046875 0.449707 0.7929687 0.4331055 0.8012695 267.858 -25.01578 268.3225 -26.74586 267.0573 -24.8458 0.4375 0.8364258 0.4267578 0.8432617 0.4331055 0.8012695 161.9191 -412.9802 160.9749 -409.413 161.6876 -409.9747 0.4179688 0.8046875 0.3989258 0.7944336 0.449707 0.7929687 233.1968 -51.62196 232.5567 -51.55163 231.9458 -49.71253 0.05126953 0.3955078 0.05224609 0.3339844 0.06933594 0.3408203 -534.7945 -31.6437 -536.1086 -32.19181 -536.2508 -27.50852 0.4433594 0.6728516 0.4438477 0.6503906 0.5390625 0.6723633 -532.3084 -36.91826 -540.5876 -38.61956 -540.3987 -36.83819 0.5214844 0.699707 0.4677734 0.6992188 0.4433594 0.6728516 -540.3976 -36.83922 -538.1699 -34.80855 -533.4668 -34.72039 0.4350586 0.9057617 0.4267578 0.8432617 0.4375 0.8364258 -539.1338 -195.42 -538.7986 -194.5768 -533.8218 -194.5768 0.5722656 0.5385742 0.574707 0.5307617 0.59375 0.5366211 90.24977 -530.4385 90.49329 -529.0356 91.11082 -529.2182 0.05126953 0.3955078 0.03955078 0.3266602 0.05224609 0.3339844 -520.5829 -38.33887 -521.5549 -38.94042 -520.7845 -33.65776 0.5214844 0.699707 0.4433594 0.6728516 0.5390625 0.6723633 -532.3084 -36.91523 -540.3987 -36.83516 -533.4679 -34.71633 0.5390625 0.6723633 0.4438477 0.6503906 0.5385742 0.6416016 -532.7493 -39.3675 -540.5879 -38.61796 -532.3087 -36.91666 0.4350586 0.9057617 0.4375 0.8364258 0.4448242 0.8959961 -522.3106 -232.0957 -527.0077 -232.3483 -521.7403 -231.2607 0.5722656 0.5385742 0.59375 0.5366211 0.5947266 0.5473633 70.95863 -531.0128 70.21702 -530.6149 71.11626 -529.4225 0.05224609 0.3339844 0.03955078 0.3266602 0.04296875 0.3164062 -522.5168 -37.31304 -522.7801 -36.53109 -521.8075 -35.93043 0.5927734 0.9179688 0.4448242 0.8959961 0.5151367 0.902832 -525.0898 144.4814 -525.4332 146.9434 -523.5281 144.6191 0.5151367 0.902832 0.5673828 0.8886719 0.5869141 0.9008789 -555.4495 33.52289 -556.2321 33.6722 -555.4927 36.05002 0.4438477 0.6503906 0.4604492 0.6430664 0.5385742 0.6416016 -532.7489 -39.36412 -539.2833 -39.17391 -540.5876 -38.61458 0.5927734 0.9179688 0.4350586 0.9057617 0.4448242 0.8959961 -547.0208 108.9234 -546.0595 109.2371 -545.0116 106.6885 0.4311523 0.5366211 0.4521484 0.5517578 0.4321289 0.5473633 274.1221 -219.0577 274.3018 -220.4024 273.2988 -218.8832 0.5722656 0.5385742 0.5947266 0.5473633 0.5732422 0.543457 -48.6744 -527.831 -49.3289 -529.0346 -48.87749 -527.5016 0.4311523 0.5366211 0.4521484 0.5424805 0.4521484 0.5517578 260.2131 -231.0635 259.4923 -231.0635 259.229 -229.5321 0.03955078 0.3266602 0.03417969 0.2827148 0.04296875 0.3164063 -518.2416 -37.52362 -518.8653 -40.11418 -518.5074 -36.7425 0.5927734 0.9179687 0.5151367 0.902832 0.5869141 0.9008789 -515.2361 41.81175 -515.2421 44.33924 -513.6789 44.45855 0.5673828 0.8886719 0.5864258 0.8662109 -570.9003 -28.34625 -569.8697 -26.14055 -569.0895 -26.30235 0.5527344 0.5356445 0.5722656 0.5385742 0.5732422 0.543457 -584.4537 69.6225 -584.1453 69.85625 -583.0885 68.90903 0.4604492 0.6430664 0.519043 0.6176758 0.5385742 0.6416016 -532.749 -39.36677 -534.5955 -41.24223 -539.2834 -39.17656 0.1699219 0.394043 0.1904297 0.3642578 0.1767578 0.394043 -564.1347 3.87407 -563.1757 1.55975 -564.6663 3.877427 0.7075195 0.1767578 0.6914063 0.184082 0.6923828 0.1606445 -511.7102 -28.90626 -513.4942 -28.90498 -512.8895 -27.69059 0.7143555 0.1601563 0.7075195 0.1767578 0.6923828 0.1606445 -511.7101 -28.90614 -512.8893 -27.69047 -511.6116 -27.19609 0.4521484 0.5424805 0.4716797 0.5537109 0.4521484 0.5517578 260.2093 196.4597 260.435 195.1877 259.4885 196.4597 0.04296875 0.3164063 0.03417969 0.2827148 0.04882813 0.2978516 -517.7459 -38.90474 -518.8654 -40.11415 -518.2417 -37.5236 0.2314453 0.3994141 0.1904297 0.3642578 0.1816406 0.328125 -579.4634 29.71877 -578.128 32.4841 -574.5233 34.79997 0.1816406 0.328125 0.152832 0.3017578 0.1855469 0.3203125 -576.8351 26.67957 -579.3717 25.35985 -577.4045 27.25368 0.5673828 0.8886719 0.5771484 0.8588867 0.5864258 0.8662109 -552.5296 -63.89901 -553.3043 -63.65983 -551.6124 -61.6438 0.5527344 0.5356445 0.5732422 0.543457 0.5527344 0.5419922 -573.6616 120.9392 -574.5092 121.9528 -573.2093 121.1262 0.4604492 0.6430664 0.4667969 0.628418 0.519043 0.6176758 -534.5948 -41.24113 -538.8792 -40.33339 -539.2827 -39.17546 0.1767578 0.394043 0.1904297 0.3642578 0.2041016 0.3955078 -574.4261 11.58837 -575.6279 9.265313 -576.5348 11.60052 0.6914063 0.184082 0.6757813 0.1777344 0.6923828 0.1606445 -511.7102 -28.90162 -513.0536 -30.11472 -513.4942 -28.90034 0.7143555 0.1601562 0.6923828 0.1606445 0.7084961 0.144043 -510.3867 -27.70427 -511.7055 -28.90773 -511.607 -27.19768 0.4521484 0.5424805 0.472168 0.5449219 0.4716797 0.5537109 260.3815 195.1617 259.7324 194.9967 259.435 196.4336 0.04882813 0.2978516 0.03417969 0.2827148 0.06640625 0.2900391 -516.3524 -39.46935 -518.8713 -40.10667 -517.7518 -38.89726 0.2314453 0.3994141 0.2041016 0.3955078 0.1904297 0.3642578 -561.8552 24.33092 -560.5637 26.60537 -558.1843 26.54038 0.2314453 0.3994141 0.1816406 0.328125 0.2368164 0.3310547 -569.4801 38.05131 -574.3261 38.31238 -569.2733 43.28148 0.1855469 0.3203125 0.152832 0.3017578 0.1586914 0.2973633 -534.1976 -81.47034 -534.6532 -81.11689 -532.1864 -79.67085 0.2368164 0.3310547 0.1816406 0.328125 0.1855469 0.3203125 -574.1966 29.5682 -574.7658 30.14259 -569.9195 29.88595 0.5864258 0.8662109 0.5771484 0.8588867 0.5893555 0.8286133 -584.8148 -5.096877 -582.9034 -3.534878 -582.1917 -3.92346 0.5527344 0.5356445 0.5527344 0.5419922 0.5356445 0.5371094 -521.1453 127.6209 -521.6516 128.7458 -521.1727 128.8468 0.4667969 0.628418 0.4897461 0.609375 0.519043 0.6176758 -534.595 -41.24194 -537.1229 -41.84135 -538.8795 -40.3342 0.6923828 0.1606445 0.6757812 0.1777344 0.6699219 0.1611328 -511.8015 -30.61728 -513.0477 -30.1229 -511.7043 -28.90979 0.7084961 0.144043 0.6923828 0.1606445 0.6928711 0.137207 -509.9195 -28.90738 -511.7048 -28.90866 -510.386 -27.7052 0.4931641 0.5424805 0.4716797 0.5537109 0.472168 0.5449219 7.858527 540.7017 8.421334 541.0649 8.613495 539.3919 0.06640625 0.2900391 0.03417969 0.2827148 0.08544922 0.2832031 -514.8549 -39.94374 -518.8701 -40.1114 -516.3512 -39.47408 0.2392578 0.3959961 0.2314453 0.3994141 0.2368164 0.3310547 -550.0016 55.53692 -549.6222 60.7574 -548.9684 60.38296 0.152832 0.3017578 0.1166992 0.293457 0.1586914 0.2973633 -529.1819 -80.50024 -532.4253 -80.85984 -529.6407 -80.15077 0.5771484 0.8588867 0.5820313 0.8251953 0.5893555 0.8286133 -584.8125 24.95605 -585.2306 25.43887 -582.825 26.42 0.5356445 0.5371094 0.5527344 0.5419922 0.5336914 0.5429687 -536.3351 109.7397 -536.451 111.024 -535.9191 109.9109 0.4667969 0.628418 0.4633789 0.6191406 0.4897461 0.609375 -537.1223 -41.84105 -539.2155 -41.04525 -538.8789 -40.33391 0.4921875 0.5512695 0.4716797 0.5537109 0.4931641 0.5424805 -16.38783 538.6628 -16.64403 540.3272 -15.92835 539.1936 0.6923828 0.1606445 0.6699219 0.1611328 0.6767578 0.1445313 -510.5038 -30.10868 -511.8074 -30.61526 -511.7102 -28.90777 0.6928711 0.137207 0.6923828 0.1606445 0.6767578 0.1445312 -510.4985 -30.10491 -511.7048 -28.904 -509.9195 -28.90273 0.08544922 0.2963867 0.06640625 0.2900391 0.08544922 0.2832031 -512.9921 -34.78347 -514.489 -34.31566 -513.0144 -33.74584 0.2446289 0.3857422 0.2392578 0.3959961 0.2368164 0.3310547 -524.1539 63.49042 -522.9995 68.30903 -522.651 67.45401 0.1586914 0.2973633 0.1166992 0.293457 0.1166992 0.2856445 -532.2534 -82.63719 -532.2865 -82.06457 -529.0432 -81.70422 0.5820312 0.8251953 0.5947266 0.8037109 0.5893555 0.8286133 -185.9904 496.3196 -187.6431 498.0037 -185.7701 496.919 0.5356445 0.5371094 0.5336914 0.5429688 0.5249023 0.5405273 -450.3698 -96.71915 -450.4751 -96.16298 -450.057 -95.997 0.5820313 0.8251953 0.5834961 0.8017578 0.5947266 0.8037109 -188.121 497.6859 -187.7983 498.2178 -186.2472 496.6026 0.5141602 0.5375977 0.4921875 0.5512695 0.4931641 0.5424805 -575.5107 -95.51714 -576.0657 -95.0873 -574.3336 -94.46181 0.5141602 0.5375977 0.5136719 0.5463867 0.4921875 0.5512695 -575.358 -98.52317 -574.3347 -97.56989 -573.6288 -97.88935 0.5249023 0.5405273 0.5336914 0.5429688 0.5136719 0.5463867 -503.0765 -82.26934 -502.6222 -81.01473 -502.5438 -81.57534 0.08837891 0.3046875 0.08544922 0.2963867 0.08544922 0.2832031 -584.6404 25.77868 -584.5525 26.81282 -584.2606 27.39024 0.08837891 0.3046875 0.1166992 0.2856445 0.1166992 0.293457 -548.6328 -66.60058 -548.6168 -67.17393 -550.8232 -65.72308 0.5214844 0.5336914 0.5249023 0.5405273 0.5136719 0.5463867 -444.184 -149.8647 -443.6975 -149.1376 -443.1424 -149.4186 0.5214844 0.5336914 0.5136719 0.5463867 0.5141602 0.5375977 -496.0193 -9.079408 -496.7756 -8.911337 -495.7169 -8.507378 0.08837891 0.3046875 0.08544922 0.2832031 0.1166992 0.2856445 -523.5823 -50.16379 -526.0248 -50.4384 -525.8394 -48.79311 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 0 12 12 13 1 14 4 15 13 16 5 17 14 18 15 19 16 20 17 21 18 22 19 23 20 24 6 25 8 26 9 27 11 28 21 29 14 30 22 31 15 32 18 33 23 34 19 35 0 36 24 37 12 38 13 39 25 40 5 41 26 42 27 43 28 44 29 45 30 46 31 47 32 48 33 49 26 50 31 51 34 52 35 53 36 54 37 55 38 56 39 57 40 58 41 59 42 60 43 61 44 62 45 63 46 64 47 65 0 66 48 67 24 68 25 69 49 70 5 71 32 72 26 73 28 74 29 75 31 76 35 77 28 78 27 79 50 80 51 81 30 82 29 83 36 84 38 85 52 86 53 87 39 88 41 89 42 90 44 91 54 92 55 93 45 94 47 95 24 96 48 97 56 98 57 99 49 100 25 101 58 102 59 103 60 104 61 105 62 106 63 107 64 108 65 109 66 110 67 111 68 112 69 113 27 114 70 115 50 116 51 117 71 118 30 119 58 120 72 121 59 122 62 123 73 124 63 125 74 126 75 127 76 128 77 129 78 130 79 131 42 132 54 133 80 134 81 135 55 136 47 137 74 138 82 139 75 140 78 141 83 142 79 143 48 144 84 145 56 146 57 147 85 148 49 149 86 150 64 151 66 152 67 153 69 154 87 155 88 152 89 156 90 157 91 158 92 159 93 160 94 161 95 162 96 163 97 164 98 165 99 166 70 167 100 168 50 169 51 170 101 171 71 172 102 173 103 174 104 175 105 176 106 177 107 178 108 179 109 180 110 181 111 182 112 183 113 184 114 185 115 186 110 187 111 188 116 189 117 190 118 191 119 192 120 193 121 194 122 195 123 196 56 197 84 198 124 199 125 200 85 201 57 202 126 203 127 204 128 205 129 206 130 207 131 208 128 209 132 210 133 211 134 212 135 213 129 214 89 215 136 216 90 217 91 218 137 219 92 220 94 221 96 222 138 223 139 224 97 225 99 226 70 227 140 228 141 229 142 230 143 231 71 232 104 233 103 234 144 235 145 236 106 237 105 238 109 239 146 240 110 241 111 242 147 243 112 244 114 245 110 246 148 247 149 248 111 249 117 250 118 251 150 252 119 253 122 254 151 255 123 256 124 257 84 258 152 259 153 260 85 261 125 262 126 263 154 264 127 265 130 266 155 267 131 268 126 269 128 270 156 271 157 272 129 273 131 274 158 275 159 276 160 277 161 278 162 279 163 280 156 281 128 282 133 283 134 284 129 285 157 286 164 287 165 288 166 289 167 290 168 291 169 292 170 293 171 294 172 295 173 296 174 297 175 298 176 299 177 300 141 301 142 302 178 303 179 304 110 305 146 306 180 307 181 308 147 309 111 310 148 311 110 312 182 313 183 314 111 315 149 316 184 317 185 318 186 319 187 320 188 321 189 322 152 323 84 324 190 325 191 326 85 327 153 328 192 329 126 330 156 331 157 332 131 333 193 334 159 335 194 336 160 337 161 338 195 339 162 340 165 341 196 342 166 343 167 344 197 345 168 346 172 347 171 348 198 349 199 350 174 351 173 352 176 353 200 354 201 355 202 356 203 357 179 358 204 359 185 360 184 361 189 362 188 363 205 364 110 365 180 366 206 367 207 368 181 369 111 370 182 371 110 372 206 373 207 374 111 375 183 376 208 377 152 378 190 379 191 380 153 381 209 382 210 383 192 384 156 385 157 386 193 387 211 388 160 389 194 390 212 391 213 392 195 393 161 394 214 395 215 396 216 397 217 398 218 399 219 400 220 401 221 402 222 403 223 404 224 405 225 406 214 407 226 408 215 409 218 410 227 411 219 412 228 413 229 414 230 415 231 416 232 417 233 418 228 419 234 420 229 421 232 422 235 423 233 424 222 425 221 426 236 427 237 428 224 429 223 430 238 431 239 432 240 433 241 434 242 435 243 436 244 437 212 438 194 439 195 440 213 441 245 442 246 443 222 444 236 445 237 446 223 447 247 448 248 449 249 450 250 451 251 452 252 453 253 454 244 455 254 456 212 457 213 458 255 459 245 460

-
-
-
- - - - -435.1725 -442.0683 11.09826 -435.1725 -443.0103 8.80563 -433.5513 -442.0683 10.42676 -433.5513 -442.0683 10.42676 -435.1725 -443.0103 8.80563 -435.1725 -442.0683 11.09826 -436.7936 -442.0683 10.42675 -436.7936 -442.0683 10.42675 -432.8798 -442.0683 8.805627 -432.8798 -442.0683 8.805627 -437.4642 -442.167 8.80506 -437.4642 -442.167 8.80506 -433.5513 -442.0683 7.184499 -433.5513 -442.0683 7.184499 -437.4642 -442.167 8.80506 -436.7936 -442.0683 7.184509 -436.7936 -442.0683 7.184509 -437.4642 -442.167 8.80506 -435.1725 -442.0683 6.513014 -435.1725 -442.0683 6.513014 - - - - - - - - - - -1.949329e-007 -0.9249606 0.380063 0.009191659 -0.9999578 1.670151e-007 0.2687361 -0.9249655 0.2687373 -0.2687361 0.9249655 -0.2687373 -0.009191659 0.9999578 -1.670151e-007 1.949329e-007 0.9249606 -0.380063 -0.2482708 -0.9245821 0.2889802 0.2482708 0.9245821 -0.2889802 0.380061 -0.9249614 -1.112479e-005 -0.380061 0.9249614 1.112479e-005 -0.3386945 -0.9202474 0.1960374 0.3386945 0.9202474 -0.1960374 0.2687439 -0.9249603 -0.2687473 -0.2687439 0.9249603 0.2687473 -0.3386016 -0.9202602 -0.1961381 -0.2482301 -0.9245804 -0.2890205 0.2482301 0.9245804 0.2890205 0.3386016 0.9202602 0.1961381 1.023862e-005 -0.9249598 -0.380065 -1.023862e-005 0.9249598 0.380065 - - - - - - - - - - 0.03173828 0.4848633 0.07324219 0.4853516 0.04394531 0.4555664 -501.5705 -126.6462 -503.3267 -128.3953 -503.1687 -125.9217 0.03173828 0.4848633 0.04394531 0.5146484 0.07324219 0.4853516 -354.6824 -183.215 -356.4386 -181.4659 -354.8405 -180.7414 0.04394531 0.4555664 0.07324219 0.4853516 0.07324219 0.4433594 -568.4101 -29.30061 -570.8887 -29.3006 -569.0312 -27.65952 0.04394531 0.5146484 0.07324219 0.5268555 0.07324219 0.4853516 -255.3764 -102.3328 -257.8184 -102.3334 -257.2231 -100.6796 0.07324219 0.4853516 0.1030273 0.4555664 0.07324219 0.4433594 -568.41 46.70269 -569.0311 45.0616 -570.8886 46.7027 0.07324219 0.4853516 0.07324219 0.5268555 0.1030273 0.5146484 -257.2759 118.0012 -257.8713 119.6539 -255.4292 119.6545 0.07324219 0.4853516 0.1152344 0.4848633 0.1030273 0.4555664 -501.5775 142.9659 -503.1756 142.2414 -503.3337 144.715 0.1030273 0.5146484 0.1152344 0.4848633 -354.8413 197.0652 -356.4394 197.7897 -354.6832 199.5387 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 0 6 6 7 1 8 4 9 7 10 5 11 2 12 1 13 8 14 9 15 4 16 3 17 6 18 10 19 1 20 4 21 11 22 7 23 1 24 12 25 8 26 9 27 13 28 4 29 1 30 14 31 15 32 16 33 17 34 4 35 1 36 18 37 12 38 13 39 19 40 4 41 1 20 15 42 18 43 19 44 16 45 4 46

-
-
-
- - - - -382.1757 -442.0683 11.09826 -383.7968 -442.0683 10.42675 -382.1757 -443.0103 8.80563 -382.1757 -443.0103 8.80563 -383.7968 -442.0683 10.42675 -382.1757 -442.0683 11.09826 -384.4683 -442.0683 8.805627 -384.4683 -442.0683 8.805627 -380.5546 -442.0683 10.42677 -380.5546 -442.0683 10.42677 -383.7968 -442.0683 7.184504 -383.7968 -442.0683 7.184504 -379.884 -442.167 8.805055 -379.884 -442.167 8.805055 -382.1757 -442.0683 6.51301 -382.1757 -442.0683 6.51301 -380.5546 -442.0683 7.184504 -379.884 -442.167 8.805055 -379.884 -442.167 8.805055 -380.5546 -442.0683 7.184504 - - - - - - - - - - -1.266991e-006 -0.9249607 0.3800628 -0.268746 -0.92496 0.2687465 -0.009187052 -0.9999578 2.622136e-006 0.009187052 0.9999578 -2.622136e-006 0.268746 0.92496 -0.2687465 1.266991e-006 0.9249607 -0.3800628 -0.380061 -0.9249614 -6.605854e-008 0.380061 0.9249614 6.605854e-008 0.248283 -0.9245774 0.2889846 -0.248283 0.9245774 -0.2889846 -0.2687447 -0.9249601 -0.2687471 0.2687447 0.9249601 0.2687471 0.3387042 -0.9202424 0.1960447 -0.3387042 0.9202424 -0.1960447 0 -0.9249601 -0.3800643 -0 0.9249601 0.3800643 0.2482431 -0.9245755 -0.2890252 0.3386104 -0.920255 -0.196147 -0.3386104 0.920255 0.196147 -0.2482431 0.9245755 0.2890252 - - - - - - - - - - 0.03173828 0.4848633 0.04394531 0.4555664 0.07324219 0.4853516 -302.425 -179.8788 -304.1812 -178.1298 -302.583 -177.4053 0.04394531 0.4555664 0.07324219 0.4433594 0.07324219 0.4853516 -185.1268 -77.6157 -187.6054 -77.6157 -186.9843 -75.97461 0.03173828 0.4848633 0.07324219 0.4853516 0.04394531 0.5146484 -449.3324 -129.9803 -451.0887 -131.7294 -450.9306 -129.2559 0.07324219 0.4853516 0.07324219 0.4433594 0.1030273 0.4555664 -186.9844 93.37152 -187.6056 95.01261 -185.1269 95.01262 0.04394531 0.5146484 0.07324219 0.4853516 0.07324219 0.5268555 -509.2308 -46.99122 -511.6727 -46.99063 -509.826 -45.33741 0.07324219 0.4853516 0.1030273 0.4555664 0.1152344 0.4848633 -302.5845 193.7287 -304.1827 194.4532 -302.4265 196.2023 0.07324219 0.4853516 0.1030273 0.5146484 0.07324219 0.5268555 -509.204 64.29787 -509.7993 62.64522 -511.646 64.29846 0.07324219 0.4853516 0.1152344 0.4848633 0.1030273 0.5146484 -449.3327 146.3037 -450.9309 145.5792 -451.0889 148.0528 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 1 6 6 7 2 8 3 9 7 10 4 11 0 12 2 13 8 14 9 15 3 16 5 17 2 18 6 19 10 20 11 21 7 22 3 23 8 24 2 25 12 26 13 27 3 28 9 29 2 30 10 31 14 32 15 33 11 34 3 35 2 36 16 37 17 38 18 39 19 40 3 41 2 42 14 43 16 44 19 45 15 46 3 47

-
-
-
- - - - -382.806 -128.8425 34.57235 -378.1736 -130.3075 30.4984 -383.4254 -128.6942 30.54292 -383.4254 -128.6942 30.54292 -378.1736 -130.3075 30.4984 -382.806 -128.8425 34.57235 -383.4254 -128.6942 30.54292 -383.2883 -129.057 31.61401 -382.806 -128.8425 34.57235 -382.806 -128.8425 34.57235 -383.2883 -129.057 31.61401 -383.4254 -128.6942 30.54292 -378.9611 -129.7131 34.57236 -378.9611 -129.7131 34.57236 -382.8905 -129.3043 34.56457 -382.8905 -129.3043 34.56457 -382.2404 -129.0384 38.38861 -382.2404 -129.0384 38.38861 -378.9611 -129.7131 34.57236 -377.3074 -131.5182 34.57235 -378.1736 -130.3075 30.4984 -378.1736 -130.3075 30.4984 -377.3074 -131.5182 34.57235 -378.9611 -129.7131 34.57236 -382.3762 -129.6239 38.37814 -382.3762 -129.6239 38.37814 -382.2404 -129.0384 38.38861 -382.2404 -129.0384 38.38861 -378.9611 -129.7628 38.38861 -378.9611 -129.7628 38.38861 -378.9611 -129.7628 38.38861 -378.9611 -129.7628 38.38861 -378.1736 -130.3075 30.4984 -377.3074 -131.5182 34.57235 -376.9643 -133.0005 34.57235 -376.9643 -133.0005 34.57235 -377.3074 -131.5182 34.57235 -378.1736 -130.3075 30.4984 -382.2383 -129.7095 39.40015 -382.2383 -129.7095 39.40015 -382.0696 -129.0976 39.54176 -382.0696 -129.0976 39.54176 -377.3267 -132.178 38.38861 -377.3267 -132.178 38.38861 -376.1318 -135.9337 30.5307 -376.1318 -135.9337 30.5307 -382.0696 -129.0976 39.54176 -382.0696 -129.0976 39.54176 -381.9484 -129.4772 40.74392 -381.9484 -129.4772 40.74392 -379.0084 -130.1819 40.70199 -379.0084 -130.1819 40.70199 -376.9087 -134.0358 38.3886 -376.9087 -134.0358 38.3886 -376.8934 -133.3792 34.65106 -376.8934 -133.3792 34.65106 -381.9484 -129.4772 40.74392 -381.9484 -129.4772 40.74392 -379.0084 -130.1819 40.70199 -379.0084 -130.1819 40.70199 -377.6743 -132.7459 42.02364 -377.6743 -132.7459 42.02364 -376.2734 -138.0606 36.70326 -376.2734 -138.0606 36.70326 -381.2825 -129.8343 41.88211 -381.2825 -129.8343 41.88211 -378.9299 -131.1013 42.02365 -378.9299 -131.1013 42.02365 -376.8794 -138.0708 41.8849 -376.8794 -138.0708 41.8849 -376.8494 -134.3237 38.05101 -376.8494 -134.3237 38.05101 -378.9299 -131.1013 42.02365 -379.0084 -130.1819 40.70199 -381.2825 -129.8343 41.88211 -381.2825 -129.8343 41.88211 -379.0084 -130.1819 40.70199 -378.9299 -131.1013 42.02365 -376.6089 -139.0248 40.52024 -376.6089 -139.0248 40.52024 -376.7714 -138.8112 41.54652 -376.7714 -138.8112 41.54652 - - - - - - - - - - 0.2447721 0.9694211 -0.01758989 0.2581197 0.9646368 -0.05338561 0.2935689 0.9558863 -0.009930291 -0.2935689 -0.9558863 0.009930291 -0.2581197 -0.9646368 0.05338561 -0.2447721 -0.9694211 0.01758989 -0.9844447 0.08384827 0.1543962 -0.9840746 0.08881902 0.1539754 -0.9736511 0.1745848 0.1467098 0.9736511 -0.1745848 -0.1467098 0.9840746 -0.08881902 -0.1539754 0.9844447 -0.08384827 -0.1543962 0.2195046 0.9745422 -0.04566332 -0.2195046 -0.9745422 0.04566332 -0.9735956 0.1754943 0.1459906 0.9735956 -0.1754943 -0.1459906 0.2171101 0.9760084 0.01645563 -0.2171101 -0.9760084 -0.01645563 0.7371009 0.6753199 0.02500442 0.7595159 0.6489033 0.04538788 0.73662 0.6748792 0.04391967 -0.73662 -0.6748792 -0.04391967 -0.7595159 -0.6489033 -0.04538788 -0.7371009 -0.6753199 -0.02500442 -0.9639773 0.2190079 0.1509416 0.9639773 -0.2190079 -0.1509416 -0.9630343 0.2222041 0.1522837 0.9630343 -0.2222041 -0.1522837 0.2296501 0.9693188 0.08764641 -0.2296501 -0.9693188 -0.08764641 0.8088108 0.5809065 0.09150266 -0.8088108 -0.5809065 -0.09150266 0.9467611 0.3133342 -0.07392679 0.9724168 0.2250717 -0.06122327 0.971414 0.2373856 -0.001735586 -0.971414 -0.2373856 0.001735586 -0.9724168 -0.2250717 0.06122327 -0.9467611 -0.3133342 0.07392679 -0.9610438 0.2263518 0.1586178 0.9610438 -0.2263518 -0.1586178 0.2614622 0.9526489 0.1552339 -0.2614622 -0.9526489 -0.1552339 0.9163643 0.386659 0.1037848 -0.9163643 -0.386659 -0.1037848 0.9671368 0.253905 0.01336693 -0.9671368 -0.253905 -0.01336693 -0.960326 0.2273835 0.1614643 0.960326 -0.2273835 -0.1614643 0.2561909 0.944538 0.205461 -0.2561909 -0.944538 -0.205461 0.8162143 0.546108 0.188574 -0.8162143 -0.546108 -0.188574 0.9816424 0.1664342 0.09315533 -0.9816424 -0.1664342 -0.09315533 0.9823736 0.1794735 0.05226235 -0.9823736 -0.1794735 -0.05226235 -0.9596027 0.2256607 0.168047 0.9596027 -0.2256607 -0.168047 0.2318484 0.9568845 0.1749809 -0.2318484 -0.9568845 -0.1749809 0.9189652 0.347971 0.1855239 -0.9189652 -0.347971 -0.1855239 0.9875042 0.1336785 0.08345936 -0.9875042 -0.1336785 -0.08345936 0.2321184 0.9586122 0.1648746 -0.2321184 -0.9586122 -0.1648746 0.7442911 0.5681913 0.3509836 -0.7442911 -0.5681913 -0.3509836 0.9846733 0.1130494 0.1328097 -0.9846733 -0.1130494 -0.1328097 0.989316 0.1333952 0.05881883 -0.989316 -0.1333952 -0.05881883 0.3832283 0.7687741 0.5119789 0.3832283 0.7687741 0.5119789 0.3832283 0.7687741 0.5119789 -0.3832283 -0.7687741 -0.5119789 -0.3832283 -0.7687741 -0.5119789 -0.3832283 -0.7687741 -0.5119789 0.9871882 0.1054822 0.11972 -0.9871882 -0.1054822 -0.11972 0.986961 0.08022377 0.1395428 -0.986961 -0.08022377 -0.1395428 - - - - - - - - - - 0.5332031 0.3686523 0.4516602 0.2861328 0.5498047 0.2978516 328.7467 28.20193 323.2527 28.15741 328.1111 32.23156 0.5498047 0.2978516 0.5507813 0.3178711 0.5332031 0.3686523 160.8649 -23.04455 161.1195 -26.03879 160.7696 -27.12288 0.4667969 0.3603516 0.4516602 0.2861328 344.9012 13.56616 340.0596 9.472047 340.959 13.56617 0.5332031 0.3686523 0.5507812 0.3178711 0.5410156 0.3706055 195.1764 -17.46606 195.0036 -20.44858 194.7069 -17.4582 0.4838867 0.418457 0.4541016 0.3740234 0.4936523 0.3789063 344.9012 38.20797 340.959 38.20798 344.3063 42.0248 0.4667969 0.3603516 0.4243164 0.3583984 159.3882 46.58161 157.9104 50.6595 160.3585 50.6595 0.5332031 0.3686523 0.5410156 0.3706055 0.5283203 0.4389648 195.3996 -13.61669 195.1763 -17.47156 194.7068 -17.4637 0.5332031 0.3686523 0.5283203 0.4389648 0.5175781 0.4355469 211.1148 -15.0375 211.7159 -15.04809 211.0502 -18.89987 0.4492187 0.4145508 0.4541016 0.3740234 0.4838867 0.418457 345.4063 41.03572 342.0587 37.21916 342.048 41.03572 0.4541016 0.3740234 0.4492188 0.4145508 0.4287109 0.3725586 157.9104 37.79951 160.3219 41.61592 160.3585 37.79952 0.4516602 0.2861328 0.4243164 0.3583984 0.3969727 0.3579102 -44.57153 -20.89719 -43.05 -20.89719 -41.6752 -25.01095 0.5283203 0.4389648 0.5249023 0.4570312 211.8028 -12.07518 211.7502 -13.10865 211.1492 -13.09807 0.5126953 0.4560547 0.4584961 0.4287109 0.5175781 0.4355469 345.4063 42.16966 342.048 42.16966 345.2268 43.323 0.4492188 0.4145508 0.421875 0.4135742 0.4287109 0.3725586 102.5433 73.24179 102.0076 77.07749 104.9239 77.0775 0.4287109 0.3725586 0.421875 0.4135742 0.4125977 0.3725586 -44.57153 51.97072 -43.68846 55.79066 -43.05 51.97072 0.4516602 0.2861328 0.3969727 0.3579102 0.3427734 0.2851562 0.4215008 9.022086 3.462761 13.06957 6.406695 8.989738 0.5175781 0.4355469 0.5249023 0.4570313 0.5126953 0.4560547 214.2377 -13.59 214.8721 -13.73332 214.2198 -14.7571 0.5048828 0.4765625 0.5126953 0.4560547 324.7134 100.5623 321.5499 99.36776 324.4825 101.8075 0.4584961 0.4287109 0.449707 0.4702148 0.4125977 0.4267578 102.0076 83.60255 104.6033 85.93212 104.9239 83.60255 0.421875 0.4135742 0.4013672 0.4135742 0.4125977 0.3725586 -47.01943 52.52035 -48.0417 56.34052 -46.13741 56.34053 0.3969727 0.3579102 0.3901367 0.359375 0.3427734 0.2851562 -59.62289 54.09324 -56.96875 58.22097 -56.58348 58.14212 0.5126953 0.4560547 0.5249023 0.4570313 0.5146484 0.4794922 213.4733 -17.33562 213.7657 -18.69876 213.1314 -18.55512 0.5048828 0.4765625 0.449707 0.4702148 0.4584961 0.4287109 337.7381 76.11054 337.6854 78.46146 340.7086 78.50407 0.449707 0.4702148 0.4052734 0.4921875 0.4125977 0.4267578 86.352 100.9028 86.05224 104.5861 88.9345 103.2469 0.4125977 0.4267578 0.4052734 0.4921875 0.378418 0.4267578 -48.04174 88.34215 -46.61527 92.00666 -46.13745 88.34215 0.4125977 0.3725586 0.4013672 0.4135742 0.4082031 0.3735352 -58.76053 49.50669 -59.40206 53.24688 -58.37525 49.42792 0.3901367 0.359375 0.3056641 0.3964844 0.3427734 0.2851563 -71.79241 61.67908 -73.86659 67.87119 -69.14714 65.81249 0.4897461 0.4956055 0.449707 0.4702148 0.5048828 0.4765625 340.7496 75.7544 337.7264 75.71189 340.0184 76.90839 0.449707 0.4702148 0.4418945 0.4941406 0.4052734 0.4921875 123.6564 172.9862 125.7256 172.9862 126.504 171.5748 0.4052734 0.4921875 0.3071289 0.4897461 0.378418 0.4267578 -78.51161 98.93265 -82.50898 102.472 -77.12513 102.6125 0.4082031 0.3735352 0.4013672 0.4135742 0.3984375 0.409668 -70.45763 51.00419 -70.16392 51.34197 -69.51879 47.6024 0.3901367 0.359375 0.3735352 0.4204102 0.3056641 0.3964844 -82.88583 47.22624 -79.10493 48.57447 -78.16386 45.1733 0.4418945 0.4941406 0.449707 0.4702148 0.4897461 0.4956055 283.3114 182.5564 281.1211 181.1826 280.6407 182.7212 0.378418 0.4267578 0.3071289 0.4897461 0.2895508 0.465332 -96.44117 86.48634 -95.46314 87.8607 -91.44974 84.33952 0.378418 0.4267578 0.2895508 0.465332 0.3735352 0.4204102 -96.51356 73.00219 -101.2154 75.48158 -96.22125 73.34117 0.3735352 0.4204102 0.2895508 0.465332 0.3056641 0.3964844 -95.23822 81.14184 -96.15891 84.98421 -91.46036 82.49855 0.3071289 0.4897461 0.293457 0.4838867 0.2895508 0.465332 -108.0562 94.07581 -107.8302 95.11223 -107.0835 95.45394 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 1 13 0 0 5 14 4 15 13 16 8 17 7 18 14 19 15 20 10 21 9 22 16 23 12 24 0 25 5 26 13 27 17 28 18 29 19 30 20 13 21 31 22 32 23 33 8 34 14 35 24 36 25 37 15 38 9 39 8 40 24 41 26 42 27 43 25 44 9 45 28 46 12 47 16 48 17 49 13 50 29 51 18 52 30 53 19 54 22 55 31 56 23 57 32 58 33 59 34 60 35 61 36 62 37 63 26 42 24 64 38 65 39 66 25 67 27 68 40 69 28 70 16 71 17 72 29 73 41 74 30 75 42 76 19 77 22 78 43 79 31 80 33 81 42 82 34 83 35 84 43 85 36 86 32 87 34 88 44 89 45 90 35 91 37 92 26 93 38 94 46 95 47 96 39 97 27 98 48 99 28 70 40 100 41 101 29 102 49 103 30 104 50 105 42 106 43 107 51 108 31 109 42 110 52 111 34 112 35 113 53 114 43 115 34 116 54 117 44 118 45 119 55 120 35 121 46 122 38 123 56 124 57 125 39 126 47 127 48 128 58 129 28 130 29 131 59 132 49 133 50 134 60 135 42 136 43 137 61 138 51 139 42 140 60 141 52 142 53 143 61 144 43 145 34 146 52 147 54 148 55 149 53 150 35 151 54 152 62 153 44 154 45 155 63 156 55 157 64 158 58 159 48 160 49 161 59 162 65 163 50 164 66 165 60 166 61 167 67 168 51 169 60 170 68 171 52 172 53 173 69 174 61 175 54 176 52 177 70 178 71 179 53 180 55 181 54 182 70 183 62 184 63 185 71 186 55 187 72 188 73 189 74 190 75 191 76 192 77 193 52 194 68 195 78 196 79 197 69 198 53 199 52 200 78 201 70 202 71 203 79 204 53 205 70 206 78 207 62 208 63 209 79 210 71 211 68 212 80 213 78 214 79 215 81 216 69 217

-
-
-
- - - - -435.1102 -129.0384 38.38861 -434.5445 -128.8425 34.57236 -438.3895 -129.7628 38.38861 -438.3895 -129.7628 38.38861 -434.5445 -128.8425 34.57236 -435.1102 -129.0384 38.38861 -435.281 -129.0976 39.54176 -435.281 -129.0976 39.54176 -434.5445 -128.8425 34.57236 -435.1102 -129.0384 38.38861 -434.9744 -129.6239 38.37814 -434.9744 -129.6239 38.37814 -435.1102 -129.0384 38.38861 -434.5445 -128.8425 34.57236 -438.3895 -129.7131 34.57236 -438.3895 -129.7131 34.57236 -435.281 -129.0976 39.54176 -435.1122 -129.7095 39.40015 -435.1122 -129.7095 39.40015 -435.281 -129.0976 39.54176 -438.3421 -130.1819 40.70199 -438.3421 -130.1819 40.70199 -434.4602 -129.3043 34.56457 -434.4602 -129.3043 34.56457 -433.9253 -128.6942 30.54292 -433.9253 -128.6942 30.54292 -438.3895 -129.7131 34.57236 -440.0432 -131.5182 34.57236 -438.3895 -129.7628 38.38861 -438.3895 -129.7628 38.38861 -440.0432 -131.5182 34.57236 -438.3895 -129.7131 34.57236 -435.4022 -129.4772 40.74392 -435.4022 -129.4772 40.74392 -435.4022 -129.4772 40.74392 -435.4022 -129.4772 40.74392 -440.0239 -132.178 38.38861 -438.3421 -130.1819 40.70199 -438.3421 -130.1819 40.70199 -440.0239 -132.178 38.38861 -433.9253 -128.6942 30.54292 -433.9253 -128.6942 30.54292 -439.1769 -130.3076 30.4984 -439.1769 -130.3076 30.4984 -439.1769 -130.3076 30.4984 -439.1769 -130.3076 30.4984 -436.0681 -129.8343 41.88211 -436.0681 -129.8343 41.88211 -439.6762 -132.746 42.02364 -439.6762 -132.746 42.02364 -434.0623 -129.057 31.61402 -434.0623 -129.057 31.61402 -439.1769 -130.3076 30.4984 -441.2187 -135.9337 30.53071 -440.0432 -131.5182 34.57236 -440.0432 -131.5182 34.57236 -441.2187 -135.9337 30.53071 -439.1769 -130.3076 30.4984 -440.3863 -133.0005 34.57236 -440.3863 -133.0005 34.57236 -438.4207 -131.1013 42.02365 -436.0681 -129.8343 41.88211 -438.3421 -130.1819 40.70199 -438.3421 -130.1819 40.70199 -436.0681 -129.8343 41.88211 -438.4207 -131.1013 42.02365 -438.4207 -131.1013 42.02365 -438.4207 -131.1013 42.02365 -440.4418 -134.0358 38.3886 -440.4418 -134.0358 38.3886 -440.4711 -138.0708 41.8849 -440.4711 -138.0708 41.8849 -440.4571 -133.3792 34.65106 -440.4571 -133.3792 34.65106 -440.5011 -134.3237 38.05101 -440.5011 -134.3237 38.05101 -440.7416 -139.0248 40.52025 -440.7416 -139.0248 40.52025 -441.0772 -138.0606 36.70326 -441.0772 -138.0606 36.70326 -440.5791 -138.8112 41.54653 -440.5791 -138.8112 41.54653 - - - - - - - - - - -0.2156707 0.9762974 0.01815026 -0.2197688 0.9755198 0.007921669 -0.2385618 0.9678538 0.0796702 0.2385618 -0.9678538 -0.0796702 0.2197688 -0.9755198 -0.007921669 0.2156707 -0.9762974 -0.01815026 -0.2331946 0.9623039 0.1399697 0.2331946 -0.9623039 -0.1399697 0.9724261 0.1774449 0.1513302 0.9630416 0.222192 0.1522548 0.9639972 0.2189581 0.1508868 -0.9639972 -0.2189581 -0.1508868 -0.9630416 -0.222192 -0.1522548 -0.9724261 -0.1774449 -0.1513302 -0.2438184 0.9696164 -0.01991386 0.2438184 -0.9696164 0.01991386 0.9602828 0.2275501 0.1614866 0.9610136 0.2264802 0.1586176 -0.9610136 -0.2264802 -0.1586176 -0.9602828 -0.2275501 -0.1614866 -0.2528596 0.9482908 0.1918506 0.2528596 -0.9482908 -0.1918506 0.9735244 0.172126 0.150409 -0.9735244 -0.172126 -0.150409 -0.2578437 0.9652917 -0.04157687 0.2578437 -0.9652917 0.04157687 -0.7371197 0.6752995 0.02500522 -0.7595298 0.6488873 0.04538501 -0.8088135 0.5809017 0.09150897 0.8088135 -0.5809017 -0.09150897 0.7595298 -0.6488873 -0.04538501 0.7371197 -0.6752995 -0.02500522 0.9595608 0.2258299 0.1680592 -0.9595608 -0.2258299 -0.1680592 -0.2298411 0.9450176 0.2326259 0.2298411 -0.9450176 -0.2326259 -0.9163695 0.3866454 0.1037894 -0.8162149 0.5461063 0.1885766 0.8162149 -0.5461063 -0.1885766 0.9163695 -0.3866454 -0.1037894 0.9858279 0.08582357 0.1441445 -0.9858279 -0.08582357 -0.1441445 -0.2920192 0.9528399 -0.08258876 0.2920192 -0.9528399 0.08258876 -0.7366389 0.674859 0.04391327 0.7366389 -0.674859 -0.04391327 -0.2321323 0.9586052 0.1648959 0.2321323 -0.9586052 -0.1648959 -0.9189692 0.3479622 0.1855206 0.9189692 -0.3479622 -0.1855206 0.9903652 0.02699497 0.1358236 -0.9903652 -0.02699497 -0.1358236 -0.9356517 0.3389845 -0.09821068 -0.9703953 0.2414577 0.005582244 -0.9636987 0.2668632 -0.008302345 0.9636987 -0.2668632 0.008302345 0.9703953 -0.2414577 -0.005582244 0.9356517 -0.3389845 0.09821068 -0.9760273 0.213222 0.04367064 0.9760273 -0.213222 -0.04367064 -0.3832283 0.768784 0.511964 -0.3832283 0.768784 0.511964 -0.3832283 0.768784 0.511964 0.3832283 -0.768784 -0.511964 0.3832283 -0.768784 -0.511964 0.3832283 -0.768784 -0.511964 -0.7443129 0.5681844 0.3509483 0.7443129 -0.5681844 -0.3509483 -0.981682 0.1664024 0.09279377 0.981682 -0.1664024 -0.09279377 -0.9846739 0.1130469 0.1328073 0.9846739 -0.1130469 -0.1328073 -0.9822191 0.1800117 0.05330482 0.9822191 -0.1800117 -0.05330482 -0.9891827 0.1346018 0.05830808 0.9891827 -0.1346018 -0.05830808 -0.9871877 0.1054814 0.1197248 0.9871877 -0.1054814 -0.1197248 -0.9875045 0.1336758 0.08345991 0.9875045 -0.1336758 -0.08345991 -0.9869611 0.08022153 0.1395433 0.9869611 -0.08022153 -0.1395433 - - - - - - - - - - 0.4838867 0.418457 0.4936523 0.3789062 0.4492187 0.4145508 456.0597 38.96539 452.1068 35.14852 452.7013 38.96539 0.5126953 0.4560547 0.5175781 0.4355469 0.4584961 0.4287109 456.0597 38.96611 452.7013 38.96611 452.8809 40.11945 0.5332031 0.3686523 0.5175781 0.4355469 0.5283203 0.4389648 -29.27125 107.7037 -28.67025 107.7143 -28.60557 103.852 0.4492187 0.4145508 0.4936523 0.3789062 0.4541016 0.3740234 456.2113 34.94679 452.269 34.94679 456.2222 38.76335 0.5175781 0.4355469 0.5126953 0.4560547 0.5249023 0.4570313 -25.11683 108.8122 -24.48247 108.9555 -24.46457 107.7884 0.449707 0.4702148 0.5126953 0.4560547 0.4584961 0.4287109 457.1601 38.72538 453.988 39.89704 457.2288 41.0759 0.5175781 0.4355469 0.5249023 0.4570313 0.5283203 0.4389648 -29.22516 105.1812 -29.27785 106.2146 -28.62416 105.1918 0.5332031 0.3686523 0.5410156 0.3706055 -50.21574 99.96502 -50.43906 103.8199 -49.74634 99.97289 0.5332031 0.3686523 0.5498047 0.2978516 0.4667969 0.3603516 456.2113 34.63056 451.6323 30.60112 452.269 34.63056 0.4541016 0.3740234 0.4287109 0.3725586 0.4492187 0.4145508 391.8174 36.31324 394.2288 32.49684 391.7808 32.49684 0.5126953 0.4560547 0.5146484 0.4794922 0.5249023 0.4570312 -26.58084 115.0135 -26.28833 116.3767 -25.94655 115.1572 0.5048828 0.4765625 0.5126953 0.4560547 0.449707 0.4702148 456.7047 45.32451 453.4738 44.11873 453.6815 45.36808 0.4584961 0.4287109 0.4125977 0.4267578 0.449707 0.4702148 353.4864 6.287885 356.082 3.958319 353.1658 3.958319 0.5498047 0.2978516 0.5332031 0.3686523 0.5410156 0.3706055 -50.29198 104.3531 -49.82258 104.361 -49.78631 100.2817 0.4667969 0.3603516 0.5498047 0.2978516 0.4516602 0.2861328 458.0826 30.73281 452.5886 30.77748 457.1555 34.82073 0.4667969 0.3603516 0.4516602 0.2861328 0.4243164 0.3583984 394.2288 24.19199 392.751 20.1141 391.7808 24.19199 0.4492187 0.4145508 0.4287109 0.3725586 0.421875 0.4135742 356.082 8.993274 355.5464 5.157573 353.1658 8.993274 0.4897461 0.4956055 0.5048828 0.4765625 0.449707 0.4702148 456.6678 43.99671 453.6446 44.03921 454.3759 45.19321 0.449707 0.4702148 0.4125977 0.4267578 0.4052734 0.4921875 344.3983 -7.582111 344.0985 -11.26546 341.516 -8.921332 0.5498047 0.2978516 0.5410156 0.3706055 0.5507812 0.3178711 -117.182 90.73269 -117.4183 93.71085 -116.8231 89.65158 0.4516602 0.2861328 0.3427734 0.2851563 0.4243164 0.3583984 273.5454 70.6379 278.0973 66.57661 272.1122 66.54415 0.4287109 0.3725586 0.4125977 0.3725586 0.421875 0.4135742 228.0075 20.85076 228.8905 17.03083 227.369 17.03083 0.4418945 0.4941406 0.4897461 0.4956055 0.449707 0.4702148 450.3803 -5.50677 448.1901 -4.132948 450.8608 -3.968182 0.449707 0.4702148 0.4052734 0.4921875 0.4418945 0.4941406 370.2329 -55.03275 372.3021 -55.03276 369.4545 -56.44418 0.4125977 0.4267578 0.378418 0.4267578 0.4052735 0.4921875 225.9959 -8.919565 227.4223 -12.58408 225.518 -12.58407 0.4243164 0.3583984 0.3427734 0.2851562 0.3969727 0.3579102 228.8905 19.80565 231.9358 15.76124 227.369 19.80565 0.421875 0.4135742 0.4125977 0.3725586 0.4013672 0.4135742 227.4224 20.21134 226.4001 16.39117 225.5181 20.21134 0.378418 0.4267578 0.3071289 0.4897461 199.9006 -23.33858 195.9032 -26.87795 194.5168 -23.19812 0.3969727 0.3579102 0.3427734 0.2851563 0.3901367 0.359375 217.0335 10.33615 219.6876 6.208422 216.6483 10.25731 0.4125977 0.3725586 0.3984375 0.409668 0.4013672 0.4135742 205.6984 25.61912 205.9922 25.28136 204.6684 21.80104 0.378418 0.4267578 0.2895508 0.465332 0.3071289 0.4897461 186.0238 -8.552396 187.0019 -9.926763 182.0104 -12.07358 0.3901367 0.359375 0.3427734 0.2851562 0.3056641 0.3964844 209.1704 3.863955 207.0962 -2.328144 204.451 1.80526 0.4125977 0.3725586 0.4082031 0.3735352 0.3984375 0.409668 216.3709 21.52249 215.4356 18.11974 215.0503 18.04098 0.378418 0.4267578 0.3735352 0.4204102 0.2895508 0.465332 181.8164 1.902998 177.1145 -0.5764157 176.8222 -0.2374307 0.3071289 0.4897461 0.2895508 0.465332 0.293457 0.4838867 174.0481 -18.56846 174.2741 -19.60488 173.3014 -18.22674 0.3901367 0.359375 0.3056641 0.3964844 0.3735352 0.4204102 195.8808 26.83858 199.6616 25.49034 194.9397 23.4374 0.3735352 0.4204102 0.3056641 0.3964844 0.2895508 0.465332 187.307 -8.238927 186.3863 -12.08131 182.6085 -10.72459 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 0 7 2 8 3 9 5 10 7 11 8 12 9 13 10 14 11 15 12 16 13 17 2 18 1 19 14 20 15 21 4 22 3 23 9 24 16 25 17 26 18 27 19 28 12 29 20 30 6 31 2 32 3 33 7 34 21 35 9 36 17 37 10 38 11 39 18 40 12 41 8 42 10 14 22 43 23 44 11 45 13 46 1 47 24 48 14 49 15 50 25 51 4 52 26 53 27 54 28 55 29 56 30 57 31 58 16 59 32 60 17 61 18 62 33 63 19 64 34 65 6 66 20 67 21 68 7 69 35 70 28 71 36 72 37 73 38 74 39 75 29 76 40 77 8 78 22 79 23 80 13 81 41 82 14 83 24 84 42 85 43 86 25 87 15 88 26 89 44 90 27 91 30 92 45 93 31 94 28 95 27 96 36 97 39 98 30 99 29 100 46 101 34 102 20 103 21 104 35 105 47 106 37 107 36 108 48 109 49 110 39 111 38 112 40 113 22 114 50 115 51 116 23 117 41 118 52 119 53 120 54 121 55 122 56 123 57 124 54 125 58 126 36 127 39 128 59 129 55 130 60 131 61 132 62 133 63 134 64 135 65 136 37 137 48 138 66 139 67 140 49 141 38 142 36 143 68 144 48 145 49 146 69 147 39 148 54 149 53 150 58 151 59 152 56 153 55 154 36 155 58 156 68 157 69 158 59 159 39 160 48 109 68 161 70 162 71 163 69 164 49 165 58 166 53 167 72 168 73 169 56 170 59 171 58 172 74 173 68 174 69 175 75 176 59 177 68 178 76 179 70 180 71 181 77 182 69 183 72 184 53 185 78 186 79 187 56 188 73 189 58 190 72 191 74 192 75 193 73 194 59 195 68 196 74 197 76 198 77 199 75 200 69 201 70 202 76 203 80 204 81 205 77 206 71 207 72 208 78 209 74 210 75 211 79 212 73 213 74 214 78 215 76 216 77 217 79 218 75 219

-
-
-
- - - - -351.4816 -170.9663 61.2049 -350.6383 -190.5231 61.48378 -350.4376 -189.5454 60.81264 -350.4376 -189.5454 60.81264 -350.6383 -190.5231 61.48378 -351.4816 -170.9663 61.2049 -351.6867 -170.4768 61.72248 -351.6867 -170.4768 61.72248 -352.7591 -195.7767 69.01517 -352.7591 -195.7767 69.01517 -353.7332 -172.4184 67.86557 -353.7332 -172.4184 67.86557 -355.3093 -200.551 75.48403 -355.3093 -200.551 75.48403 -355.8739 -175.8753 74.17914 -355.8739 -175.8753 74.17914 -355.7009 -200.5523 76.38817 -355.7009 -200.5523 76.38817 -356.3008 -177.3993 75.75389 -356.3008 -177.3993 75.75389 -356.0926 -199.8268 76.96983 -356.0926 -199.8268 76.96983 -356.4985 -179.8702 76.47474 -356.4985 -179.8702 76.47474 - - - - - - - - - - 0.9425695 0.0453642 0.3309151 0.9492669 0.04604548 0.3110821 0.9370648 0.04534477 0.3461985 -0.9370648 -0.04534477 -0.3461985 -0.9492669 -0.04604548 -0.3110821 -0.9425695 -0.0453642 -0.3309151 0.9438029 0.05030303 0.3266582 -0.9438029 -0.05030303 -0.3266582 0.9253991 0.05520528 0.3749519 -0.9253991 -0.05520528 -0.3749519 0.9391753 0.05129041 0.3395865 -0.9391753 -0.05129041 -0.3395865 0.9180441 0.04618786 0.3937788 -0.9180441 -0.04618786 -0.3937788 0.9437704 0.0378046 0.3284329 -0.9437704 -0.0378046 -0.3284329 0.8978363 0.039984 0.4385102 -0.8978363 -0.039984 -0.4385102 0.9535142 0.03234106 0.2996076 -0.9535142 -0.03234106 -0.2996076 0.8507587 0.03632605 0.5242996 -0.8507587 -0.03632605 -0.5242996 0.9356647 0.02776201 0.3517965 -0.9356647 -0.02776201 -0.3517965 - - - - - - - - - - 0.40625 0.5083008 0.1445313 0.5161133 0.1572266 0.5073242 -172.386 181.4029 -173.3528 182.1183 -153.7781 181.821 0.4125977 0.5151367 0.1445312 0.5161133 0.40625 0.5083008 -153.8735 176.5672 -173.4483 176.8627 -153.3747 177.1157 0.4125977 0.5151367 0.07568359 0.6186523 0.1445312 0.5161133 -173.2974 166.6682 -178.442 174.5645 -153.2239 166.9184 0.4125977 0.5151367 0.387207 0.6083984 0.07568359 0.6186523 -174.6544 185.6172 -151.2793 184.3988 -149.4616 177.8879 0.387207 0.6083984 0.01318359 0.7104492 0.07568359 0.6186523 -173.0614 209.9815 -177.6647 217.0492 -149.6883 208.7255 0.387207 0.6083984 0.3417969 0.6923828 0.01318359 0.7104492 -185.4532 194.6133 -160.7756 193.2257 -157.4117 186.5117 0.3417969 0.6923828 0.01806641 0.7216797 0.01318359 0.7104492 -184.0873 213.8927 -184.0707 214.8779 -159.4116 212.4709 0.3417969 0.6923828 0.3217773 0.7172852 0.01806641 0.7216797 -188.2608 178.496 -165.1008 177.833 -163.5924 176.1871 0.3217773 0.7172852 0.02294922 0.7324219 0.01806641 0.7216797 -185.1255 256.5686 -184.384 257.2527 -161.9681 255.8225 0.3217773 0.7172852 0.2895508 0.7270508 0.02294922 0.7324219 -189.178 199.3515 -169.2181 198.8226 -166.7542 198.0526 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 1 7 0 8 5 9 4 10 7 11 6 12 8 13 1 14 4 15 9 16 7 17 6 18 10 19 8 20 9 21 11 22 7 23 10 24 12 25 8 26 9 27 13 28 11 29 10 30 14 31 12 32 13 33 15 34 11 35 14 36 16 37 12 38 13 39 17 40 15 41 14 42 18 43 16 44 17 45 19 46 15 47 18 48 20 49 16 50 17 51 21 52 19 53 18 54 22 55 20 56 21 57 23 58 19 59

-
-
-
- - - - -354.8967 -207.6018 74.47415 -355.3879 -209.3173 75.67265 -355.3415 -227.913 75.63726 -355.3415 -227.913 75.63726 -355.3879 -209.3173 75.67265 -354.8967 -207.6018 74.47415 -355.2056 -228.894 75.37256 -355.2056 -228.894 75.37256 -352.3917 -203.5851 68.36126 -352.3917 -203.5851 68.36126 -355.0697 -229.3687 74.75232 -355.0697 -229.3687 74.75232 -349.913 -204.0753 61.03747 -349.913 -204.0753 61.03747 -349.5534 -230.6479 60.21675 -349.5534 -230.6479 60.21675 - - - - - - - - - - 0.9245166 0.002441485 0.381134 0.9245305 0.001580134 0.3811048 0.8984325 0.005471323 0.4390775 -0.8984325 -0.005471323 -0.4390775 -0.9245305 -0.001580134 -0.3811048 -0.9245166 -0.002441485 -0.381134 0.9583059 -0.03007416 0.2841572 -0.9583059 0.03007416 -0.2841572 0.9410317 -0.01267992 0.3380806 -0.9410317 0.01267992 -0.3380806 0.9535848 -0.01978976 0.3004736 -0.9535848 0.01978976 -0.3004736 0.9429333 -0.01180146 0.3327726 -0.9429333 0.01180146 -0.3327726 0.9349847 0.001700054 0.354684 -0.9349847 -0.001700054 -0.354684 - - - - - - - - - - 0.9125977 0.5083008 0.9052734 0.5185547 0.6518555 0.5307617 -227.3054 205.4997 -208.7096 205.5379 -206.9949 204.2416 0.9125977 0.5083008 0.6518555 0.5307617 0.6425781 0.5249023 -226.6898 224.7192 -225.708 225.014 -205.3998 223.7185 0.9702148 0.4282227 0.9125977 0.5083008 0.6425781 0.5249023 -227.8749 205.1653 -206.5836 204.1938 -202.5742 197.5832 0.9702148 0.4282227 0.6425781 0.5249023 0.6328125 0.519043 -243.9529 156.4526 -243.4842 157.092 -218.0801 149.8637 0.9702148 0.4282227 0.6328125 0.519043 0.9638672 0.3271484 -210.9089 169.031 -236.2987 183.5156 -210.4675 176.7658 0.9638676 0.3271486 0.6328128 0.5190432 0.6162112 0.3154298 -230.0119 180.4313 -228.7227 195.9776 -203.4387 181.3091 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -348.9672 -294.0285 58.07635 -351.2649 -321.8847 63.45868 -348.9948 -322.9363 56.73827 -348.9948 -322.9363 56.73827 -351.2649 -321.8847 63.45868 -348.9672 -294.0285 58.07635 -353.2771 -313.5805 69.62744 -353.2771 -313.5805 69.62744 -354.4406 -291.6368 72.5105 -354.4406 -291.6368 72.5105 -353.9492 -310.6904 71.06125 -353.9492 -310.6904 71.06125 -354.5417 -292.0169 73.00448 -354.5417 -292.0169 73.00448 -354.3485 -305.7075 72.34098 -354.3485 -305.7075 72.34098 -354.6428 -292.9016 73.18684 -354.6428 -292.9016 73.18684 - - - - - - - - - - 0.9388355 -0.003163624 0.3443513 0.9458505 -0.01536935 0.3242386 0.9465394 -0.01582002 0.3222002 -0.9465394 0.01582002 -0.3222002 -0.9458505 0.01536935 -0.3242386 -0.9388355 0.003163624 -0.3443513 0.9374232 -0.00992904 0.3480506 -0.9374232 0.00992904 -0.3480506 0.9556501 0.005461742 0.2944537 -0.9556501 -0.005461742 -0.2944537 0.9017124 -0.009768776 0.4322259 -0.9017124 0.009768776 -0.4322259 0.9711284 0.007072828 0.2384525 -0.9711284 -0.007072828 -0.2384525 0.952969 -0.001236198 0.3030652 -0.952969 0.001236198 -0.3030652 0.8928813 -0.00921502 0.4501978 -0.8928813 0.00921502 -0.4501978 - - - - - - - - - - 0.3925781 0.7714844 0.02783203 0.8476563 0.01416016 0.7548828 -328.7233 164.4042 -327.7098 171.5032 -299.8191 165.8177 0.3925781 0.7714844 0.1367188 0.9326172 0.02783203 0.8476562 -327.2695 173.447 -318.9974 179.9764 -299.3811 167.7499 0.4238281 0.9760742 0.1367188 0.9326172 0.3925781 0.7714844 -292.8858 178.2284 -312.4237 190.5798 -290.4762 193.6626 0.4238281 0.9760742 0.1743164 0.9536133 0.1367187 0.9326172 -317.673 216.8447 -314.7909 218.4428 -295.7443 220.058 0.4238281 0.9760742 0.4155273 0.980957 0.1743164 0.9536133 -307.26 143.5974 -288.5816 145.5838 -288.2026 145.0789 0.4155273 0.980957 0.2397461 0.9711914 0.1743164 0.9536133 -311.1293 174.5371 -306.1469 175.8796 -292.4565 176.5756 0.4155273 0.980957 0.4072266 0.9853516 0.2397461 0.9711914 -309.3481 222.6934 -296.5459 223.6407 -295.6602 223.4365 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -352.089 -332.4588 58.59586 -354.1739 -336.8443 56.62608 -352.1039 -335.9264 56.44802 -352.1039 -335.9264 56.44802 -354.1739 -336.8443 56.62608 -352.089 -332.4588 58.59586 - - - - - - - - - - 0.2934494 -0.5042934 0.8121426 0.2934494 -0.5042934 0.8121426 0.2934494 -0.5042934 0.8121426 -0.2934494 0.5042934 -0.8121426 -0.2934494 0.5042934 -0.8121426 -0.2934494 0.5042934 -0.8121426 - - - - - - - - - - 0.980957 0.6679687 0.9516602 0.605957 0.9799805 0.6147461 -473.2828 -59.04574 -475.5336 -58.74056 -471.5259 -55.36453 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5

-
-
-
- - - - -418.5542 -286.4468 80.56643 -424.2542 -286.4397 79.91158 -424.6935 -305.9824 78.72122 -424.6935 -305.9824 78.72122 -424.2542 -286.4397 79.91158 -418.5542 -286.4468 80.56643 -418.5542 -305.9943 79.23564 -418.5542 -305.9943 79.23564 -407.6321 -286.3855 80.82729 -407.6321 -286.3855 80.82729 -407.6321 -306.1986 79.58633 -407.6321 -306.1986 79.58633 -396.71 -305.9943 79.23564 -396.71 -305.9943 79.23564 -396.7101 -286.4468 80.56643 -396.7101 -286.4468 80.56643 -391.0101 -286.4397 79.91157 -391.0101 -286.4397 79.91157 -390.5706 -305.9824 78.72122 -390.5706 -305.9824 78.72122 - - - - - - - - - - -0.06563414 -0.06391084 0.9957949 -0.1140163 -0.05784788 0.9917933 -0.08903881 -0.06589127 0.9938463 0.08903881 0.06589127 -0.9938463 0.1140163 0.05784788 -0.9917933 0.06563414 0.06391084 -0.9957949 -0.05667248 -0.06596504 0.9962112 0.05667248 0.06596504 -0.9962112 2.594069e-008 -0.06616811 0.9978085 -2.594069e-008 0.06616811 -0.9978085 1.828547e-008 -0.06251122 0.9980443 -1.828547e-008 0.06251122 -0.9980443 0.05944848 -0.06229462 0.9962857 -0.05944848 0.06229462 -0.9962857 0.06857374 -0.06776228 0.9953421 -0.06857374 0.06776228 -0.9953421 0.1081144 -0.06580191 0.9919584 -0.1081144 0.06580191 -0.9919584 0.08346801 -0.05871531 0.9947792 -0.08346801 0.05871531 -0.9947792 - - - - - - - - - - 0.8217773 0.01660156 0.746582 0.02197266 0.7397461 0.2592773 80.71357 -502.871 63.48438 -493.5605 66.0698 -488.4385 0.8203125 0.2729492 0.7397461 0.2592773 -29.92343 -511.1016 -41.22723 -493.9272 -26.04651 -506.3135 0.9648437 0.01611328 0.8217773 0.01660156 0.8203125 0.2729492 -295.7928 -419.0326 -302.1715 -400.5073 -291.8673 -396.876 0.9633789 0.2763672 0.9648438 0.01611328 0.8203125 0.2729492 -226.0444 -459.8341 -225.5999 -437.3367 -216.3034 -454.8773 0.8203125 0.2729492 0.9648437 0.01611328 0.9633789 0.2763672 -503.6459 -73.30609 -494.3494 -55.76546 -493.9049 -78.26285 0.8217773 0.01660156 0.9648437 0.01611328 -478.7709 -131.53 -468.4667 -135.1613 -474.8452 -153.6867 0.746582 0.02197266 0.8217773 0.01660156 0.8203125 0.2729492 -465.4245 194.3095 -448.6046 204.3577 -445.6942 199.4131 0.7397461 0.2592773 0.746582 0.02197266 0.8203125 0.2729492 -478.5226 155.7277 -459.2493 162.3511 -474.9806 150.6868 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 0 0 2 7 3 8 5 9 7 10 8 11 0 12 6 13 7 14 5 15 9 16 10 17 8 18 6 19 7 20 9 21 11 22 12 23 8 24 10 25 11 26 9 27 13 28 12 13 14 29 8 30 9 31 15 32 13 33 16 34 14 35 12 36 13 37 15 38 17 39 18 40 16 41 12 42 13 43 17 44 19 45

-
-
-
- - - - -419.7486 -339.824 59.53386 -430.619 -312.5897 76.50323 -433.6977 -336.4487 59.23225 -433.6977 -336.4487 59.23225 -430.619 -312.5897 76.50323 -419.7486 -339.824 59.53386 -418.5541 -314.0961 77.47966 -418.5541 -314.0961 77.47966 -407.6319 -340.5134 59.65279 -407.6319 -340.5134 59.65279 -407.632 -314.8247 77.85265 -407.632 -314.8247 77.85265 -396.71 -314.0962 77.47965 -396.71 -314.0962 77.47965 -395.5152 -339.824 59.53386 -395.5152 -339.824 59.53386 -384.6451 -312.5896 76.50323 -384.6451 -312.5896 76.50323 -381.5662 -336.4487 59.23225 -381.5662 -336.4487 59.23225 -383.6484 -313.0915 75.7587 -383.6484 -313.0915 75.7587 -379.4813 -332.0633 61.20203 -379.4813 -332.0633 61.20203 - - - - - - - - - - -0.0926081 -0.5687847 0.8172562 -0.1411562 -0.5635099 0.8139604 -0.1545032 -0.5661697 0.8096793 0.1545032 0.5661697 -0.8096793 0.1411562 0.5635099 -0.8139604 0.0926081 0.5687847 -0.8172562 -0.0984935 -0.5693181 0.816196 0.0984935 0.5693181 -0.816196 -4.621075e-008 -0.5724045 0.8199714 4.621075e-008 0.5724045 -0.8199714 -1.725248e-007 -0.5780947 0.8159697 1.725248e-007 0.5780947 -0.8159697 0.09849376 -0.5693175 0.8161964 -0.09849376 0.5693175 -0.8161964 0.09260859 -0.5687841 0.8172566 -0.09260859 0.5687841 -0.8172566 0.2011687 -0.5538495 0.8079492 -0.2011687 0.5538495 -0.8079492 0.2052833 -0.5565988 0.8050196 -0.2052833 0.5565988 -0.8050196 0.3231416 -0.5272405 0.7858734 -0.3231416 0.5272405 -0.7858734 0.3558729 -0.5184326 0.7775488 -0.3558729 0.5184326 -0.7775488 - - - - - - - - - - 0.7666016 0.5737305 0.9135742 0.9921875 0.9516602 0.605957 -329.8231 -320.4911 -333.1343 -291.0623 -315.4775 -319.9772 0.7543945 0.9848633 0.9135742 0.9921875 0.7666016 0.5737305 -327.963 -315.4563 -344.9386 -286.1363 -332.8581 -284.4492 0.6098633 0.5688477 0.7543945 0.9848633 0.7666016 0.5737305 -394.6217 -268.4411 -395.2527 -237.0564 -382.4866 -268.2331 0.6098633 0.5688477 0.612793 0.9858398 0.7543945 0.9848633 -379.9634 -247.9719 -369.0295 -247.3295 -366.097 -278.6751 0.7543945 0.9848633 0.612793 0.9858398 0.6098633 0.5688477 -443.8377 -202.9047 -440.9053 -171.5591 -429.9715 -172.2015 0.7666016 0.5737305 0.7543945 0.9848633 0.6098633 0.5688477 -430.729 -220.8543 -417.9632 -189.6776 -418.5939 -221.0623 0.9135742 0.9921875 0.7543945 0.9848633 0.7666016 0.5737305 -464.3932 -158.9583 -459.4983 -127.9512 -447.4178 -129.6382 0.9516602 0.605957 0.9135742 0.9921875 0.7666016 0.5737305 -471.0269 -146.1949 -453.3704 -117.2799 -456.6815 -146.7088 0.9516602 0.605957 0.9272461 0.980957 -491.1351 -5.177304 -490.5453 -6.382188 -500.9244 -33.12714 0.980957 0.6679687 0.9272461 0.980957 0.9516602 0.605957 -504.9903 -10.5286 -493.4883 15.75297 -500.7895 -7.396119 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 1 7 0 8 5 9 4 10 7 11 8 12 6 13 0 14 5 15 7 16 9 17 8 18 10 19 6 20 7 21 11 22 9 23 12 24 10 25 8 26 9 27 11 28 13 29 14 30 12 31 8 32 9 33 13 34 15 35 16 36 12 37 14 38 15 39 13 40 17 41 18 42 16 43 14 44 15 45 17 46 19 47 18 48 20 49 16 1 17 50 21 51 19 52 22 53 20 54 18 55 19 56 21 57 23 58

-
-
-
- - - - -467.0773 -294.0285 58.43147 -467.0494 -322.9363 57.09338 -464.7794 -321.8847 63.8138 -464.7794 -321.8847 63.8138 -467.0494 -322.9363 57.09338 -467.0773 -294.0285 58.43147 -462.7672 -313.5805 69.98255 -462.7672 -313.5805 69.98255 -461.6039 -291.6368 72.86561 -461.6039 -291.6368 72.86561 -462.0951 -310.6904 71.41637 -462.0951 -310.6904 71.41637 -461.5028 -292.0169 73.3596 -461.5028 -292.0169 73.3596 -461.4016 -292.9016 73.54194 -461.4016 -292.9016 73.54194 -461.6959 -305.7075 72.69608 -461.6959 -305.7075 72.69608 - - - - - - - - - - -0.9388346 -0.003170785 0.3443537 -0.9465405 -0.01582857 0.3221965 -0.9458507 -0.01537733 0.3242375 0.9458507 0.01537733 -0.3242375 0.9465405 0.01582857 -0.3221965 0.9388346 0.003170785 -0.3443537 -0.9374201 -0.009936667 0.3480587 0.9374201 0.009936667 -0.3480587 -0.9556589 0.005456134 0.2944252 0.9556589 -0.005456134 -0.2944252 -0.9016878 -0.009662842 0.4322796 0.9016878 0.009662842 -0.4322796 -0.9711422 0.005993423 0.2384259 0.9711422 -0.005993423 -0.2384259 -0.9058857 -0.01526042 0.4232472 0.9058857 0.01526042 -0.4232472 -0.9579401 0.003054548 0.2869519 0.9579401 -0.003054548 -0.2869519 - - - - - - - - - - 0.3925781 0.7714844 0.01416016 0.7548828 0.02783203 0.8476563 314.0685 -91.05264 315.082 -98.15163 286.1778 -96.73816 0.3925781 0.7714844 0.02783203 0.8476563 0.1367187 0.9326172 306.3951 -87.13942 314.6672 -93.6689 286.7789 -99.36597 0.4238281 0.9760742 0.3925781 0.7714844 0.1367188 0.9326172 315.0887 -98.06483 295.5508 -110.4163 293.1413 -94.982 0.4238281 0.9760742 0.1367187 0.9326172 0.1743164 0.9536133 305.282 -141.575 308.164 -143.1731 286.2354 -139.9597 0.1743164 0.9536133 0.4155273 0.980957 296.4554 -23.4018 315.1338 -25.38826 296.0763 -23.90678 0.4155273 0.980957 0.1743164 0.9536133 0.4072266 0.9853516 284.8924 -132.075 302.6666 -134.4242 284.006 -132.2765 0.4072266 0.9853516 0.1743164 0.9536133 0.2397461 0.9711914 307.1782 -62.56527 312.1623 -63.90117 294.3713 -61.68228 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -461.8701 -336.8443 56.98119 -463.9551 -332.4588 58.95097 -463.9402 -335.9265 56.80312 -463.9402 -335.9265 56.80312 -463.9551 -332.4588 58.95097 -461.8701 -336.8443 56.98119 -459.7882 -313.4871 73.50764 -459.7882 -313.4871 73.50764 -458.7915 -312.9852 74.25217 -458.7915 -312.9852 74.25217 - - - - - - - - - - -0.3176346 -0.5104493 0.7990931 -0.3469641 -0.5165581 0.782805 -0.2934436 -0.504292 0.8121456 0.2934436 0.504292 -0.8121456 0.3469641 0.5165581 -0.782805 0.3176346 0.5104493 -0.7990931 -0.3231379 -0.5272436 0.7858728 0.3231379 0.5272436 -0.7858728 -0.3216158 -0.5276351 0.7862344 0.3216158 0.5276351 -0.7862344 - - - - - - - - - - 0.9516602 0.605957 0.980957 0.6679688 0.9799805 0.6147461 -232.0417 -392.1647 -233.7986 -388.4834 -229.7909 -391.8595 0.9272461 0.980957 -190.1538 -383.3443 -194.3546 -380.2119 -201.6561 -357.0629 0.9135742 0.9921875 0.9272461 0.980957 0.9516602 0.605957 -219.0618 -379.9334 -229.4409 -353.1885 -228.851 -351.9836 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 1 1 0 0 5 7 4 8 7 9 8 10 6 11 0 12 5 13 7 14 9 15

-
-
-
- - - - -465.6636 -170.4768 61.72248 -465.8687 -170.9663 61.2049 -466.9125 -189.5454 60.81264 -466.9125 -189.5454 60.81264 -465.8687 -170.9663 61.2049 -465.6636 -170.4768 61.72248 -466.7119 -190.5231 61.48378 -466.7119 -190.5231 61.48378 -463.6171 -172.4184 67.86557 -463.6171 -172.4184 67.86557 -464.5911 -195.7766 69.01517 -464.5911 -195.7766 69.01517 -461.4763 -175.8753 74.17915 -461.4763 -175.8753 74.17915 -462.0408 -200.551 75.48404 -462.0408 -200.551 75.48404 -461.0494 -177.3993 75.75389 -461.0494 -177.3993 75.75389 -461.6491 -200.5523 76.38817 -461.6491 -200.5523 76.38817 -460.8516 -179.8702 76.47474 -460.8516 -179.8702 76.47474 -461.2575 -199.8269 76.96983 -461.2575 -199.8269 76.96983 - - - - - - - - - - -0.94306 0.04562317 0.3294789 -0.9428157 0.04599965 0.3301252 -0.9373634 0.04491153 0.3454458 0.9373634 -0.04491153 -0.3454458 0.9428157 -0.04599965 -0.3301252 0.94306 -0.04562317 -0.3294789 -0.9467206 0.05127205 0.3179485 0.9467206 -0.05127205 -0.3179485 -0.9417426 0.05053882 0.3325159 0.9417426 -0.05053882 -0.3325159 -0.9307608 0.04716715 0.3625737 0.9307608 -0.04716715 -0.3625737 -0.9394494 0.04946175 0.3390993 0.9394494 -0.04946175 -0.3390993 -0.9187526 0.03733352 0.3930647 0.9187526 -0.03733352 -0.3930647 -0.9516514 0.03707064 0.3049352 0.9516514 -0.03707064 -0.3049352 -0.8969108 0.03336566 0.440951 0.8969108 -0.03336566 -0.440951 -0.9268794 0.03417491 0.3738002 0.9268794 -0.03417491 -0.3738002 -0.8462905 0.03040589 0.5318532 0.8462905 -0.03040589 -0.5318532 - - - - - - - - - - 0.4125977 0.5151367 0.40625 0.5083008 0.1572266 0.5073242 212.0737 -93.50383 193.4657 -93.08827 192.9668 -92.53995 0.4125977 0.5151367 0.1572266 0.5073242 0.1445312 0.5161133 212.636 -100.275 211.669 -100.9902 192.5624 -100.0206 0.4125977 0.5151367 0.1445313 0.5161133 0.387207 0.6083984 194.5141 -85.3569 212.7467 -92.11396 192.6731 -91.86122 0.387207 0.6083984 0.1445313 0.5161133 0.07568359 0.6186523 222.1373 -72.6928 217.0143 -80.60314 198.7617 -73.90024 0.387207 0.6083984 0.07568359 0.6186523 0.3417969 0.6923828 203.199 -87.12178 223.2511 -92.63018 199.8765 -93.85645 0.3417969 0.6923828 0.07568359 0.6186523 0.01318359 0.7104492 221.344 -108.3996 216.6905 -115.4345 196.6682 -109.8186 0.3417969 0.6923828 0.01318359 0.7104492 0.3217773 0.7172852 195.3301 -61.50037 218.5028 -61.78279 193.824 -63.14848 0.3217773 0.7172852 0.01318359 0.7104492 0.01806641 0.7216797 217.8332 -110.1679 217.8467 -111.1531 194.6741 -110.8591 0.3217773 0.7172852 0.01806641 0.7216797 0.2895508 0.7270508 196.7333 -97.77961 217.4307 -97.87287 194.2713 -98.55614 0.2895508 0.7270508 0.01806641 0.7216797 0.02294922 0.7324219 216.2596 -176.1663 216.9986 -176.8532 196.3013 -176.7509 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 0 6 2 7 6 8 7 9 3 10 5 11 0 12 6 13 8 14 9 15 7 16 5 17 8 18 6 19 10 20 11 21 7 22 9 23 8 24 10 25 12 26 13 27 11 28 9 29 12 30 10 31 14 32 15 33 11 34 13 35 12 36 14 37 16 38 17 39 15 40 13 41 16 42 14 43 18 44 19 45 15 46 17 47 16 48 18 49 20 50 21 51 19 52 17 53 20 54 18 55 22 56 23 57 19 58 21 59

-
-
-
- - - - -467.437 -204.0753 61.03747 -467.7964 -230.6479 60.21675 -462.2801 -229.3687 74.75233 -462.2801 -229.3687 74.75233 -467.7964 -230.6479 60.21675 -467.437 -204.0753 61.03747 -464.9583 -203.5851 68.36126 -464.9583 -203.5851 68.36126 -462.1442 -228.894 75.37256 -462.1442 -228.894 75.37256 -462.4533 -207.6018 74.47416 -462.4533 -207.6018 74.47416 -461.9621 -209.3173 75.67265 -461.9621 -209.3173 75.67265 -462.0084 -227.9131 75.63726 -462.0084 -227.9131 75.63726 - - - - - - - - - - -0.942932 -0.01180909 0.3327759 -0.9349845 0.001690788 0.3546845 -0.9535838 -0.01979792 0.3004762 0.9535838 0.01979792 -0.3004762 0.9349845 -0.001690788 -0.3546845 0.942932 0.01180909 -0.3327759 -0.9410311 -0.01268775 0.3380821 0.9410311 0.01268775 -0.3380821 -0.9583091 -0.0306144 0.2840888 0.9583091 0.0306144 -0.2840888 -0.9245391 0.002659961 0.3810778 0.9245391 -0.002659961 -0.3810778 -0.923757 0.002722148 0.3829694 0.923757 -0.002722148 -0.3829694 -0.8917164 0.00135687 0.4525926 0.8917164 -0.00135687 -0.4525926 - - - - - - - - - - 0.9638672 0.3271484 0.6162109 0.3154297 0.6328125 0.519043 230.2043 -93.92379 231.4935 -109.4701 204.9203 -108.5923 0.9702148 0.4282227 0.9638672 0.3271484 0.6328125 0.519043 220.241 -79.33369 194.8512 -93.81829 194.4098 -86.08345 0.9702148 0.4282227 0.6328125 0.519043 0.6425781 0.5249023 209.4513 -41.49081 209.9198 -42.13023 184.0471 -48.71907 0.9702148 0.4282227 0.6425781 0.5249023 0.9125977 0.5083008 208.9214 -106.9489 230.2127 -105.9774 204.9119 -113.5595 0.9125977 0.5083008 0.6425781 0.5249023 0.9052734 0.5185547 210.6816 -106.5644 230.2588 -106.8892 208.9675 -107.8615 0.9052734 0.5185547 0.6425781 0.5249023 0.6518555 0.5307617 228.6158 -141.4973 229.597 -141.7942 210.02 -141.4577 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -475.503 -351.2049 29.28154 -475.5029 -353.7209 29.28154 -475.2526 -351.2049 30.83248 -475.2526 -351.2049 30.83248 -475.5029 -353.7209 29.28154 -475.503 -351.2049 29.28154 -475.2526 -353.7209 30.83248 -475.2526 -353.7209 30.83248 - - - - - - - - - - -0.9872205 -1.443495e-005 0.1593601 -0.9872229 -5.225192e-006 0.1593455 -0.9872218 -9.358401e-006 0.1593521 0.9872218 9.358401e-006 -0.1593521 0.9872229 5.225192e-006 -0.1593455 0.9872205 1.443495e-005 -0.1593601 -0.9872242 -1.486113e-007 0.1593375 0.9872242 1.486113e-007 -0.1593375 - - - - - - - - - - 0.6958008 0.06738281 0.9780273 0.06738281 0.6958008 0.4233398 351.1979 -45.29866 353.7139 -46.86967 351.1979 -46.86968 0.6958008 0.4233398 0.9780273 0.06738281 0.9780273 0.4233398 353.7208 -45.287 353.7208 -46.85801 351.2048 -45.287 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 2 6 1 7 6 8 7 9 4 10 3 11

-
-
-
- - - - -475.7601 -335.7757 13.41516 -475.6176 -344.9023 13.21441 -475.9016 -335.818 15.03833 -475.9016 -335.818 15.03833 -475.6176 -344.9023 13.21441 -475.7601 -335.7757 13.41516 -475.759 -344.9447 14.83758 -475.759 -344.9447 14.83758 - - - - - - - - - - -0.9960997 -0.0136379 -0.08717494 -0.9961014 -0.01364214 -0.08715408 -0.9960999 -0.01363843 -0.0871723 0.9960999 0.01363843 0.0871723 0.9961014 0.01364214 0.08715408 0.9960997 0.0136379 0.08717494 -0.9961017 -0.01364268 -0.08715144 0.9961017 0.01364268 0.08715144 - - - - - - - - - - 0.0234375 0.6362305 0.965332 0.6196289 0.02490234 0.9462891 329.2714 56.86465 338.3588 55.03376 329.231 55.23528 0.965332 0.6196289 0.9667969 0.9301758 338.3969 56.65202 338.3565 55.02264 329.2691 56.85353 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 2 2 1 6 6 7 7 8 4 9 3 10

-
-
-
- - - - -427.0037 -122.3813 30.40394 -426.9905 -122.4143 29.00353 -432.7369 -123.3525 30.36447 -432.7369 -123.3525 30.36447 -426.9905 -122.4143 29.00353 -427.0037 -122.3813 30.40394 -432.7236 -123.2475 28.96406 -432.7236 -123.2475 28.96406 - - - - - - - - - - -0.1668021 0.9856789 -0.02478143 -0.1634595 0.9864983 -0.01010302 -0.1475002 0.9873669 0.05788208 0.1475002 -0.9873669 -0.05788208 0.1634595 -0.9864983 0.01010302 0.1668021 -0.9856789 0.02478143 -0.1439312 0.9869179 0.07264266 0.1439312 -0.9869179 -0.07264266 - - - - - - - - - - 0.01855469 0.3916016 0.01855469 0.07421875 0.668457 0.3916016 447.2524 29.13045 441.43 27.7691 441.4376 29.16994 0.668457 0.3916016 0.01855469 0.07421875 0.668457 0.07421875 445.9801 33.21049 440.1867 33.25008 446.0084 34.61462 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 2 6 1 7 6 8 7 9 4 10 3 11

-
-
-
- - - - -393.8558 -121.9043 30.55928 -385.3043 -123.1584 28.4073 -393.8779 -122.0851 28.40511 -393.8779 -122.0851 28.40511 -385.3043 -123.1584 28.4073 -393.8558 -121.9043 30.55928 -385.2822 -122.9776 30.56146 -385.3043 -123.1584 28.4073 -393.8558 -121.9043 30.55928 -393.8558 -121.9043 30.55928 -385.3043 -123.1584 28.4073 -385.2822 -122.9776 30.56146 - - - - - - - - - - 0.1237911 0.9887235 -0.08427138 0.1237906 0.9887234 -0.08427342 0.1237911 0.9887235 -0.08427138 -0.1237911 -0.9887235 0.08427138 -0.1237906 -0.9887234 0.08427342 -0.1237911 -0.9887235 0.08427138 0.1237905 0.9887233 -0.0842738 0.1237905 0.9887233 -0.0842738 0.123791 0.9887234 -0.08427176 -0.123791 -0.9887234 0.08427176 -0.1237905 -0.9887233 0.0842738 -0.1237905 -0.9887233 0.0842738 - - - - - - - - - - 0.9770507 0.9663085 0.006347656 0.4765625 0.9770507 0.4765625 375.6596 13.97187 367.019 13.97406 375.6601 16.13373 0.006347656 0.9663085 0.006347656 0.4765625 0.9770507 0.9663085 375.6602 16.13333 367.0191 13.97367 367.0197 16.13552 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11

-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ID7 - - - - - ID8 - - - - - - - - - - - - - - - - - - - ID31 - - - - - ID32 - - - - - - - - - - - - - - - - - 1 1 1 1 - - - - - - - - - - ID76 - - - - - ID77 - - - - - - - - - - - - - - - - ID91 - - - - - ID92 - - - - - - - - - - - - - - - - ID370 - - - - - ID371 - - - - - - - - - - - - - - - - - 0 0 0 1 - - - 1 - - - - - - - - - - ID1205 - - - - - ID1206 - - - - - - - - - - - - - - - - ID1220 - - - - - ID1221 - - - - - - - - - 0.5 0.5 0.5 1 - - - 1 - - - - - - - - - ford_escape_no_wheels_2/Esc-Badging1.tga - - - ford_escape_no_wheels_2/Esc-BrakeLt1.tga - - - ford_escape_no_wheels_2/Esc-Body1.tga - - - ford_escape_no_wheels_2/Esc-HeadLt1.tga - - - ford_escape_no_wheels_2/Esc-Logo1.tga - - - ford_escape_no_wheels_2/Esc-Plate1.tga - - - ford_escape_no_wheels_2/Esc-Glass1.tga - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Badging1.tga b/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Badging1.tga deleted file mode 100755 index 4cc4a46e8ce..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Badging1.tga and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Body1.tga b/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Body1.tga deleted file mode 100755 index 3d6a8ac8cea..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Body1.tga and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-BrakeLt1.tga b/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-BrakeLt1.tga deleted file mode 100755 index 82b805c0dd0..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-BrakeLt1.tga and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Glass1.tga b/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Glass1.tga deleted file mode 100755 index 5f89814a314..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Glass1.tga and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-HeadLt1.tga b/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-HeadLt1.tga deleted file mode 100755 index f86ae753f10..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-HeadLt1.tga and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Logo1.tga b/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Logo1.tga deleted file mode 100755 index eb86dfd62c1..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Logo1.tga and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Plate1.tga b/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Plate1.tga deleted file mode 100755 index 8f4b4bd6284..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_no_wheels_2/Esc-Plate1.tga and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_wheel.dae b/ros/src/system/gazebo/catvehicle/meshes/ford_escape_wheel.dae deleted file mode 100644 index 88fce1ae47d..00000000000 --- a/ros/src/system/gazebo/catvehicle/meshes/ford_escape_wheel.dae +++ /dev/null @@ -1,289 +0,0 @@ - - - - - SketchUp 13.0.4124 - - 2013-07-22T09:44:57Z - 2013-07-22T09:44:57Z - - Z_UP - - - - - - 1 0 0 -1.543906 0 1 0 -14.34145 0 0 1 -14.54342 0 0 0 1 - - 1 0 0 352.9092 0 1 0 199.8023 0 0 1 29.26234 0 0 0 1 - - - - 1 0 0 354.2084 0 1 0 199.8023 0 0 1 29.26234 0 0 0 1 - - - - 1 0 0 351.9225 0 1 0 199.8023 0 0 1 29.26234 0 0 0 1 - - - - 1 0 0 351.0143 0 1 0 199.8023 0 0 1 29.26234 0 0 0 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -345.9641 -177.6433 -22.64581 -346.3733 -193.2344 -7.017273 -345.964 -193.2344 -22.64578 -346.3733 -177.6433 -7.01728 -346.3733 -193.2344 -7.017273 -345.9641 -177.6433 -22.64581 - - - - - - - - - - 0.9996573 2.458574e-006 0.02617735 0.9996573 2.458574e-006 0.02617735 0.9996573 2.458574e-006 0.02617735 0.9996573 2.419177e-006 0.02617731 0.9996573 2.419177e-006 0.02617731 0.9996573 2.419177e-006 0.02617731 - - - - - - - - - - 0.3642578 0.3999023 0.5986328 0.6352539 0.5986328 0.3999023 0.3642578 0.6352539 0.5986328 0.6352539 0.3642578 0.3999023 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5

-
-
-
- - - - -345.7908 -193.611 -14.72315 -345.8565 -199.8023 -12.21159 -345.7241 -199.7886 -17.26862 -345.8565 -199.8023 -12.21159 -353.9012 -199.5279 -12.38282 -345.7241 -199.7886 -17.26862 -345.6824 -192.6152 -18.8622 -345.7241 -199.7886 -17.26862 -345.9811 -198.085 -7.454818 -354.078 -196.2521 -5.632544 -353.9012 -199.5279 -12.38282 -345.8565 -199.8023 -12.21159 -353.7051 -198.6591 -19.87141 -345.6824 -192.6152 -18.8622 -345.7241 -199.7886 -17.26862 -345.5998 -198.0455 -22.01599 -345.9811 -198.085 -7.454818 -345.8993 -192.6383 -10.57882 -353.966 -172.2276 -9.91227 -353.9012 -199.5279 -12.38282 -354.078 -196.2521 -5.632544 -353.7699 -171.3587 -17.40087 -353.7051 -198.6591 -19.87141 -345.5998 -198.0455 -22.01599 -345.4986 -194.7833 -25.88103 -346.0828 -194.8438 -3.571805 -354.078 -196.2521 -5.632544 -345.9811 -198.085 -7.454818 -346.0828 -194.8438 -3.571805 -354.078 -196.2521 -5.632544 -354.1306 -176.2844 -3.624868 -353.5931 -174.6346 -24.15112 -353.7051 -198.6591 -19.87141 -345.4986 -194.7833 -25.88103 -345.5998 -198.0455 -22.01599 -345.6061 -189.5118 -21.77728 -354.1963 -190.3689 -1.115865 -345.9761 -189.5502 -7.646864 -353.966 -172.2276 -9.91227 -345.8587 -171.1126 -12.13382 -353.7699 -171.3587 -17.40087 -346.0842 -176.1179 -3.521352 -353.966 -172.2276 -9.91227 -354.1306 -176.2844 -3.624868 -354.1963 -190.3689 -1.115865 -345.7262 -171.0988 -17.19086 -353.5931 -174.6346 -24.15112 -353.7699 -171.3587 -17.40087 -353.5931 -174.6346 -24.15112 -353.5405 -194.6023 -26.15877 -353.5405 -194.6023 -26.15877 -345.4263 -190.4837 -28.64231 -346.1493 -190.4696 -1.031732 -345.9761 -189.5502 -7.646864 -346.1493 -190.4696 -1.031732 -345.7262 -171.0988 -17.19086 -345.983 -172.8556 -7.386472 -345.983 -172.8556 -7.386472 -346.0842 -176.1179 -3.521352 -354.1306 -176.2844 -3.624868 -346.15 -180.5058 -1.004701 -354.1963 -190.3689 -1.115865 -354.2084 -183.0367 -0.6522061 -345.6017 -172.8162 -21.94763 -353.4748 -180.5177 -28.66782 -353.5405 -194.6023 -26.15877 -345.4263 -190.4837 -28.64231 -345.4986 -194.7833 -25.88103 -353.5405 -194.6023 -26.15877 -345.5745 -185.4505 -22.98501 -346.1493 -190.4696 -1.031732 -354.2084 -183.0367 -0.6522061 -354.1963 -190.3689 -1.115865 -346.1727 -185.4505 -0.1398442 -345.7262 -171.0988 -17.19086 -345.8587 -171.1126 -12.13382 -345.792 -177.2894 -14.67919 -345.983 -172.8556 -7.386472 -345.9004 -178.2854 -10.53972 -346.0842 -176.1179 -3.521352 -345.9767 -181.389 -7.624871 -346.15 -180.5058 -1.004701 -345.9767 -181.389 -7.624871 -354.2084 -183.0367 -0.6522061 -345.6835 -178.2628 -18.82355 -345.6017 -172.8162 -21.94763 -345.6017 -172.8162 -21.94763 -345.5 -176.0574 -25.83035 -353.5931 -174.6346 -24.15112 -353.4748 -180.5177 -28.66782 -353.462 -187.8503 -29.15718 -353.462 -187.8503 -29.15718 -345.4101 -185.4505 -29.26234 -346.1727 -185.4505 -0.1398442 -346.0083 -185.4505 -6.417368 -346.1727 -185.4505 -0.1398442 -345.6067 -181.3509 -21.75545 -345.5 -176.0574 -25.83035 -345.4335 -180.4315 -28.37073 -345.4335 -180.4315 -28.37073 -353.4748 -180.5177 -28.66782 -345.4101 -185.4505 -29.26234 -345.4335 -180.4315 -28.37073 -346.1727 -185.4505 -0.1398442 -345.5 -176.0574 -25.83035 - - - - - - - - - - 0.9996573 3.006e-006 0.02617659 0.9996574 2.848003e-006 0.02617433 0.9996573 4.09782e-006 0.02617741 -0.0340186 -0.9994147 -0.003595487 -0.07770748 -0.993998 -0.07700389 -0.04763004 -0.9835345 -0.174331 0.9996573 2.238875e-006 0.02617747 0.9996573 3.231837e-006 0.02617828 0.9996574 4.591855e-006 0.02617591 -0.07447108 -0.9135274 0.3999022 -0.03994858 -0.8993532 0.4353941 -0.09068364 -0.9193714 0.3827959 -0.07573675 -0.9783967 -0.1923638 0.9996573 2.408004e-006 0.02617808 0.9996573 2.408004e-006 0.02617808 0.9996573 3.379586e-006 0.0261764 -0.1361917 -0.9329489 0.333254 0.9996574 3.212407e-006 0.02617557 -0.9996574 -3.938882e-006 -0.02617589 -0.9996573 -4.095551e-006 -0.02617669 -0.9996573 -3.662506e-006 -0.02617908 -0.9996573 -4.093687e-006 -0.02617672 -0.9996574 -3.948086e-006 -0.02617597 -0.02026691 -0.9383559 -0.345076 0.9996574 3.088041e-006 0.02617364 -0.04357066 -0.6477479 0.7606078 -0.07548116 -0.6622814 0.7454435 -0.0297438 -0.7677446 0.6400652 0.9996573 3.792865e-006 0.02617912 -0.9996573 -3.165995e-006 -0.02617875 -0.9996573 -3.29606e-006 -0.02617709 -0.9996573 -3.676557e-006 -0.02617912 -0.04066048 -0.8134856 -0.580162 -0.05957094 -0.7998727 -0.597206 -0.1126532 -0.7578707 -0.642605 0.9996574 1.310535e-006 0.02617344 -0.06755086 -0.5713615 0.8179138 0.9996573 1.153904e-006 0.02617771 -0.08295736 0.9785788 0.1884188 -0.05408054 0.9837385 0.1712715 -0.07949262 0.994164 0.07293106 -0.08636864 0.8001315 0.593574 -0.06666167 0.8136607 0.5775053 -0.0243549 0.8403135 0.5415533 -0.9996575 -3.928898e-006 -0.02617117 -0.07078317 0.9193506 -0.3870196 -0.05381221 0.9135127 -0.4032355 -0.01765504 0.8993363 -0.436901 -0.9996573 -3.187469e-006 -0.02617895 -0.9996573 -3.187469e-006 -0.02617895 -0.0001924326 -0.8402672 -0.5421725 0.9996574 2.753025e-007 0.02617352 -0.01532714 -0.5022808 0.8645687 0.9996573 1.956244e-006 0.02617798 0.9996573 7.222698e-007 0.02617926 -0.0323468 0.999475 0.001868668 -0.03490032 0.9384471 0.3436552 -0.1416701 0.7583074 0.6363171 -0.02145264 0.4976452 0.8671154 -0.06347601 0.4369119 0.8972618 -0.03524548 0.3452826 0.9378367 -0.9996575 -3.905192e-006 -0.02617103 -0.9996575 -3.676532e-006 -0.02616975 -0.1185563 0.9329477 -0.3399308 -0.9996574 -4.340564e-006 -0.02617299 -0.9996573 -3.699811e-006 -0.02617931 -0.005165349 -0.3423754 -0.939549 0.01688288 -0.5404957 -0.8411774 -0.04167374 -0.4544501 -0.8897968 0.9996573 5.044169e-006 0.02617637 -0.06628204 -0.1224291 0.9902615 -0.04859882 -0.1034189 0.9934499 -0.01122398 -0.06312478 0.9979425 0.9996573 1.288577e-006 0.02617702 0.9996573 -1.059825e-006 0.02617847 0.9996572 3.897095e-007 0.02618226 0.9996572 -4.869799e-007 0.02618107 0.9996574 1.078926e-006 0.0261743 0.9996574 1.745469e-006 0.02617567 0.9996575 4.498722e-006 0.02617182 0.9996575 5.946921e-006 0.02617007 0.9996575 4.845661e-006 0.02617196 0.9996575 6.099599e-006 0.02616977 -0.06251419 0.3302234 0.9418304 0.9996573 -1.376676e-006 0.02617656 0.9996574 -1.387976e-006 0.02617595 0.002005451 0.7677003 -0.6408059 -0.006302657 0.6473834 -0.7621385 -0.03881179 0.6623072 -0.7482264 -0.02769117 0.5713201 -0.82026 -0.9996569 -7.702872e-006 -0.02619185 -0.02592603 -0.1467598 -0.9888323 0.9996573 2.096221e-006 0.02617684 -0.1147208 -0.1743217 0.9779832 0.9996574 5.241273e-006 0.02617406 -0.01103714 0.1723283 0.9849777 0.9996573 5.198547e-006 0.02617925 0.9996573 1.395465e-007 0.02617741 0.02654492 0.5023412 -0.8642619 -0.01740184 0.1240063 -0.9921288 0.03612471 0.06661035 -0.9971249 -0.0290219 0.05363796 -0.9981386 0.9996573 6.329082e-006 0.02617842 0.9996573 1.20537e-006 0.02617605 0.9996573 1.181362e-006 0.02617876 - - - - - - - - - - 0.2236328 0.4990234 0.02294922 0.5810546 0.02294922 0.4169921 0.512207 0.7373047 0.512207 0.9907227 0.6445313 0.7373047 0.2553711 0.3647461 0.2236328 0.4990234 0.02294922 0.4169922 0.2236328 0.4990234 0.07910156 0.7348633 0.02294922 0.5810547 0.6992188 0.9907227 0.8896484 0.9907227 0.8896484 0.7373047 0.512207 0.9907227 0.6992188 0.9907227 0.6445313 0.7373047 0.2553711 0.3647461 0.02294922 0.4169922 0.07910156 0.2631836 0.6992188 0.9907227 0.8896484 0.7373047 0.7578125 0.7373047 0.2553711 0.6333008 0.07910156 0.7348633 0.2236328 0.4990234 0.03857422 0.1489258 0.1713867 0.07470703 0.1694336 0.1152344 0.01757813 0.1142578 0.1499023 0.03955078 0.1713867 0.07470703 0.6445313 0.7373047 0.6992188 0.9907227 0.7578125 0.7373047 0.2553711 0.3647461 0.07910156 0.2631836 0.1845703 0.1376953 0.6445312 0.7373047 0.6992187 0.9907227 0.7578125 0.7373047 0.2553711 0.6333008 0.1845703 0.8608398 0.07910156 0.7348633 0.01757812 0.1142578 0.1713867 0.07470703 0.03857422 0.1489258 0.03857422 0.1489258 0.1694336 0.1152344 0.07275391 0.1708984 0.01757812 0.1142578 0.01904297 0.07324219 0.1499023 0.03955078 0.6992188 0.9907227 0.8896484 0.7373047 0.7578125 0.7373047 0.3554687 0.2700195 0.2553711 0.3647461 0.1845703 0.1376953 0.6445313 0.7373047 0.512207 0.9907227 0.6992188 0.9907227 0.3554688 0.7280273 0.1845703 0.8608398 0.2553711 0.6333008 0.6445313 0.7373047 0.512207 0.9907227 0.8896484 0.7373047 0.6992188 0.9907227 0.8896484 0.9907227 0.07275391 0.1708984 0.1694336 0.1152344 0.1499023 0.1508789 0.8896484 0.7373047 0.6992188 0.9907227 0.8896484 0.9907227 0.01904297 0.07324219 0.1157227 0.01806641 0.1499023 0.03955078 0.6992188 0.9907227 0.8896484 0.9907227 0.8896484 0.7373047 0.3554687 0.2700195 0.1845703 0.1376953 0.3251953 0.05175781 0.6445313 0.7373047 0.512207 0.7373047 0.512207 0.9907227 0.3554687 0.7280273 0.3266602 0.9423828 0.1845703 0.8608398 0.6445313 0.7373047 0.512207 0.7373047 0.512207 0.9907227 0.7578125 0.7373047 0.6445312 0.7373047 0.6992187 0.9907227 0.8896484 0.7373047 0.7578125 0.7373047 0.6992188 0.9907227 0.512207 0.7373047 0.512207 0.9907227 0.6445312 0.7373047 0.07275391 0.1708984 0.1499023 0.1508789 0.1137695 0.1699219 0.8896484 0.7373047 0.7578125 0.7373047 0.6992188 0.9907227 0.03857422 0.03759766 0.1157227 0.01806641 0.6445313 0.7373047 0.512207 0.7373047 0.512207 0.9907227 0.487793 0.2304687 0.3251953 0.05175781 0.8896484 0.7373047 0.6992188 0.9907227 0.8896484 0.9907227 0.487793 0.9711914 0.3266602 0.9423828 0.3554687 0.7280273 0.02294922 0.4169922 0.02294922 0.5810547 0.2236328 0.4990234 0.02294922 0.5810547 0.07910156 0.7348633 0.2553711 0.6333008 0.07910156 0.7348633 0.1845703 0.8608398 0.3554687 0.7280273 0.1845704 0.8608402 0.3266603 0.9423833 0.3554689 0.7280277 0.6445312 0.7373047 0.512207 0.9907227 0.6992187 0.9907227 0.02294922 0.4169922 0.2553711 0.3647461 0.07910156 0.2631836 0.7578125 0.7373047 0.6445312 0.7373047 0.6992187 0.9907227 0.6445312 0.7373047 0.512207 0.9907227 0.6992187 0.9907227 0.03857422 0.03759766 0.07470703 0.01855469 0.6445312 0.7373047 0.512207 0.9907227 0.6992187 0.9907227 0.487793 0.2304688 0.3251953 0.05175781 0.487793 0.02734375 0.8896484 0.7373047 0.7578125 0.7373047 0.6992188 0.9907227 0.487793 0.9711914 0.3554688 0.7280273 0.487793 0.7675781 0.02294922 0.5810547 0.2553711 0.6333008 0.2236328 0.4990234 0.02294922 0.4169922 0.2236328 0.4990234 0.2553711 0.3647461 0.07910156 0.7348633 0.3554688 0.7280273 0.2553711 0.6333008 0.3266602 0.9423828 0.487793 0.7675781 0.3554687 0.7280273 0.6445312 0.7373047 0.6992187 0.9907227 0.7578125 0.7373047 0.07910156 0.2631836 0.2553711 0.3647461 0.3554687 0.2700195 0.07910156 0.2631836 0.3554688 0.2700195 0.1845703 0.1376953 0.512207 0.7373047 0.512207 0.9907227 0.6445312 0.7373047 0.8896484 0.7373047 0.6992188 0.9907227 0.8896484 0.9907227 0.7578125 0.7373047 0.6445312 0.7373047 0.6992187 0.9907227 0.3251953 0.05175781 0.487793 0.2304688 0.487793 0.02734375 0.3266602 0.9423828 0.487793 0.9711914 0.487793 0.7675781 0.1845703 0.1376953 0.3554688 0.2700195 0.3251953 0.05175781 0.7578125 0.7373047 0.6992188 0.9907227 0.8896484 0.7373047 0.3251953 0.05175781 0.487793 0.2304688 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 0 7 7 8 0 9 8 10 1 11 9 12 10 13 11 14 4 15 12 16 5 17 13 18 14 19 15 20 9 21 11 22 16 23 17 24 8 25 0 26 18 27 19 28 20 29 21 30 22 31 19 32 5 33 12 34 23 35 6 36 15 37 24 38 25 39 26 40 27 41 17 42 28 43 8 44 21 45 19 46 18 47 18 48 29 49 30 50 21 51 31 52 22 53 32 54 33 55 34 56 35 57 6 58 24 59 25 60 36 61 26 62 37 63 28 64 17 65 38 21 39 66 40 67 41 68 42 69 43 70 30 71 20 72 44 73 45 74 46 75 47 76 48 77 49 78 22 79 32 80 50 81 33 82 35 83 24 84 51 85 25 86 52 87 36 88 53 89 54 90 28 91 39 92 55 93 40 94 56 95 39 96 38 97 41 98 57 99 42 100 58 101 59 102 60 103 30 104 61 105 62 106 45 107 63 108 46 109 31 77 64 110 65 111 66 112 67 113 68 114 69 115 35 57 51 116 70 117 71 118 72 119 73 120 54 121 53 122 74 123 75 124 76 125 75 126 77 127 78 128 77 129 79 130 80 131 79 132 81 133 82 134 60 135 59 136 83 137 74 138 84 139 85 140 86 141 87 142 88 143 87 144 89 145 88 146 64 147 90 148 65 111 66 149 68 150 91 151 69 152 51 153 92 154 70 155 93 156 71 157 73 158 53 159 94 160 75 161 78 162 76 163 74 164 76 165 84 166 77 167 80 168 78 169 81 170 94 171 80 172 60 173 83 174 95 175 85 176 84 177 96 178 85 179 96 180 97 181 98 182 89 183 87 184 99 185 91 186 100 187 101 188 66 189 91 190 102 191 69 192 92 193 81 194 103 195 94 196 104 197 96 198 102 199 101 200 91 201 99 202 102 203 96 83 69 204

-
-
-
- - - - -343.2885 -185.4501 -22.98511 -346.8713 -188.6293 -20.3325 -343.3201 -189.5114 -21.77738 -343.3201 -189.5114 -21.77738 -346.8713 -188.6293 -20.3325 -346.931 -191.0587 -18.05057 -346.8466 -185.4326 -21.27789 -343.3964 -192.6148 -18.8623 -343.2885 -185.4501 -22.98511 -343.3207 -181.3506 -21.75555 -346.8466 -185.4326 -21.27789 -347.0159 -191.8382 -14.81052 -343.3964 -192.6148 -18.8623 -346.931 -191.0587 -18.05057 -346.8718 -182.241 -20.3154 -343.5048 -193.6106 -14.72325 -343.3207 -181.3506 -21.75555 -343.3975 -178.2624 -18.82365 -346.8718 -182.241 -20.3154 -347.1009 -191.0768 -11.56634 -343.5048 -193.6106 -14.72325 -347.0159 -191.8382 -14.81052 -346.9319 -179.8236 -18.02032 -343.6133 -192.6379 -10.57892 -343.506 -177.289 -14.67928 -346.9319 -179.8236 -18.02032 -343.3975 -178.2624 -18.82365 -343.6133 -192.6379 -10.57892 -347.1009 -191.0768 -11.56634 -347.161 -188.6594 -9.271204 -347.0168 -179.0617 -14.7761 -343.6133 -192.6379 -10.57892 -347.161 -188.6594 -9.271204 -343.6901 -189.5498 -7.646962 -343.6145 -178.285 -10.53982 -347.0168 -179.0617 -14.7761 -343.506 -177.289 -14.67928 -343.6901 -189.5498 -7.646962 -347.161 -188.6594 -9.271204 -347.1862 -185.4679 -8.308746 -347.1017 -179.8413 -11.53573 -343.7223 -185.4502 -6.417467 -343.6145 -178.285 -10.53982 -343.6908 -181.3886 -7.62497 -347.1017 -179.8413 -11.53573 -343.7223 -185.4502 -6.417467 -347.1862 -185.4679 -8.308746 -347.1615 -182.2708 -9.25398 -347.1615 -182.2708 -9.25398 -343.6908 -181.3886 -7.62497 - - - - - - - - - - 0.4187183 0.2552722 0.8714993 0.4187501 0.2552333 0.8714955 0.4181844 0.2559275 0.8715635 0.4234468 0.6146788 0.6654793 0.4234441 0.614682 0.6654781 0.4234467 0.614679 0.6654793 0.4193733 0.2544677 0.8714197 0.423449 0.6146762 0.6654804 0.4168974 -0.2581135 0.8715354 0.4174362 -0.2586268 0.8711253 0.4174642 -0.2586536 0.8711039 0.4350785 0.8727564 0.2213659 0.4350784 0.8727565 0.2213658 0.4350806 0.8727549 0.221368 0.4180954 -0.2592551 0.8706222 0.4350767 0.8727579 0.221364 0.4235603 -0.618151 0.6621827 0.4235591 -0.6181505 0.662184 0.423559 -0.6181504 0.6621841 0.4459596 0.8739027 -0.1934272 0.4459594 0.8739028 -0.1934275 0.4459638 0.8739018 -0.1934216 0.4235576 -0.6181498 0.6621856 0.4459557 0.8739036 -0.1934323 0.4352401 -0.8738617 0.2166376 0.4352402 -0.8738616 0.2166376 0.4352391 -0.8738619 0.2166388 0.4576518 0.6181501 -0.6390972 0.4576518 0.6181501 -0.6390972 0.4576518 0.6181501 -0.6390972 0.4352413 -0.8738614 0.2166362 0.4576528 0.6181507 -0.6390959 0.4576528 0.6181507 -0.6390959 0.4576528 0.6181507 -0.6390959 0.4461174 -0.8727303 -0.1982954 0.4461175 -0.8727302 -0.1982956 0.4461142 -0.8727326 -0.1982924 0.4624893 0.2586157 -0.8480693 0.4631225 0.2592454 -0.8475313 0.4625163 0.2586426 -0.8480464 0.4461213 -0.8727275 -0.1982991 0.4619717 0.2581013 -0.848508 0.457761 -0.6146048 -0.6424295 0.4577591 -0.6146071 -0.6424287 0.457759 -0.6146072 -0.6424287 0.4638112 -0.2551965 -0.8483831 0.4644657 -0.2543862 -0.8482684 0.4638429 -0.2551573 -0.8483776 0.4577567 -0.6146099 -0.6424278 0.4632776 -0.2558565 -0.8484759 - - - - - - - - - - 0.02148437 0.996582 0.1538086 0.8393555 0.004882812 0.8393555 0.004882812 0.8393555 0.1538086 0.8393555 0.1669922 0.9697266 0.02148438 0.996582 0.1669922 0.9697266 0.1538086 0.8393555 0.004882812 0.8393555 0.1669922 0.9697266 0.02148437 0.996582 0.02148437 0.996582 0.004882812 0.8393555 0.1669922 0.9697266 0.1538086 0.8393555 0.02148437 0.996582 0.1669922 0.9697266 0.004882812 0.8393555 0.1538086 0.8393555 0.1669922 0.9697266 0.004882812 0.8393555 0.02148438 0.996582 0.1538086 0.8393555 0.004882813 0.8393555 0.1538086 0.8393555 0.1669922 0.9697266 0.004882813 0.8393555 0.1538086 0.8393555 0.02148438 0.996582 0.02148437 0.996582 0.004882812 0.8393555 0.1669922 0.9697266 0.004882813 0.8393555 0.1669922 0.9697266 0.02148438 0.996582 0.02148438 0.996582 0.1669922 0.9697266 0.1538086 0.8393555 0.1538086 0.8393555 0.1669922 0.9697266 0.02148437 0.996582 0.1538086 0.8393555 0.004882812 0.8393555 0.02148438 0.996582 0.1538086 0.8393555 0.004882813 0.8393555 0.004882812 0.8393555 0.1538086 0.8393555 0.02148437 0.996582 0.1669922 0.9697266 0.1538086 0.8393555 0.1669922 0.9697266 0.02148438 0.996582 0.1669922 0.9697266 0.1669922 0.9697266 0.1538086 0.8393555 0.1669922 0.9697266 0.004882813 0.8393555 0.02148438 0.996582 0.1538086 0.8393555 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 0 6 6 7 1 8 3 9 5 10 7 11 8 12 9 13 10 14 11 15 12 16 13 17 9 18 14 19 10 20 15 21 12 22 11 23 16 24 17 12 18 25 19 26 20 27 21 28 17 29 22 7 18 1 23 30 20 31 19 32 24 33 25 34 26 35 27 36 28 37 29 38 24 33 30 39 25 40 31 41 32 42 33 43 34 44 35 45 36 46 37 47 38 48 39 17 34 49 40 50 35 51 37 9 39 52 41 53 42 53 43 27 44 54 45 53 46 55 47 56 43 3 48 4 44 57 49 58 45 59 47 60

-
-
-
- - - - -342.8251 -184.2158 -11.54121 -342.8253 -186.5254 -11.53219 -343.3925 -184.3284 -12.21091 -342.8096 -183.2026 -12.13126 -342.8251 -184.2158 -11.54121 -343.3925 -184.3284 -12.21091 -342.2531 -186.5823 -10.59727 -343.3927 -186.4146 -12.20138 -343.3537 -182.8599 -13.69233 -342.8096 -183.2026 -12.13126 -343.1962 -183.9621 -10.66028 -342.8251 -184.2158 -11.54121 -342.2531 -186.5823 -10.59727 -343.1962 -186.7884 -10.65911 -342.8253 -186.5254 -11.53219 -342.2529 -184.1519 -10.60583 -343.3925 -184.3284 -12.21091 -343.3927 -186.4146 -12.20138 -341.8163 -185.383 -14.68404 -343.3927 -186.4146 -12.20138 -342.8253 -186.5254 -11.53219 -342.81 -187.5431 -12.11432 -343.3537 -182.8599 -13.69233 -343.3925 -184.3284 -12.21091 -341.8163 -185.383 -14.68404 -342.7571 -182.0557 -14.13518 -343.1749 -182.5699 -11.47157 -342.2529 -184.1519 -10.60583 -342.8251 -184.2158 -11.54121 -343.1962 -183.9621 -10.66028 -342.8253 -186.5254 -11.53219 -343.1962 -186.7884 -10.65911 -343.1752 -188.1873 -11.4587 -344.6837 -187.3612 -5.593332 -342.2529 -184.1519 -10.60583 -342.864 -187.206 -5.829726 -342.2531 -186.5823 -10.59727 -341.8163 -185.383 -14.68404 -343.3927 -186.4146 -12.20138 -343.3543 -187.8965 -13.66933 -342.81 -187.5431 -12.11432 -343.3927 -186.4146 -12.20138 -342.81 -187.5431 -12.11432 -342.7578 -188.7057 -14.10922 -343.3537 -182.8599 -13.69233 -341.8163 -185.383 -14.68404 -343.2991 -182.8694 -15.77786 -342.7571 -182.0557 -14.13518 -343.3537 -182.8599 -13.69233 -343.2991 -182.8694 -15.77786 -342.2267 -182.4347 -11.60669 -342.2267 -182.4347 -11.60669 -343.1749 -182.5699 -11.47157 -342.8096 -183.2026 -12.13126 -342.8637 -183.4908 -5.839266 -342.864 -187.206 -5.829726 -342.8637 -183.4908 -5.839266 -341.8163 -185.383 -14.68404 -343.3543 -187.8965 -13.66933 -343.2996 -187.906 -15.75486 -343.3927 -186.4146 -12.20138 -342.7578 -188.7057 -14.10922 -343.3543 -187.8965 -13.66933 -342.2272 -188.308 -11.58352 -342.81 -187.5431 -12.11432 -343.1752 -188.1873 -11.4587 -342.1723 -189.5306 -13.68326 -343.2991 -182.8694 -15.77786 -341.8163 -185.383 -14.68404 -343.2606 -184.3514 -17.24581 -342.7264 -182.0603 -15.30735 -342.1715 -181.2269 -13.71499 -344.6087 -178.437 -8.460487 -344.6835 -183.3322 -5.603674 -343.3543 -187.8965 -13.66933 -342.7271 -188.7103 -15.28139 -343.2996 -187.906 -15.75486 -341.8163 -185.383 -14.68404 -343.2996 -187.906 -15.75486 -343.2609 -186.4376 -17.23628 -342.7578 -188.7057 -14.10922 -342.2272 -188.308 -11.58352 -342.7905 -192.1178 -8.634182 -342.1723 -189.5306 -13.68326 -343.1112 -189.6015 -13.90493 -342.7578 -188.7057 -14.10922 -342.7264 -182.0603 -15.30735 -343.2991 -182.8694 -15.77786 -343.2606 -184.3514 -17.24581 -343.2606 -184.3514 -17.24581 -341.8163 -185.383 -14.68404 -343.2609 -186.4376 -17.23628 -343.1109 -181.1577 -13.91898 -342.7571 -182.0557 -14.13518 -342.7264 -182.0603 -15.30735 -342.1715 -181.2269 -13.71499 -342.7571 -182.0557 -14.13518 -343.1109 -181.1577 -13.91898 -342.7891 -178.6053 -8.68934 -342.2267 -182.4347 -11.60669 -342.1715 -181.2269 -13.71499 -342.7891 -178.6053 -8.68934 -342.7271 -188.7103 -15.28139 -342.6746 -187.5633 -17.28531 -343.2996 -187.906 -15.75486 -343.2609 -186.4376 -17.23628 -342.7578 -188.7057 -14.10922 -343.069 -189.6082 -15.51581 -342.7271 -188.7103 -15.28139 -342.2272 -188.308 -11.58352 -342.7064 -193.9837 -11.84579 -342.1723 -189.5306 -13.68326 -342.7905 -192.1178 -8.634182 -344.6101 -192.2837 -8.402811 -343.1112 -189.6015 -13.90493 -344.5189 -194.3072 -11.8857 -342.7264 -182.0603 -15.30735 -343.2606 -184.3514 -17.24581 -342.6742 -183.2229 -17.30226 -342.659 -184.2406 -17.88438 -343.2606 -184.3514 -17.24581 -343.2609 -186.4376 -17.23628 -343.0687 -181.1645 -15.52987 -342.7048 -176.7559 -11.91049 -342.7048 -176.7559 -11.91049 -342.0651 -188.3313 -17.77866 -342.6592 -186.5501 -17.87536 -342.1202 -189.539 -15.67036 -342.7271 -188.7103 -15.28139 -343.069 -189.6082 -15.51581 -342.7064 -193.9837 -11.84579 -342.6742 -183.2229 -17.30226 -343.2606 -184.3514 -17.24581 -342.659 -184.2406 -17.88438 -342.1195 -181.2354 -15.7021 -342.6592 -186.5501 -17.87536 -342.1195 -181.2354 -15.7021 -343.0687 -181.1645 -15.52987 -342.7264 -182.0603 -15.30735 -344.5172 -176.4314 -11.95372 -342.0651 -188.3313 -17.77866 -343.0049 -188.1961 -17.96322 -342.6746 -187.5633 -17.28531 -342.1202 -189.539 -15.67036 -342.6592 -186.5501 -17.87536 -342.6746 -187.5633 -17.28531 -342.9837 -186.8039 -18.7745 -342.5584 -194.01 -17.5003 -343.0046 -182.5787 -17.9761 -342.6742 -183.2229 -17.30226 -342.659 -184.2406 -17.88438 -342.0645 -182.458 -17.80183 -342.0387 -184.1837 -18.78808 -344.3688 -176.4588 -17.62 -343.0049 -188.1961 -17.96322 -344.2791 -192.329 -21.04521 -342.0651 -188.3313 -17.77866 -342.1202 -189.539 -15.67036 -342.474 -192.1607 -20.72144 -342.6592 -186.5501 -17.87536 -342.9837 -186.8039 -18.7745 -342.0388 -186.614 -18.77951 -342.5584 -194.01 -17.5003 -344.3706 -194.3346 -17.55198 -342.9836 -183.9776 -18.77569 -342.0645 -182.458 -17.80183 -342.6742 -183.2229 -17.30226 -343.0046 -182.5787 -17.9761 -342.5567 -176.7823 -17.565 -342.1195 -181.2354 -15.7021 -342.0645 -182.458 -17.80183 -342.659 -184.2406 -17.88438 -342.0387 -184.1837 -18.78808 -342.9836 -183.9776 -18.77569 -342.0388 -186.614 -18.77951 -342.5567 -176.7823 -17.565 -342.474 -192.1607 -20.72144 -342.3994 -187.2752 -23.57151 -342.4726 -178.6481 -20.77661 -342.4726 -178.6481 -20.77661 -344.2041 -183.4048 -23.91237 -342.3991 -183.56 -23.58106 -342.0387 -184.1837 -18.78808 -342.0388 -186.614 -18.77951 -342.3994 -187.2752 -23.57151 -344.2043 -187.4338 -23.90202 -344.2776 -178.4823 -21.10289 -342.3991 -183.56 -23.58106 - - - - - - - - - - 0.8131269 -0.002273088 -0.582082 0.812871 -0.002505086 -0.5824383 0.7630089 -0.002696022 -0.6463824 0.8120813 -0.4539645 -0.3666608 0.743962 -0.3447253 -0.5724377 0.7896268 -0.3744819 -0.4860585 0.8529532 -0.002063319 -0.5219833 0.7624601 -0.003037157 -0.647028 0.6937977 -0.6138578 -0.3765945 0.9237967 0.1821202 0.3367966 0.9238097 0.1820831 0.3367809 0.9238372 0.182005 0.3367477 0.1998471 -0.9730012 -0.1154545 0.2188611 -0.9700311 -0.1055433 0.2215168 -0.9557145 -0.1937525 0.8531169 -0.001917235 -0.5217162 0.843742 0.002360073 0.5367438 0.843742 0.002360073 0.5367438 0.843742 0.002360073 0.5367438 0.7442988 0.3399546 -0.574848 0.7442988 0.3399546 -0.574848 0.7442988 0.3399546 -0.574848 0.8477269 0.3654559 0.384449 0.8477269 0.3654559 0.384449 0.8477269 0.3654559 0.384449 0.7881662 -0.5427804 -0.2901439 0.9237761 0.1821787 0.3368214 0.203221 0.9687866 -0.1419638 0.2042943 0.9601819 -0.1905639 0.1882491 0.9719775 -0.1407908 0.9237589 -0.1795471 0.3382785 0.9237317 -0.1795379 0.3383576 0.9237761 -0.179553 0.3382285 0.09044638 -0.9897928 -0.1101346 0.9918882 0.0003148698 0.1271131 0.9918905 0.0002864132 0.1270952 0.9918848 0.0003560069 0.127139 0.8476456 -0.3621208 0.38777 0.8476456 -0.3621208 0.38777 0.8476456 -0.3621208 0.38777 0.9238123 -0.1795653 0.3381229 0.8719814 0.4325422 -0.2292503 0.8605266 0.449631 -0.2394284 0.851067 0.4630296 -0.2475654 0.8572685 0.5144767 0.0201079 0.8572685 0.5144767 0.0201079 0.8572685 0.5144767 0.0201079 0.8092762 -0.5869471 0.02377345 0.8091735 -0.5870845 0.02387539 0.8093676 -0.5868247 0.02368261 0.8457995 -0.4722422 -0.2482146 0.1762224 -0.59099 0.7871954 0.1954277 -0.5813521 0.789834 0.1972513 -0.6506315 0.7333285 0.08728452 0.9908564 -0.1028839 0.06878504 -0.9902988 -0.1207351 0.9918929 0.0002561471 0.1270762 0.8571515 -0.5144669 0.02480069 0.8571515 -0.5144669 0.02480069 0.8571515 -0.5144669 0.02480069 0.4049252 0.6487529 -0.6443254 0.4049252 0.6487529 -0.6443254 0.4049252 0.6487529 -0.6443254 0.1793344 0.6118963 0.7703389 0.1799659 0.6496884 0.7385914 0.1643112 0.6121371 0.7734921 0.8458592 0.4702207 -0.2518227 0.8667765 0.3621272 -0.3428738 0.8667765 0.3621272 -0.3428738 0.8667765 0.3621272 -0.3428738 0.8095475 -0.5865836 0.02350387 0.845957 -0.4719646 -0.2482061 0.06654381 -0.5922931 0.80297 0.07325183 0.9920801 -0.1020359 0.8095139 0.5868017 0.01873435 0.8094226 0.5869309 0.01863359 0.80932 0.5870758 0.01852053 0.866691 -0.3654341 -0.3395652 0.866691 -0.3654341 -0.3395652 0.866691 -0.3654341 -0.3395652 0.8096936 0.5865474 0.0189326 0.8460296 0.4700601 -0.25155 0.06344853 0.586474 0.8074791 0.2203303 -0.3820021 -0.8975126 0.2394001 -0.3886662 -0.8897338 0.2405748 -0.3050631 -0.9214447 0.3706228 -0.6487586 0.6646436 0.3706228 -0.6487586 0.6646436 0.3706228 -0.6487586 0.6646436 0.870677 -0.002355849 -0.4918496 0.870677 -0.002355849 -0.4918496 0.870677 -0.002355849 -0.4918496 0.9320206 0.3616773 0.02295882 0.9320448 0.3616118 0.02300811 0.9320091 0.3617084 0.02293545 0.2232808 0.3568875 -0.9070706 0.2235219 0.3105016 -0.9239192 0.2083979 0.3598399 -0.9094425 0.9932203 0.08768271 0.07632303 0.9932171 0.08775042 0.07628731 0.993219 0.0877104 0.07630842 0.04474011 -0.6012322 0.7978209 0.7718988 0.5427842 0.3309947 0.7917758 0.4539754 0.4086531 0.6731493 0.6138548 0.4123739 0.7631108 0.3744883 0.5267072 0.9319405 -0.3616851 0.02589937 0.9319536 -0.3616532 0.025876 0.9319811 -0.3615858 0.02582669 0.9932046 -0.08740117 0.0768482 0.993207 -0.08739999 0.07681821 0.9932011 -0.08740288 0.07689156 0.9932096 -0.08739874 0.07678631 0.04940403 0.5860337 0.8087792 0.9319199 -0.3617355 0.02593631 0.1114214 -0.3974969 -0.9108136 0.8369768 -0.462991 0.2917347 0.8587928 -0.4325409 0.2745601 0.8468318 -0.4496129 0.2841199 0.781277 0.002512002 0.6241794 0.7275563 0.003041332 0.6860412 0.7281334 0.00270297 0.6854302 0.931991 0.3617574 0.02289853 0.1083684 0.404379 -0.9081486 0.9932217 0.08765327 0.07633856 0.8316355 0.4722633 0.2921469 0.7129847 0.3447288 0.6105856 0.1754994 -0.3568852 0.9175145 0.1748581 -0.3104906 0.9343555 0.1605148 -0.3598367 0.9191042 0.08964042 -0.389064 -0.916839 0.7131893 -0.3399459 0.6130235 0.7131893 -0.3399459 0.6130235 0.7131893 -0.3399459 0.6130235 0.8315566 -0.4701771 0.2957147 0.7815478 0.00228263 0.6238412 0.173074 0.3820095 0.9078073 0.1925284 0.3886792 0.9010334 0.1920405 0.3050795 0.9327631 0.09437562 0.4060436 -0.9089675 0.2171804 0.590989 -0.7768942 0.2364987 0.5813528 -0.7785225 0.2353637 0.6506388 -0.7219925 0.831801 0.4719719 0.2921465 0.9402013 -0.1819972 -0.2879211 0.9401597 -0.1821235 -0.287977 0.9401731 -0.1820829 -0.287959 0.06070007 -0.4043802 0.9125745 0.9402109 0.1795737 -0.2894075 0.9402274 0.1795803 -0.2893498 0.9402031 0.1795706 -0.2894348 0.8317305 -0.4700256 0.2954663 0.8244677 0.002072807 0.5659052 0.06359522 0.3974959 0.9153975 0.9401386 -0.1821877 -0.2880053 0.1084721 0.5922905 -0.7983894 0.9958483 -0.08775253 -0.02419921 0.9958511 -0.08771548 -0.02421864 0.9958531 -0.08768985 -0.02423208 0.1940816 -0.9601761 0.2009832 0.1806591 -0.9719716 0.1504446 0.1955534 -0.9687792 0.1523997 0.9958551 -0.08766258 -0.02424637 0.04668529 -0.4060445 0.91266 0.9401908 0.1795656 -0.289478 0.2194137 -0.6118922 -0.7598984 0.2183827 -0.6496804 -0.7281651 0.2045757 -0.6121317 -0.7638348 0.9958664 0.08739895 -0.02472916 0.9958643 0.08740185 -0.02480292 0.9958655 0.08740014 -0.02475932 0.2111022 0.9556959 0.2051372 0.193556 0.9729939 0.1257731 0.2130693 0.9700225 0.1168669 0.8246421 0.00192927 0.5656516 0.04152589 0.3890618 0.9202752 0.08642682 0.6012304 -0.7943881 0.08178566 -0.9908563 0.1073072 0.1056307 -0.5864721 -0.8030521 0.9958673 0.08739769 -0.02469708 0.08454972 0.9897932 0.1147204 0.9971829 -0.0002868654 -0.07500797 0.9971803 -0.0003414251 -0.07504248 0.9971818 -0.0003091746 -0.07502208 0.997184 -0.0002631378 -0.07499297 0.06781242 -0.9920804 0.1057256 0.09167352 -0.5860319 -0.8050855 0.06235781 0.990299 0.1241751 - - - - - - - - - - 0.8764642 0.7221675 0.7504877 0.7226557 0.8706048 0.6865229 0.9321289 0.6899414 0.8764648 0.722168 0.8706055 0.6865234 0.8339844 0.03710938 0.7045898 0.09765625 0.7080078 0.03808594 0.8706051 0.6865231 0.750488 0.7226559 0.7563473 0.6870114 0.9506836 0.6054688 0.9321289 0.6899414 0.8706055 0.6865234 0.9189453 0.006835938 0.8901367 0.09521484 0.8681641 0.04589844 0.7045898 0.09765625 0.6518555 0.09570313 0.6738281 0.04638672 0.8374031 0.09716806 0.7045905 0.09765634 0.8339851 0.03710941 0.8706062 0.686524 0.7563483 0.6870123 0.812989 0.5493169 0.7504883 0.7226562 0.6948242 0.690918 0.9506836 0.6054687 0.8706055 0.6865234 0.8129883 0.5493164 0.9321289 0.6899414 0.9506836 0.6054687 0.9946289 0.5805664 0.9599609 0.04150391 0.8901367 0.09521484 0.9189453 0.006835937 0.8374023 0.09716797 0.8681641 0.04589844 0.8901367 0.09521484 0.9189453 0.006835937 0.9599609 0.04150391 0.8901367 0.09521484 0.5722656 0.3730469 0.6518555 0.09570312 0.7045898 0.09765625 0.8374025 0.09716798 0.6708985 0.3603516 0.70459 0.09765627 0.8129883 0.5493164 0.7563477 0.6870117 0.6757813 0.6069336 0.8901367 0.09521484 0.8681641 0.04589844 0.7563477 0.6870117 0.6948242 0.690918 0.6313477 0.5820312 0.9506836 0.6054687 0.8129883 0.5493164 0.9501953 0.4916992 0.9946289 0.5805664 0.9506836 0.6054688 0.9501953 0.4916992 0.8339844 0.03710938 0.7045898 0.09765625 0.7080078 0.03808594 0.7045898 0.09765625 0.6518555 0.09570313 0.6738281 0.04638672 0.8735352 0.3598633 0.8374023 0.09716797 0.8901367 0.09521484 0.5722656 0.3730469 0.7045898 0.09765625 0.6708984 0.3603516 0.8735351 0.3598633 0.6708984 0.3603515 0.8374023 0.09716796 0.8129883 0.5493164 0.6757812 0.6069336 0.675293 0.4926758 0.7563477 0.6870117 0.6313477 0.5820312 0.6757813 0.6069336 0.8374023 0.09716797 0.8681641 0.04589844 0.8901367 0.09521484 0.8339844 0.03710938 0.7045898 0.09765625 0.7080078 0.03808594 0.9501953 0.4916992 0.8129883 0.5493164 0.8691406 0.4111328 0.9946289 0.5805664 0.9501953 0.4916992 0.9941406 0.5166016 0.8374023 0.09716797 0.7045898 0.09765625 0.8339844 0.03710938 0.7045898 0.09765625 0.5722656 0.3730469 0.6518555 0.09570313 0.9726563 0.3725586 0.8735352 0.3598633 0.8901367 0.09521484 0.6757813 0.6069336 0.6313477 0.5180664 0.675293 0.4926758 0.675293 0.4926758 0.7553711 0.4116211 0.6757813 0.6069336 0.6313477 0.5820312 0.6313477 0.5180664 0.8339844 0.03710938 0.8374023 0.09716797 0.7045898 0.09765625 0.8374023 0.09716797 0.8901367 0.09521484 0.8735352 0.3598633 0.7045898 0.09765625 0.6518555 0.09570313 0.6738281 0.04638672 0.9941406 0.5166016 0.9501953 0.4916992 0.8691406 0.4111328 0.8691407 0.4111329 0.8129884 0.5493165 0.7553712 0.4116211 0.8901367 0.09521484 0.8681641 0.04589844 0.9189453 0.006835937 0.8374023 0.09716797 0.8681641 0.04589844 0.8901367 0.09521484 0.6708984 0.3603516 0.7045898 0.09765625 0.8374023 0.09716797 0.7045898 0.09765625 0.6708984 0.3603516 0.5722656 0.3730469 0.6313477 0.5180664 0.6938477 0.4082031 0.675293 0.4926758 0.7553711 0.4116211 0.675293 0.4926758 0.6938477 0.4082031 0.9189453 0.006835937 0.8901367 0.09521484 0.8681641 0.04589844 0.8374023 0.09716797 0.6708984 0.3603516 0.7045898 0.09765625 0.8374023 0.09716797 0.8735352 0.3598633 0.6708984 0.3603516 0.8735352 0.3598633 0.8901367 0.09521484 0.9726563 0.3725586 0.9189453 0.006835938 0.9599609 0.04150391 0.8901367 0.09521484 0.7045898 0.09765625 0.5722656 0.3730469 0.6518555 0.09570313 0.9941406 0.5166016 0.8691406 0.4111328 0.9306641 0.4072266 0.8754883 0.3754883 0.8691406 0.4111328 0.7553711 0.4116211 0.8901367 0.09521484 0.9189453 0.006835938 0.9599609 0.04150391 0.8374023 0.09716797 0.8901367 0.09521484 0.8735352 0.3598633 0.8735352 0.3598633 0.6708984 0.3603516 0.8374023 0.09716797 0.7080078 0.03808594 0.8339844 0.03710938 0.7045898 0.09765625 0.7553711 0.4116211 0.6938477 0.4082031 0.7490234 0.3759766 0.8374023 0.09716797 0.8681641 0.04589844 0.8901367 0.09521484 0.7045898 0.09765625 0.6708984 0.3603516 0.5722656 0.3730469 0.9306641 0.4072266 0.8691406 0.4111328 0.8754883 0.3754883 0.7045898 0.09765625 0.7080078 0.03808594 0.8339844 0.03710938 0.8754881 0.3754882 0.7553709 0.411621 0.7490233 0.3759765 0.6518555 0.09570313 0.6738281 0.04638672 0.8735352 0.3598633 0.8901367 0.09521484 0.9726562 0.3725586 0.7045898 0.09765625 0.6518555 0.09570313 0.6738281 0.04638672 0.7045898 0.09765625 0.8339844 0.03710938 0.8374023 0.09716797 0.8681641 0.04589844 0.9189453 0.006835938 0.8901367 0.09521484 0.8374023 0.09716797 0.8901367 0.09521484 0.8735352 0.3598633 0.8901367 0.09521484 0.8681641 0.04589844 0.9189453 0.006835937 0.7045898 0.09765625 0.8339844 0.03710937 0.8374023 0.09716797 0.7080078 0.03808594 0.7045898 0.09765625 0.5722656 0.3730469 0.8901367 0.09521484 0.9189453 0.006835937 0.9599609 0.04150391 0.7045898 0.09765625 0.5722656 0.3730469 0.6518555 0.09570313 0.7045898 0.09765625 0.8374023 0.09716797 0.6708984 0.3603516 0.8681641 0.04589844 0.8901367 0.09521484 0.8374023 0.09716797 0.8374023 0.09716797 0.8735352 0.3598633 0.6708984 0.3603516 0.8735352 0.3598633 0.8901367 0.09521484 0.9726562 0.3725586 0.8901367 0.09521484 0.9189453 0.006835938 0.9599609 0.04150391 0.8374023 0.09716797 0.8681641 0.04589844 0.8901367 0.09521484 0.6708984 0.3603516 0.7045898 0.09765625 0.8374023 0.09716797 0.6738281 0.04638672 0.7045898 0.09765625 0.6518555 0.09570312 0.7045898 0.09765625 0.8339844 0.03710937 0.8374023 0.09716797 0.7045898 0.09765625 0.6708984 0.3603516 0.5722656 0.3730469 0.7045898 0.09765625 0.6708984 0.3603516 0.5722656 0.3730469 0.8901367 0.09521484 0.8735352 0.3598633 0.8374023 0.09716797 0.8374023 0.09716797 0.8901367 0.09521484 0.8735352 0.3598633 0.6708984 0.3603516 0.8374023 0.09716797 0.8735352 0.3598633 0.7045898 0.09765625 0.5722656 0.3730469 0.6708986 0.3603516 0.70459 0.09765627 0.8374025 0.09716799 0.6708984 0.3603515 0.8374023 0.09716796 0.8901367 0.09521484 0.9726563 0.3725586 0.8735352 0.3598633 0.8735352 0.3598633 0.8901367 0.09521484 0.9726562 0.3725586 0.7045898 0.09765625 0.6708984 0.3603516 0.5722656 0.3730469 - - - - - - - - - - - - - - -

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

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

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

-
- - - - 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 -

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

-
-
- 1 -
-
- - - - 7.481132 -6.50764 5.343665 - 0 0 1 46.69194 - 0 1 0 0.619768 - 1 0 0 63.5593 - 1 1 1 - - - - 4.076245 1.005454 5.903862 - 0 0 1 106.9363 - 0 1 0 3.163707 - 1 0 0 37.26105 - 1 1 1 - - - - 0 0 0 - 0 0 1 0 - 0 1 0 0 - 1 0 0 90.00001 - 1 1 1 - - - - - - - - - - - - - - -
\ No newline at end of file diff --git a/ros/src/system/gazebo/catvehicle/meshes/hokuyo_convex.stl b/ros/src/system/gazebo/catvehicle/meshes/hokuyo_convex.stl deleted file mode 100644 index 80e7b9116ce..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/meshes/hokuyo_convex.stl and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/meshes/velodyne32.dae b/ros/src/system/gazebo/catvehicle/meshes/velodyne32.dae deleted file mode 100644 index 5f229a9eed6..00000000000 --- a/ros/src/system/gazebo/catvehicle/meshes/velodyne32.dae +++ /dev/null @@ -1,473 +0,0 @@ - - - 2017-01-20T15:56:51.547000 - 2017-01-20T15:56:51.547000 - Z_UP - - - - - - - - 0.0 0.0 0.0 1.0 - - - 0.0 0.0 0.0 1.0 - - - 0.7 0.7 0.7 1.0 - - - 1 1 1 1.0 - - - 0.0 - - - 0.0 0.0 0.0 1.0 - - - 0.0 - - - 0.0 0.0 0.0 1.0 - - - 1.0 - - - - - - 0 - - - - - - - - - - 0.06779723 2.87038e-06 0.9976991 0.06779771 1.086234e-06 0.9976991 0.06779806 2.071539e-07 0.9976991 0.06779827 -1.395242e-07 0.9976991 0.06779826 -1.192123e-07 0.997699 0.06779813 0 0.9976991 0.0677982 1.139255e-07 0.9976991 0.06779918 3.373218e-06 0.9976989 0.06779806 -2.145522e-07 0.9976991 0.06779771 -1.086234e-06 0.9976991 0.06779724 -2.849428e-06 0.9976991 0.06779813 -0 0.9976991 0.06779827 1.272132e-07 0.9976991 0.06779852 8.861378e-07 0.997699 0.06779762 -1.272517e-06 0.9976991 0.0677985 2.325403e-07 0.9976991 0.06779843 1.422326e-07 0.997699 0.06779821 -0 0.997699 0.06779821 -0 0.997699 0.06779828 -0 0.997699 0.06779829 -0 0.9976991 0.0677982 -1.12616e-07 0.9976991 0.06779847 -1.817331e-07 0.9976991 0.06779918 -3.352266e-06 0.997699 0.06779762 1.265118e-06 0.9976991 0.06779852 -8.861378e-07 0.997699 - - - - - - - - - - 17.18061 72.46644 32.00784 20.23656 73.73518 31.80017 13.90117 72.0337 32.23069 22.86076 75.75344 31.62184 24.87438 78.3837 31.48501 26.1402 81.44669 31.39899 26.57195 84.7337 31.36965 26.57195 94.8937 31.36965 26.1402 98.1807 31.39899 24.87438 101.2437 31.48501 -12.6925 72.46644 34.03785 -9.413063 72.0337 33.81499 -15.74845 73.73518 34.24551 22.86076 103.874 31.62184 13.90117 107.5937 32.23069 20.23656 105.8922 31.80017 17.18061 107.161 32.00784 -18.37266 75.75344 34.42384 -20.38628 78.3837 34.56068 -21.65209 81.44669 34.64669 -22.08384 84.7337 34.67603 -9.413063 107.5937 33.81499 -22.08384 94.8937 34.67603 -21.65209 98.1807 34.64669 -20.38628 101.2437 34.56068 -12.6925 107.161 34.03785 -15.74845 105.8922 34.24551 -18.37266 103.874 34.42384 - - - - - - - - - - - - - - -

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

-
-
-
- - - - 0.3191654 0 -0.947699 0.3191654 0 -0.947699 0.06300793 0 -0.998013 0.06300793 0 -0.998013 0.1042549 0 0.9945506 0.1974406 -0.005994613 0.9802965 0.1761102 -0.003814568 0.9843631 0.2402678 -0.002302422 0.9707039 0.2929921 -0.0001343327 0.9561148 0.3344996 6.935171e-05 0.9423959 0.1528027 0.001468123 0.9882557 0.09703307 0 0.9952811 0.3627139 -0.0005063632 0.9319004 0.4405282 -0.003830439 0.8977306 0.4444378 -0.003273041 0.8958037 0.357014 0.0002377992 0.934099 0.3319513 -3.483254e-05 0.9432965 0.2979795 7.190758e-05 0.9545723 0.2565326 0.0009616828 0.9665351 0.2081577 0.003050594 0.9780905 0.1974428 0.003778465 0.9803071 0.6611487 0 0.7502549 0.4046032 0.005901227 0.9144734 0.4687606 0 0.8833252 0.4444392 0.002004973 0.8958067 0.6611487 0 0.7502549 0.8328009 0 0.5535727 0.947699 0 0.3191654 0.8328009 0 0.5535727 0.998013 0 0.06300793 0.947699 0 0.3191654 0.998013 0 0.06300793 0.9803141 0 -0.1974442 0.9803141 0 -0.1974442 0.8958085 0 -0.4444402 0.8958085 0 -0.4444402 0.7502549 0 -0.6611487 0.7502549 0 -0.6611487 0.5535727 0 -0.8328009 0.5535727 0 -0.8328009 -0.2040888 -4.367491e-05 0.9789523 -0.2334648 0.0003349014 0.9723652 -0.3191647 0.002178389 0.9476967 0.03091783 0 0.9995219 -0.0404251 0.00235762 0.9991798 -0.06300747 0.003794135 0.9980059 -0.1974442 0 -0.9803141 -0.1974442 -0 -0.9803141 -0.4444402 -0 -0.8958085 -0.4444402 -0 -0.8958085 -0.6611487 -0 -0.7502549 -0.8328009 -0 -0.5535727 -0.6611487 0 -0.7502549 -0.8328009 -0 -0.5535727 -0.947699 -0 -0.3191654 -0.998013 -0 -0.06300793 -0.947699 0 -0.3191654 -0.998013 -0 -0.06300793 -0.9803141 0 0.1974442 -0.8958085 0 0.4444402 -0.9803141 0 0.1974442 -0.8958085 0 0.4444402 -0.7502549 0 0.6611487 -0.5535727 0 0.8328009 -0.7502549 0 0.6611487 -0.3191637 -0.003363092 0.9476936 -0.2416516 -0.000748206 0.9703628 -0.2154583 -9.087657e-05 0.976513 -0.1766335 9.027363e-05 0.9842767 -0.3108289 0.002927428 0.9504614 -0.5535727 0 0.8328009 -0.3447121 0 0.9387084 -0.1259116 -0.001285235 0.9920406 -0.0650213 -0.005472055 0.9978689 -0.06300691 -0.005709559 0.9979967 -0.005691147 -0.001735101 0.9999823 0.04328517 0 0.9990628 -0.1060554 0.001491901 0.9943591 -0.1608019 8.96365e-05 0.9869866 - - - - - - - - - - 0.9423801 50.55199 -4.797825 2.152038 29.97799 -4.390438 0.9423801 29.97799 -4.797825 2.152038 50.55199 -4.390438 -0.3314993 50.55199 -4.87825 -0.3314993 29.97799 -4.87825 0.6871459 36.77689 4.840969 0.3314993 36.73439 4.87825 0.3314993 29.97799 4.87825 1.020728 36.90165 4.781772 1.582788 29.97799 4.626229 1.313055 37.10038 4.709887 1.550197 37.3619 4.637253 1.721304 37.67294 4.576497 0.3314993 50.55199 4.87825 0.6122564 39.75586 4.850878 0.881995 39.67815 4.809287 0.3314993 39.78239 4.87825 1.816694 38.01809 4.539557 2.726212 29.97799 4.058939 1.833208 38.34202 4.532835 1.582788 50.55199 4.626229 1.694853 38.90504 4.586362 1.790336 38.63107 4.549938 1.550597 39.15461 4.637136 1.362821 39.37115 4.695736 1.138373 39.54718 4.755133 2.726212 50.55199 4.058939 3.683849 29.97799 3.215038 3.683849 50.55199 3.215038 4.390438 50.55199 2.152038 4.390438 29.97799 2.152038 4.797825 29.97799 0.9423801 4.797825 50.55199 0.9423801 4.87825 29.97799 -0.3314993 4.87825 50.55199 -0.3314993 4.626229 29.97799 -1.582788 4.626229 50.55199 -1.582788 4.058939 29.97799 -2.726212 4.058939 50.55199 -2.726212 3.215038 50.55199 -3.683849 3.215038 29.97799 -3.683849 -0.9423801 50.55199 4.797825 -1.086418 38.84367 4.767274 -0.9084985 39.1554 4.80438 -1.18601 38.49893 4.743481 -2.152038 50.55199 4.390438 -0.02585938 39.73971 4.889304 -0.3640898 39.61525 4.875913 -1.582788 50.55199 -4.626229 -1.582788 29.97799 -4.626229 -2.726212 29.97799 -4.058939 -2.726212 50.55199 -4.058939 -3.683849 50.55199 -3.215038 -3.683849 29.97799 -3.215038 -4.390438 29.97799 -2.152038 -4.390438 50.55199 -2.152038 -4.797825 50.55199 -0.9423801 -4.797825 29.97799 -0.9423801 -4.87825 29.97799 0.3314993 -4.87825 50.55199 0.3314993 -4.626229 50.55199 1.582788 -4.626229 29.97799 1.582788 -4.058939 29.97799 2.726212 -4.058939 50.55199 2.726212 -3.215038 50.55199 3.683849 -3.215038 29.97799 3.683849 -2.152038 29.97799 4.390438 -1.2007 38.1384 4.739788 -0.9423801 29.97799 4.797825 -1.128826 37.7856 4.757414 -0.9759523 37.46093 4.791114 -0.752165 37.18111 4.8313 -0.468922 36.95989 4.866963 -0.1425634 36.80988 4.887406 0.09165975 36.7534 4.888641 -0.6634223 39.41678 4.844285 - - - - - - - - - - - - - - -

0 0 1 0 2 0 0 1 3 1 1 1 4 2 2 2 5 2 4 3 0 3 2 3 6 4 7 4 8 4 9 5 8 5 10 5 9 6 6 6 8 6 11 7 9 7 10 7 12 8 11 8 10 8 13 9 12 9 10 9 14 10 15 10 16 10 14 11 17 11 15 11 18 12 13 12 10 12 19 13 20 13 18 13 19 14 18 14 10 14 21 15 22 15 23 15 21 16 24 16 22 16 21 17 25 17 24 17 21 18 26 18 25 18 21 19 16 19 26 19 21 20 14 20 16 20 27 21 19 21 28 21 27 22 23 22 20 22 27 23 20 23 19 23 27 24 21 24 23 24 29 25 27 25 28 25 30 26 28 26 31 26 30 27 31 27 32 27 30 28 29 28 28 28 33 29 32 29 34 29 33 30 30 30 32 30 35 31 33 31 34 31 35 32 34 32 36 32 37 33 35 33 36 33 37 34 36 34 38 34 39 35 37 35 38 35 40 36 38 36 41 36 40 37 39 37 38 37 3 38 41 38 1 38 3 39 40 39 41 39 42 40 43 40 44 40 42 41 45 41 43 41 42 42 46 42 45 42 14 43 47 43 17 43 14 44 48 44 47 44 14 45 42 45 48 45 49 46 4 46 5 46 49 47 5 47 50 47 49 48 50 48 51 48 52 49 49 49 51 49 53 50 51 50 54 50 53 51 54 51 55 51 53 52 52 52 51 52 56 53 53 53 55 53 57 54 55 54 58 54 57 55 58 55 59 55 57 56 56 56 55 56 60 57 57 57 59 57 61 58 59 58 62 58 61 59 62 59 63 59 61 60 60 60 59 60 64 61 61 61 63 61 65 62 63 62 66 62 65 63 66 63 67 63 65 64 64 64 63 64 68 65 67 65 69 65 70 66 68 66 69 66 71 67 70 67 69 67 72 68 71 68 69 68 46 69 68 69 45 69 46 70 65 70 67 70 46 71 67 71 68 71 73 72 72 72 69 72 74 73 73 73 69 73 74 74 69 74 8 74 75 75 74 75 8 75 7 76 75 76 8 76 42 77 76 77 48 77 42 78 44 78 76 78

-
-
-
- - - - -1.02411 142.5126 -3.005299 -1.027784 141.6236 -3.004045 -0.2152593 141.6236 -3.167695 -0.2152593 143.2746 -3.167695 -0.06034868 143.2746 3.174426 0.2152593 143.2746 3.167695 -0.608125 142.5126 3.116217 -0.3355017 143.2746 3.157224 -0.608125 143.2746 3.116217 0.2152593 141.6236 3.167695 -1.142427 142.5126 2.962345 -0.6119351 141.6236 3.115471 -2.472168 143.2746 1.992238 -2.090611 143.2746 2.389555 -2.090611 142.5126 2.389555 -1.641693 142.5126 2.717622 -1.397427 141.6236 2.850934 -2.087687 141.6236 2.39211 -3.002786 143.2746 1.031457 -2.779308 143.2746 1.53495 -3.002786 142.5126 1.031457 -2.635674 141.6236 1.770267 -3.136679 142.5126 0.4918015 -3.004045 141.6236 1.027784 -2.961412 143.2746 -1.144842 -3.114721 143.2746 -0.6157444 -3.114721 142.5126 -0.6157444 -3.174376 142.5126 -0.06293648 -3.167695 141.6236 0.2152593 -3.115471 141.6236 -0.6119351 -2.394661 143.2746 -2.08476 -2.71896 143.2746 -1.639477 -2.394661 142.5126 -2.08476 -2.850934 141.6236 -1.397427 -2.39211 141.6236 -2.087687 -1.994252 142.5126 -2.470543 -0.7595405 143.2746 -3.082811 -1.02411 143.2746 -3.005299 -0.4892443 143.2746 -3.137079 -1.770267 141.6236 -2.635674 -1.532683 142.5126 -2.780559 -2.068122 142.5126 5.15702 -2.068122 144.2906 5.15702 -1.856866 144.2906 5.11447 -1.856866 142.5126 5.11447 -1.66382 142.5126 5.018694 -1.66382 144.2906 5.018694 -1.502141 142.5126 4.876218 -1.502141 144.2906 4.876218 -1.382847 142.5126 4.69675 -1.382847 144.2906 4.69675 2.746774 142.5126 4.829825 2.746774 144.2906 4.829825 2.95803 144.2906 4.787276 2.95803 142.5126 4.787276 3.151076 142.5126 4.6915 3.151076 144.2906 4.6915 3.312755 142.5126 4.549024 3.312755 144.2906 4.549024 3.432049 142.5126 4.369556 3.432049 144.2906 4.369556 3.500829 142.5126 4.165328 3.500829 144.2906 4.165328 3.514407 142.5126 3.950258 3.514407 144.2906 3.950258 3.471858 142.5126 3.739001 3.471858 144.2906 3.739001 3.376081 142.5126 3.545955 3.376081 144.2906 3.545955 -0.2158461 144.1023 -3.176329 -0.4892443 144.0366 -3.137079 -0.2152593 144.0366 -3.167695 -0.8643858 144.2906 -3.318264 -1.170384 144.2906 -3.22308 -1.149007 144.2878 -3.191252 -0.23248 144.2906 -3.42111 -0.5508385 144.2906 -3.384467 -0.228023 144.2819 -3.355521 -0.801851 144.0911 -3.078202 -1.02411 144.0366 -3.005299 -0.7595405 144.0366 -3.082811 -1.027616 144.0911 -3.010519 -0.8062199 144.1428 -3.094973 -1.037666 144.1427 -3.025482 -0.5109875 144.0911 -3.139615 -0.8132014 144.1892 -3.121774 -1.053559 144.1891 -3.049144 -0.5137717 144.1428 -3.156721 -0.2175664 144.1636 -3.201646 -0.8224129 144.2284 -3.157136 -1.074589 144.2284 -3.080456 -0.5182207 144.1892 -3.184057 -0.2203031 144.2162 -3.241918 -0.8323715 144.2566 -3.195366 -1.09983 144.2588 -3.118035 -0.5240908 144.2284 -3.220124 -0.2238697 144.2566 -3.294402 -0.8458043 144.2796 -3.246932 -1.128045 144.2794 -3.160044 -0.5304371 144.2566 -3.259116 -0.5389972 144.2796 -3.311712 0.08515782 143.7826 -3.402534 -0.230758 143.7826 -3.395768 -0.230758 143.2746 -3.395768 0.4003396 143.7826 -3.379974 0.08515782 143.2746 -3.402534 0.4003396 143.2746 -3.379974 0.7120708 143.7826 -3.32828 0.7120708 143.2746 -3.32828 -0.2152593 143.7826 -3.167695 0.06034868 143.7826 -3.174426 0.06034868 144.0366 -3.174426 0.3355017 144.0366 -3.157224 0.608125 144.0366 -3.116217 0.3355017 143.7826 -3.157224 0.608125 143.7826 -3.116217 0.1076296 141.6236 1.583847 0.1076296 139.5916 1.583847 -0.3059676 139.5916 1.557736 -0.3059676 141.6236 1.557736 -0.6987136 141.6236 1.425467 -0.6987136 139.5916 1.425467 -1.043844 141.6236 1.196055 -1.043844 139.5916 1.196055 -1.317837 141.6236 0.8851336 -1.317837 139.5916 0.8851336 -1.502022 141.6236 0.5138921 -1.502022 139.5916 0.5138921 -1.583847 141.6236 0.1076296 -1.557736 141.6236 -0.3059676 -1.583847 139.5916 0.1076296 -1.557736 139.5916 -0.3059676 -1.425467 141.6236 -0.6987136 -1.425467 139.5916 -0.6987136 -1.196055 141.6236 -1.043844 -1.196055 139.5916 -1.043844 -0.8851336 141.6236 -1.317837 -0.5138921 141.6236 -1.502022 -0.8851336 139.5916 -1.317837 -0.5138921 139.5916 -1.502022 -0.1076296 141.6236 -1.583847 -0.1076296 139.5916 -1.583847 0.602726 144.6716 8.869545 0.602726 144.2906 8.869545 -1.713418 144.2906 8.723319 -1.713418 144.6716 8.723319 -3.912796 144.6716 7.982614 -3.912796 144.2906 7.982614 -5.845523 144.6716 6.697907 -5.845523 144.2906 6.697907 -7.379888 144.6716 4.956748 -7.379888 144.2906 4.956748 -8.411325 144.6716 2.877796 -8.411325 144.2906 2.877796 -8.869545 144.6716 0.602726 -8.869545 144.2906 0.602726 -8.723319 144.6716 -1.713418 -8.723319 144.2906 -1.713418 -7.982614 144.6716 -3.912796 -7.982614 144.2906 -3.912796 -6.697907 144.6716 -5.845523 -6.697907 144.2906 -5.845523 -4.956748 144.6716 -7.379888 -2.877796 144.6716 -8.411325 -4.956748 144.2906 -7.379888 -2.877796 144.2906 -8.411325 -0.602726 144.6716 -8.869545 -0.602726 144.2906 -8.869545 9.618722 144.6701 -0.653636 9.121799 144.6701 -3.120872 9.503083 144.6716 -0.6457779 9.734285 144.6657 -0.6614891 9.849701 144.6584 -0.6693321 9.340844 144.6584 -3.195815 9.231392 144.6657 -3.158368 9.460145 144.6701 1.858144 9.346414 144.6716 1.835805 8.552801 144.6716 4.192282 9.573804 144.6657 1.880469 9.687316 144.6584 1.902765 8.656876 144.6701 4.243295 7.176329 144.6716 6.263061 8.760883 144.6657 4.294276 8.864757 144.6584 4.345191 1.902765 144.6584 -9.687316 -0.6693321 144.6584 -9.849701 -0.6614891 144.6657 -9.734285 7.263654 144.6701 6.339273 7.350923 144.6657 6.415436 7.438079 144.6584 6.491501 5.504509 144.6584 8.195425 5.375426 144.6701 8.00324 5.310802 144.6716 7.907023 3.083353 144.6716 9.012135 5.440009 144.6657 8.099394 3.120872 144.6701 9.121799 0.6457779 144.6716 9.503083 0.653636 144.6701 9.618722 0.6614891 144.6657 9.734285 3.158368 144.6657 9.231392 3.195815 144.6584 9.340844 0.6693321 144.6584 9.849701 1.858144 144.6701 -9.460145 -0.6457779 144.6716 -9.503083 1.835805 144.6716 -9.346414 4.192282 144.6716 -8.552801 -0.653636 144.6701 -9.618722 1.880469 144.6657 -9.573804 4.243295 144.6701 -8.656876 4.294276 144.6657 -8.760883 4.345191 144.6584 -8.864757 6.491501 144.6584 -7.438079 6.339273 144.6701 -7.263654 6.263061 144.6716 -7.176329 7.907023 144.6716 -5.310802 6.415436 144.6657 -7.350923 8.00324 144.6701 -5.375426 8.099394 144.6657 -5.440009 8.195425 144.6584 -5.504509 9.012135 144.6716 -3.083353 1.348122 143.5033 19.83858 1.009487 144.178 14.85532 -2.349832 140.3256 -34.57946 0.01758233 138.8871 -39.48966 -2.677329 138.8871 -39.3988 2.712411 138.8871 -39.3964 5.394593 138.8871 -39.11946 17.9386 140.0597 -30.75708 13.24085 138.8871 -37.20368 10.67111 138.8871 -38.02053 15.74885 138.8871 -36.21336 -2.018799 141.5757 -29.70807 18.18342 138.8871 -35.0542 20.53322 138.8871 -33.7316 22.78728 138.8871 -32.25172 24.93509 138.8871 -30.62148 8.051623 138.8871 -38.66012 26.96664 138.8871 -28.84846 -1.684728 142.6355 -24.79198 -1.348122 143.5033 -19.83858 19.26529 143.1056 -11.23392 28.87247 138.8871 -26.94094 30.64367 138.8871 -24.90781 32.272 138.8871 -22.75855 33.74987 138.8871 -20.50317 35.07038 138.8871 -18.1522 36.22737 138.8871 -15.7166 37.21545 138.8871 -13.20772 38.03002 138.8871 -10.63725 38.66728 138.8871 -8.017195 39.12425 138.8871 -5.359756 39.3988 138.8871 -2.677329 20.60796 143.1056 8.524347 39.48966 138.8871 0.01758233 39.3964 138.8871 2.712411 39.11946 138.8871 5.394593 38.66012 138.8871 8.051623 38.02053 138.8871 10.67111 37.20368 138.8871 13.24085 36.21336 138.8871 15.74885 35.0542 138.8871 18.18342 33.7316 138.8871 20.53322 32.25172 138.8871 22.78728 30.62148 138.8871 24.93509 -1.009487 144.178 -14.85532 21.93464 140.0597 28.04751 1.684728 142.6355 24.79198 5.359756 138.8871 39.12425 2.349832 140.3256 34.57946 2.677329 138.8871 39.3988 2.018799 141.5757 29.70807 28.84846 138.8871 26.96664 26.94094 138.8871 28.87247 24.90781 138.8871 30.64367 22.75855 138.8871 32.272 20.50317 138.8871 33.74987 18.1522 138.8871 35.07038 15.7166 138.8871 36.22737 8.017195 138.8871 38.66728 10.63725 138.8871 38.03002 13.20772 138.8871 37.21545 8.547505 136.7425 41.22499 2.808394 137.6718 41.32752 2.854425 136.7425 42.0049 13.76653 135.6732 40.23731 16.92549 135.6732 39.01392 13.62883 136.7425 39.83484 5.809537 135.6732 -42.12847 5.468244 134.5314 -42.32018 2.679537 135.6732 -42.44265 16.42445 134.5314 39.38448 8.224408 134.5314 -41.87193 13.81342 134.5314 40.37436 11.14323 134.5314 41.19136 5.751428 136.7425 -41.70708 8.633864 135.6732 41.6415 2.883265 135.6732 42.4293 5.671351 134.5314 42.29344 10.79909 136.7425 -40.69323 18.23162 137.6718 -37.19488 13.88904 137.6718 -39.02494 13.59079 138.4021 -38.18694 -2.748088 138.4021 -40.44008 8.425332 134.5314 41.83197 17.84013 138.4021 -36.39618 24.59787 138.4021 -32.2164 21.07589 138.4021 -34.6231 14.11669 136.7425 -39.66458 10.62494 137.6718 -40.03701 21.53839 137.6718 -35.38289 10.9082 135.6732 -41.10437 10.94535 134.5314 -41.24438 13.61943 134.5314 -40.44021 27.67935 138.4021 -29.6109 18.53045 136.7425 -37.80452 25.13767 137.6718 -32.92338 -0.1024301 134.5314 -42.67188 -2.893085 134.5314 -42.57381 -2.883265 135.6732 -42.4293 14.25932 135.6732 -40.06533 16.23519 134.5314 -39.46287 30.41034 138.4021 -26.79856 21.89142 136.7425 -35.96283 28.28676 137.6718 -30.26071 18.71767 135.6732 -38.18648 18.78142 134.5314 -38.31655 21.24723 134.5314 -37.00615 33.12492 138.4021 -23.36003 25.54969 136.7425 -33.46301 31.07769 137.6718 -27.38665 22.1126 135.6732 -36.32618 23.62206 134.5314 -35.53728 35.05416 138.4021 -20.35087 28.7504 136.7425 -30.75669 33.85184 137.6718 -23.87266 25.80783 135.6732 -33.8011 25.89573 134.5314 -33.91623 28.05851 134.5314 -32.14995 37.18483 138.4021 -16.13197 31.58707 136.7425 -27.83553 35.82341 137.6718 -20.79747 29.04087 135.6732 -31.06744 30.10114 134.5314 -30.246 38.35086 138.4021 -13.12111 34.40669 136.7425 -24.26395 38.00084 137.6718 -16.48598 31.9062 135.6732 -28.11677 32.01488 134.5314 -28.21253 33.79152 134.5314 -26.05826 36.41057 136.7425 -21.13835 39.68922 138.4021 -8.229082 39.19246 137.6718 -13.40905 34.75432 135.6732 -24.5091 35.42346 134.5314 -23.79239 38.62369 136.7425 -16.7562 40.44008 138.4021 -2.748088 36.77845 135.6732 -21.35192 36.90371 134.5314 -21.42465 38.22594 134.5314 -18.96515 40.56018 137.6718 -8.409667 39.83484 136.7425 -13.62883 39.01392 135.6732 -16.92549 39.38448 134.5314 -16.42445 40.4528 138.4021 2.553912 41.32752 137.6718 -2.808394 41.22499 136.7425 -8.547505 40.15335 138.4021 5.537168 40.23731 135.6732 -13.76653 40.37436 134.5314 -13.81342 41.19136 134.5314 -11.14323 41.34053 137.6718 2.609957 42.0049 136.7425 -2.854425 39.17727 138.4021 10.39679 41.6415 135.6732 -8.633864 41.83197 134.5314 -8.425332 42.29344 134.5314 -5.671351 41.0345 137.6718 5.658679 38.18694 138.4021 13.59079 42.01812 136.7425 2.652735 42.4293 135.6732 -2.883265 42.57381 134.5314 -2.893085 42.67188 134.5314 -0.1024301 40.03701 137.6718 10.62494 41.70708 136.7425 5.751428 36.39618 138.4021 17.84013 39.02494 137.6718 13.88904 42.44265 135.6732 2.679537 42.58721 134.5314 2.688663 42.32018 134.5314 5.468244 34.6231 138.4021 21.07589 40.69323 136.7425 10.79909 42.12847 135.6732 5.809537 41.87193 134.5314 8.224408 37.19488 137.6718 18.23162 32.2164 138.4021 24.59787 39.66458 136.7425 14.11669 35.38289 137.6718 21.53839 41.10437 135.6732 10.9082 41.24438 134.5314 10.94535 40.44021 134.5314 13.61943 29.6109 138.4021 27.67935 37.80452 136.7425 18.53045 32.92338 137.6718 25.13767 40.06533 135.6732 14.25932 39.46287 134.5314 16.23519 26.79856 138.4021 30.41034 35.96283 136.7425 21.89142 30.26071 137.6718 28.28676 38.18648 135.6732 18.71767 38.31655 134.5314 18.78142 37.00615 134.5314 21.24723 23.36003 138.4021 33.12492 2.748088 138.4021 40.44008 33.46301 136.7425 25.54969 27.38665 137.6718 31.07769 36.32618 135.6732 22.1126 35.53728 134.5314 23.62206 20.35087 138.4021 35.05416 30.75669 136.7425 28.7504 23.87266 137.6718 33.85184 33.8011 135.6732 25.80783 33.91623 134.5314 25.89573 32.14995 134.5314 28.05851 2.893085 134.5314 42.57381 16.13197 138.4021 37.18483 2.553912 138.4021 -40.4528 27.83553 136.7425 31.58707 5.537168 138.4021 -40.15335 20.79747 137.6718 35.82341 2.609957 137.6718 -41.34053 -2.808394 137.6718 -41.32752 31.06744 135.6732 29.04087 30.246 134.5314 30.10114 10.39679 138.4021 -39.17727 13.12111 138.4021 38.35086 24.26395 136.7425 34.40669 5.658679 137.6718 -41.0345 16.48598 137.6718 38.00084 28.11677 135.6732 31.9062 28.21253 134.5314 32.01488 26.05826 134.5314 33.79152 21.13835 136.7425 36.41057 2.652735 136.7425 -42.01812 -2.854425 136.7425 -42.0049 8.229082 138.4021 39.68922 13.40905 137.6718 39.19246 24.5091 135.6732 34.75432 23.79239 134.5314 35.42346 16.7562 136.7425 38.62369 21.35192 135.6732 36.77845 21.42465 134.5314 36.90371 18.96515 134.5314 38.22594 8.409667 137.6718 40.56018 2.688663 134.5314 -42.58721 -2.893085 60.96 -42.57381 -0.1024301 60.96 -42.67188 2.688663 60.96 -42.58721 5.468244 60.96 -42.32018 8.224408 60.96 -41.87193 10.94535 60.96 -41.24438 13.61943 60.96 -40.44021 16.23519 60.96 -39.46287 18.78142 60.96 -38.31655 21.24723 60.96 -37.00615 23.62206 60.96 -35.53728 25.89573 60.96 -33.91623 28.05851 60.96 -32.14995 30.10114 60.96 -30.246 32.01488 60.96 -28.21253 33.79152 60.96 -26.05826 35.42346 60.96 -23.79239 36.90371 60.96 -21.42465 38.22594 60.96 -18.96515 39.38448 60.96 -16.42445 40.37436 60.96 -13.81342 41.19136 60.96 -11.14323 41.83197 60.96 -8.425332 42.29344 60.96 -5.671351 42.57381 60.96 -2.893085 42.67188 60.96 -0.1024301 42.58721 60.96 2.688663 42.32018 60.96 5.468244 41.87193 60.96 8.224408 41.24438 60.96 10.94535 40.44021 60.96 13.61943 39.46287 60.96 16.23519 38.31655 60.96 18.78142 37.00615 60.96 21.24723 35.53728 60.96 23.62206 33.91623 60.96 25.89573 32.14995 60.96 28.05851 25.26984 97.30183 34.3851 25.64148 95.42835 34.10893 25.77018 93.49789 34.01173 24.2688 100.0241 35.09881 22.74812 102.5508 36.10294 25.77018 87.38938 34.01173 30.246 60.96 30.10114 20.56849 104.9076 37.38765 28.21253 60.96 32.01488 25.50163 84.15075 34.21354 17.99602 106.6771 38.69164 26.05826 60.96 33.79152 24.77136 81.05574 34.74593 23.34159 77.50235 35.72213 15.36279 107.7313 39.8106 23.79239 60.96 35.42346 21.53377 74.52081 36.84015 12.49324 108.1849 40.80219 21.42465 60.96 36.90371 19.31227 71.98025 38.05181 9.872929 108.2772 41.51415 18.96515 60.96 38.22594 16.87043 70.10649 39.19551 7.208288 108.34 42.05877 16.42445 60.96 39.38448 14.77262 69.08617 40.03339 2.893085 108.3783 42.57381 13.81342 60.96 40.37436 12.49324 68.51362 40.80219 11.14323 60.96 41.19136 8.27844 68.07648 41.86128 8.425332 60.96 41.83197 5.671351 60.96 42.29344 5.594925 67.92941 42.30362 2.893085 60.96 42.57381 2.893085 67.88042 42.57381 9.722483 68.87143 41.15304 12.29598 69.17353 40.4537 9.722457 68.87148 41.15295 12.35833 69.05385 40.60369 9.769336 68.75121 41.30574 9.769359 68.75114 41.30581 9.811978 68.59338 41.42188 12.4145 68.89629 40.71651 9.847305 68.40929 41.49292 12.46054 68.71191 40.78426 9.847322 68.40919 41.49294 8.228568 68.45795 41.76582 7.1054 68.66581 41.68784 8.25731 68.27402 41.83844 8.257322 68.27393 41.83847 7.137341 68.54508 41.84291 7.137357 68.54501 41.84298 7.166443 68.38721 41.96148 7.190622 68.20337 42.03501 7.190633 68.20327 42.03504 5.566036 68.31054 42.20408 2.867254 68.54033 42.19369 2.877954 68.41924 42.35114 2.886164 68.26141 42.47196 5.583127 68.12679 42.27876 2.891325 68.07764 42.54791 5.583134 68.1267 42.27878 24.54975 93.49789 33.45604 24.42117 93.1635 31.56392 24.42117 88.48431 31.56392 24.54975 87.38938 33.45604 24.34612 84.54872 33.69215 24.03803 84.90536 31.58995 23.78223 81.82108 34.19647 22.58961 78.46773 35.14625 22.80261 81.31267 31.6739 20.7844 75.19787 36.41149 20.95393 78.40505 31.79953 18.70366 72.64938 37.66911 18.79951 76.29851 31.94593 16.84123 71.06393 38.63711 16.35202 74.82087 32.11225 14.68987 69.85278 39.58862 14.02463 74.05777 32.27041 11.75039 73.81962 32.42495 -6.710186 69.17353 41.74525 -2.467983 68.7364 42.21586 -7.255776 73.81962 33.71651 0.2021559 68.58932 42.28975 -19.92655 88.48431 34.57755 -19.79798 87.38938 36.46967 -19.80614 86.46735 34.56936 -19.50632 84.20429 36.71811 -19.42382 84.39448 34.54338 -18.72101 81.14092 37.23568 -18.39086 81.48647 34.47319 -16.78885 78.82404 34.36432 -17.21309 77.65828 38.10653 -14.7035 76.62035 34.22261 -15.28479 74.69061 39.06715 -12.29293 75.02822 34.05881 -12.98835 72.24226 40.02485 -9.74982 74.10651 33.88599 -10.47915 70.46558 40.86295 -8.671345 69.65337 41.34092 -19.79798 93.49789 36.46967 -19.92655 93.1635 34.57755 -19.69526 95.1055 36.54664 -19.39981 96.67761 36.73579 -19.54342 96.31077 34.55151 -18.43679 99.34775 37.30469 -18.47152 99.16364 34.47867 -16.91109 101.8603 38.11821 -16.90303 101.524 34.37208 -14.71136 104.2 39.13441 -14.84353 103.4914 34.23213 -12.14122 105.9457 40.11109 -12.44758 104.9271 34.06932 -9.53086 106.9866 40.88859 -9.90707 105.7739 33.89668 -6.727046 107.4345 41.49715 -8.564013 105.9905 33.80541 -7.255776 106.0594 33.71651 -2.126098 107.5758 41.98759 2.531404 107.6277 41.96604 11.75039 106.0594 32.42495 7.473541 107.5822 41.3719 12.27912 107.4345 40.20559 24.35345 94.49498 31.56852 24.14068 95.8619 31.58298 24.28279 96.24288 33.69719 23.30867 98.44755 31.63951 23.52188 98.84708 34.30802 21.89803 100.8861 31.73537 22.34245 101.2039 35.18031 19.96495 102.9822 31.86674 20.79769 103.2664 36.21536 17.64579 104.5785 32.02433 18.92143 104.9894 37.32914 14.84272 105.6695 32.21481 16.76153 106.3044 38.43659 14.60124 107.0888 39.37381 17.44375 106.0079 38.28268 19.04458 105.0062 37.54202 17.48325 106.0258 38.34681 17.13305 106.6159 38.94211 17.88756 106.4679 38.70182 17.92583 106.5351 38.70597 17.84922 106.4062 38.6912 17.76891 106.2919 38.65141 17.75653 106.276 38.64338 17.12179 106.5998 38.9339 17.05809 106.5161 38.87931 17.68674 106.1934 38.58937 16.99367 106.4442 38.81059 17.61664 106.123 38.52055 16.98213 106.4326 38.79686 17.60414 106.1118 38.50674 16.90628 106.3674 38.69542 17.52254 106.049 38.40436 16.86939 106.3427 38.63856 16.83202 106.3232 38.57523 15.32176 107.5866 39.81054 15.29858 107.5184 39.80055 15.27489 107.4557 39.78523 15.22389 107.339 39.73879 15.21587 107.3226 39.73008 14.96532 107.6813 39.9461 12.47648 107.9744 40.77625 25.46749 95.39606 34.20624 25.59227 93.49789 34.11216 14.94415 107.6131 39.93544 15.16979 107.2368 39.67371 25.37103 95.38044 34.23686 25.39407 93.49789 34.16172 14.9224 107.5504 39.91957 12.44362 107.7803 40.69551 25.27431 95.36613 34.25384 25.07533 95.34061 34.24895 25.18983 93.49789 34.15684 15.12194 107.1618 39.60481 25.0455 95.33723 34.24363 24.99423 93.49789 34.09787 15.11322 107.1495 39.5912 24.8841 95.32117 34.19222 14.87527 107.4337 39.87233 24.73762 95.31046 34.1063 24.82132 93.49789 33.98905 24.71358 95.30916 34.0876 14.86782 107.4172 39.86353 24.57541 95.30537 33.9421 24.68354 93.49789 33.8382 15.05469 107.0787 39.49157 24.52228 95.30666 33.85828 24.5908 93.49789 33.65617 24.47923 95.31014 33.76543 25.30884 96.353 34.32425 14.82487 107.3312 39.80683 12.39723 107.6177 40.56627 25.21454 96.33015 34.35349 15.02531 107.0505 39.43613 14.99482 107.0268 39.37453 25.12004 96.30921 34.36942 14.77998 107.2558 39.73784 14.77177 107.2435 39.72424 24.92556 96.27178 34.36354 14.71639 107.1718 39.62479 12.34094 107.4994 40.3986 24.89638 96.26682 34.35821 14.68842 107.1432 39.56952 24.73817 96.2431 34.30751 14.65925 107.1189 39.50814 24.59383 96.22701 34.22342 24.57003 96.22499 34.20515 24.43218 96.21869 34.06296 24.37837 96.22012 33.98095 25.10367 97.24149 34.47516 24.33403 96.22472 33.88994 25.01186 97.2124 34.50272 24.91991 97.18573 34.51733 24.73062 97.13797 34.51003 24.70219 97.13161 34.50465 24.5477 97.10109 34.45442 24.40595 97.08 34.37205 24.38246 97.07731 34.35419 24.24531 97.06818 34.21537 24.19092 97.06935 34.13525 24.14533 97.07451 34.04619 24.152 98.92204 34.93179 24.12549 98.91309 34.92615 23.98077 98.86957 34.87642 23.8462 98.83827 34.79752 23.82364 98.83408 34.78056 23.68942 98.8177 34.64919 23.63428 98.81711 34.57337 24.11983 99.93021 35.17273 23.58636 98.82183 34.48888 24.03806 99.88512 35.19335 23.95633 99.84379 35.20247 23.78784 99.76919 35.18857 23.76243 99.75914 35.18276 23.62328 99.70993 35.13306 23.49299 99.67385 35.05575 23.47102 99.6689 35.03921 23.33907 99.64839 34.91148 23.28391 99.64639 34.83782 23.23513 99.65015 34.75565 22.91628 101.3263 35.75685 22.78906 101.2674 35.70687 22.66831 101.2226 35.63229 22.64771 101.2162 35.61653 22.52174 101.187 35.49553 22.46734 101.1815 35.42596 22.4177 101.1823 35.34824 22.62101 102.4332 36.15747 22.55173 102.377 36.16987 22.48262 102.3255 36.17244 22.33989 102.2317 36.1502 22.31824 102.2189 36.14375 22.19879 102.1549 36.09343 22.08448 102.1052 36.02027 22.06485 102.098 36.00492 21.94352 102.0634 35.88766 21.89014 102.0554 35.8204 21.8406 102.0538 35.74522 21.21281 103.3806 36.70574 21.10884 103.3243 36.63431 21.0908 103.3159 36.6195 20.97769 103.2733 36.50719 20.92664 103.2613 36.44305 20.87813 103.2557 36.37136 20.46871 104.7738 37.42086 20.4146 104.7103 37.42442 20.36065 104.652 37.41994 20.24878 104.5449 37.38847 20.23171 104.5301 37.38122 20.13658 104.4546 37.32935 20.04338 104.3928 37.25919 20.02707 104.3833 37.2448 19.92334 104.3332 37.13657 19.87545 104.3173 37.07506 19.829 104.3075 37.00634 19.37174 105.2341 37.84384 19.28574 105.1556 37.79125 19.20077 105.0902 37.72176 19.1858 105.08 37.70762 19.08967 105.0249 37.60188 19.00026 104.9933 37.47519 25.59227 87.38938 34.11216 25.39407 87.38938 34.16172 25.18983 87.38938 34.15684 24.99423 87.38938 34.09787 24.82132 87.38938 33.98905 24.68354 87.38938 33.8382 24.5908 87.38938 33.65617 24.36709 84.29634 33.91595 23.85656 81.83488 34.36839 24.45634 84.29941 34.06144 24.50759 84.56367 34.04485 24.64705 84.55783 34.1782 24.47074 84.29925 34.07943 24.61015 84.29267 34.21112 24.49324 84.56378 34.02665 24.40475 84.56065 33.87967 14.73247 69.19759 40.03838 14.6958 69.28629 40.02959 14.69076 69.29771 40.02759 14.64787 69.38845 40.00403 15.03693 69.31667 39.92482 14.6037 69.47143 39.96907 14.99751 69.40539 39.91686 14.9921 69.4168 39.91496 14.5579 69.54772 39.92285 14.94618 69.50751 39.89197 14.50994 69.61781 39.86443 14.50405 69.62575 39.85656 14.89908 69.59035 39.85728 14.45923 69.6813 39.79181 14.85041 69.66636 39.81105 14.79967 69.73596 39.75237 14.79345 69.74383 39.74446 14.7463 69.79871 39.67926 16.80848 70.21711 39.21053 16.75278 70.30534 39.2079 16.74519 70.31667 39.20657 16.6812 70.40655 39.18701 16.6165 70.48788 39.15358 16.55084 70.56139 39.10664 16.48384 70.62711 39.04543 16.47575 70.6344 39.0371 16.41528 70.68415 38.9681 17.20079 70.74866 38.9577 17.13065 70.82928 38.92453 17.05976 70.90173 38.87712 16.98787 70.96591 38.81479 16.97922 70.97298 38.80628 16.91488 71.0208 38.73572 19.22471 72.0872 38.08155 19.1457 72.17278 38.08772 19.13494 72.18376 38.08728 19.33364 72.1917 38.02621 19.25353 72.27709 38.03283 19.04449 72.2703 38.07273 19.24262 72.28805 38.03244 18.95408 72.34721 38.04001 19.15092 72.37435 38.01813 18.86401 72.41454 37.98986 19.05928 72.45098 37.98541 18.77464 72.47169 37.92184 18.96807 72.51794 37.93503 18.76406 72.47777 37.91248 18.68674 72.51712 37.83453 18.87769 72.57461 37.8666 18.867 72.58062 37.85717 18.78897 72.61941 37.77869 21.42194 74.62009 36.88686 21.3196 74.6999 36.90308 21.30561 74.71011 36.90364 21.56266 74.81779 36.80453 21.18803 74.79003 36.89408 21.45871 74.89705 36.82149 21.4445 74.90719 36.82212 21.07137 74.85929 36.86053 21.32503 74.9865 36.8129 20.95732 74.91716 36.80415 21.20654 75.05509 36.77921 20.84771 74.96243 36.72515 20.83504 74.9669 36.7142 21.09088 75.11218 36.72228 20.74504 74.99308 36.62299 20.98 75.15652 36.64236 20.96721 75.16087 36.63127 20.87653 75.18609 36.53899 23.20813 77.58883 35.78629 23.08375 77.65872 35.81289 23.06666 77.66765 35.81444 22.92287 77.73688 35.80926 22.78124 77.79503 35.773 22.64574 77.84071 35.70739 22.5204 77.87231 35.61364 22.50635 77.87505 35.60064 22.40997 77.88786 35.4929 23.20188 78.33259 35.62265 23.05572 78.3882 35.58564 22.9165 78.43128 35.51793 22.78878 78.46021 35.42099 22.77455 78.46263 35.40755 22.67773 78.4731 35.29638 24.61748 81.12038 34.82779 24.47119 81.173 34.86485 24.45097 81.1797 34.86736 24.28068 81.23115 34.86543 24.11454 81.27271 34.82373 23.95988 81.30265 34.74467 23.82382 81.31947 34.6313 23.80918 81.32053 34.61567 24.42939 81.75285 34.75607 23.71361 81.32183 34.48757 24.26001 81.79155 34.71333 24.10301 81.81905 34.63204 23.96601 81.83389 34.51557 23.95136 81.83476 34.49953 25.3337 84.18868 34.30727 25.17164 84.21973 34.35102 25.14915 84.22369 34.35407 25.37561 84.46178 34.27603 24.95963 84.25375 34.35261 25.21233 84.49054 34.32023 25.18965 84.4942 34.32331 24.77641 84.27718 34.3039 24.99863 84.52202 34.32174 24.81411 84.54365 34.27229 0.2021544 68.58926 42.28984 0.1983919 68.46848 42.44764 0.1983896 68.4684 42.44771 0.1931117 68.31068 42.56899 0.1866826 68.12694 42.6453 0.1866791 68.12684 42.64533 -1.426212 68.38746 42.54504 -1.43961 68.20362 42.62119 -1.439616 68.20352 42.62122 -1.452124 68.0059 42.64729 -2.486233 68.61597 42.37368 -2.486243 68.6159 42.37375 -2.505045 68.45823 42.49485 -2.523084 68.27431 42.57071 -2.523093 68.27422 42.57074 -4.165947 68.21157 42.46816 -4.119614 68.59359 42.36834 -6.751671 69.05385 41.9023 -6.792058 68.89629 42.02169 -4.144594 68.40953 42.44351 -6.828517 68.71191 42.09504 -4.144606 68.40943 42.44354 -6.85849 68.51362 42.11723 -10.64004 70.29146 41.11802 -11.5682 70.85187 40.85042 -11.6313 70.77927 40.9068 -10.58607 70.35838 41.04972 -11.50606 70.91628 40.77919 -10.57965 70.36584 41.04057 -11.49872 70.92339 40.76963 -10.53231 70.41714 40.96568 -11.44502 70.97149 40.69131 -9.497994 69.18881 41.60154 -10.69431 70.21715 41.17249 -9.498032 69.18871 41.60153 -9.454687 69.30012 41.60181 -9.417089 69.38883 41.58853 -9.412043 69.40024 41.58591 -9.370074 69.49095 41.5569 -8.972556 69.00122 41.71802 -9.328494 69.57381 41.51617 -8.934745 69.11251 41.71686 -9.286912 69.64986 41.46384 -8.901804 69.20119 41.70285 -8.897374 69.21259 41.70016 -9.244941 69.71954 41.39892 -20.81903 85.39671 37.24878 -20.74215 87.38938 37.2608 -20.93201 87.38938 37.18536 -9.239894 69.72741 41.39025 -8.860452 69.30334 41.6709 -20.81921 85.39668 37.24868 -9.202292 69.78239 41.31938 -20.63515 85.42131 37.32165 -20.4632 85.44153 37.34407 -20.53907 87.38938 37.28309 -8.823707 69.38639 41.63037 -8.786769 69.46288 41.57866 -20.43972 85.4441 37.34404 -20.33737 87.38938 37.25062 -8.749249 69.53331 41.51474 -8.74472 69.54131 41.50621 -20.24582 85.46359 37.31536 -8.71082 69.59735 41.43655 -20.06585 85.47859 37.23805 -20.15154 87.38938 37.16573 -19.91125 85.48815 37.11725 -19.99495 87.38938 37.03452 -19.79201 85.49164 36.96051 -19.87884 87.38938 36.86642 -19.78055 85.49163 36.93985 -19.81157 87.38938 36.67352 -19.71629 85.48875 36.77757 -20.50228 83.45227 37.42402 -20.62362 84.06796 37.35728 -20.44506 84.10668 37.42712 -20.27897 84.1384 37.44847 -20.25632 84.14244 37.44844 -20.06919 84.17316 37.42144 -19.89462 84.19713 37.34867 -20.50213 83.45231 37.42411 -19.74262 84.21301 37.23467 -20.32635 83.49696 37.49228 -19.62227 84.21982 37.08582 -19.61041 84.21999 37.06611 -20.16325 83.53349 37.51292 -20.14103 83.53815 37.51287 -19.54139 84.21696 36.91031 -19.95737 83.57359 37.48647 -19.78562 83.60146 37.41568 -19.63517 83.62025 37.30478 -19.5146 83.62886 37.15962 -19.50258 83.62917 37.14035 -19.43155 83.62653 36.98768 -19.28452 81.06034 37.86 -19.4859 80.07293 37.96313 -19.12658 81.1028 37.79668 -18.98472 81.13354 37.69824 -19.48576 80.073 37.9632 -18.86546 81.15103 37.56855 -18.85305 81.15216 37.55121 -19.32811 80.14445 38.01963 -18.77534 81.15388 37.41233 -19.18412 80.20253 38.03469 -19.16459 80.20994 38.03432 -19.00303 80.26694 38.00965 -18.85004 80.31349 37.94845 -18.71158 80.3479 37.85377 -18.59352 80.36857 37.7289 -18.58109 80.37004 37.71217 -18.50198 80.37392 37.57778 -17.74417 77.50507 38.64048 -17.92439 76.84587 38.72491 -17.92427 76.84595 38.72496 -17.6105 77.56418 38.58591 -17.78826 76.93555 38.76741 -17.48649 77.61086 38.50356 -17.66619 77.00794 38.77539 -17.64971 77.01719 38.77451 -17.37581 77.6435 38.39507 -17.3637 77.64638 38.38046 -17.51342 77.08907 38.74982 -17.28284 77.66014 38.26202 -17.38295 77.14986 38.69616 -17.26149 77.19832 38.61557 -17.15238 77.23286 38.50948 -17.14038 77.23596 38.49519 -17.05972 77.25149 38.37917 -15.87728 73.93333 39.60819 -16.09272 74.19454 39.52119 -15.97869 74.29488 39.55062 -15.87792 74.37556 39.55202 -15.86438 74.38589 39.55061 -15.75239 74.46677 39.5251 -15.76571 74.03454 39.63631 -15.64433 74.53711 39.47667 -15.66728 74.11588 39.63702 -15.65404 74.1263 39.63556 -15.54154 74.59625 39.40663 -15.54469 74.20795 39.60994 -15.44558 74.64304 39.31531 -15.4347 74.64771 39.30299 -15.43909 74.27913 39.56198 -15.35879 74.67551 39.20234 -15.33842 74.33927 39.49294 -15.24412 74.38728 39.40304 -15.23338 74.39212 39.39091 -15.15832 74.42123 39.29178 -14.0258 72.01508 40.30115 -14.02588 72.01498 40.30111 -13.93468 72.12184 40.31893 -13.85517 72.20736 40.31445 -13.84452 72.21833 40.31257 -13.75645 72.30479 40.28594 -11.89692 70.39967 40.98001 -13.62211 71.66489 40.43937 -13.67089 72.38161 40.24124 -13.53533 71.77249 40.45518 -13.58806 72.44881 40.17924 -13.45977 71.85863 40.44971 -13.44964 71.86968 40.44775 -13.50841 72.50581 40.09957 -13.49915 72.51186 40.08884 -13.36596 71.95689 40.4209 -13.43287 72.55103 40.00093 -13.28456 72.03462 40.37674 -13.20553 72.10305 40.31598 -13.12916 72.16167 40.23816 -13.12025 72.16795 40.22768 -13.05619 72.20902 40.14184 -11.89686 70.39977 40.98003 -11.82841 70.50985 40.98835 -11.76913 70.59778 40.97914 -11.7612 70.60908 40.97686 -11.69555 70.69853 40.94909 -19.81157 93.49789 36.67352 -19.87884 93.49789 36.86642 -19.99495 93.49789 37.03452 -20.15154 93.49789 37.16573 -20.33737 93.49789 37.25062 -20.53907 93.49789 37.28309 -20.74215 93.49789 37.2608 -20.93201 93.49789 37.18536 -18.69443 99.34311 37.82605 -17.75866 101.0042 38.28419 -17.77714 101.0104 38.30273 -18.81472 99.3773 37.92113 -18.67467 99.33846 37.80649 -17.64938 100.9764 38.14623 -19.62005 98.9054 37.86652 -19.31035 99.58849 38.02595 -19.78581 98.98757 37.80769 -18.56045 99.31964 37.66052 -17.60479 100.9714 38.06936 -19.53165 98.86588 37.87821 -19.22496 99.54519 38.03611 -18.51585 99.31825 37.57923 -17.56626 100.9727 37.98504 -19.44486 98.82966 37.87791 -19.14116 99.50549 38.03468 -18.47907 99.32246 37.49034 -19.27072 98.7645 37.84298 -18.97297 99.43393 37.99868 -19.24503 98.75576 37.83381 -18.94812 99.4243 37.9895 -19.1074 98.71333 37.76481 -18.98406 98.68293 37.66804 -18.96391 98.67887 37.64809 -18.84844 98.66321 37.49905 -18.80415 98.66284 37.41608 -8.343917 107.8949 41.83388 -6.845387 107.9744 42.08926 -6.85849 108.1849 42.11723 -18.76834 98.66769 37.32549 -8.368401 108.0393 41.84341 -20.32646 96.80559 37.49063 -8.3304 107.8269 41.81946 -8.316748 107.7643 41.80009 -6.823755 107.7803 42.00481 -20.23038 96.7795 37.5062 -8.287744 107.6477 41.74622 -20.13591 96.7556 37.50874 -8.283218 107.6312 41.73648 -19.94661 96.71283 37.47629 -8.257377 107.5448 41.67472 -6.79528 107.6177 41.87049 -8.230746 107.4687 41.60107 -20.62834 96.33484 37.35467 -19.91878 96.70715 37.46709 -8.225913 107.4562 41.58667 -8.193556 107.3828 41.4822 -6.762184 107.4994 41.69675 -8.177368 107.3529 41.42456 -8.160583 107.3271 41.3608 -19.77063 96.67992 37.39596 -9.792771 107.5873 41.51791 -9.833386 107.7319 41.52354 -20.4465 96.2885 37.42498 -19.64012 96.66128 37.29415 -9.839908 107.5745 41.50674 -12.41532 106.7668 40.82597 -9.771166 107.5191 41.50488 -20.34893 96.26611 37.44128 -9.818037 107.5063 41.49376 -19.61912 96.65893 37.27305 -9.749781 107.4564 41.48649 -20.25296 96.24561 37.44434 -9.796397 107.4436 41.47541 -9.705561 107.3397 41.43358 -19.50185 96.65124 37.11523 -9.698794 107.3232 41.42386 -20.06072 96.20895 37.41225 -19.4592 96.65257 37.02758 -9.751676 107.3269 41.42253 -20.03248 96.20409 37.40302 -9.744836 107.3105 41.41281 -9.660787 107.2374 41.36177 -19.42682 96.65751 36.93229 -19.88235 96.18088 37.33131 -9.706428 107.2247 41.35072 -9.622713 107.1624 41.28704 -19.75057 96.16515 37.22831 -9.615921 107.1502 41.27238 -19.72944 96.16319 37.20696 -9.667979 107.1497 41.27594 -9.661124 107.1375 41.26127 -19.6121 96.15707 37.0472 -9.571424 107.0793 41.16575 -19.56994 96.15849 36.95853 -9.616233 107.0667 41.15456 -19.53842 96.16305 36.86224 -9.549829 107.0511 41.10685 -20.21115 95.11741 37.30041 -9.594465 107.0386 41.09561 -9.527954 107.0274 41.04169 -9.57243 107.015 41.0304 -20.05759 95.10322 37.22736 -12.34589 106.6244 40.82986 -19.92374 95.09378 37.12193 -19.90242 95.09264 37.10005 -12.3096 106.5571 40.82028 -19.7853 95.0894 36.93647 -19.74423 95.09061 36.84586 -12.27407 106.4952 40.80436 -19.71448 95.09377 36.74769 -12.62119 106.4856 40.7454 -14.74416 105.355 40.04384 -12.20191 106.3807 40.75386 -12.19103 106.3647 40.74422 -12.58326 106.4185 40.73627 -12.54616 106.3569 40.72068 -12.1308 106.2818 40.68133 -12.07212 106.211 40.60389 -12.06185 106.1997 40.58857 -12.47087 106.2428 40.67051 -12.45952 106.2268 40.66088 -12.39681 106.1445 40.59789 -11.99631 106.1362 40.47656 -11.96574 106.1126 40.4145 -12.33587 106.0743 40.52008 -12.32522 106.0631 40.50467 -11.93579 106.0943 40.34591 -12.25745 106.0007 40.39194 -12.22598 105.9777 40.32946 -12.19525 105.9601 40.26041 -14.64774 105.2188 40.0597 -14.59734 105.1542 40.05457 -14.54811 105.0949 40.04185 -14.44872 104.9857 39.99454 -14.43384 104.9706 39.98502 -14.35219 104.8932 39.92109 -14.27426 104.8291 39.84007 -14.26083 104.8192 39.82388 -14.17703 104.766 39.70479 -14.13941 104.7483 39.63862 -14.10376 104.7367 39.5656 -15.13962 104.431 39.73155 -16.78535 103.5499 39.23203 -15.12343 104.4163 39.72207 -15.0348 104.3414 39.65773 -14.95076 104.2801 39.57531 -14.93635 104.2707 39.55879 -14.84718 104.2214 39.43695 -14.80769 104.2059 39.36921 -14.77073 104.1966 39.29449 -16.66362 103.4247 39.26172 -16.59965 103.3651 39.26187 -16.53709 103.3104 39.25301 -16.41115 103.2105 39.2096 -16.39239 103.1967 39.20021 -16.29027 103.1277 39.13496 -16.1947 103.0727 39.04947 -16.17849 103.0645 39.0322 -16.07987 103.0236 38.90438 -16.03749 103.0125 38.83322 -15.99891 103.0078 38.75488 -17.39005 102.0012 38.75399 -18.47974 101.416 38.46295 -17.27654 101.9385 38.6878 -17.1716 101.89 38.59929 -17.15399 101.8829 38.58129 -17.04855 101.8497 38.44764 -17.00455 101.8423 38.37317 -16.96565 101.8414 38.29136 -18.33472 101.3081 38.50741 -18.25793 101.2565 38.51334 -18.1827 101.2092 38.50877 -18.03151 101.1233 38.46967 -18.0091 101.1117 38.46041 -17.88806 101.0541 38.39351 7.15557 107.7735 41.81136 2.864074 107.6935 42.14689 7.123748 107.6549 41.63826 2.875993 107.8121 42.32229 7.51071 107.6476 41.5701 7.181494 107.9359 41.94537 2.885234 107.9745 42.45828 7.544342 107.7661 41.74289 7.199516 108.1298 42.02994 2.891083 108.1682 42.54435 7.571782 107.9286 41.87664 7.590909 108.1224 41.961 9.834557 107.8729 41.40362 9.860071 108.0668 41.48653 -2.511429 107.7518 42.34465 -2.137732 107.6411 42.18894 -2.523188 107.9143 42.48075 -2.149173 107.7596 42.36464 -2.53267 108.1082 42.5668 -2.539156 108.3184 42.59639 -2.159519 107.9221 42.50082 -2.167971 108.116 42.58693 0.1795307 108.3634 42.67162 0.1835776 107.9594 42.55552 0.1817659 108.1532 42.64185 2.531421 107.6277 41.96633 2.543459 107.6932 42.16744 2.553881 107.8118 42.34295 2.561867 107.9743 42.47901 2.566799 108.168 42.56514 -26.84397 60.96 30.75831 -23.62206 60.96 35.53728 -25.89573 60.96 33.91623 -28.05851 60.96 32.14995 -30.10114 60.96 30.246 -32.01488 60.96 28.21253 -17.96845 60.96 36.65797 -16.23519 60.96 39.46287 -18.78142 60.96 38.31655 -21.24723 60.96 37.00615 -33.89012 60.96 22.76251 -33.79152 60.96 26.05826 -35.42346 60.96 23.79239 -36.90371 60.96 21.42465 -38.22594 60.96 18.96515 -13.61943 60.96 40.44021 -7.868406 60.96 40.05946 -5.468244 60.96 42.32018 -8.224408 60.96 41.87193 -10.94535 60.96 41.24438 -38.62671 60.96 13.21549 -39.38448 60.96 16.42445 -40.37436 60.96 13.81342 -41.19136 60.96 11.14323 -41.83197 60.96 8.425332 -2.688663 60.96 42.58721 2.767855 60.96 40.73096 0.1024301 60.96 42.67188 -40.73096 60.96 2.767855 -42.29344 60.96 5.671351 -42.57381 60.96 2.893085 -42.67188 60.96 0.1024301 -42.58721 60.96 -2.688663 13.21549 60.96 38.62671 -40.05946 60.96 -7.868406 -42.32018 60.96 -5.468244 -41.87193 60.96 -8.224408 -41.24438 60.96 -10.94535 -40.44021 60.96 -13.61943 -36.65797 60.96 -17.96845 -39.46287 60.96 -16.23519 -38.31655 60.96 -18.78142 22.76251 60.96 33.89012 -37.00615 60.96 -21.24723 -35.53728 60.96 -23.62206 -30.75831 60.96 -26.84397 -33.91623 60.96 -25.89573 -32.14995 60.96 -28.05851 30.75831 60.96 26.84397 -30.246 60.96 -30.10114 -28.21253 60.96 -32.01488 -22.76251 60.96 -33.89012 -26.05826 60.96 -33.79152 36.65797 60.96 17.96845 -23.79239 60.96 -35.42346 -21.42465 60.96 -36.90371 -18.96515 60.96 -38.22594 -13.21549 60.96 -38.62671 -16.42445 60.96 -39.38448 40.05946 60.96 7.868406 -13.81342 60.96 -40.37436 -11.14323 60.96 -41.19136 -8.425332 60.96 -41.83197 -2.767855 60.96 -40.73096 -5.671351 60.96 -42.29344 40.73096 60.96 -2.767855 7.868406 60.96 -40.05946 38.62671 60.96 -13.21549 17.96845 60.96 -36.65797 33.89012 60.96 -22.76251 26.84397 60.96 -30.75831 0.1024301 134.5314 42.67188 -2.688663 134.5314 42.58721 -5.468244 134.5314 42.32018 -8.224408 134.5314 41.87193 -10.94535 134.5314 41.24438 -13.61943 134.5314 40.44021 -16.23519 134.5314 39.46287 -18.78142 134.5314 38.31655 -21.24723 134.5314 37.00615 -23.62206 134.5314 35.53728 -25.89573 134.5314 33.91623 -28.05851 134.5314 32.14995 -30.10114 134.5314 30.246 -32.01488 134.5314 28.21253 -33.79152 134.5314 26.05826 -35.42346 134.5314 23.79239 -36.90371 134.5314 21.42465 -38.22594 134.5314 18.96515 -39.38448 134.5314 16.42445 -40.37436 134.5314 13.81342 -41.19136 134.5314 11.14323 -41.83197 134.5314 8.425332 -42.29344 134.5314 5.671351 -42.57381 134.5314 2.893085 -42.67188 134.5314 0.1024301 -42.58721 134.5314 -2.688663 -42.32018 134.5314 -5.468244 -41.87193 134.5314 -8.224408 -41.24438 134.5314 -10.94535 -40.44021 134.5314 -13.61943 -39.46287 134.5314 -16.23519 -38.31655 134.5314 -18.78142 -37.00615 134.5314 -21.24723 -35.53728 134.5314 -23.62206 -33.91623 134.5314 -25.89573 -32.14995 134.5314 -28.05851 -30.246 134.5314 -30.10114 -28.21253 134.5314 -32.01488 -26.05826 134.5314 -33.79152 -23.79239 134.5314 -35.42346 -21.42465 134.5314 -36.90371 -18.96515 134.5314 -38.22594 -16.42445 134.5314 -39.38448 -13.81342 134.5314 -40.37436 -11.14323 134.5314 -41.19136 -8.425332 134.5314 -41.83197 -5.671351 134.5314 -42.29344 -10.79909 136.7425 40.69323 -10.62494 137.6718 40.03701 -13.88904 137.6718 39.02494 -8.547505 136.7425 -41.22499 -8.409667 137.6718 -40.56018 -13.62883 136.7425 -39.83484 -13.76653 135.6732 -40.23731 -5.809537 135.6732 42.12847 -2.652735 136.7425 42.01812 -5.751428 136.7425 41.70708 -2.679537 135.6732 42.44265 -16.92549 135.6732 -39.01392 -8.633864 135.6732 -41.6415 -0.01758233 138.8871 39.48966 -18.23162 137.6718 37.19488 -17.84013 138.4021 36.39618 -24.59787 138.4021 32.2164 -22.78728 138.8871 32.25172 -24.93509 138.8871 30.62148 -21.07589 138.4021 34.6231 -14.11669 136.7425 39.66458 -21.53839 137.6718 35.38289 -10.9082 135.6732 41.10437 -27.67935 138.4021 29.6109 -26.96664 138.8871 28.84846 -28.87247 138.8871 26.94094 -18.53045 136.7425 37.80452 -25.13767 137.6718 32.92338 -14.25932 135.6732 40.06533 -30.41034 138.4021 26.79856 -30.64367 138.8871 24.90781 -21.89142 136.7425 35.96283 -28.28676 137.6718 30.26071 -18.71767 135.6732 38.18648 -33.12492 138.4021 23.36003 -32.272 138.8871 22.75855 -33.74987 138.8871 20.50317 -25.54969 136.7425 33.46301 -31.07769 137.6718 27.38665 -22.1126 135.6732 36.32618 -35.05416 138.4021 20.35087 -35.07038 138.8871 18.1522 -28.7504 136.7425 30.75669 -33.85184 137.6718 23.87266 -25.80783 135.6732 33.8011 -37.18483 138.4021 16.13197 -36.22737 138.8871 15.7166 -37.21545 138.8871 13.20772 -31.58707 136.7425 27.83553 -35.82341 137.6718 20.79747 -29.04087 135.6732 31.06744 -38.35086 138.4021 13.12111 -38.03002 138.8871 10.63725 -34.40669 136.7425 24.26395 -38.00084 137.6718 16.48598 -31.9062 135.6732 28.11677 -36.41057 136.7425 21.13835 -39.68922 138.4021 8.229082 -38.66728 138.8871 8.017195 -39.12425 138.8871 5.359756 -39.19246 137.6718 13.40905 -34.75432 135.6732 24.5091 -38.62369 136.7425 16.7562 -40.44008 138.4021 2.748088 -39.3988 138.8871 2.677329 -39.48966 138.8871 -0.01758233 -36.77845 135.6732 21.35192 -40.56018 137.6718 8.409667 -39.83484 136.7425 13.62883 -39.01392 135.6732 16.92549 -40.4528 138.4021 -2.553912 -39.3964 138.8871 -2.712411 -41.32752 137.6718 2.808394 -41.22499 136.7425 8.547505 -40.15335 138.4021 -5.537168 -39.11946 138.8871 -5.394593 -38.66012 138.8871 -8.051623 -40.23731 135.6732 13.76653 -41.34053 137.6718 -2.609957 -42.0049 136.7425 2.854425 -39.17727 138.4021 -10.39679 -38.02053 138.8871 -10.67111 -41.6415 135.6732 8.633864 -41.0345 137.6718 -5.658679 -38.18694 138.4021 -13.59079 -37.20368 138.8871 -13.24085 -36.21336 138.8871 -15.74885 -42.01812 136.7425 -2.652735 -42.4293 135.6732 2.883265 -40.03701 137.6718 -10.62494 -41.70708 136.7425 -5.751428 -36.39618 138.4021 -17.84013 -35.0542 138.8871 -18.18342 -39.02494 137.6718 -13.88904 -42.44265 135.6732 -2.679537 -34.6231 138.4021 -21.07589 -33.7316 138.8871 -20.53322 -32.25172 138.8871 -22.78728 -40.69323 136.7425 -10.79909 -42.12847 135.6732 -5.809537 -37.19488 137.6718 -18.23162 -32.2164 138.4021 -24.59787 -30.62148 138.8871 -24.93509 -39.66458 136.7425 -14.11669 -35.38289 137.6718 -21.53839 -41.10437 135.6732 -10.9082 -29.6109 138.4021 -27.67935 -28.84846 138.8871 -26.96664 -26.94094 138.8871 -28.87247 -37.80452 136.7425 -18.53045 -32.92338 137.6718 -25.13767 -40.06533 135.6732 -14.25932 -26.79856 138.4021 -30.41034 -24.90781 138.8871 -30.64367 -35.96283 136.7425 -21.89142 -30.26071 137.6718 -28.28676 -38.18648 135.6732 -18.71767 -23.36003 138.4021 -33.12492 -22.75855 138.8871 -32.272 -5.359756 138.8871 -39.12425 -20.50317 138.8871 -33.74987 -33.46301 136.7425 -25.54969 -27.38665 137.6718 -31.07769 -36.32618 135.6732 -22.1126 -20.35087 138.4021 -35.05416 -18.1522 138.8871 -35.07038 -30.75669 136.7425 -28.7504 -23.87266 137.6718 -33.85184 -33.8011 135.6732 -25.80783 -2.553912 138.4021 40.4528 -2.712411 138.8871 39.3964 -16.13197 138.4021 -37.18483 -15.7166 138.8871 -36.22737 -13.20772 138.8871 -37.21545 -5.537168 138.4021 40.15335 -5.394593 138.8871 39.11946 -8.051623 138.8871 38.66012 -27.83553 136.7425 -31.58707 -2.609957 137.6718 41.34053 -20.79747 137.6718 -35.82341 -31.06744 135.6732 -29.04087 -10.39679 138.4021 39.17727 -10.67111 138.8871 38.02053 -13.12111 138.4021 -38.35086 -10.63725 138.8871 -38.03002 -5.658679 137.6718 41.0345 -24.26395 136.7425 -34.40669 -13.59079 138.4021 38.18694 -13.24085 138.8871 37.20368 -15.74885 138.8871 36.21336 -16.48598 137.6718 -38.00084 -28.11677 135.6732 -31.9062 -21.13835 136.7425 -36.41057 -8.229082 138.4021 -39.68922 -8.017195 138.8871 -38.66728 -13.40905 137.6718 -39.19246 -18.18342 138.8871 35.0542 -24.5091 135.6732 -34.75432 -16.7562 136.7425 -38.62369 -21.35192 135.6732 -36.77845 -20.53322 138.8871 33.7316 -19.26529 143.1056 11.23392 -3.195815 144.6584 -9.340844 -20.60796 143.1056 -8.524347 -4.345191 144.6584 8.864757 -17.9386 140.0597 30.75708 -1.902765 144.6584 9.687316 -21.93464 140.0597 -28.04751 -5.504509 144.6584 -8.195425 -9.849701 144.6584 0.6693321 -9.687316 144.6584 -1.902765 -8.864757 144.6584 -4.345191 -7.438079 144.6584 -6.491501 -6.491501 144.6584 7.438079 -8.195425 144.6584 5.504509 -9.340844 144.6584 3.195815 -9.231392 144.6657 3.158368 -8.099394 144.6657 5.440009 -8.00324 144.6701 5.375426 -9.618722 144.6701 0.653636 -9.503083 144.6716 0.6457779 -9.346414 144.6716 -1.835805 -9.121799 144.6701 3.120872 -9.734285 144.6657 0.6614891 -9.460145 144.6701 -1.858144 -1.835805 144.6716 9.346414 -9.573804 144.6657 -1.880469 -8.656876 144.6701 -4.243295 -8.552801 144.6716 -4.192282 -7.176329 144.6716 -6.263061 -8.760883 144.6657 -4.294276 -7.263654 144.6701 -6.339273 -5.310802 144.6716 -7.907023 -7.350923 144.6657 -6.415436 -5.375426 144.6701 -8.00324 -5.440009 144.6657 -8.099394 -3.120872 144.6701 -9.121799 -3.083353 144.6716 -9.012135 -3.158368 144.6657 -9.231392 -1.858144 144.6701 9.460145 -1.880469 144.6657 9.573804 -4.243295 144.6701 8.656876 -4.192282 144.6716 8.552801 -4.294276 144.6657 8.760883 -6.339273 144.6701 7.263654 -6.263061 144.6716 7.176329 -6.415436 144.6657 7.350923 -7.907023 144.6716 5.310802 -9.012135 144.6716 3.083353 8.869545 144.6716 -0.602726 8.411325 144.6716 -2.877796 2.877796 144.6716 8.411325 8.723319 144.6716 1.713418 7.982614 144.6716 3.912796 4.956748 144.6716 7.379888 6.697907 144.6716 5.845523 1.713418 144.6716 -8.723319 3.912796 144.6716 -7.982614 5.845523 144.6716 -6.697907 7.379888 144.6716 -4.956748 1.713418 144.2906 -8.723319 3.912796 144.2906 -7.982614 5.845523 144.2906 -6.697907 7.379888 144.2906 -4.956748 8.411325 144.2906 -2.877796 8.869545 144.2906 -0.602726 8.723319 144.2906 1.713418 7.982614 144.2906 3.912796 6.697907 144.2906 5.845523 4.956748 144.2906 7.379888 2.877796 144.2906 8.411325 0.3059676 141.6236 -1.557736 0.3059676 139.5916 -1.557736 0.6987136 141.6236 -1.425467 0.6987136 139.5916 -1.425467 1.043844 141.6236 -1.196055 1.043844 139.5916 -1.196055 1.317837 141.6236 -0.8851336 1.317837 139.5916 -0.8851336 1.502022 141.6236 -0.5138921 1.502022 139.5916 -0.5138921 1.583847 141.6236 -0.1076296 1.583847 139.5916 -0.1076296 1.557736 141.6236 0.3059676 1.425467 141.6236 0.6987136 1.557736 139.5916 0.3059676 1.425467 139.5916 0.6987136 1.196055 141.6236 1.043844 1.196055 139.5916 1.043844 0.8851336 141.6236 1.317837 0.8851336 139.5916 1.317837 0.5138921 141.6236 1.502022 0.5138921 139.5916 1.502022 3.004045 141.6236 -1.027784 2.635674 141.6236 -1.770267 3.167695 141.6236 -0.2152593 3.115471 141.6236 0.6119351 1.027784 141.6236 3.004045 1.770267 141.6236 2.635674 2.850934 141.6236 1.397427 2.39211 141.6236 2.087687 0.6119351 141.6236 -3.115471 1.397427 141.6236 -2.850934 2.087687 141.6236 -2.39211 -1.02411 143.7826 -3.005299 -0.7595405 143.7826 -3.082811 -0.4892443 143.7826 -3.137079 -0.8539169 143.7826 -3.294741 -1.155789 143.7826 -3.20135 -1.155789 143.2746 -3.20135 -0.5446848 143.7826 -3.359734 -0.8539169 143.2746 -3.294741 -0.5446848 143.2746 -3.359734 0.06034868 143.2746 -3.174426 0.3355017 143.2746 -3.157224 0.608125 143.2746 -3.116217 -3.500829 142.5126 -4.165328 -3.514407 142.5126 -3.950258 -3.471858 142.5126 -3.739001 -3.432049 142.5126 -4.369556 -3.151076 142.5126 -4.6915 -3.312755 142.5126 -4.549024 -3.376081 142.5126 -3.545955 -2.746774 142.5126 -4.829825 -2.95803 142.5126 -4.787276 -2.531703 142.5126 -4.816247 -2.148008 142.5126 -4.628173 -2.327475 142.5126 -4.747468 -2.005531 142.5126 -4.466495 -2.005531 144.2906 -4.466495 -2.148008 144.2906 -4.628173 -2.327475 144.2906 -4.747468 -2.531703 144.2906 -4.816247 -2.746774 144.2906 -4.829825 -2.95803 144.2906 -4.787276 -3.151076 144.2906 -4.6915 -3.312755 144.2906 -4.549024 -3.432049 144.2906 -4.369556 -3.500829 144.2906 -4.165328 -3.514407 144.2906 -3.950258 -3.471858 144.2906 -3.739001 -3.376081 144.2906 -3.545955 0.7235917 144.2906 -3.351784 0.4075299 144.2906 -3.404697 0.6970616 144.2837 -3.297659 0.06044509 144.0871 -3.179497 0.06072741 144.1352 -3.194348 0.3360376 144.0871 -3.162267 0.6104784 144.0871 -3.121018 0.06129191 144.1874 -3.224042 0.3376071 144.1352 -3.177038 0.6172783 144.1351 -3.134891 0.0620704 144.231 -3.264991 0.3407454 144.1874 -3.20657 0.6307581 144.1874 -3.162392 0.06276263 144.2566 -3.301404 0.3450733 144.231 -3.247298 0.6493757 144.231 -3.200374 0.06392702 144.2819 -3.362652 0.08790884 144.2906 -3.427873 0.3489217 144.2566 -3.283513 0.6719125 144.2635 -3.246352 0.355395 144.2819 -3.34443 1.382847 142.5126 -4.69675 1.66382 142.5126 -5.018694 1.502141 142.5126 -4.876218 1.856866 142.5126 -5.11447 2.068122 142.5126 -5.15702 2.283193 142.5126 -5.143442 2.666888 142.5126 -4.955368 2.487421 142.5126 -5.074662 1.142427 142.5126 -2.962345 0.608125 142.5126 -3.116217 2.809365 142.5126 -4.793688 1.641693 142.5126 -2.717622 2.865332 142.5126 -3.970088 2.934112 142.5126 -4.174316 2.94769 142.5126 -4.389387 2.905141 142.5126 -4.600643 2.090611 142.5126 -2.389555 1.382847 144.2906 -4.69675 2.865332 144.2906 -3.970088 2.934112 144.2906 -4.174316 2.94769 144.2906 -4.389387 2.905141 144.2906 -4.600643 2.809365 144.2906 -4.793688 2.666888 144.2906 -4.955368 2.487421 144.2906 -5.074662 2.283193 144.2906 -5.143442 2.068122 144.2906 -5.15702 1.856866 144.2906 -5.11447 1.66382 144.2906 -5.018694 1.502141 144.2906 -4.876218 2.472168 144.0366 -1.992238 2.090611 144.0366 -2.389555 2.090611 143.7826 -2.389555 2.472168 143.7826 -1.992238 2.779308 144.0366 -1.53495 2.779308 143.7826 -1.53495 3.002786 144.0366 -1.031457 3.002786 143.7826 -1.031457 2.637272 143.7826 -2.151578 2.194556 143.7826 -2.601618 2.194556 143.2746 -2.601618 2.637272 143.2746 -2.151578 2.98926 143.7826 -1.627518 2.98926 143.2746 -1.627518 3.23841 143.7826 -1.047469 3.23841 143.2746 -1.047469 2.090611 143.2746 -2.389555 2.093378 144.0911 -2.395201 2.101311 144.1427 -2.411386 2.113857 144.1891 -2.436981 2.130458 144.2284 -2.47085 2.150383 144.2588 -2.511498 2.172656 144.2794 -2.556937 2.189202 144.2878 -2.590695 2.206077 144.2906 -2.625122 2.894183 144.2589 -1.598392 2.526664 144.2284 -2.063938 2.855898 144.2284 -1.577249 3.096393 144.2311 -1.037818 2.560535 144.2589 -2.091606 2.937127 144.2796 -1.62211 3.147516 144.2635 -1.041292 3.204573 144.2836 -1.045169 3.012579 144.2906 -1.637805 2.655615 144.2906 -2.169274 2.598528 144.2796 -2.122641 3.264526 144.2906 -1.049243 2.462778 144.0867 -2.011752 2.474288 144.1351 -2.021154 2.783688 144.0867 -1.537369 3.008164 144.0867 -1.031822 2.497422 144.1876 -2.040051 2.796698 144.1351 -1.544554 3.023662 144.1349 -1.032875 2.822846 144.1876 -1.558995 3.054272 144.1875 -1.034956 4.870863 142.5126 0.4964064 3.174376 142.5126 0.06293648 3.114721 142.5126 0.6157444 3.136679 142.5126 -0.4918015 4.758928 142.5126 -1.150795 3.002786 142.5126 -1.031457 4.973999 142.5126 -1.137217 5.082119 142.5126 0.4538575 5.436844 142.5126 0.2156045 5.275165 142.5126 0.3580812 5.624918 142.5126 -0.168091 5.556139 142.5126 0.03613694 5.500171 142.5126 -0.7874636 5.357694 142.5126 -0.9491426 5.178227 142.5126 -1.068437 5.595947 142.5126 -0.594418 5.638496 142.5126 -0.3831616 4.758928 144.2906 -1.150795 3.002786 143.2746 -1.031457 4.870863 144.2906 0.4964064 5.082119 144.2906 0.4538575 5.275165 144.2906 0.3580812 5.436844 144.2906 0.2156045 5.556139 144.2906 0.03613694 5.624918 144.2906 -0.168091 5.638496 144.2906 -0.3831616 5.595947 144.2906 -0.594418 5.500171 144.2906 -0.7874636 5.357694 144.2906 -0.9491426 5.178227 144.2906 -1.068437 4.973999 144.2906 -1.137217 3.181957 143.7826 1.208156 3.350345 143.7826 0.5997326 3.350345 143.2746 0.5997326 3.181957 143.2746 1.208156 2.904102 143.7826 1.775016 2.904102 143.2746 1.775016 2.52634 143.7826 2.280812 2.52634 143.2746 2.280812 3.114721 143.2746 0.6157444 3.114721 143.7826 0.6157444 3.114721 144.0366 0.6157444 3.120995 144.0909 0.6153179 3.138985 144.1425 0.6140954 3.167437 144.1891 0.612162 3.205077 144.2284 0.6096042 3.250093 144.2588 0.6065452 3.300431 144.2795 0.6031244 3.337968 144.2878 0.6005736 3.376461 144.2906 0.5979579 2.831275 144.2589 1.707201 3.09158 144.2589 1.171658 3.050786 144.2284 1.156198 2.873149 144.2796 1.73245 2.475558 144.2636 2.205205 2.507408 144.2837 2.252624 2.924671 144.2906 1.790068 3.206454 144.2906 1.215194 3.137305 144.2796 1.188987 2.540934 144.2906 2.302541 2.97368 144.0871 1.126976 2.961412 144.0366 1.144842 2.987557 144.1352 1.132235 2.723301 144.0871 1.642095 2.394661 144.0366 2.08476 2.397633 144.0871 2.089186 2.71896 144.0366 1.639477 3.015328 144.1874 1.14276 2.736011 144.1352 1.649758 2.406235 144.1351 2.101992 2.761443 144.1874 1.665094 2.423319 144.1873 2.127429 2.793916 144.2284 1.684674 2.446964 144.2311 2.162632 2.394661 142.5126 2.08476 2.394661 143.2746 2.08476 2.394661 143.7826 2.08476 2.005531 142.5126 4.466495 2.005531 144.2906 4.466495 2.148008 144.2906 4.628173 2.148008 142.5126 4.628173 2.327475 142.5126 4.747468 2.327475 144.2906 4.747468 2.531703 142.5126 4.816247 2.531703 144.2906 4.816247 1.532683 142.5126 2.780559 1.02411 142.5126 3.005299 1.994252 142.5126 2.470543 -3.114721 144.0366 -0.6157444 -3.114721 143.7826 -0.6157444 -2.961412 143.7826 -1.144842 -2.961412 144.0366 -1.144842 -2.71896 144.0366 -1.639477 -2.71896 143.7826 -1.639477 -2.394661 144.0366 -2.08476 -2.394661 143.7826 -2.08476 -5.624918 142.5126 0.168091 -5.638496 142.5126 0.3831616 -5.595947 142.5126 0.594418 -5.178227 142.5126 1.068437 -5.500171 142.5126 0.7874636 -5.357694 142.5126 0.9491426 -5.436844 142.5126 -0.2156045 -5.556139 142.5126 -0.03613694 -4.758928 142.5126 1.150795 -4.973999 142.5126 1.137217 -5.275165 142.5126 -0.3580812 -5.082119 142.5126 -0.4538575 -4.870863 142.5126 -0.4964064 -0.7120708 143.2746 3.32828 -0.08515782 143.2746 3.402534 0.5446848 143.2746 3.359734 0.7595405 143.2746 3.082811 0.4892443 143.2746 3.137079 1.155789 143.2746 3.20135 1.02411 143.2746 3.005299 0.5446848 143.7826 3.359734 1.155789 143.7826 3.20135 -0.08515782 143.7826 3.402534 -0.7120708 143.7826 3.32828 0.4892443 144.0366 3.137079 1.02411 144.0366 3.005299 1.02411 143.7826 3.005299 0.4892443 143.7826 3.137079 -0.06034868 144.0366 3.174426 -0.06034868 143.7826 3.174426 -0.608125 144.0366 3.116217 -0.608125 143.7826 3.116217 -0.06284302 144.2589 3.305632 0.5389972 144.2796 3.311712 0.5311164 144.2589 3.263291 -0.06377549 144.2796 3.354681 -0.6719125 144.2635 3.246352 -0.6970616 144.2837 3.297659 -0.08790884 144.2906 3.427873 0.5508385 144.2906 3.384467 1.170384 144.2906 3.22308 1.149007 144.2878 3.191252 -0.7235917 144.2906 3.351784 0.5108504 144.0871 3.138772 1.027616 144.0911 3.010519 0.5132364 144.1352 3.153432 1.037666 144.1427 3.025482 -0.06044509 144.0871 3.179497 -0.6104784 144.0871 3.121018 0.5180073 144.1874 3.182745 1.053559 144.1891 3.049144 -0.06072741 144.1352 3.194348 -0.6172783 144.1351 3.134891 0.5240908 144.2284 3.220124 1.074589 144.2284 3.080456 -0.06129191 144.1874 3.224042 -0.6307581 144.1874 3.162392 1.09983 144.2588 3.118035 -0.06201173 144.2284 3.261905 -0.6493757 144.231 3.200374 1.128045 144.2794 3.160044 -2.865332 142.5126 3.970088 -2.94769 142.5126 4.389387 -2.934112 142.5126 4.174316 -2.905141 142.5126 4.600643 -2.809365 142.5126 4.793688 -2.666888 142.5126 4.955368 -2.487421 142.5126 5.074662 -2.283193 142.5126 5.143442 -2.865332 144.2906 3.970088 -2.934112 144.2906 4.174316 -2.94769 144.2906 4.389387 -2.905141 144.2906 4.600643 -2.809365 144.2906 4.793688 -2.666888 144.2906 4.955368 -2.487421 144.2906 5.074662 -2.283193 144.2906 5.143442 -2.194556 143.7826 2.601618 -2.194556 143.2746 2.601618 -2.637272 143.2746 2.151578 -2.637272 143.7826 2.151578 -2.98926 143.7826 1.627518 -2.98926 143.2746 1.627518 -3.23841 143.7826 1.047469 -3.23841 143.2746 1.047469 -2.090611 143.7826 2.389555 -2.090611 144.0366 2.389555 -2.093378 144.0911 2.395201 -2.101311 144.1427 2.411386 -2.113857 144.1891 2.436981 -2.130458 144.2284 2.47085 -2.150383 144.2588 2.511498 -2.172656 144.2794 2.556937 -2.189202 144.2878 2.590695 -2.206077 144.2906 2.625122 -2.894183 144.2589 1.598392 -2.598528 144.2796 2.122641 -2.560535 144.2589 2.091606 -2.937127 144.2796 1.62211 -3.147114 144.2633 1.041265 -3.204231 144.2836 1.045146 -3.012579 144.2906 1.637805 -2.655615 144.2906 2.169274 -3.264526 144.2906 1.049243 -2.462789 144.0868 2.011761 -2.472168 144.0366 1.992238 -2.474295 144.1351 2.02116 -2.783701 144.0868 1.537376 -3.002786 144.0366 1.031457 -3.008166 144.0868 1.031822 -2.779308 144.0366 1.53495 -2.497359 144.1874 2.04 -2.796705 144.1351 1.544558 -3.023651 144.1349 1.032875 -2.526664 144.2284 2.063938 -2.822775 144.1874 1.558956 -3.054183 144.1874 1.034949 -2.855898 144.2284 1.577249 -3.096119 144.2309 1.037799 -4.758928 144.2906 1.150795 -3.002786 143.7826 1.031457 -4.870863 144.2906 -0.4964064 -5.082119 144.2906 -0.4538575 -5.275165 144.2906 -0.3580812 -5.436844 144.2906 -0.2156045 -5.556139 144.2906 -0.03613694 -5.624918 144.2906 0.168091 -5.638496 144.2906 0.3831616 -5.595947 144.2906 0.594418 -5.500171 144.2906 0.7874636 -5.357694 144.2906 0.9491426 -5.178227 144.2906 1.068437 -4.973999 144.2906 1.137217 -3.350345 143.2746 -0.5997326 -3.350345 143.7826 -0.5997326 -3.120959 144.0907 -0.6153204 -3.138865 144.1422 -0.6141036 -3.167219 144.1888 -0.6121768 -3.204805 144.2282 -0.6096227 -3.250066 144.2586 -0.606547 -3.3007 144.2794 -0.6031061 -3.33826 144.2877 -0.6005538 -3.376461 144.2906 -0.5979579 -3.181957 143.7826 -1.208156 -3.181957 143.2746 -1.208156 -2.904102 143.7826 -1.775016 -2.904102 143.2746 -1.775016 -2.52634 143.7826 -2.280812 -2.52634 143.2746 -2.280812 2.472168 143.2746 -1.992238 2.779308 143.2746 -1.53495 2.961412 143.2746 1.144842 2.71896 143.2746 1.639477 -2.924671 144.2906 -1.790068 -2.540934 144.2906 -2.302541 -3.206454 144.2906 -1.215194 -2.831198 144.2589 -1.707154 -3.137511 144.2796 -1.189065 -3.091496 144.2589 -1.171626 -2.873338 144.2796 -1.732564 -2.475558 144.2636 -2.205205 -2.507408 144.2837 -2.252624 -2.97368 144.0871 -1.126976 -2.987557 144.1352 -1.132235 -2.723301 144.0871 -1.642095 -2.397633 144.0871 -2.089186 -3.015328 144.1874 -1.14276 -2.736011 144.1352 -1.649758 -2.406235 144.1351 -2.101992 -3.050531 144.2282 -1.156101 -2.761443 144.1874 -1.665094 -2.423319 144.1873 -2.127429 -2.793682 144.2282 -1.684533 -2.446964 144.2311 -2.162632 - - - - - - - - - - 0.197444 0.0005673996 0.980314 0.1968446 0 0.9804347 -0.02431082 0.09350966 -0.9953215 0.06236678 0.0313705 -0.9975602 0.1487424 0 -0.988876 0.0623975 0 -0.9980514 0.2767404 -0.0003796708 -0.9609447 0.06300776 0.0005674451 -0.9980129 0.7212669 0 -0.6926573 0.4400934 -0.01371616 -0.8978472 0.3190474 0.0272078 -0.9473482 0.5900303 -0.0003797867 -0.807381 0.5533678 0.02720761 -0.8324926 0.9140117 0 -0.4056878 0.8301118 -0.007249514 -0.5575499 0.7502549 0.0005673242 -0.6611484 0.7378449 0.01764378 -0.6747396 0.9036957 0.01764381 -0.4278114 0.9705727 -0.0003797914 -0.2408081 0.8958083 0.0005673174 -0.4444403 0.9604921 0 0.2783071 0.9976052 -0.01371616 -0.06779201 0.9799513 0.02720767 -0.197371 0.9942276 -0.0003796536 0.107291 0.9976436 0.02720781 0.06298444 0.8083419 0 0.5887133 0.8223435 0.01764376 0.5687177 0.8979083 -0.007249558 0.4401228 0.9476988 0.0005674665 0.3191655 0.9532641 0.01764369 0.3016227 0.8328007 0.0005672948 0.5535726 0.6938323 -0.0003798365 0.7201365 0.2811545 0 0.9596625 0.1967477 0.03137054 0.9799522 0.6609038 0.02720779 0.7499773 0.5575119 -0.01371609 0.8300556 0.110564 0.09350975 0.9894602 0.4041973 -0.0003797179 0.9146718 0.4442758 0.0272077 0.8954768 -0.1974449 0 -0.980314 -0.1974449 0 -0.980314 -0.4444394 0 -0.8958089 -0.4444394 0 -0.8958089 -0.6611482 0 -0.7502553 -0.8328011 0 -0.5535722 -0.6611482 0 -0.7502553 -0.8328011 0 -0.5535722 -0.1974449 0 -0.980314 -0.1974449 0 -0.980314 -0.4444394 0 -0.8958089 -0.4444394 0 -0.8958089 -0.6611488 0 -0.7502548 -0.6611488 0 -0.7502548 -0.8328006 0 -0.553573 -0.947699 0 -0.3191653 -0.8328006 0 -0.553573 -0.947699 0 -0.3191653 -0.998013 0 -0.06300816 -0.998013 0 -0.06300816 -0.980314 0 0.1974449 -0.980314 0 0.1974449 -0.8958085 0 0.4444403 -0.8958085 0 0.4444403 0.1101022 0.1304135 0.9853272 0.02287652 0.9970297 0.07354307 0.01493575 0.9914325 0.1297633 0.2785518 0.1357517 0.9507788 0.2854246 0.1095356 0.9521211 0.2726224 0.3167842 0.9084738 0.2722192 0.3180097 0.9081666 0.1953468 0.1231277 0.9729744 0.2059677 0.07734858 0.9754971 0.1194061 0.09356844 0.9884266 0.2494218 0.5057321 0.8258472 0.2467977 0.5120075 0.8227632 0.1122423 0.3821889 0.9172422 0.1051571 0.3178368 0.942296 0.1958708 0.3178848 0.9276766 0.1774734 0.5118475 0.8405447 0.1958703 0.3178866 0.927676 0.2141437 0.6767433 0.704387 0.2114972 0.6816036 0.7004894 0.097881 0.6082219 0.787709 0.1511887 0.6814739 0.7160555 0.1774734 0.5118483 0.8405442 0.09354487 0.5117456 0.8540292 0.165909 0.8182482 0.5504037 0.1689387 0.8140042 0.555749 0.07524598 0.7928253 0.6047861 0.1511888 0.681476 0.7160534 0.07957815 0.6813735 0.727597 0.114936 0.9196897 0.3754472 0.06554595 0.9743816 0.2151379 0.1174985 0.9174384 0.3801327 0.05180899 0.9890484 0.1381995 0.06643112 0.8139251 0.5771592 0.1200209 0.8139251 0.5684372 0.1200199 0.8139269 0.5684349 0.04677902 0.9236741 0.3803129 0.03036226 0.9891408 0.1438005 0.03036226 0.9891409 0.1438005 0.01336724 0.9891111 0.1465621 0.08220206 0.9174265 0.3893219 0.04549843 0.917427 0.3952943 0.08220157 0.9174271 0.3893207 0.02141244 0 0.9997707 -0.07139771 0 0.9974479 0.02141244 0 0.9997707 -0.07139771 0 0.9974479 -0.1635937 0 0.9865279 -0.1635937 0 0.9865279 0.0244178 0 0.9997018 0.0244178 0 0.9997018 -0.0623975 0 0.9980514 -0.1487424 0 0.988876 -0.0623975 0 0.9980514 -0.1487424 0 0.988876 0.06300777 0 -0.998013 0.06300777 0 -0.998013 0.3191655 0 -0.947699 0.3191655 0 -0.947699 0.5535727 0 -0.8328009 0.750255 0 -0.6611485 0.5535727 0 -0.8328009 0.750255 0 -0.6611485 0.8958084 0 -0.4444404 0.9803141 0 -0.1974441 0.8958084 0 -0.4444404 0.998013 0 0.06300777 0.9803141 0 -0.1974441 0.998013 0 0.06300777 0.947699 0 0.3191655 0.947699 0 0.3191655 0.8328009 0 0.5535727 0.6611485 0 0.750255 0.8328009 0 0.5535727 0.4444404 0 0.8958084 0.6611485 0 0.750255 0.4444404 0 0.8958084 0.1974441 0 0.9803141 0.1974441 0 0.9803141 0.06300789 0 -0.998013 0.06300789 0 -0.998013 0.3191654 0 -0.947699 0.3191654 0 -0.947699 0.5535728 0 -0.8328008 0.7502549 0 -0.6611487 0.5535728 0 -0.8328008 0.7502549 0 -0.6611487 0.8958085 0 -0.4444403 0.9803141 0 -0.1974441 0.8958085 0 -0.4444403 0.9803141 0 -0.1974441 0.998013 0 0.06300789 0.947699 0 0.3191654 0.998013 0 0.06300789 0.947699 0 0.3191654 0.8328008 0 0.5535728 0.6611487 0 0.7502549 0.8328008 0 0.5535728 0.4444403 0 0.8958085 0.6611487 0 0.7502549 0.4444403 0 0.8958085 0.1974441 0 0.9803141 0.1974441 0 0.9803141 0.01249537 0.9999187 -0.002516679 0.06260508 0.9979588 -0.01260924 0.03761602 0.9992636 -0.0075762 0.03761611 0.9992635 -0.007576221 0.06260547 0.9979587 -0.0126093 0.01272106 0.9999188 0.0008031178 0.01207974 0.9999188 0.004068205 0.03829525 0.9992635 0.002417705 0.01272096 0.9999188 0.0008031161 0.06373579 0.9979587 0.004023851 0.06373537 0.9979587 0.004023805 0.03829501 0.9992636 0.002417679 0.0106152 0.9999188 0.007056052 0.01207973 0.9999188 0.004068203 0.03636449 0.9992636 0.01224681 0.06052279 0.9979587 0.02038284 0.004023825 0.9979588 -0.06373537 0.06052259 0.9979587 0.02038276 0.03636442 0.9992636 0.01224679 0.01061517 0.9999188 0.007056034 0.03195575 0.9992636 0.02124137 0.0531847 0.9979587 0.03535249 0.04222256 0.9979587 0.0479131 0.05318504 0.9979588 0.03535274 0.03195567 0.9992636 0.02124132 0.008427229 0.9999188 0.009563008 0.005664987 0.9999188 0.01141828 0.008427234 0.9999188 0.009563014 0.02536925 0.9992635 0.02878839 0.02536921 0.9992636 0.02878834 0.04222253 0.9979588 0.04791307 0.01705383 0.9992635 0.0343735 0.00251669 0.9999188 0.01249544 0.002516679 0.9999187 0.01249537 0.007576217 0.9992635 0.0376161 0.005664996 0.9999188 0.0114183 0.028383 0.9979587 0.05720842 0.007576202 0.9992636 0.03761603 0.02838312 0.9979587 0.05720869 0.01705379 0.9992635 0.03437342 0.0126093 0.9979587 0.06260547 0.01260924 0.9979588 0.06260508 0.0008031178 0.9999188 -0.01272106 0.004068205 0.9999188 -0.01207974 0.0008031161 0.9999188 -0.01272096 0.002417694 0.9992636 -0.03829525 0.004023833 0.9979588 -0.06373581 0.002417689 0.9992635 -0.038295 0.004068203 0.9999188 -0.01207973 0.01224677 0.9992636 -0.03636439 0.02038284 0.9979587 -0.06052279 0.03535273 0.9979587 -0.05318504 0.01224681 0.9992636 -0.03636448 0.02038276 0.9979587 -0.06052259 0.007056034 0.9999188 -0.01061517 0.009563013 0.9999188 -0.008427233 0.02124133 0.9992636 -0.03195568 0.007056053 0.9999188 -0.0106152 0.02124137 0.9992636 -0.03195574 0.0353525 0.9979587 -0.05318468 0.009563007 0.9999188 -0.00842723 0.04791307 0.9979587 -0.04222253 0.02878839 0.9992635 -0.02536925 0.0479131 0.9979588 -0.04222256 0.02878834 0.9992636 -0.02536921 0.0114183 0.9999188 -0.005664996 0.01249544 0.9999188 -0.00251669 0.0343735 0.9992635 -0.01705383 0.01141828 0.9999188 -0.005664987 0.05720869 0.9979587 -0.02838312 0.03437342 0.9992635 -0.01705379 0.05720842 0.9979587 -0.028383 0.08413251 0.9881908 0.1280647 -0.009622409 0.9583585 -0.2854056 0.009581726 0.9608572 -0.2768785 0.02684982 0.9652256 -0.2600357 0.0730303 0.970507 -0.2297448 0.09723893 0.9643136 -0.2462596 0.03285708 0.9675522 -0.2505256 0.1213473 0.9593326 -0.2548645 0.1424077 0.9569258 -0.2530078 0.1576329 0.9578649 -0.2400974 0.1654237 0.96184 -0.2179425 0.04211783 0.9689531 -0.243631 0.1658591 0.9676641 -0.1900443 0.07500012 0.9813437 -0.1770294 0.06277518 0.9747289 -0.2143894 0.06241354 0.9735872 -0.2196194 0.07959507 0.9862107 -0.1450964 0.08305213 0.9886815 -0.1249445 0.09554623 0.9918576 -0.08419844 0.05590875 0.9718243 -0.2289796 0.1107516 0.992328 -0.05494749 0.1332641 0.9907171 -0.02684061 0.08545347 0.9835322 -0.1592547 0.1622916 0.9733292 -0.162147 0.1761149 0.9723395 -0.1534262 0.1885538 0.9716175 -0.1428526 0.1992877 0.9712012 -0.1305862 0.2080475 0.971113 -0.1168572 0.2146346 0.9713581 -0.1019584 0.2189333 0.9719226 -0.08622371 0.2209172 0.9727768 -0.0700075 0.2206448 0.9738767 -0.05366585 0.218251 0.9751708 -0.03753012 0.213931 0.9766033 -0.02189655 0.1608533 0.9734578 -0.1628066 0.1356701 0.990717 0.008565276 0.1171669 0.992328 0.03945942 0.1060586 0.9918576 0.0704984 0.09919167 0.9886816 0.1125603 0.09849262 0.9862107 0.1329945 0.2149265 0.9766033 -0.007246305 0.2213218 0.9751707 0.007659102 0.2258766 0.9738767 0.02332284 0.2283572 0.9727768 0.03947731 0.2285854 0.9719227 0.05581249 0.2264547 0.9713581 0.07198439 0.2219439 0.971113 0.0876376 0.2151219 0.9712011 0.1024249 0.206146 0.9716175 0.1160311 0.1952519 0.9723395 0.1281901 0.1827355 0.9733292 0.1387008 0.2108837 0.9774062 -0.01433051 0.006056873 0.9953689 -0.09593783 0.151452 0.9884111 -0.01029186 0.1062126 0.9835322 0.1462301 0.09825996 0.9813437 0.1652557 0.02907688 0.9583585 0.2840836 0.09120161 0.9747289 0.203926 0.1900444 0.9676641 0.1658591 0.1933871 0.96184 0.1935596 0.1886651 0.9578649 0.2165648 0.1753264 0.9569259 0.2314165 0.1547112 0.9593325 0.2361051 0.1296599 0.9643137 0.2308407 0.03835813 0.9927518 -0.1138968 0.1034396 0.9705071 0.2177528 0.1813997 0.9734579 0.139549 0.09155084 0.9735872 0.2091569 0.06603397 0.9881908 -0.1382692 0.0469511 0.9608572 0.2730367 0.06644719 0.9675522 0.2437774 0.06178162 0.9652256 0.2540129 0.07469012 0.968953 0.2356933 0.08637229 0.9718245 0.2193107 0.05341391 0.9927518 0.1076605 0.01898009 0.9953689 0.09423646 0.1096803 0.5890372 0.8006281 0.3356014 0.3693546 0.8665731 0.2452628 0.3689825 0.8964921 0.09894855 0.1359481 -0.9857623 0.3574424 0.1426927 0.9229701 0.1594248 0.1169459 -0.9802588 0.3516789 0.1257943 0.9276302 0.2902572 0.1257943 0.9486446 0.09281203 0.3693902 -0.924628 0.1327332 0.2088423 0.9688998 0.1830241 0.3690113 -0.911226 0.2452625 0.36898 0.8964933 0.1261544 0.368861 0.9208836 0.2466629 0.7723776 -0.5853122 0.2587738 0.1958225 0.9458803 -0.01420733 0.906765 -0.4213969 0.126155 0.3688649 0.920882 0.2277669 0.1196057 0.966342 0.1637911 0.1331468 0.9774684 0.2466628 0.7723781 -0.5853114 0.247742 0.8984336 -0.3625479 0.2502788 0.9102933 -0.3297374 0.2391989 0.5896084 -0.7714569 0.2391988 0.5896073 -0.7714578 0.3051195 0.77256 -0.5568241 0.3051195 0.7725601 -0.5568242 0.3583037 0.7724512 -0.524345 0.2752127 0.3693348 -0.887609 0.1932374 0.1925497 -0.9620727 0.2229536 0.1257938 -0.9666786 0.2856981 0.1257938 -0.9500276 0.1830247 0.3690091 -0.9112267 0.2772422 0.9067652 -0.317669 0.2982744 0.9067652 -0.2980087 0.2817246 0.8997862 -0.3331908 0.3137466 0.5893126 -0.7444956 0.3137466 0.5893111 -0.7444968 0.3583036 0.7724512 -0.5243449 -0.03483964 0.1257938 -0.9914444 0.4100106 0.7724968 -0.4849125 0.2929752 0.1460585 -0.9448981 0.3478504 0.1107359 -0.9309874 0.3609261 0.369091 -0.8564487 0.275212 0.3693362 -0.8876086 0.3122501 0.9102215 -0.2720235 0.3120383 0.9004529 -0.3030126 0.3881586 0.5895355 -0.7083649 0.4557771 0.5894008 -0.6669886 0.3881585 0.5895351 -0.7083652 0.4100108 0.7724966 -0.4849126 0.3818101 0.1826889 -0.9060055 0.4465818 0.3692781 -0.8149837 0.4072581 0.1257946 -0.9046085 0.4655503 0.1257946 -0.8760358 0.3609256 0.3690921 -0.8564484 0.3360754 0.906765 -0.2546183 0.3526675 0.906765 -0.2310904 0.3457526 0.8977467 -0.2729579 0.5215685 0.5894594 -0.61685 0.4557754 0.5894034 -0.6669876 0.4555474 0.7725183 -0.4423708 0.4555474 0.7725184 -0.4423707 0.4465822 0.3692774 -0.8149838 0.4746552 0.1561197 -0.8662153 0.5229978 0.1071818 -0.8455681 0.5243385 0.3691658 -0.7673237 0.3627281 0.9024122 -0.2325522 0.3620336 0.9097146 -0.2033491 0.5215697 0.5894578 -0.6168505 0.579506 0.5894847 -0.5627438 0.4984841 0.7724281 -0.3935333 0.4984845 0.7724274 -0.393534 0.6000484 0.3692106 -0.7096658 0.5759133 0.1257959 -0.8077743 0.6275116 0.1257958 -0.7683778 0.555707 0.1727725 -0.8132277 0.5243394 0.3691639 -0.7673241 0.3970132 0.8956444 -0.2005033 0.3808494 0.9067653 -0.1809158 0.3923074 0.9067653 -0.1545046 0.5795058 0.589485 -0.5627438 0.5345007 0.7725806 -0.3426784 0.5345015 0.7725793 -0.3426797 0.6000477 0.3692119 -0.7096656 0.6366952 0.1661273 -0.7530079 0.6779757 0.1062904 -0.7273592 0.6667116 0.3692341 -0.6474271 0.3980591 0.9043142 -0.1541583 0.3978165 0.9087625 -0.1260662 0.6340809 0.5893716 -0.5005821 0.6340805 0.5893728 -0.5005813 0.5669891 0.772353 -0.2863461 0.5669901 0.7723519 -0.2863471 0.6667117 0.3692337 -0.6474271 0.7078356 0.1627975 -0.6873615 0.7224367 0.1257939 -0.6798979 0.7653569 0.1257938 -0.631193 0.6799768 0.5895614 -0.4359459 0.6799775 0.5895599 -0.4359471 0.4096922 0.906765 -0.09964628 0.4155371 0.906765 -0.07145533 0.4331901 0.893477 -0.1185123 0.5920044 0.7726362 -0.2292684 0.5920045 0.7726361 -0.2292685 0.7294537 0.3691406 -0.5758755 0.7294534 0.3691431 -0.5758743 0.772624 0.1760827 -0.6099566 0.8066936 0.1080687 -0.5810049 0.7211762 0.5892809 -0.3642153 0.721177 0.5892795 -0.3642161 0.419445 0.906765 -0.04293156 0.4508091 0.8904814 -0.06175773 0.4213969 0.906765 -0.01420733 0.7823339 0.3692993 -0.5015693 0.7823341 0.3692981 -0.5015699 0.829608 0.3690656 -0.4189765 0.8319616 0.1527698 -0.5333865 0.8411968 0.1257931 -0.5258936 0.8737905 0.125793 -0.4697514 0.6127732 0.7722726 -0.1676423 0.6295543 0.7721549 -0.08624458 0.6127748 0.7722712 -0.1676432 0.7531659 0.5896291 -0.2916823 0.753166 0.5896291 -0.2916823 0.7793619 0.5891801 -0.2132175 0.8296075 0.3690665 -0.4189766 0.8770506 0.1859821 -0.4429368 0.9040934 0.1125108 -0.4122578 0.4189985 0.9078712 0.01449996 0.4520448 0.8919947 -0.001084995 0.6295534 0.7721557 -0.0862447 0.6353594 0.772215 -0.001524987 0.77936 0.5891827 -0.2132177 0.8006266 0.5890394 -0.1096806 0.4194061 0.9067652 0.04330551 0.4154732 0.9067652 0.07182513 0.4221152 0.9055514 0.04237114 0.8665729 0.3693546 -0.335602 0.8665724 0.3693565 -0.3356011 0.8964921 0.3689825 -0.2452628 0.9229701 0.1426927 -0.3574424 0.9276302 0.1257943 -0.3516789 0.9486446 0.1257943 -0.2902572 0.6353582 0.7722161 -0.001525338 0.8006281 0.5890372 -0.1096803 0.8080502 0.5891106 -0.001939928 0.4046245 0.9091307 0.09879506 0.4388884 0.8942069 0.08815283 0.8964933 0.36898 -0.2452625 0.9208836 0.368861 -0.1261544 0.966342 0.1196057 -0.2277669 0.9774684 0.1331468 -0.1637911 0.9458803 0.1958225 -0.2587738 0.6316335 0.7726702 0.0634022 0.6228192 0.7723 0.1250962 0.631633 0.7726706 0.06340243 0.4018233 0.9067652 0.1277298 0.3921699 0.9067652 0.1548536 0.4089858 0.9036868 0.1268102 0.80805 0.5891108 -0.001939989 0.9294564 0.3689256 -0.002231464 0.920882 0.3688649 -0.126155 0.9870431 0.1257938 -0.09960883 0.9914444 0.1257938 -0.03483964 0.9688998 0.2088423 -0.1327332 0.6228191 0.7723001 0.1250961 0.8036045 0.5896719 0.08066478 0.8036047 0.5896717 0.0806647 0.3744772 0.9099323 0.1782979 0.408546 0.8963524 0.1721701 0.5853122 0.7723775 0.2466631 0.6063927 0.772617 0.1880183 0.6063911 0.7726182 0.1880184 0.9793109 0.2023479 -0.002350472 0.9294574 0.3689228 -0.002230818 0.9916003 0.125794 0.03007997 0.9875099 0.125794 0.09486812 0.3790483 0.9017655 0.2077048 0.3674308 0.9067654 0.2068117 0.3524611 0.9067654 0.2314038 0.7921556 0.5892147 0.1591082 0.7921559 0.5892145 0.1591082 0.9246278 0.3693902 0.09281293 0.9857623 0.1359481 0.09894855 0.911226 0.3690113 0.1830241 0.9802588 0.1169459 0.1594248 0.9246289 0.369388 0.09281212 0.5853115 0.7723782 0.2466626 0.3625479 0.8984336 0.247742 0.3297374 0.9102933 0.2502788 0.7714578 0.5896073 0.2391988 0.7444958 0.5893127 0.3137462 0.7714569 0.5896084 0.2391989 0.5568242 0.7725601 0.3051195 0.5568241 0.77256 0.3051195 0.887609 0.3693348 0.2752127 0.9620727 0.1925497 0.1932374 0.9666786 0.1257938 0.2229536 0.9500276 0.1257938 0.2856981 0.9112267 0.3690091 0.1830247 0.317669 0.9067653 0.2772422 0.2980087 0.9067652 0.2982744 0.3331908 0.8997862 0.2817246 0.7444967 0.5893111 0.3137471 0.708365 0.5895356 0.3881584 0.524345 0.7724512 0.3583037 0.4849125 0.7724968 0.4100106 0.5243449 0.7724512 0.3583036 0.8564486 0.369091 0.360926 0.8876086 0.3693362 0.275212 0.9448981 0.1460585 0.2929752 0.9309874 0.1107359 0.3478504 0.3030126 0.9004529 0.3120383 0.2720235 0.9102215 0.3122501 0.7083652 0.5895351 0.3881587 0.4849126 0.7724966 0.4100108 0.8564484 0.3690921 0.3609256 0.8149837 0.3692781 0.4465818 0.9060055 0.1826889 0.3818101 0.9046085 0.1257946 0.4072581 0.8760358 0.1257946 0.4655503 0.2546183 0.906765 0.3360754 0.2310904 0.906765 0.3526675 0.04293156 0.906765 0.419445 0.2729579 0.8977467 0.3457526 0.6669891 0.5894008 0.4557765 0.6669871 0.5894034 0.4557761 0.61685 0.5894594 0.5215685 0.4423708 0.7725183 0.4555474 0.4423707 0.7725185 0.4555474 0.8149838 0.3692774 0.4465822 0.7673237 0.3691658 0.5243385 0.8662153 0.1561197 0.4746552 0.8455681 0.1071818 0.5229978 0.2033491 0.9097146 0.3620336 0.2325522 0.9024122 0.3627281 0.6168505 0.5894578 0.5215697 0.3935333 0.7724281 0.4984841 0.393534 0.7724274 0.4984845 0.767324 0.3691638 0.5243394 0.7096657 0.3692105 0.6000484 0.8132277 0.1727725 0.555707 0.8077743 0.1257959 0.5759133 0.7683778 0.1257958 0.6275116 0.09960883 0.1257938 0.9870431 0.1809158 0.9067653 0.3808494 0.01449996 0.9078712 -0.4189985 0.1545046 0.9067652 0.3923074 0.2005033 0.8956444 0.3970132 -0.001084995 0.8919947 -0.4520448 0.5627439 0.5894846 0.5795059 0.5627437 0.5894849 0.5795059 0.04330551 0.9067652 -0.4194061 0.07182513 0.9067652 -0.4154732 0.04237114 0.9055514 -0.4221152 0.3426783 0.7725804 0.5345006 0.3426797 0.7725793 0.5345015 0.2863468 0.7723519 0.5669904 -0.001525341 0.7722151 -0.6353594 -0.001524984 0.7722161 -0.6353581 0.7096656 0.3692119 0.6000477 0.7530079 0.1661273 0.6366952 0.7273592 0.1062904 0.6779757 0.06340215 0.7726706 -0.631633 0.09879506 0.9091307 -0.4046245 0.1260662 0.9087625 0.3978165 0.1541583 0.9043142 0.3980591 0.08815283 0.8942069 -0.4388884 0.5005821 0.5893716 0.6340809 0.5005813 0.5893728 0.6340805 0.06340248 0.7726702 -0.6316335 0.2863465 0.7723531 0.5669889 0.1250962 0.7723 -0.6228192 0.1277298 0.9067652 -0.4018233 0.1548536 0.9067652 -0.3921699 0.2292685 0.7726361 0.5920045 0.1268102 0.9036868 -0.4089858 0.647427 0.3692341 0.6667116 0.6474273 0.3692337 0.6667117 0.6798979 0.1257939 0.7224367 0.631193 0.1257938 0.7653569 0.5758749 0.3691407 0.7294541 0.6873615 0.1627975 0.7078356 0.3642157 0.589281 0.7211761 -0.001939989 0.5891106 -0.8080502 -0.001939927 0.5891108 -0.80805 0.4359459 0.5895614 0.6799768 0.4359471 0.5895599 0.6799775 0.08066468 0.5896719 -0.8036045 0.1185123 0.893477 0.4331901 0.09964628 0.906765 0.4096922 0.07145533 0.9067651 0.4155372 0.08624447 0.7721557 0.6295534 0.06175773 0.8904814 0.4508091 0.1250961 0.7723001 -0.6228191 0.1591082 0.5892147 -0.7921557 0.2292685 0.7726362 0.5920044 0.5015696 0.3692993 0.7823337 0.6099566 0.1760827 0.772624 0.08066478 0.5896717 -0.8036047 0.5810049 0.1080687 0.8066936 0.1782979 0.9099323 -0.3744772 0.5758749 0.3691431 0.729453 0.3642158 0.5892797 0.7211771 0.1721701 0.8963524 -0.408546 0.4189765 0.3690656 0.829608 0.1880183 0.772617 -0.6063927 0.5333865 0.1527698 0.8319616 0.5258936 0.1257931 0.8411968 0.4697514 0.125793 0.8737905 0.5015695 0.369298 0.7823343 0.1676432 0.7722712 0.6127748 0.1880184 0.7726182 -0.6063911 -0.002230815 0.3689256 -0.9294562 0.08624481 0.7721549 0.6295543 0.09281303 0.3693879 -0.9246287 0.1676423 0.7722726 0.6127732 -0.002350472 0.2023479 -0.9793109 -0.002231466 0.3689227 -0.9294574 0.2916823 0.5896291 0.753166 0.03007997 0.125794 -0.9916002 0.2916823 0.5896291 0.7531659 0.09486812 0.125794 -0.9875099 0.2068117 0.9067654 -0.3674308 0.2314038 0.9067654 -0.3524611 0.3356017 0.3693565 0.8665721 0.2077048 0.9017655 -0.3790483 0.4189766 0.3690665 0.8296075 0.4429368 0.1859821 0.8770506 0.4122578 0.1125108 0.9040934 0.2132182 0.5891802 0.7793617 0.1591083 0.5892145 -0.7921557 0.213217 0.5891827 0.7793601 0.1096806 0.5890393 0.8006265 -0.03511861 0 -0.9993832 -0.03511861 0 -0.9993832 0.03032083 0 -0.9995403 0.03032083 0 -0.9995403 0.09562776 0 -0.9954171 0.09562776 0 -0.9954171 0.1605263 0 -0.9870315 0.2247389 0 -0.974419 0.1605263 0 -0.9870315 0.2247389 0 -0.974419 0.2879858 0 -0.9576347 0.2879858 0 -0.9576347 0.350003 0 -0.9367485 0.4105192 0 -0.911852 0.350003 0 -0.9367485 0.4692781 0 -0.8830504 0.4105192 0 -0.911852 0.526028 0 -0.8504671 0.4692781 0 -0.8830504 0.526028 0 -0.8504671 0.5805248 0 -0.8142425 0.5805248 0 -0.8142425 0.6325364 0 -0.7745306 0.6325364 0 -0.7745306 0.6818381 0 -0.7315031 0.6818381 0 -0.7315031 0.7282214 0 -0.685342 0.7714853 0 -0.6362472 0.7282214 0 -0.685342 0.7714853 0 -0.6362472 0.8114458 0 -0.5844277 0.8479323 0 -0.5301045 0.8114458 0 -0.5844277 0.880787 0 -0.4735128 0.8479323 0 -0.5301045 0.880787 0 -0.4735128 0.9098706 0 -0.4148922 0.9098706 0 -0.4148922 0.9350579 0 -0.3544949 0.9350579 0 -0.3544949 0.9562407 0 -0.2925813 0.9562407 0 -0.2925813 0.973329 0 -0.2294137 0.973329 0 -0.2294137 0.9862496 0 -0.1652626 0.9862496 0 -0.1652626 0.9949465 0 -0.1004064 0.9949465 0 -0.1004064 0.9993832 0 -0.03511861 0.9993832 0 -0.03511861 0.9995403 -0 0.03032083 0.9995403 0 0.03032083 0.9954171 -0 0.09562776 0.9870315 -0 0.1605263 0.9954171 0 0.09562776 0.9870315 -0 0.1605263 0.974419 -0 0.2247389 0.974419 -0 0.2247389 0.9576347 -0 0.2879858 0.9576347 0 0.2879858 0.9367485 -0 0.350003 0.9367485 0 0.350003 0.911852 -0 0.4105192 0.911852 0 0.4105192 0.8830504 -0 0.4692781 0.8830504 0 0.4692781 0.8504671 -0 0.526028 0.8504671 0 0.526028 0.8142425 -0 0.5805248 0.8142425 0 0.5805248 0.7745306 -0 0.6325364 0.7745306 0 0.6325364 0.6362467 -0.001173539 0.7714848 0.6055213 0.002804616 0.7958242 0.6853293 -0.00606381 0.7282081 0.7314229 -0.01480813 0.6817634 0.6822422 0 0.7311263 0.6381128 0.003772686 0.7699337 0.5817022 0.0006498689 0.8134016 0.5844276 0.0004344409 0.8114458 0.5301044 0.0007060628 0.8479321 0.5507374 -0.0002492653 0.8346786 0.6822422 -0 0.7311263 0.7313098 0.02298716 0.6816579 0.4735126 0.0007035793 0.8807867 0.507306 -0.0005837989 0.8617658 0.6853183 0.008312506 0.7281963 0.6181253 -0.002269879 0.7860762 0.451695 -0.0007994466 0.892172 0.414892 0.0007769415 0.9098703 0.6362466 0.00123179 0.7714847 0.5905117 -0.0005127714 0.8070289 0.5683994 -0.002675384 0.8227485 0.3908059 -0.0008457393 0.9204727 0.3544948 0.0008245994 0.9350576 0.5844272 0.001275957 0.8114452 0.5271426 -0.0009772074 0.8497763 0.326461 -0.001009648 0.9452101 0.2925812 0.0008671238 0.9562403 0.5301044 -0.0002912435 0.8479323 0.4785987 0.0002643238 0.8780337 0.2621772 -0.0008204721 0.9650194 0.2294136 0.0008669465 0.9733287 0.4735126 -0.0009973953 0.8807865 0.4235447 0.0009729365 0.9058747 0.2002282 -0.0008199901 0.979749 0.1652625 0.000861057 0.9862492 0.4148917 -0.00143225 0.9098697 0.3704422 0.001127327 0.9288549 0.1184975 -0.001943211 0.9929525 0.1004064 -0 0.9949465 0.3544937 -0.002609658 0.9350548 0.3191201 0.002096877 0.9477119 0.29258 -0.003024455 0.9562362 0.2430615 0.006534209 0.9699889 0.2294137 0.000725763 0.9733288 0.1652625 -0.0006516047 0.9862494 0.1626233 0.0003418998 0.9866883 0.1004064 -0.0003524356 0.9949464 0.09950635 -0 0.9950369 0.03314043 0.8673331 0.4966236 0.07093374 0.7938538 0.6039574 0.07082578 0.794176 0.6035462 0.1018962 0.720204 0.6862386 0.1406558 0.6090792 0.7805372 0.1398625 0.6110207 0.7791612 0.2004984 0.3816073 0.9023171 0.1992276 0.3858657 0.9007863 0.2552815 -0.1455499 0.9558486 0.2458303 0.1273861 0.960906 0.2256466 0.2539307 0.9405332 0.08484583 0.7177536 0.6911085 0.03240637 0.7900977 0.6121237 -0.02889689 0.8598504 0.5097277 0.1182853 0.6089826 0.7843143 0.07062518 0.7170889 0.6933942 0.1650152 0.3825076 0.9090973 0.1852828 0.2497598 0.9504159 0.1644557 0.3843497 0.9084215 0.1815215 0.2767477 0.9436422 0.1995946 0.1335241 0.9707385 0.1056741 0.7950805 0.5972269 0.10591 0.7151606 0.6908895 0.1426626 0.3826737 0.9128024 0.1041968 0.6094108 0.785978 0.1565906 0.2749528 0.9486202 0.1427186 0.3836845 0.9123693 0.171256 0.131154 0.9764579 0.1568398 0.2728899 0.9491746 0.05957695 0.7304603 0.6803516 0.06520083 0.7931291 0.6055534 0.06786121 0.608691 0.7904998 0.02241733 0.7910994 0.6112767 0.05453628 0.7121961 0.6998589 0.09033959 0.6086087 0.7883111 0.08500463 0.3825833 0.9200023 0.08499128 0.3819172 0.9202802 0.1207005 0.3822908 0.9161251 0.1204423 0.3833584 0.9157129 0.09627858 0.1304749 0.9867658 0.0963277 0.1300066 0.9868228 0.1424531 0.1320246 0.980957 0.1316485 0.2712528 0.9534624 0.09019682 0.2853464 0.9541708 0.1302322 0.2869786 0.9490431 0.1610026 0.02939599 0.9865162 -0.9976991 0 0.06779805 -0.9976991 0 0.06779806 -0.9902365 0.08044557 0.1138431 -0.9810913 0.1062062 0.1618028 -0.9563211 0.2308555 0.1793196 -0.8825823 0.3887754 0.2643901 -0.9037886 0.3174925 0.2869923 -0.7522686 0.5535619 0.3572971 -0.7766536 0.5097874 0.3700348 -0.5841061 0.6887944 0.4293976 -0.6141325 0.6583387 0.4352373 -0.4122142 0.7758516 0.4776335 -0.4291145 0.764849 0.4804861 -0.2465557 0.8304414 0.4995773 -0.2394612 0.8335256 0.497889 -0.06278364 0.861963 0.5030685 -0.056356 0.8634597 0.5012597 0.03389905 0.8660255 0.4988494 0.0338987 0.8660254 0.4988495 0.03389948 0.8660257 0.4988489 0.03389992 0.8660251 0.4988499 0.03389788 0.8660256 0.4988493 0.03389866 0.8660255 0.4988494 0.03389903 0.8660254 0.4988494 0.9976625 0.0596981 -0.03324953 0.9950708 0.08747476 -0.04671573 0.9821471 0.1804817 0.0530424 0.964538 0.2572451 0.05908754 0.9324623 0.3275428 0.1524131 0.8345492 0.4920187 0.2478815 0.8907134 0.4255931 0.159688 0.6946705 0.6357244 0.3365819 0.7655709 0.584477 0.2688638 0.5218817 0.7479637 0.4101095 0.6082448 0.7096159 0.3556451 0.3295887 0.8224396 0.4636426 0.4251688 0.8000941 0.4231796 0.132417 0.8592546 0.4941127 0.2562007 0.8457121 0.4681158 0.1097884 0.86351 0.4922367 0.9976991 0 -0.06779806 0.9976991 0 -0.06779806 0.9965153 -0.06094611 -0.05694656 0.9829587 -0.1805997 -0.03429281 0.9926708 -0.1208228 0.002557907 0.9399056 -0.3412672 0.01068054 0.9360822 -0.3517728 -0.002462883 0.8465329 -0.5300397 0.04939726 0.833139 -0.5524638 0.02575143 0.7080133 -0.7013886 0.0822875 0.6915927 -0.7192615 0.06604892 0.5278429 -0.841506 0.1151062 0.5163813 -0.8494129 0.1088485 0.3291752 -0.9332026 0.1441408 0.3216736 -0.9362138 0.1415271 0.1230322 -0.9802787 0.1546506 0.1677078 -0.9728156 0.1596992 0.06332837 -0.9834912 0.1695123 0.01177431 -0.9848078 0.1732484 0.01177325 -0.9848077 0.173249 0.01177305 -0.9848077 0.1732492 0.01177285 -0.9848077 0.173249 0.01177178 -0.9848078 0.1732485 -0.9957566 -0.05090868 0.07666317 -0.9835856 -0.1540948 0.09388319 -0.9936286 -0.1010212 0.04996988 -0.9444394 -0.3064978 0.1187149 -0.9448002 -0.3044572 0.1210721 -0.8542469 -0.4997896 0.1430827 -0.8590692 -0.4875679 0.1558131 -0.7172406 -0.6728221 0.1813183 -0.7513918 -0.6411287 0.156091 -0.5471428 -0.814098 0.1946256 -0.611021 -0.7736756 0.1675689 -0.3435863 -0.9176624 0.1996102 -0.4449723 -0.878274 0.1750273 -0.1101372 -0.975642 0.1897168 -0.2663468 -0.9471486 0.1787984 -0.08189926 -0.9804624 0.1788459 -0.3248965 -0.8402075 0.4341587 0.2860803 -0.2633335 0.9213108 0.2599318 -0.2063739 0.9433161 0.2812515 -0.04224654 0.9587038 0.2343066 -0.3044468 0.9232619 0.1816494 -0.4348707 0.8819813 0.1219228 -0.5195419 0.8457015 0.1239867 -0.5169097 0.8470134 0.07056445 -0.5871302 0.806411 0.07283723 -0.5831524 0.8090909 -0.018372 -0.6894893 0.7240629 -0.01469388 -0.6839858 0.7293473 -0.07139152 -0.7415513 0.667087 -0.06586464 -0.7360959 0.6736651 -0.131089 -0.79505 0.5922088 -0.1261711 -0.7886611 0.6017429 -0.2016606 -0.8442326 0.4965928 -0.2084388 -0.8496234 0.4844515 -0.2589735 -0.8773739 0.4039154 -0.2517973 -0.8727092 0.4183021 -0.2465934 -0.8284782 0.5028077 -0.3263271 -0.9003627 0.28785 0.3817897 -0.1087202 0.9178326 0.3117578 -0.2406105 0.9191919 0.2663964 -0.322471 0.9083201 0.2005647 -0.4366677 0.8769807 0.1487326 -0.5284665 0.835824 0.1535739 -0.5201555 0.8401507 0.2984081 -0.1400833 0.9441023 0.3243688 -0.01554029 0.945803 0.3318415 -0.09456358 0.9385835 0.491589 -0.01083958 0.8707598 0.4896775 -0.01125417 0.8718311 0.2903273 -0.2351086 0.9275958 0.2828612 -0.2332251 0.9303738 0.2903988 -0.2345953 0.9277034 0.1123203 -0.5869741 0.8017765 0.2424312 -0.03572919 0.9695105 0.3064683 -0.02701039 0.9514976 0.1056986 -0.5984318 0.7941707 0.2382725 -0.4070713 0.8817705 0.1781037 -0.03706736 0.9833133 0.2608452 -0.3207594 0.9105345 0.2629407 -0.3212864 0.9097457 0.2608207 -0.320896 0.9104935 -0.02386873 -0.05139086 0.9983934 -0.01805739 -0.05039381 0.9985662 0.04082616 -0.6897941 0.7228536 0.03053002 -0.7048097 0.7087392 -0.01508146 -0.7593405 0.6505187 -0.2879913 -0.06766876 0.9552392 -0.1690217 -0.05968117 0.9838038 -0.001119818 -0.7436832 0.6685312 -0.2966923 -0.06721742 0.9526046 0.2300643 -0.4433806 0.8663049 -0.5309762 -0.07909489 0.8436874 0.2144043 -0.4394801 0.8722889 -0.5004736 -0.07486415 0.862509 0.214346 -0.4406034 0.8717365 -0.6093071 -0.07917277 0.7889718 0.1758165 -0.5265612 0.8317583 0.1764889 -0.5249224 0.8326513 0.2027025 -0.5313724 0.8225297 -0.7358417 -0.08265512 0.6720901 -0.721757 -0.08033933 0.6874681 -0.05192803 -0.7990761 0.5989832 -0.887852 -0.08417872 0.4523637 -0.8424127 -0.08101931 0.532707 -0.06636435 -0.8158134 0.5744949 -0.9770461 -0.07223406 0.2004078 -0.9053953 -0.08086901 0.4167967 0.4676417 -0.03741495 0.8831259 0.1589423 -0.6417883 0.75023 0.311546 -0.06525378 0.9479879 0.4916042 -0.02583963 0.8704354 0.1771401 -0.6017775 0.7787716 0.1425049 -0.5933537 0.792227 0.1421325 -0.5956296 0.7905844 0.3099407 -0.06540277 0.9485037 -0.1161078 -0.859476 0.4978151 -0.1341467 -0.8745866 0.4659431 -0.1802911 -0.9047148 0.3859871 -0.141891 -0.895296 0.4222703 0.1850623 -0.089679 0.9786264 -0.1581933 -0.8926196 0.4221433 -0.248151 -0.9351503 0.252814 -0.008587537 -0.1230231 0.9923666 0.1848824 -0.08969353 0.9786591 0.1322189 -0.7108088 0.6908466 0.08279572 -0.6991029 0.7102112 0.08219443 -0.7020026 0.7074152 0.04534798 -0.7575366 0.6512156 -0.1580061 -0.1455986 0.9766448 0.04718453 -0.7545426 0.6545525 -0.006278755 -0.1231302 0.9923707 0.1033116 -0.7676204 0.6325232 0.06849514 -0.8257825 0.5598139 0.003127686 -0.8157018 0.5784641 0.003702609 -0.8124121 0.5830718 -0.284762 -0.1621406 0.9447863 0.06754127 -0.8270456 0.5580624 -0.1539118 -0.1451653 0.9773629 -0.05208144 -0.8756231 0.4801788 -0.05381046 -0.8785993 0.4745182 -0.4873043 -0.1838886 0.8536507 0.02370922 -0.8924393 0.4505441 -0.2789219 -0.1625109 0.9464633 -0.0294832 -0.9445994 0.3268983 -0.4792858 -0.1848267 0.8579767 -0.05769673 -0.9686802 0.2415158 -0.1500984 -0.949065 0.2770311 -0.09229264 -0.9130057 0.3973699 -0.0905178 -0.9103333 0.4038564 -0.5958117 -0.1930881 0.7795674 -0.009332716 -0.9280675 0.372295 -0.5871475 -0.1929321 0.7861521 -0.7082147 -0.1979846 0.677668 -0.6989542 -0.2004563 0.6864986 -0.8290846 -0.1991537 0.5224526 -0.8206139 -0.201116 0.5349254 -0.8925357 -0.1952057 0.4065401 0.4862777 -0.03600347 0.8730622 0.3143843 -0.08795313 0.9452126 -0.8851118 -0.1978603 0.4212224 0.3119156 -0.08835758 0.9459924 0.1900216 -0.1211443 0.9742771 0.1910069 -0.1207768 0.97413 -0.9541578 -0.183652 0.236336 -0.8108763 -0.1290057 0.5708213 0.003735545 -0.1655696 0.986191 0.002213377 -0.1662657 0.9860785 -0.1438057 -0.1965223 0.9698964 -0.1401244 -0.1956822 0.9706048 -0.2624862 -0.2181036 0.9399638 -0.267609 -0.2200261 0.9380692 -0.458933 -0.2479619 0.8531678 -0.4663635 -0.2505416 0.8483713 -0.5650485 -0.2608418 0.7827399 -0.5736051 -0.2619503 0.7761181 -0.6848718 -0.271946 0.6760148 -0.6763005 -0.2687643 0.6858451 -0.8064426 -0.2732847 0.5243718 -0.7980059 -0.2720296 0.5377607 -0.8711386 -0.2689796 0.4108134 -0.9411876 -0.2506578 0.2265759 -0.863767 -0.2681745 0.4266015 0.1961597 -0.1447422 0.9698305 0.0189811 -0.2241842 0.9743619 0.2241306 -0.1692058 0.9597577 -0.1218013 -0.2655889 0.9563613 0.3101629 -0.08171554 0.947165 0.4691007 0.02578625 0.8827682 -0.1146862 -0.263734 0.9577533 -0.2416904 -0.2968236 0.9238406 -0.4346557 -0.3384848 0.8345672 -0.2299648 -0.2950194 0.9274048 -0.5391793 -0.3563104 0.7631046 -0.4166451 -0.3369532 0.8443159 -0.6492192 -0.3680624 0.6656159 -0.5190036 -0.3539302 0.7780544 -0.7701733 -0.3730082 0.5173954 -0.6266616 -0.3692778 0.6862428 -0.7482088 -0.3754199 0.5470315 -0.8360957 -0.3682184 0.4066438 0.5266041 -0.1816703 0.8304722 -0.8158556 -0.3729522 0.4419122 0.3453717 -0.2076994 0.9151936 0.2224939 -0.2309257 0.9471905 -0.7726378 -0.3499899 0.5296583 -0.8952445 -0.3547093 0.269664 0.0417438 -0.2733521 0.9610078 -0.09071621 -0.3244995 0.9415257 -0.08758517 -0.3232591 0.9422485 -0.2029273 -0.3639424 0.9090469 -0.3861008 -0.4157286 0.8234658 -0.1977372 -0.3612469 0.9112632 -0.4862459 -0.4390261 0.7555269 -0.3765134 -0.415102 0.8282077 -0.4757347 -0.4373804 0.7631349 -0.5922685 -0.4589117 0.6622825 -0.5819715 -0.4547015 0.6742074 -0.713073 -0.467802 0.5221956 -0.7020583 -0.4660988 0.5383921 -0.7816641 -0.4633846 0.4174636 -0.7697294 -0.4666741 0.4355821 -0.8616598 -0.4443324 0.2451756 0.2331683 -0.2347027 0.9436881 -0.06388042 -0.3734989 0.9254285 0.4417084 0.005427581 0.8971423 0.3085267 -0.1283716 0.9425136 0.2119352 -0.2083664 0.9548125 0.06008765 -0.3123699 0.9480583 -0.1704841 -0.4187895 0.8919364 -0.1595318 -0.4153913 0.8955444 -0.3273825 -0.4760643 0.8162006 -0.3440693 -0.4829702 0.8052056 -0.4408293 -0.5101317 0.7385359 -0.4202166 -0.50454 0.7542263 -0.5435209 -0.5344219 0.6472853 -0.5217686 -0.5277287 0.6702685 -0.6623304 -0.5480288 0.5108647 -0.6388316 -0.5453421 0.5426751 -0.7302792 -0.5475895 0.4084583 -0.7077569 -0.5475111 0.4464434 0.5150895 -0.1668865 0.8407329 -0.6741892 -0.5283707 0.5160362 -0.7945595 -0.5349784 0.2871815 0.3520583 -0.2340844 0.9062337 0.2435969 -0.2804472 0.9284449 0.08526986 -0.3508654 0.9325355 -0.02727168 -0.412885 0.9103748 -0.1279899 -0.4663513 0.8752915 -0.1222977 -0.4625671 0.8781088 -0.2791803 -0.5334314 0.7984418 -0.2887501 -0.5388366 0.7913775 -0.3792811 -0.5712821 0.7278616 -0.3668244 -0.5668573 0.7376398 -0.4767335 -0.6014072 0.6411197 -0.4640566 -0.5955452 0.6557267 -0.5920427 -0.6222214 0.5121777 -0.5776095 -0.6191416 0.5320066 -0.7480318 -0.6121348 0.2563968 -0.6599929 -0.6261494 0.415146 -0.645873 -0.6246894 0.4388749 0.09143914 -0.3593484 0.9287129 0.1810777 -0.3363106 0.9241786 0.3760924 0.02295812 0.9262977 0.2794707 -0.1347424 0.9506527 0.2074301 -0.2308359 0.9506248 -0.006941226 -0.4408019 0.8975776 -0.09238238 -0.503469 0.8590602 -0.2279542 -0.5756641 0.7852692 -0.2420794 -0.5839966 0.7748197 -0.3090983 -0.6134219 0.7267542 -0.3270214 -0.6209966 0.7123343 -0.4194286 -0.6560876 0.6273985 -0.4002104 -0.6473851 0.6486325 -0.5083277 -0.677802 0.5312132 -0.5303849 -0.6830453 0.5021363 -0.5970213 -0.6906839 0.4080702 -0.5749404 -0.688013 0.442811 -0.5361356 -0.6634763 0.5218792 -0.6645318 -0.6862378 0.295762 0.5042478 -0.1657084 0.847511 0.3666101 -0.2623693 0.8926137 0.2751141 -0.3240679 0.9051476 0.1407165 -0.4115221 0.9004713 0.04305391 -0.4786081 0.8769724 -0.0399505 -0.5313701 0.8461972 -0.1825176 -0.6256162 0.75848 -0.1697048 -0.6164874 0.7688586 -0.2597899 -0.6676385 0.6976877 -0.2432683 -0.658901 0.7118075 -0.3446292 -0.7085057 0.615833 -0.326916 -0.6986409 0.6364172 -0.4277762 -0.7366008 0.5238576 -0.4486374 -0.7434601 0.4959755 -0.4913802 -0.7520628 0.4392576 -0.3799425 -0.7571865 0.5313307 -0.6014366 -0.7559585 0.2584583 -0.5126671 -0.7565097 0.4060364 0.2833467 -0.1887662 0.9402564 0.3493643 -0.02803363 0.9365675 0.2309292 -0.2851236 0.9302561 0.142448 -0.4130453 0.8995011 0.06132607 -0.4947248 0.8668831 -0.1306508 -0.6511935 0.7475809 -0.00460883 -0.5530759 0.8331182 -0.009568207 -0.5582717 0.829603 -0.1997293 -0.6976368 0.6880487 -0.1202204 -0.6454862 0.754251 -0.2786608 -0.7417126 0.6100906 -0.188048 -0.6908047 0.6981597 -0.2632695 -0.7364801 0.6231261 -0.3733617 -0.7851747 0.4940664 -0.3592663 -0.7788508 0.5141199 -0.4340724 -0.8032834 0.4078198 -0.4194647 -0.7985302 0.4317394 -0.5049274 -0.8113911 0.2944366 0.2747388 -0.2787269 0.9202336 0.4263771 -0.1202297 0.8965195 0.3265361 -0.2424802 0.9135522 0.2613341 -0.3191181 0.9109709 0.1663806 -0.4265852 0.8890121 0.0975756 -0.506273 0.8568354 0.03063016 -0.5792528 0.8145723 0.03882283 -0.5697699 0.8208869 -0.07460432 -0.6791784 0.7301718 -0.06110704 -0.6659389 0.7434993 -0.136445 -0.7288323 0.6709592 -0.1189816 -0.7151918 0.6887264 -0.205459 -0.7788215 0.5926412 -0.1865305 -0.7641715 0.6174531 -0.2930927 -0.8272109 0.4793941 -0.2700909 -0.8150257 0.5126247 -0.431127 -0.8651959 0.2560576 -0.3490707 -0.8498207 0.3949105 0.4916179 -0 0.8708111 0.2425862 -0 0.9701299 0.4916179 -0 0.8708111 -0.0239003 0 0.9997143 0.2425862 -0 0.9701299 -0.288653 0 0.9574338 -0.0239003 0 0.9997143 -0.5326449 0 0.8463389 -0.288653 0 0.9574338 -0.7383683 0 0.6743978 -0.5326449 0 0.8463389 -0.8910144 0 0.453975 -0.7383683 0 0.6743978 -0.9796051 0 0.2009327 -0.8910144 0 0.453975 -0.9796051 0 0.2009327 -0.8952378 0.2530905 0.3667348 -0.8248615 0.2630625 0.5004014 -0.7350382 0.09486733 0.6713561 -0.6862763 0.09044737 0.7216953 -0.6698672 0.1873132 0.7184648 -0.6754501 0.1827131 0.714411 -0.8874047 0.08992244 0.4521358 -0.7658767 0.1878245 0.614943 -0.7814392 0.09377392 0.6168947 -0.7707533 0.1870643 0.6090537 -0.9764616 0.08004677 0.2002879 -0.9520031 0.09249483 0.2917787 -0.8536332 0.09658479 0.5118414 -0.8387432 0.1895653 0.5104654 -0.8438126 0.1841121 0.5040665 -0.8941894 0.2531286 0.3692578 -0.9430752 0.1733257 0.2838437 0.2834706 0.1325867 0.9497712 0.3037488 0.06690092 0.9504004 0.2659063 0.2033022 0.9423174 0.2446573 0.2710597 0.9309508 0.2034042 0.3820284 0.9014883 0.2203458 0.341377 0.9137337 0.3592066 0.02751093 0.9328525 0.3229358 0.07412399 0.9435136 0.2706222 0.2050806 0.9405879 0.1761403 0.4603172 0.870105 0.2706873 0.2046259 0.9406682 0.2416861 0.26994 0.9320517 0.2415849 0.2701838 0.9320072 0.1087279 0.6040894 0.7894645 0.1278885 0.5689492 0.8123677 0.2099996 0.337492 0.9176052 0.2091985 0.3383754 0.9174629 0.07836062 0.6694152 0.7387442 0.04844685 0.7211139 0.6911206 0.151293 0.4510791 0.879567 0.1493659 0.4529988 0.8789095 0.006540524 0.7829626 0.6220344 0.02694319 0.7486629 0.662403 0.01989106 0.7655218 0.6431025 0.09073974 0.5553153 0.8266748 0.08766279 0.5580079 0.8251924 0.02777473 0.6511899 0.7584063 -0.009585511 0.7003961 0.71369 0.02349188 0.6543525 0.7558246 -0.01236139 0.7042277 0.7098666 -0.0478023 0.7468526 0.6632693 -0.1153692 0.8198035 0.560903 -0.04242976 0.7435235 0.6673623 0.2740519 0.2060063 0.9393919 0.3442683 0.06562623 0.9365749 0.2758912 0.2021616 0.9396886 0.2388915 0.2690771 0.9330211 0.2384736 0.269817 0.9329144 0.2002716 0.3347012 0.9207967 0.1971564 0.3404198 0.9193713 0.1295887 0.4448065 0.886202 0.1212079 0.4583826 0.880451 0.05757754 0.5454279 0.8361778 0.04379104 0.5651689 0.8238121 -0.01642625 0.6374628 0.770306 -0.057587 0.6849888 0.7262741 -0.03555765 0.6614777 0.7491214 -0.09759165 0.7254816 0.6812872 -0.08113021 0.7093694 0.7001521 -0.1735025 0.7944739 0.5819863 -0.1221305 0.7512035 0.6486737 0.4232988 0.1150383 0.898657 0.2852546 0.2003568 0.9372764 0.3021369 0.2183795 0.9279137 0.1874329 0.3344158 0.9235988 0.09966469 0.4451314 0.8899016 0.24685 0.2749881 0.9292184 0.0112979 0.5453059 0.8381609 0.09698402 0.4496515 0.8879232 -0.07851429 0.6354229 0.7681623 0.006745213 0.5521424 0.8337226 -0.1279581 0.6811118 0.7209116 -0.08471899 0.6437557 0.760527 -0.1754279 0.7191916 0.6723009 -0.1371059 0.6890297 0.7116461 -0.1833251 0.7280382 0.6605697 -0.0915239 0.7106248 0.6975929 -0.2752019 0.7882903 0.5503291 0.3711057 0.04594528 0.9274533 0.280643 0.1913034 0.9405543 0.2282625 0.2612186 0.9379025 0.3970531 0.07063209 0.9150738 0.2868934 0.1972993 0.9374247 0.2266331 0.2596549 0.9387314 0.2869979 0.196621 0.9375353 0.07343991 0.433398 0.8982053 0.1699182 0.3334402 0.9273324 0.2267519 0.2595105 0.9387428 0.1605283 0.3244426 0.9321844 -0.02789013 0.5280756 0.8487393 0.05899797 0.4487409 0.8917123 0.1604422 0.3249975 0.9320058 0.04072266 0.4313238 0.9012778 -0.1297517 0.6122069 0.779979 -0.0521386 0.5507585 0.8330346 0.04043011 0.4328614 0.9005534 -0.07878506 0.5255811 0.8470876 -0.1856954 0.6548085 0.7326274 -0.1631494 0.6392426 0.7514993 -0.0792866 0.528073 0.8454896 -0.1976427 0.6070028 0.7697304 -0.238308 0.6891287 0.6843325 -0.22516 0.680965 0.6968427 -0.3357756 0.7448602 0.5765743 -0.2798471 0.7163365 0.6391773 -0.1982241 0.6101981 0.7670499 -0.2619863 0.6467807 0.7162666 -0.321788 0.6776466 0.661247 -0.2645293 0.648558 0.7137204 -0.4330841 0.725103 0.5354098 -0.3225188 0.6811283 0.657302 -0.3451412 0.7499695 0.5642901 0.4170924 0.06755134 0.9063502 0.4269429 0.05629792 0.9025244 0.2849705 0.1946388 0.9385667 0.2942366 0.1867401 0.9373115 0.2194137 0.2523356 0.9424354 0.2210281 0.2509651 0.9424241 0.4470217 0.06353486 0.892264 0.433617 0.06561143 0.8987054 0.1398461 0.3179189 0.9377477 0.1474874 0.3123035 0.9384636 0.291505 0.1829102 0.9389189 0.2924591 0.1827221 0.9386588 0.2138596 0.2409138 0.9466914 0.213793 0.2409689 0.9466925 -0.006873795 0.426625 0.9044025 0.0179996 0.4107426 0.9115736 0.1279404 0.3012607 0.9449197 0.127129 0.3013448 0.9450024 -0.15194 0.5196483 0.8407615 -0.1103466 0.4971491 0.8606198 -0.02945095 0.399213 0.9163851 -0.02671154 0.3990827 0.9165258 -0.2931108 0.5955633 0.7479241 -0.2369542 0.5711715 0.7858854 -0.307211 0.6051481 0.7344502 -0.3682382 0.6304553 0.6833203 -0.1834837 0.4823939 0.8565219 -0.3283203 0.5478672 0.769446 -0.1789993 0.4825258 0.8573961 -0.4841057 0.6718668 0.5605681 -0.3682515 0.6343839 0.6796675 -0.4353867 0.6549265 0.6176648 -0.3309294 0.552025 0.7653458 -0.4065409 0.579098 0.7066612 -0.4114955 0.5802662 0.7028247 -0.4747342 0.602609 0.6414748 -0.4818744 0.6009442 0.6377015 -0.4841995 0.6718968 0.5604512 -0.6034403 0.6260574 0.4938743 0.4600936 0.05247545 0.8863183 0.287094 0.1750173 0.9417781 0.2962139 0.1695002 0.9399612 0.2043882 0.2274471 0.9520994 0.2052355 0.2269327 0.9520399 0.1037057 0.286716 0.952386 0.113507 0.2817279 0.9527568 -0.04994556 0.3694648 0.9279015 -0.07892781 0.3818763 0.920837 -0.2098607 0.4436664 0.8712741 -0.2566995 0.4597361 0.8501459 -0.3637691 0.5032447 0.7838475 -0.4246523 0.518141 0.7424287 -0.4465715 0.5276328 0.7226185 -0.5110996 0.5424479 0.666729 -0.6430511 0.5650988 0.5168644 -0.5168965 0.5480086 0.6576508 -0.5855277 0.5560363 0.5898991 0.2586886 0.1577248 0.9529969 0.2076611 0.2318773 0.9503209 0.5216306 0.1875111 0.8323107 0.314167 0.20652 0.926633 0.09005667 0.2590609 0.9616534 -0.106189 0.3421896 0.9336113 -0.09920932 0.3411588 0.9347557 -0.293764 0.408845 0.8640303 -0.2827645 0.4081129 0.8680369 -0.4694823 0.4575082 0.7551639 -0.4554618 0.458064 0.7633688 -0.5455685 0.4757491 0.6899406 -0.559171 0.477374 0.6778213 -0.6201545 0.4895648 0.612972 -0.6354204 0.486962 0.599257 -0.7589079 0.4908957 0.4278786 -0.54936 0.5475264 0.6312039 0.4731824 0.0108893 0.8808972 0.28587 0.125703 0.9499879 0.179174 0.178073 0.9675675 0.05899566 0.2317071 0.970995 -0.1275775 0.2948738 0.9469813 -0.1589405 0.3062605 0.9385853 -0.319947 0.3499973 0.8804179 -0.3670934 0.3639199 0.8560401 -0.499081 0.3897732 0.7739477 -0.5562408 0.4022018 0.727207 -0.590036 0.4062876 0.6977018 -0.6670649 0.4132516 0.619877 -0.650845 0.412269 0.6375225 0.2472856 0.1072984 0.9629834 0.306692 0.1968053 0.9312398 0.1839724 0.1940295 0.9635905 0.5345986 0.2505059 0.8071253 0.04692674 0.1921064 0.9802515 -0.725779 0.4188532 0.5457169 -0.7909697 0.4152135 0.4494048 -0.1758459 0.2518017 0.9516692 -0.1824235 0.2512616 0.9505731 -0.3881297 0.2978193 0.8721577 -0.3977206 0.2962816 0.8683522 -0.5804527 0.3281015 0.7452677 -0.5918468 0.3249475 0.7376493 -0.6762198 0.3351365 0.6560565 -0.6866603 0.3349489 0.6452185 -0.7519233 0.3406318 0.5644301 -0.7632695 0.335708 0.5520144 -0.7361875 0.4135595 0.5357206 -0.8769004 0.3263206 0.3529313 0.4840598 -0.01851912 0.8748389 0.2733545 0.07520588 0.9589689 0.1531837 0.115059 0.9814765 0.4746145 0.0154864 0.8800576 0.4915803 0.01235907 0.8707445 0.49135 0.02416176 0.870627 -0.1973488 0.1967748 0.9603817 0.01706443 0.1557154 0.9876546 0.2424127 0.03780909 0.9694362 0.2722469 0.06824883 0.9598041 0.2718194 0.06807122 0.9599378 0.2667224 0.03417293 0.9631673 -0.02386091 0.05738788 0.9980668 0.1491636 0.08965831 0.9847394 0.1415593 0.04519629 0.9888974 0.1482068 0.08973497 0.9848769 -0.4151075 0.2311769 0.8799108 -0.2270572 0.2040278 0.9522697 0.01022006 0.1128514 0.9935593 0.0001449825 0.05740274 0.9983511 0.008104382 0.111799 0.9936978 -0.6105773 0.2528838 0.7504966 -0.456017 0.2393498 0.8571815 -0.5307047 0.08527424 0.843256 -0.2878021 0.07672473 0.9546116 -0.2502775 0.07221115 0.9654774 -0.2364587 0.1474012 0.9603958 -0.2401763 0.1453654 0.9597834 -0.7057432 0.261005 0.6586372 -0.6566423 0.2596996 0.7080799 -0.7822797 0.2608311 0.5656903 -0.7522619 0.2616144 0.6046983 -0.4831429 0.08792646 0.8711153 -0.4676384 0.172723 0.8668801 -0.47266 0.1694747 0.8647952 0.03649015 0.7933486 0.6076732 0.03443294 0.8534269 0.5200738 0.03646819 0.7931138 0.6079807 0.03972477 0.6086912 0.7924121 0.03874506 0.6876076 0.7250481 0.03968973 0.608274 0.7927341 0.04021234 0.382583 0.9230456 0.04025366 0.3820409 0.9232684 0.03805873 0.1304748 0.9907209 0.0394684 0.2584714 0.9652123 0.02024535 0.7173917 0.696376 -0.003158507 0.7940943 0.6077864 0.01715595 0.6091388 0.792878 -0.02443011 0.8541161 0.5195084 0.009140557 0.6885486 0.7251326 0.004467514 0.3824053 0.9239839 0.00438765 0.3834187 0.9235643 -0.002055167 0.2600336 0.9655973 -0.003829816 0.2251026 0.9743276 0.01234413 -0.1512747 0.9884147 -0.008506482 0.1313066 0.9913054 0.07140606 0.7889394 0.6103079 0.04414469 0.7223385 0.6901292 -0.01778052 0.3837323 0.9232732 0.003041155 0.608915 0.7932296 -0.01806057 0.3827583 0.923672 -0.03056217 0.2266901 0.9734873 -0.06347451 0.03121227 0.9974952 -0.03746093 0.1330205 0.9904051 -0.02783222 0.2621801 0.9646174 -0.0002832189 0.7314098 0.6819382 0.03017894 0.7911437 0.6108853 -0.03379475 0.6090825 0.7923865 -0.01287731 0.79562 0.6056591 -0.01219822 0.7267022 0.6868444 -0.01095262 0.6099305 0.7923793 -0.04004548 0.3843553 0.9223163 -0.07660367 0.3816141 0.921142 -0.07557646 0.3857722 0.9194933 -0.04051736 0.3824773 0.923076 -0.1135832 0.1273978 0.9853266 -0.1131915 0.134699 0.9844002 -0.09409355 0.2693495 0.9584348 -0.05351882 0.2640291 0.9630287 -0.05336675 0.2655788 0.962611 -0.06673623 0.130289 0.9892275 0.09776779 0.5560468 0.8253808 0.1758545 0.6489377 0.7402399 0.1662697 0.6354352 0.7540401 0.219553 0.6947598 0.6849125 0.2071455 0.6817994 0.7015983 0.3160959 0.7845013 0.5335178 0.257472 0.7346119 0.6277369 0.2457154 0.7202871 0.6486989 -0.3073669 0.0391162 0.9507868 -0.259661 0.09872583 0.9606401 -0.1723684 0.216834 0.9608705 -0.1305708 0.2768312 0.9520062 -0.08587511 0.3392725 0.9367601 -0.1236533 0.2500875 0.9602948 -0.2147293 0.005016501 0.9766607 -0.01454529 0.4469441 0.8944438 -0.1907132 0.07185506 0.9790124 -0.1507254 0.1323798 0.9796721 -0.1902791 0.07484828 0.9788727 -0.1699603 0.06798895 0.9831027 0.04812278 0.5482092 0.8349557 0.05635679 0.5632107 0.8243892 -0.140461 0.2044889 0.9687389 -0.1136832 0.2702881 0.9560442 -0.1403245 0.2051329 0.9686225 -0.135408 0.2034723 0.9696719 -0.1138257 0.2699664 0.9561181 -0.1167943 0.2709678 0.9554766 0.1100127 0.6413145 0.7593503 0.120998 0.6595289 0.7418768 -0.3692673 0.008643309 0.9292831 0.1435716 0.6894649 0.7099475 0.1577514 0.7080459 0.6883209 -0.08089717 0.3822173 0.9205247 -0.08484946 0.338874 0.9369979 -0.03212984 0.4538336 0.890507 -0.4802351 0.0006921539 0.8771396 -0.08527073 0.3370266 0.9376258 -0.09607046 0.3406594 0.9352655 0.1758202 0.7304325 0.6599663 0.252985 0.817975 0.5166388 0.1894926 0.7501045 0.6335894 -0.3693652 0.008647323 0.9292441 -0.109061 0.02685888 0.9936722 -0.03452858 0.4505767 0.8920698 -0.05998328 0.4590617 0.8863771 -0.005101599 0.6047612 0.7963906 0.01904268 0.5596657 0.8284997 0.01750555 0.5542313 0.8321785 -0.1319637 0.02346373 0.9909768 0.07284287 0.6560807 0.7511671 -0.02175102 0.5671876 0.8233013 0.1587979 0.0390195 0.9865398 0.06762313 0.650494 0.7564949 -0.002118398 0.03120736 0.9995106 0.01571402 0.6673396 0.7445878 0.1013629 0.7062764 0.7006419 0.09743573 0.6996003 0.70786 0.03784087 0.7187922 0.6941944 0.1422587 0.04000883 0.9890206 0.07101987 0.7842239 0.6164001 0.09604588 0.8410951 0.5322915 0.4149285 0.05298497 0.9083099 0.1274861 0.7497575 0.6493158 0.1249255 0.7424758 0.658121 0.05896872 0.7635854 0.6430085 0.1495128 0.72709 0.6700642 0.1759696 0.8160161 0.5505927 0.3907136 0.0494726 0.9191818 0.641034 0.06150994 0.7650437 0.6124867 0.0573062 0.7884009 0.8210433 0.06568503 0.5670745 0.7937189 0.06127646 0.6051906 0.9424478 0.06153047 0.3286426 0.8727437 0.06393069 0.4839744 0.9963482 0.05359064 0.06647044 0.9280983 0.06658552 0.366333 -0.4718153 0.002603429 0.8816936 -0.480295 0.0009865991 0.8771065 -0.3682802 0.02172886 0.9294609 -0.3707132 0.02089242 0.9285124 -0.1359879 0.06000051 0.9888919 -0.1383861 0.05930591 0.9886011 -0.007347365 0.0789241 0.9968535 -0.0128998 0.07804096 0.9968667 0.1265408 0.09701464 0.9872059 0.1357779 0.09961697 0.9857185 0.3668865 0.1259857 0.9216951 0.3821594 0.1300423 0.9149006 -0.4932797 -0.002908697 0.8698659 -0.3693905 0.02794226 0.9288541 0.6027154 0.1518405 0.7833764 0.5836332 0.1469262 0.7986143 -0.3675318 0.02777675 0.929596 -0.1417044 0.07786325 0.986842 0.7642027 0.158626 0.6251657 0.7833874 0.1636302 0.5996077 0.8447523 0.1629654 0.5097409 0.8628594 0.1629531 0.4784558 -0.1423578 0.07790487 0.9867447 -0.01728981 0.1026632 0.9945659 -0.01938266 0.1023427 0.9945603 0.1210358 0.1280451 0.984355 0.9036298 0.1603375 0.3971713 0.9181743 0.1639124 0.3606783 0.3597733 0.1666715 0.9180326 0.1167727 0.1285912 0.9847987 0.97412 0.1514722 0.1677689 0.8596116 0.1175002 0.497254 0.5754414 0.1946482 0.794342 0.3522391 0.1680203 0.9207045 0.5656109 0.1972327 0.8007393 0.755487 0.210335 0.6204825 0.835897 0.2153456 0.5048786 0.7450245 0.2146093 0.6315705 0.8949267 0.2126195 0.3922998 0.826909 0.2161442 0.519137 0.965923 0.2010536 0.163004 0.8862183 0.2184059 0.4085535 -0.358749 -0.01253421 0.9333499 -0.02521055 0.1301415 0.9911749 0.3395233 0.2265759 0.9129004 -0.1076446 0.1249691 0.9863039 0.1071251 0.1741629 0.9788726 -0.4764964 -0.0830107 0.8752487 -0.144278 0.08706753 0.9856993 0.3105651 0.222818 0.9240679 0.5495038 0.2688989 0.7910367 0.511853 0.2598622 0.8188274 -0.5209127 0.1930863 0.8314852 0.7268849 0.2929414 0.621147 0.8084331 0.2957756 0.5088741 0.6860043 0.2853432 0.669311 0.8685473 0.2939407 0.3990295 0.7677792 0.2956167 0.5684417 -0.4014009 0.1757712 0.898878 0.8306559 0.3008982 0.4684776 -0.1727837 0.1770967 0.9689079 -0.05466974 0.1931088 0.9796531 0.8805293 0.2891788 0.3755579 0.9206902 0.2893248 0.2619557 0.2926527 0.2764867 0.9153739 0.07465043 0.2103467 0.9747726 0.4898747 0.327025 0.8081321 0.2834208 0.2759058 0.918449 0.6619542 0.3602498 0.657295 0.4766519 0.3272294 0.8159192 0.7432609 0.372222 0.5558904 0.6466141 0.3622836 0.6712979 0.8071767 0.374567 0.4562514 0.7291327 0.3717814 0.5745818 0.8963605 0.3669417 0.2487805 0.7925977 0.3791065 0.4775637 -0.1392755 0.1631713 0.9767177 -0.4339945 -0.05691732 0.8991157 -0.1571036 0.1358166 0.9781985 -0.3430116 0.01507889 0.9392101 -0.05397069 0.1912868 0.9800493 0.06007584 0.2482157 0.9668401 -0.5472824 0.2518495 0.7981564 0.2627886 0.3288018 0.9071006 0.2349301 0.3169603 0.9188819 -0.4238219 0.2281612 0.8765372 0.4508734 0.3921669 0.8018218 0.4096072 0.3772582 0.8306011 -0.1974872 0.2277857 0.9534739 -0.08718781 0.2481577 0.9647881 0.6168717 0.4358632 0.6553568 0.5680698 0.4220048 0.7065471 0.6464016 0.4410524 0.6226056 0.6978627 0.4488677 0.5581267 0.03166658 0.2704616 0.9622098 0.7121126 0.4504282 0.5385259 0.7603206 0.4577595 0.4608349 0.2124934 0.3585703 0.9089962 0.2090836 0.3554201 0.9110218 0.8139189 0.4563139 0.3596022 0.7158405 0.4445849 0.5384393 0.3762451 0.4256166 0.8229764 0.3814439 0.4301883 0.8181922 0.5354755 0.4841558 0.6919965 0.6139369 0.5034369 0.6079744 0.5293297 0.4788545 0.700363 0.6056464 0.5021138 0.6173121 0.6765903 0.5191101 0.5222549 0.670388 0.5142946 0.5348653 0.7794619 0.5239835 0.343337 -0.2355659 0.1266503 0.9635707 -0.4163918 -0.01453058 0.9090692 -0.3295487 0.05374592 0.9426076 -0.3036093 0.0661771 0.9504957 -0.3082066 0.07195991 0.948594 -0.1575572 0.1800168 0.9709632 -0.1663473 0.1733782 0.9707052 -0.07729518 0.2334569 0.9692901 -0.07831084 0.2327789 0.9693717 0.009473518 0.2887968 0.9573436 0.01780096 0.2944496 0.9555013 -0.3007265 0.06712096 0.9513456 -0.1623992 0.1860975 0.9690171 0.1621859 0.3783567 0.9113407 0.186962 0.3933264 0.9001886 -0.1611351 0.1865443 0.9691422 -0.08691406 0.2455535 0.9654789 -0.005161397 0.3072517 0.9516143 -0.08684251 0.2456037 0.9654725 0.3469487 0.4751604 0.8086094 0.3079153 0.4545762 0.8357922 0.1392195 0.4075568 0.902505 -0.00621792 0.3069736 0.9516977 0.4446944 0.5164234 0.7318153 0.4938394 0.5380151 0.6831269 0.56924 0.5623309 0.5997913 0.5147157 0.5451214 0.661748 0.1359835 0.4068974 0.9032956 0.2776672 0.4934767 0.8242461 0.6299555 0.5807426 0.5156493 0.5766359 0.5643795 0.5907342 0.4083217 0.5638362 0.7178873 0.2723605 0.4928206 0.8264065 0.6795953 0.5886379 0.4377849 0.6404756 0.579348 0.5041299 0.475563 0.5964221 0.6466224 0.4012454 0.5637197 0.7219572 0.5351895 0.6191829 0.574617 0.4697584 0.5944805 0.6526255 0.6349819 0.6483606 0.4200315 0.5270783 0.6199829 0.581214 -0.380522 -0.03342497 0.9241676 -0.2940181 0.05899506 0.9539774 -0.2778563 0.07769905 0.9574751 -0.1630674 0.1888896 0.9683645 -0.09318592 0.2532966 0.96289 -0.1562281 0.1959393 0.9680912 -0.09198347 0.2543657 0.9627238 -0.02261229 0.315201 0.9487554 -0.0172045 0.3202686 0.9471706 -0.1488554 0.2099434 0.9663156 -0.3625678 -0.05062267 0.9305815 0.09987029 0.4150474 0.9043017 0.1170762 0.4296193 0.8953885 -0.2657242 0.07310763 0.9612731 -0.267875 0.06859134 0.961009 0.2181948 0.502746 0.8364434 0.2461955 0.5239617 0.8153845 -0.1563534 0.1986144 0.9675257 -0.1573299 0.1969436 0.9677089 -0.09863191 0.2606556 0.9603803 -0.09874226 0.2605317 0.9604026 0.3319866 0.5780059 0.7454488 0.3685523 0.6021786 0.7082019 0.4339678 0.6364207 0.6376838 0.3913086 0.6150214 0.6845627 0.0778411 0.4352898 0.896919 -0.03527253 0.3267688 0.9444458 -0.03605968 0.3254977 0.944855 0.4461786 0.6426992 0.6227859 0.5209753 0.677519 0.5191846 0.488412 0.6648965 0.5651251 0.07380124 0.4330019 0.8983667 0.1860883 0.5324501 0.825753 0.1820592 0.5269105 0.8301925 0.2913938 0.6158908 0.7319619 0.2861711 0.6091209 0.7396471 0.3487737 0.6549116 0.6704085 0.3410937 0.649543 0.6795213 0.3917909 0.681286 0.6183438 0.3979139 0.6881987 0.6066688 0.4081913 0.6381936 0.6527547 0.4807768 0.7297801 0.486081 -0.2552743 0.06417117 0.9647368 -0.3013448 -0.00345362 0.953509 -0.1557465 0.1980952 0.96773 -0.243825 0.07856151 0.966632 -0.1030584 0.2644444 0.9588786 -0.1512601 0.203369 0.9673476 -0.1024596 0.2651784 0.9587401 -0.04580995 0.3338268 0.9415207 -0.04997187 0.3294236 0.9428589 0.05570143 0.4483948 0.8920984 0.1546134 0.5501277 0.8206425 0.04317007 0.4363389 0.8987462 0.2507842 0.6388499 0.7273089 0.1341203 0.5324952 0.8357396 0.3016987 0.6824315 0.6657816 0.2231193 0.6182079 0.7536821 0.3487607 0.7171413 0.6033858 0.2726821 0.6600734 0.6999625 0.1992061 0.6338796 0.7473376 0.431724 0.7703844 0.4691719 0.3154585 0.696743 0.6442322 -0.112392 0.2683895 0.9567314 -0.08376367 0.2530729 0.9638142 -0.1695494 -0.08155609 0.9821413 -0.1547943 0.02160493 0.9877104 -0.1126637 0.1784108 0.9774848 -0.05144717 0.3303781 0.9424455 0.01848859 0.4522802 0.8916842 0.09056506 0.5449523 0.8335617 0.9977821 0 0.0665661 0.9977821 -0 0.0665661 0.9442371 -0 0.3292665 0.9442371 0 0.3292665 0.8228202 -0 0.5683018 0.8228202 0 0.5683018 0.6422501 -0 0.7664951 0.6422501 0 0.7664951 0.4155122 -0 0.9095876 0.4155122 0 0.9095876 0.1589189 -0 0.9872916 0.1589189 0 0.9872916 -0.1091004 0 0.9940307 -0.1091004 0 0.9940307 -0.3692811 0 0.9293178 -0.3692811 0 0.9293178 0.5302123 -0.4896039 0.692216 0.4616526 -0.4692087 0.7528081 0.6202145 -0.5115894 0.5946514 0.5495563 -0.4951733 0.6728976 -0.3581589 -0.05514015 0.932031 0.7193987 -0.5279468 0.4513732 0.6398236 -0.5182332 0.5675034 -0.1874033 -0.1413475 0.9720601 -0.1910453 -0.1401234 0.9715282 0.739384 -0.5304272 0.4146785 0.7745979 -0.5294547 0.3459418 -0.07703314 -0.1926155 0.9782459 -0.07486329 -0.1932902 0.9782814 0.7925645 -0.5292179 0.3029358 0.09287805 -0.2645657 0.9598848 0.09347688 -0.2646494 0.9598035 0.2201579 -0.3129334 0.9239064 0.2227861 -0.3137659 0.9229937 0.8519096 -0.5086201 0.1247224 0.6605294 -0.5622166 0.4976075 0.3309537 -0.3509712 0.8759502 0.3264331 -0.3505475 0.8778142 0.5019895 -0.4016037 0.7659771 0.4949302 -0.4015599 0.7705801 0.5926956 -0.4239285 0.6848332 0.5853171 -0.4228108 0.6918345 0.6868674 -0.4400962 0.5783845 0.6779168 -0.4419312 0.5874739 0.7873023 -0.4492812 0.4222577 0.7792023 -0.4510802 0.4351672 -0.1591384 -0.139736 0.9773172 0.8327898 -0.4493326 0.3233592 0.8401254 -0.4462865 0.3082497 0.8911805 -0.4300642 0.1443675 -0.1689319 -0.09336766 0.9811954 -0.355037 -0.04769475 0.9336348 -0.1512787 -0.2337361 0.9604594 -0.1198034 -0.4072129 0.9054418 -0.1883639 -0.111309 0.9757711 -0.1384457 -0.3202902 0.9371483 -0.1800563 -0.1139089 0.9770386 -0.1173574 -0.4402388 0.8901781 -0.06548159 -0.1538635 0.98592 -0.06133479 -0.1550646 0.9859985 -0.1013247 -0.5269111 0.843859 0.1183729 -0.2121025 0.9700517 0.1155104 -0.2115138 0.9705253 -0.07012457 -0.6426752 0.7629228 -0.08578545 -0.5965062 0.7980108 -0.05957499 -0.7045414 0.7071579 -0.3421696 -0.05154979 0.9382231 0.2571456 -0.2514804 0.9330776 -0.04236827 -0.76138 0.64692 0.2492085 -0.2494714 0.9357666 -0.01661189 -0.8278649 0.5606816 -0.02043955 -0.8211223 0.5703862 0.003258227 -0.8876106 0.4605832 0.04103788 -0.9480939 0.3153312 0.0224872 -0.9245229 0.3804626 0.3729702 -0.2809583 0.8842825 0.3602719 -0.2789815 0.8901537 -0.1938601 -0.09241632 0.9766665 -0.1923612 -0.0970303 0.9765154 -0.3676981 -0.03262296 0.9293728 0.5353228 -0.3184097 0.7823329 -0.2267597 -0.09402119 0.9694019 -0.2049388 -0.09542741 0.9741117 0.5538527 -0.320078 0.7686334 -0.1591706 -0.2349699 0.9588816 -0.1595094 -0.2338693 0.9590943 -0.1811222 -0.08209421 0.9800282 -0.182502 -0.08201395 0.9797789 -0.1632505 -0.2348866 0.9582158 -0.1633473 -0.2348539 0.9582073 0.628283 -0.3342365 0.7025286 0.6484606 -0.3367051 0.682736 -0.1360384 -0.3211127 0.9372194 -0.1364146 -0.3199727 0.9375545 -0.0552098 -0.1126064 0.9921047 -0.05568509 -0.1125835 0.9920807 -0.1348219 -0.3207825 0.9375083 -0.1349126 -0.3207512 0.9375059 -0.1018748 -0.4378185 0.8932729 -0.1000693 -0.4420846 0.8913739 0.7444929 -0.3473541 0.570154 0.7228509 -0.3485736 0.5966432 -0.07147375 -0.5292358 0.8454591 -0.07388338 -0.5226263 0.8493545 0.1339798 -0.154361 0.9788882 0.1329164 -0.1545282 0.9790068 0.8244064 -0.353984 0.441644 0.8439384 -0.3514001 0.4053221 -0.09160362 -0.4399782 0.8933241 -0.0921513 -0.4399494 0.893282 0.2748823 -0.1823634 0.9440251 -0.05770903 -0.5257372 0.8486872 -0.05786132 -0.5255899 0.8487681 0.276955 -0.1826189 0.9433697 -0.0462793 -0.5988964 0.7994882 0.8935456 -0.346369 0.2856656 0.8769368 -0.3513956 0.3278765 -0.05009687 -0.590938 0.80516 0.3930013 -0.2041221 0.8965959 0.3961723 -0.2035744 0.8953241 -0.02799131 -0.5943219 0.80374 -0.028855 -0.5942641 0.8037522 -0.003076233 -0.7064443 0.7077619 0.5773637 -0.232397 0.782715 -0.008567263 -0.69661 0.7173989 0.02210003 -0.7629098 0.646127 0.5818297 -0.2312543 0.7797407 0.8182596 -0.3858962 0.4260699 0.9402472 -0.3267382 0.09579829 0.04646518 -0.8106178 0.5837291 0.01664077 -0.7521857 0.6587411 0.673957 -0.2429843 0.697668 0.02119408 -0.7000865 0.7137435 0.02252357 -0.7001218 0.7136682 0.6783146 -0.2430219 0.6934188 0.05159761 -0.7555057 0.6531071 0.7707173 -0.252485 0.5850182 0.05132344 -0.7553234 0.6533396 0.7758036 -0.2498795 0.5793868 0.05070297 -0.8218459 0.567449 0.8755067 -0.2520762 0.4122445 0.8712213 -0.2539766 0.4200825 0.08441725 -0.813228 0.57579 0.08660913 -0.8130771 0.5756773 0.920583 -0.2502564 0.2998309 0.9662347 -0.2335157 0.1089076 0.9241617 -0.2477687 0.2907506 0.09022684 -0.8852903 0.4562021 -0.367508 0.09787641 0.9248557 -0.1090932 0.01145772 0.9939655 0.158774 -0.04269929 0.9863911 0.08220585 -0.8753675 0.4764177 0.4147576 -0.0602377 0.9079359 -0.03353715 -0.05596392 0.9978694 0.4067728 -0.1519384 0.9008055 0.1296112 -0.8757465 0.4650472 -0.1947934 -0.1423776 0.9704556 0.1281211 -0.8757154 0.4655186 -0.3935974 -0.1750969 0.9024534 0.1411381 -0.1201361 0.9826736 -0.05901489 -0.1284829 0.9899543 0.1070161 -0.9113879 0.3973911 0.2864765 -0.1366433 0.9482931 0.1157821 -0.9201916 0.3739544 0.1583035 -0.9098313 0.3835974 0.1569521 -0.909886 0.3840228 0.4128366 -0.1537241 0.8977387 0.4243102 -0.05952208 0.9035584 0.1507228 -0.9559326 0.2519435 0.593738 -0.1723611 0.7859814 0.2017721 -0.9473356 0.2486831 0.00718047 -0.8208619 0.5710816 -0.168844 -0.2363645 0.9568822 0.6406538 -0.07046206 0.76459 0.6016574 -0.1746448 0.7794277 0.6907449 -0.1811619 0.7000371 0.6145584 -0.06614702 0.7860932 0.6994821 -0.182037 0.6910769 -0.2295107 -0.08537846 0.9695542 -0.1317478 -0.3198783 0.9382539 0.7884935 -0.1859524 0.5862591 0.7126334 -0.07002806 0.6980327 -0.1717303 -0.2290441 0.958148 0.7966883 -0.188789 0.5741485 0.8206141 -0.07317829 0.5667781 0.8882391 -0.1875851 0.4193365 0.8103689 -0.07091472 0.5816127 0.9415533 -0.07534274 0.3283306 -0.07615712 -0.4356689 0.8968794 0.8953644 -0.1886911 0.4033835 0.9366565 -0.1842948 0.2978424 0.9088095 -0.07150771 0.4110377 0.955223 -0.07146217 0.2871276 0.9957574 -0.06367085 0.06643105 0.9421411 -0.1850672 0.2795 0.9935343 -0.0678407 0.0910344 -0.1325951 -0.3178875 0.938811 0.9817547 -0.1706356 0.08391257 0.9553761 -0.2051172 0.212564 -0.2481198 -0.09460332 0.9640989 -0.2791867 -0.07001498 0.9576809 -0.03283528 -0.518719 0.854314 -0.07383367 -0.440942 0.8944936 0.004524056 -0.5850224 0.8110045 -0.027406 -0.5288031 0.848302 -0.1774228 -0.2303961 0.9567856 -0.1765081 -0.2314158 0.9567087 -0.1284809 -0.315849 0.9400702 -0.1289142 -0.315385 0.9401667 0.01184854 -0.5989275 0.8007156 0.06739466 -0.6869705 0.7235534 0.07847506 -0.7053564 0.7044956 0.1032536 -0.7401559 0.6644606 0.1174651 -0.7595813 0.6397173 0.1456746 -0.7951597 0.5886425 -0.05649311 -0.4329579 0.8996421 -0.05697715 -0.4326444 0.8997624 -0.001015855 -0.5159019 0.856647 -0.0003300635 -0.5167438 0.85614 0.04608962 -0.5823333 0.8116426 0.04790669 -0.5834351 0.8107457 0.1974092 -0.8547301 0.4800688 0.1604381 -0.8155218 0.5560429 0.2314289 -0.8868313 0.3999637 0.2152562 -0.8730549 0.4375384 0.1282399 -0.6843874 0.7177523 0.125385 -0.6829903 0.7195851 0.1738186 -0.7362347 0.6540226 0.1713899 -0.7341078 0.6570473 0.2501408 -0.9025986 0.3503505 0.256603 -0.9022999 0.346424 0.2816994 -0.9216152 0.2669658 0.2262878 -0.7880438 0.5725215 0.2218675 -0.7869229 0.575784 0.2856193 -0.8407663 0.4599278 0.2895712 -0.8420302 0.4551193 0.3258183 -0.8682225 0.3742088 0.3877077 -0.8935933 0.2262162 0.3301051 -0.8690035 0.3685969 -0.2731827 -0.081784 0.9584793 -0.1857476 -0.2210772 0.9574041 -0.1786753 -0.2310508 0.9563946 -0.1264697 -0.3071182 0.9432306 -0.1226915 -0.3121253 0.9420853 -0.03787344 -0.4261227 0.9038723 -0.03966673 -0.424098 0.9047471 0.02479267 -0.5034344 0.8636777 0.03052722 -0.5103433 0.8594287 0.1705488 -0.6615263 0.7302713 0.08910206 -0.5768641 0.8119659 0.07893506 -0.5668927 0.8200012 0.1846464 -0.6766981 0.7127309 0.2214787 -0.7103068 0.6681404 0.2398751 -0.7256373 0.6449111 0.2803249 -0.7583118 0.5885415 0.2991722 -0.7749649 0.5567093 0.3948731 -0.8327112 0.388159 0.3736566 -0.8210868 0.4315057 0.3490359 -0.8090124 0.4729405 0.3532585 -0.7955109 0.4923118 0.4573684 -0.8541052 0.2476253 0.417341 -0.8433201 0.3385818 -0.3670465 -0.1530179 0.9175306 -0.2258351 -0.2510693 0.9412559 -0.1380534 -0.315767 0.9387398 -0.151729 -0.2575926 0.9542664 -0.01726313 -0.4107086 0.9116032 0.0604148 -0.4880717 0.8707101 0.06271003 -0.4903864 0.869246 0.1264143 -0.5491698 0.8260943 0.1297245 -0.5531877 0.8228942 0.2348492 -0.6397587 0.731816 0.2953289 -0.6850353 0.6659636 0.2402406 -0.6455858 0.7249161 0.3027663 -0.6904218 0.657001 0.3633378 -0.7282947 0.5810099 0.4433373 -0.7707027 0.4576784 0.3701929 -0.7349977 0.5680982 0.4518263 -0.7756254 0.4407472 0.492673 -0.7891757 0.3667083 0.5684685 -0.7995001 0.194019 0.501071 -0.7929163 0.3467157 -0.2722453 -0.03662207 0.9615307 -0.1753508 -0.1858304 0.9668088 -0.1059734 -0.2758114 0.9553521 0.002655847 -0.3955196 0.9184538 0.08855861 -0.4683208 0.8791091 0.09341813 -0.4721524 0.876553 0.1611589 -0.526306 0.8348831 0.170189 -0.5320111 0.8294576 0.2803082 -0.6111752 0.7401974 0.2952905 -0.618938 0.7278182 0.3473635 -0.6519724 0.6739959 0.421481 -0.6906261 0.5876982 0.3642401 -0.6610022 0.6560527 0.4382547 -0.7011057 0.5624799 0.5274708 -0.7334561 0.4287386 0.5059628 -0.7286715 0.4615619 0.5793612 -0.7452495 0.3300664 0.6279627 -0.7473257 0.2171799 0.5578165 -0.743605 0.3686358 -0.1231557 -0.248481 0.9607757 -0.2153041 -0.2287494 0.9493775 -0.3681627 -0.1399688 0.9191654 -0.116184 -0.286769 0.9509284 0.02579468 -0.3706844 0.9284006 0.1258187 -0.4373554 0.8904436 0.2169388 -0.4950658 0.8413367 0.2084555 -0.4909543 0.8458783 0.343926 -0.5667564 0.7486669 0.3560121 -0.5745573 0.7369798 0.4175961 -0.6038485 0.6789554 0.4332242 -0.6102653 0.6632444 0.4968201 -0.6386063 0.5876664 0.5160529 -0.6422924 0.5667009 0.5899677 -0.6666565 0.4555296 0.6093455 -0.6686288 0.4261849 0.6441444 -0.6760551 0.3578094 0.6631141 -0.6751104 0.3232734 -0.2727596 0.02965663 0.961625 0.4664548 -0.6827821 0.5623419 0.7288592 -0.6664382 0.1569219 -0.1615559 -0.1279291 0.9785365 -0.07993313 -0.2209409 0.9720061 0.04961618 -0.3403633 0.938984 0.2475688 -0.4546584 0.8555673 0.159474 -0.4077103 0.8990775 0.2527896 -0.4583244 0.8520775 0.3944943 -0.5239604 0.7548773 0.4029127 -0.529175 0.7467498 0.4741872 -0.5564961 0.6822453 0.4850918 -0.5607067 0.6710394 0.5603436 -0.5841412 0.5871916 0.6568068 -0.6064917 0.4480766 0.570758 -0.5898116 0.5712771 0.7119328 -0.6112477 0.345728 0.6681382 -0.609381 0.4269029 0.7784054 -0.6015147 0.179625 0.7223829 -0.6125681 0.3208165 -0.3450032 -0.06706422 0.9362025 -0.1860911 -0.1655761 0.9684805 -0.3395875 -0.06994829 0.93797 -0.1958977 -0.1591391 0.9676254 -0.08214813 -0.2243676 0.971036 0.0724382 -0.3049973 0.9495943 -0.08800652 -0.2207854 0.9713438 0.189896 -0.3604238 0.9132547 0.07322273 -0.3054776 0.9493797 0.2883447 -0.4028779 0.8686465 0.1958674 -0.3632042 0.9108889 0.4455667 -0.4622322 0.7666888 0.2984868 -0.408025 0.8627986 0.05897371 -0.8286501 0.5566517 0.05895717 -0.8288206 0.5563995 0.03594929 -0.9510932 0.3068049 0.08515643 -0.6424448 0.7615859 0.08517195 -0.6420969 0.7618775 0.1209835 -0.6430994 0.7561653 0.08165403 -0.8292443 0.5528893 0.08162809 -0.829205 0.5529519 0.1161777 -0.1390513 0.9834467 0.1047435 -0.406401 0.9076712 0.1047479 -0.4058691 0.9079086 0.1509652 -0.4070787 0.900831 0.1210465 -0.6430266 0.7562172 0.1161292 -0.1397021 0.9833602 0.1510377 -0.4069719 0.900867 0.1691744 -0.1408335 0.9754722 0.1195049 -0.8294045 0.5457167 0.09813326 -0.8531182 0.5124053 0.2258535 -0.4064454 0.8853205 0.1414499 -0.6433342 0.7524048 0.1792474 -0.6430604 0.7445425 0.09780367 -0.8282695 0.5517282 -0.01196441 -0.9466698 0.3219831 0.1129899 -0.9497474 0.291913 0.2549279 -0.1382137 0.9570312 0.1773382 -0.4073922 0.8958699 0.1993878 -0.1395274 0.9699364 0.254947 -0.1411715 0.9565943 0.2257545 -0.4079271 0.884664 0.1773526 -0.4065187 0.8962637 0.1973328 -0.09157636 0.97605 -0.03579297 -0.829139 0.5578955 0.009123847 -0.9505283 0.3105042 -0.0177134 -0.9042364 0.4266647 -0.1555248 -0.9422305 0.2966707 -0.06450047 -0.6423358 0.7637044 -0.06427166 -0.6435562 0.7626957 -0.01293757 -0.8293352 0.5586018 -0.104804 -0.1373699 0.9849597 -0.08816268 -0.4055814 0.9097973 -0.104817 -0.1417259 0.984341 -0.08787707 -0.4077241 0.9088667 -0.02835315 -0.6431569 0.7652092 -0.02839913 -0.6431024 0.7652534 -0.02598572 -0.09411236 0.9952224 -0.04158523 -0.4071659 0.912407 -0.04166151 -0.4070555 0.9124528 -0.0515653 -0.1406978 0.9887088 0.01190852 -0.8503905 0.5260171 0.02508138 -0.8279954 0.5601737 -0.007649153 -0.6426225 0.7661447 0.08059073 -0.9467325 0.3117736 -0.01490524 -0.4065009 0.9135287 -0.01483657 -0.4070485 0.913286 -0.02090602 -0.1404764 0.9898633 -0.09893641 -0.9823422 0.158794 -0.05562235 -0.9483645 0.3122675 -0.001370858 -0.8285154 0.5599646 0.1146294 -0.9825432 0.146523 0.02043758 -0.9509829 0.3085676 0.02864049 -0.6426903 0.7655906 0.03635023 -0.8290065 0.5580564 0.03634759 -0.829004 0.5580601 0.03638639 -0.09749535 0.9945706 0.03269834 -0.1398731 0.9896294 0.0318929 -0.4065218 0.9130844 0.03190941 -0.4067066 0.9130014 0.04942968 -0.6427686 0.764464 0.04945474 -0.6427999 0.7644361 0.06344774 -0.1392191 0.9882268 0.05871372 -0.4067822 0.9116364 0.05870834 -0.4067743 0.9116403 0.02678049 -0.9548756 0.2957964 0.02690687 -0.954307 0.2976143 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 -0 -1 0 0 -1 0 -0 -1 0 0 -1 0 -0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 -0 -1 0 0 -1 0 -0 -1 0 -0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 -0 -1 0 -0 -1 0 -0 -1 0 -0 -1 0 0 -1 0 0.03602115 0 0.999351 0.03511861 9.371115e-05 0.9993832 -0.03032083 0.0001770406 0.9995402 -0.09562775 -0.0001968842 0.9954171 -0.02766062 -9.12613e-05 0.9996173 -0.1605262 0.0008671339 0.9870313 -0.1102019 -0.001841338 0.9939075 -0.1784267 -8.95628e-05 0.9839532 -0.2247388 0.0008252377 0.9744187 -0.2133418 0.0001077215 0.9769776 0.03511861 0 0.9993831 0.01711543 0.007266067 0.9998271 -0.2879857 0.0008155645 0.9576344 -0.2605594 -0.0007543806 0.9654574 -0.0656345 0.003011053 0.9978392 -0.03032068 -0.003200901 0.9995351 -0.3500029 0.0007663016 0.9367483 -0.3180303 -0.0006201637 0.9480804 -0.1289197 0.0029168 0.9916507 -0.09562729 -0.003138893 0.9954123 -0.4105192 0.0004955358 0.9118519 -0.3692816 -0.0003668807 0.9293175 -0.1910865 0.002679057 0.9815695 -0.1605255 -0.00302449 0.987027 -0.4692781 -0.0003711314 0.8830504 -0.4135791 0.0002575007 0.9104681 -0.5260264 -0.002449441 0.8504646 -0.450799 0.001594345 0.8926241 -0.2498926 0.001926475 0.9682717 -0.224738 -0.002764555 0.9744154 -0.5805115 -0.006757817 0.8142239 -0.4828724 0.003818992 0.8756824 -0.5214756 0.004896655 0.8532521 -0.6324671 -0.01480818 0.7744457 -0.3032359 0.0008412679 0.9529152 -0.2879851 -0.002211393 0.9576323 -0.3512486 -0.0007972762 0.9362819 -0.3500028 -0.00108159 0.936748 -0.3954274 0.0006207403 0.918497 -0.4376259 0.0004960127 0.899157 -0.4105189 -0.001292709 0.9118512 -0.4692779 -0.0009684822 0.88305 -0.4706652 -0.0008036616 0.8823115 -0.4997246 -0.003344715 0.8661779 -0.5260273 0.00162159 0.8504661 -0.5367146 -0.00356579 0.8437563 -0.5804983 0.009559782 0.8142053 -0.5770604 0 0.8167015 -0.6323693 0.0229872 0.7743259 -0.5770603 0 0.8167015 -0.6818381 0 0.7315031 -0.7282214 0 0.685342 -0.6818381 0 0.7315031 -0.7282214 0 0.685342 -0.7714853 0 0.6362472 -0.7714853 0 0.6362472 -0.8114458 0 0.5844277 -0.8114458 0 0.5844277 -0.8479323 0 0.5301045 -0.8479323 0 0.5301045 -0.880787 0 0.4735128 -0.9098706 0 0.4148922 -0.880787 0 0.4735128 -0.9350579 0 0.3544949 -0.9098706 0 0.4148922 -0.9350579 0 0.3544949 -0.9562407 0 0.2925813 -0.973329 0 0.2294137 -0.9562407 0 0.2925813 -0.973329 0 0.2294137 -0.9862496 0 0.1652626 -0.9862496 0 0.1652626 -0.9949465 0 0.1004064 -0.9949465 0 0.1004064 -0.9993832 0 0.03511861 -0.9993832 0 0.03511861 -0.9995403 0 -0.03032083 -0.9954171 0 -0.09562776 -0.9995403 0 -0.03032083 -0.9954171 0 -0.09562776 -0.9870315 0 -0.1605263 -0.9870315 0 -0.1605263 -0.974419 0 -0.2247389 -0.974419 0 -0.2247389 -0.9576347 0 -0.2879858 -0.9576347 0 -0.2879858 -0.9367485 0 -0.350003 -0.9367485 0 -0.350003 -0.911852 0 -0.4105192 -0.8830504 0 -0.4692781 -0.911852 0 -0.4105192 -0.8830504 0 -0.4692781 -0.8504671 0 -0.526028 -0.8504671 0 -0.526028 -0.8142425 0 -0.5805248 -0.8142425 0 -0.5805248 -0.7745306 0 -0.6325364 -0.7745306 0 -0.6325364 -0.7315031 0 -0.6818381 -0.7315031 0 -0.6818381 -0.685342 0 -0.7282214 -0.685342 0 -0.7282214 -0.6362472 0 -0.7714853 -0.6362472 0 -0.7714853 -0.5844277 0 -0.8114458 -0.5844277 0 -0.8114458 -0.5301045 0 -0.8479323 -0.4735128 0 -0.880787 -0.5301045 0 -0.8479323 -0.4148922 0 -0.9098706 -0.4735128 0 -0.880787 -0.4148922 0 -0.9098706 -0.3544949 0 -0.9350579 -0.3544949 0 -0.9350579 -0.2925813 0 -0.9562407 -0.2925813 0 -0.9562407 -0.2294137 0 -0.973329 -0.2294137 0 -0.973329 -0.1652626 0 -0.9862496 -0.1004064 0 -0.9949465 -0.1652626 0 -0.9862496 -0.1004064 0 -0.9949465 -0.2391992 0.5896073 0.7714577 -0.1096801 0.5890393 -0.8006266 -0.2132177 0.5891827 -0.7793599 -0.2902572 0.1257943 -0.9486446 -0.09281293 0.3693902 0.9246278 -0.09894855 0.1359481 0.9857623 -0.1594248 0.1169459 0.9802588 -0.3356014 0.3693546 -0.8665731 -0.3574424 0.1426927 -0.9229701 -0.2452628 0.3689825 -0.8964921 -0.3516789 0.1257943 -0.9276302 -0.09281211 0.369388 0.9246288 -0.2277669 0.1196057 -0.966342 0.01420733 0.906765 0.4213969 -0.1637911 0.1331468 -0.9774684 -0.2466626 0.7723782 0.5853115 -0.1327332 0.2088423 -0.9688998 -0.2452625 0.36898 -0.8964933 -0.1261544 0.368861 -0.9208836 -0.2587738 0.1958225 -0.9458803 -0.126155 0.3688649 -0.920882 -0.2502788 0.9102933 0.3297374 -0.247742 0.8984336 0.3625479 -0.2391985 0.5896084 0.771457 -0.3137462 0.5893127 0.7444958 -0.3051195 0.7725601 0.5568242 -0.3051195 0.77256 0.5568241 -0.1830242 0.3690091 0.9112269 -0.1830246 0.3690113 0.9112259 -0.2229536 0.1257938 0.9666786 -0.2856981 0.1257938 0.9500276 -0.1932374 0.1925497 0.9620727 -0.2772422 0.9067652 0.317669 -0.2982744 0.9067652 0.2980087 -0.2817246 0.8997862 0.3331908 -0.3881584 0.5895356 0.708365 -0.3137471 0.5893111 0.7444967 0.03483964 0.1257938 0.9914444 -0.3583036 0.7724512 0.5243449 -0.3583037 0.7724512 0.524345 -0.2929752 0.1460585 0.9448981 -0.3478504 0.1107359 0.9309874 -0.2752122 0.3693348 0.8876091 -0.2752125 0.3693362 0.8876085 -0.3122501 0.9102215 0.2720235 -0.3120383 0.9004529 0.3030126 -0.4557771 0.5894008 0.6669886 -0.3881587 0.5895351 0.7083652 -0.4100108 0.7724966 0.4849126 -0.4100107 0.7724966 0.4849125 -0.4555474 0.7725184 0.4423708 -0.3609258 0.369091 0.8564488 -0.3609259 0.3690921 0.8564482 -0.4072581 0.1257946 0.9046085 -0.4655503 0.1257946 0.8760358 -0.3818101 0.1826889 0.9060055 -0.3360754 0.906765 0.2546183 -0.3526675 0.906765 0.2310904 -0.3457526 0.8977467 0.2729579 -0.4557754 0.5894034 0.6669876 -0.4555475 0.7725183 0.4423708 -0.5229978 0.1071818 0.8455681 -0.446582 0.3692781 0.8149835 -0.4746552 0.1561197 0.8662153 -0.446582 0.3692774 0.814984 -0.3627281 0.9024122 0.2325522 -0.3620336 0.9097146 0.2033491 -0.521569 0.5894594 0.6168496 -0.579506 0.5894847 0.5627438 -0.5215693 0.5894578 0.6168508 -0.4984845 0.7724274 0.393534 -0.4984841 0.7724281 0.3935333 -0.5345002 0.7725804 0.3426789 -0.524339 0.3691638 0.7673244 -0.524339 0.3691658 0.7673234 -0.5759133 0.1257959 0.8077743 -0.6275116 0.1257958 0.7683778 -0.555707 0.1727725 0.8132277 -0.3970132 0.8956444 0.2005033 -0.3808494 0.9067653 0.1809158 -0.3923074 0.9067653 0.1545046 -0.5795058 0.589485 0.5627438 -0.6340803 0.5893728 0.5005815 -0.5345019 0.7725793 0.3426792 -0.5669904 0.7723519 0.2863468 -0.6366952 0.1661273 0.7530079 -0.600048 0.3692119 0.7096654 -0.6779757 0.1062904 0.7273592 -0.6000481 0.3692105 0.709666 -0.3980591 0.9043142 0.1541583 -0.3978165 0.9087625 0.1260662 -0.6340812 0.5893716 0.5005817 -0.6799778 0.5895597 0.4359465 -0.5669889 0.7723531 0.2863465 -0.6667117 0.3692337 0.6474273 -0.7078356 0.1627975 0.6873615 -0.6667116 0.3692341 0.647427 -0.7224367 0.1257939 0.6798979 -0.7653569 0.1257938 0.631193 -0.6799765 0.5895614 0.4359464 -0.7211761 0.589281 0.3642157 -0.4331901 0.893477 0.1185123 -0.4096922 0.906765 0.09964628 -0.4155371 0.906765 0.07145533 -0.5920044 0.7726362 0.2292684 -0.5920045 0.7726361 0.2292685 -0.7823337 0.3692993 0.5015696 -0.7294534 0.3691431 0.5758743 -0.7294537 0.3691406 0.5758755 -0.772624 0.1760827 0.6099566 -0.8066936 0.1080687 0.5810049 -0.7211771 0.5892797 0.3642158 -0.753166 0.5896291 0.2916824 -0.419445 0.906765 0.04293156 -0.4213969 0.906765 0.01420733 -0.4508091 0.8904814 0.06175773 -0.7823343 0.369298 0.5015695 -0.8319616 0.1527698 0.5333865 -0.829608 0.3690656 0.4189765 -0.8411968 0.1257931 0.5258936 -0.8737905 0.125793 0.4697514 -0.6127732 0.7722726 0.1676423 -0.6127748 0.7722712 0.1676432 -0.7531659 0.5896291 0.2916823 -0.7793619 0.5891801 0.2132175 -0.8296075 0.3690665 0.4189766 -0.8770506 0.1859821 0.4429368 -0.9040934 0.1125108 0.4122578 -0.4189985 0.9078712 -0.01449996 -0.4520448 0.8919947 0.001084995 -0.6295534 0.7721556 0.08624446 -0.6295543 0.7721549 0.08624482 -0.8006266 0.5890394 0.1096806 -0.77936 0.5891827 0.2132177 -0.4194061 0.9067652 -0.04330551 -0.4154732 0.9067652 -0.07182513 -0.4221152 0.9055514 -0.04237114 -0.8665729 0.3693546 0.335602 -0.8665724 0.3693565 0.3356011 -0.9229701 0.1426927 0.3574424 -0.9276302 0.1257943 0.3516789 -0.9486446 0.1257943 0.2902572 -0.6353581 0.7722161 0.001524984 -0.6353593 0.7722151 0.00152534 -0.8006281 0.5890372 0.1096803 -0.4046245 0.9091307 -0.09879506 -0.4388884 0.8942069 -0.08815283 -0.8964932 0.3689799 0.245263 -0.8964923 0.3689825 0.2452622 -0.966342 0.1196057 0.2277669 -0.9774684 0.1331468 0.1637911 -0.9458803 0.1958225 0.2587738 -0.6316335 0.7726702 -0.0634022 -0.631633 0.7726706 -0.06340243 -0.4018233 0.9067652 -0.1277298 -0.3921699 0.9067652 -0.1548536 -0.4089858 0.9036868 -0.1268102 -0.80805 0.5891108 0.001939927 -0.8080502 0.5891106 0.001939989 -0.9208835 0.368861 0.1261553 -0.920882 0.3688649 0.1261542 -0.9870431 0.1257938 0.09960883 -0.9914444 0.1257938 0.03483964 -0.9688998 0.2088423 0.1327332 -0.6228191 0.7723001 -0.1250962 -0.6228192 0.7722999 -0.1250962 -0.8036045 0.5896719 -0.08066478 -0.8036047 0.5896717 -0.0806647 -0.7921557 0.5892147 -0.1591082 -0.3744772 0.9099323 -0.1782979 -0.408546 0.8963524 -0.1721701 -0.5853122 0.7723775 -0.2466631 -0.6063927 0.772617 -0.1880183 -0.6063911 0.7726182 -0.1880184 -0.9793109 0.2023479 0.002350472 -0.9294562 0.3689256 0.002230815 -0.9294574 0.3689227 0.002231466 -0.9916003 0.125794 -0.03007997 -0.9875099 0.125794 -0.09486812 -0.3790483 0.9017655 -0.2077048 -0.3674308 0.9067654 -0.2068117 -0.3524611 0.9067654 -0.2314038 -0.7714577 0.5896073 -0.2391992 -0.7921557 0.5892145 -0.1591083 -0.9246289 0.369388 -0.09281212 -0.9857623 0.1359481 -0.09894855 -0.9802588 0.1169459 -0.1594248 -0.9246278 0.3693902 -0.09281293 -0.5568241 0.7725599 -0.3051195 -0.5853115 0.7723782 -0.2466626 -0.3297374 0.9102933 -0.2502788 -0.3625479 0.8984336 -0.247742 -0.7444958 0.5893127 -0.3137462 -0.771457 0.5896084 -0.2391985 -0.5568241 0.7725601 -0.3051195 -0.524345 0.7724512 -0.3583037 -0.9112259 0.3690113 -0.1830246 -0.9620727 0.1925497 -0.1932374 -0.9112269 0.3690091 -0.1830242 -0.9666786 0.1257938 -0.2229536 -0.9500276 0.1257938 -0.2856981 -0.317669 0.9067653 -0.2772422 -0.2980087 0.9067652 -0.2982744 -0.3331908 0.8997862 -0.2817246 -0.7444967 0.5893111 -0.3137471 -0.708365 0.5895356 -0.3881584 -0.5243449 0.7724512 -0.3583036 -0.8876085 0.3693362 -0.2752125 -0.8876091 0.3693348 -0.2752122 -0.9448981 0.1460585 -0.2929752 -0.8564486 0.369091 -0.360926 -0.9309874 0.1107359 -0.3478504 -0.3030126 0.9004529 -0.3120383 -0.2720235 0.9102215 -0.3122501 -0.7083652 0.5895351 -0.3881587 -0.6669886 0.5894008 -0.4557771 -0.4849125 0.7724966 -0.4100107 -0.4849126 0.7724966 -0.4100108 -0.8149837 0.3692781 -0.4465818 -0.9060055 0.1826889 -0.3818101 -0.8564484 0.3690921 -0.3609256 -0.9046085 0.1257946 -0.4072581 -0.8760358 0.1257946 -0.4655503 -0.2546183 0.906765 -0.3360754 -0.04293156 0.906765 -0.419445 -0.2310904 0.906765 -0.3526675 -0.2729579 0.8977467 -0.3457526 -0.6669876 0.5894034 -0.4557754 -0.4423707 0.7725185 -0.4555474 -0.4423708 0.7725183 -0.4555474 -0.3935338 0.7724274 -0.4984847 -0.7673237 0.3691658 -0.5243385 -0.8149838 0.3692774 -0.4465822 -0.8662153 0.1561197 -0.4746552 -0.8455681 0.1071818 -0.5229978 -0.2033491 0.9097146 -0.3620336 -0.2325522 0.9024122 -0.3627281 -0.6168496 0.5894594 -0.521569 -0.6168508 0.5894578 -0.5215693 -0.3935335 0.772428 -0.4984839 -0.3426789 0.7725804 -0.5345002 -0.09960883 0.1257938 -0.9870431 -0.767324 0.3691638 -0.5243394 -0.8132277 0.1727725 -0.555707 -0.01449996 0.9078712 0.4189985 -0.8077743 0.1257959 -0.5759133 -0.7683778 0.1257958 -0.6275116 -0.1809158 0.9067653 -0.3808494 0.001084995 0.8919947 0.4520448 -0.1545046 0.9067652 -0.3923074 -0.2005033 0.8956444 -0.3970132 -0.04237114 0.9055514 0.4221152 -0.04330551 0.9067652 0.4194061 -0.07182513 0.9067652 0.4154732 -0.5627437 0.5894849 -0.5795059 -0.5627439 0.5894846 -0.5795059 -0.5005815 0.5893728 -0.6340803 0.001525341 0.7722151 0.6353594 0.001524984 0.7722161 0.6353581 -0.3426791 0.7725793 -0.5345019 -0.7096654 0.3692119 -0.600048 -0.09879506 0.9091307 0.4046245 -0.709666 0.3692105 -0.6000481 -0.7530079 0.1661273 -0.6366952 -0.7273592 0.1062904 -0.6779757 -0.08815283 0.8942069 0.4388884 -0.1541583 0.9043142 -0.3980591 -0.1260662 0.9087625 -0.3978165 -0.06340243 0.7726706 0.631633 -0.0634022 0.7726702 0.6316335 -0.5005817 0.5893716 -0.6340812 -0.4359466 0.5895598 -0.6799779 -0.1277298 0.9067652 0.4018233 -0.1548536 0.9067652 0.3921699 -0.2863471 0.7723519 -0.5669901 -0.1268102 0.9036868 0.4089858 -0.2863461 0.772353 -0.5669891 -0.2292685 0.7726361 -0.5920045 -0.647427 0.3692341 -0.6667116 -0.6474273 0.3692337 -0.6667117 -0.6798979 0.1257939 -0.7224367 0.001939989 0.5891106 0.8080502 -0.631193 0.1257938 -0.7653569 -0.5758749 0.3691407 -0.7294541 -0.6873615 0.1627975 -0.7078356 -0.3642157 0.589281 -0.7211761 0.001939927 0.5891108 0.80805 -0.08066468 0.5896719 0.8036045 -0.1250962 0.7723001 0.6228191 -0.4359464 0.5895614 -0.6799765 -0.1250962 0.7722999 0.6228192 -0.1185123 0.893477 -0.4331901 -0.09964628 0.906765 -0.4096922 -0.07145533 0.9067651 -0.4155372 -0.06175773 0.8904814 -0.4508091 -0.1676427 0.7722726 -0.6127731 -0.2292685 0.7726362 -0.5920044 -0.08066478 0.5896717 0.8036047 -0.1591082 0.5892147 0.7921557 -0.1782979 0.9099323 0.3744772 -0.5758749 0.3691431 -0.729453 -0.6099566 0.1760827 -0.772624 -0.5015696 0.3692993 -0.7823337 -0.5810049 0.1080687 -0.8066936 -0.2916824 0.5896291 -0.753166 -0.3642158 0.5892797 -0.7211771 -0.1721701 0.8963524 0.408546 -0.1880183 0.772617 0.6063927 -0.2466631 0.7723775 0.5853122 -0.5015695 0.369298 -0.7823343 -0.5333865 0.1527698 -0.8319616 -0.5258936 0.1257931 -0.8411968 -0.1880184 0.7726182 0.6063911 -0.4697514 0.125793 -0.8737905 0.002230815 0.3689256 0.9294562 -0.08624458 0.7721549 -0.6295543 0.002231466 0.3689227 0.9294574 -0.0862447 0.7721557 -0.6295534 0.002350472 0.2023479 0.9793109 -0.1096808 0.5890372 -0.8006281 -0.03007997 0.125794 0.9916002 -0.09486812 0.125794 0.9875099 -0.1676427 0.7722713 -0.6127748 -0.2077048 0.9017655 0.3790483 -0.2068117 0.9067654 0.3674308 -0.2314038 0.9067654 0.3524611 -0.2132175 0.5891801 -0.7793619 -0.2916823 0.5896291 -0.7531659 -0.4189768 0.3690656 -0.8296078 -0.4189763 0.3690665 -0.8296075 -0.4429368 0.1859821 -0.8770506 -0.3356017 0.3693565 -0.8665721 -0.1591083 0.5892145 0.7921557 -0.4122578 0.1125108 -0.9040934 -0.2146346 0.9713581 0.1019584 -0.2189333 0.9719226 0.08622371 -0.01898008 0.9953689 -0.09423646 -0.2209172 0.9727768 0.0700075 -0.2206448 0.9738767 0.05366585 -0.218251 0.9751708 0.03753012 -0.213931 0.9766033 0.02189655 -0.2108837 0.9774062 0.01433051 -0.07959507 0.9862107 0.1450964 -0.06241354 0.9735872 0.2196194 -0.07500012 0.9813437 0.1770294 -0.06277518 0.9747289 0.2143894 -0.08545348 0.9835322 0.1592547 -0.0730303 0.970507 0.2297448 -0.09723893 0.9643136 0.2462596 -0.1213473 0.9593326 0.2548645 -0.08637231 0.9718243 -0.2193107 -0.1424077 0.9569258 0.2530078 -0.07469013 0.9689531 -0.2356932 -0.1576329 0.9578649 0.2400974 -0.06644718 0.9675522 -0.2437774 -0.1654237 0.96184 0.2179425 -0.1658591 0.9676641 0.1900443 -0.1608533 0.9734579 0.1628066 -0.006056882 0.9953689 0.09593784 -0.03835811 0.9927518 0.1138968 -0.06603394 0.9881908 0.1382692 -0.0559088 0.9718244 0.2289795 -0.04211783 0.9689531 0.243631 -0.02684983 0.9652256 0.2600357 -0.03285708 0.9675522 0.2505256 -0.009581727 0.9608572 0.2768785 0.009622402 0.9583585 0.2854056 -0.09825996 0.9813437 -0.1652557 -0.09120161 0.9747289 -0.203926 -0.08413254 0.9881908 -0.1280647 -0.1900444 0.9676641 -0.1658591 -0.1933871 0.96184 -0.1935596 -0.1886651 0.9578649 -0.2165648 -0.1753264 0.9569259 -0.2314165 -0.1547112 0.9593325 -0.2361051 -0.1296599 0.9643137 -0.2308407 -0.1034396 0.9705071 -0.2177528 -0.09155084 0.9735872 -0.2091569 -0.1062126 0.9835322 -0.1462301 -0.1356701 0.990717 -0.008565276 -0.1171669 0.992328 -0.03945942 -0.1060586 0.9918576 -0.0704984 -0.09919167 0.9886816 -0.1125603 -0.2149265 0.9766033 0.007246305 -0.2213218 0.9751707 -0.007659102 -0.2258766 0.9738767 -0.02332284 -0.09849262 0.9862107 -0.1329945 -0.2283572 0.9727768 -0.03947731 -0.2285854 0.9719227 -0.05581249 -0.2264547 0.9713581 -0.07198439 -0.05341393 0.9927518 -0.1076605 -0.1813997 0.9734579 -0.139549 -0.2219439 0.971113 -0.0876376 -0.2151219 0.9712011 -0.1024249 -0.0617816 0.9652256 -0.2540129 -0.206146 0.9716175 -0.1160311 -0.04695112 0.9608572 -0.2730367 -0.02907687 0.9583585 -0.2840836 -0.1952519 0.9723395 -0.1281901 -0.1827355 0.9733292 -0.1387008 -0.08305213 0.9886815 0.1249445 -0.09554623 0.9918576 0.08419844 -0.1107516 0.992328 0.05494749 -0.1332641 0.9907171 0.02684061 -0.151452 0.9884111 0.01029186 -0.1622916 0.9733292 0.162147 -0.1761149 0.9723395 0.1534262 -0.1885538 0.9716175 0.1428526 -0.1992877 0.9712012 0.1305862 -0.2080475 0.971113 0.1168572 -0.03437349 0.9992635 0.01705383 -0.01272096 0.9999188 -0.0008031114 -0.03761603 0.9992635 0.007576203 -0.01249537 0.9999187 0.002516679 -0.06260509 0.9979588 0.01260922 -0.03761612 0.9992636 0.007576219 -0.01272106 0.9999188 -0.0008031224 -0.0008031114 0.9999188 0.01272096 -0.06373579 0.9979587 -0.004023851 -0.06373537 0.9979587 -0.004023805 -0.03829525 0.9992636 -0.002417694 -0.038295 0.9992635 -0.002417689 -0.01207973 0.9999188 -0.004068204 -0.0106152 0.9999188 -0.007056052 -0.01207974 0.9999188 -0.004068207 -0.03636439 0.9992636 -0.01224677 -0.03636448 0.9992636 -0.01224681 -0.004023825 0.9979588 0.06373537 -0.06052279 0.9979587 -0.02038284 -0.06052259 0.9979587 -0.02038276 -0.008427233 0.9999188 -0.009563013 -0.01061517 0.9999188 -0.007056034 -0.05318504 0.9979588 -0.03535274 -0.03195575 0.9992636 -0.02124137 -0.0531847 0.9979587 -0.03535249 -0.03195567 0.9992636 -0.02124132 -0.00842723 0.9999188 -0.009563007 -0.02536921 0.9992636 -0.02878834 -0.04222256 0.9979588 -0.0479131 -0.04222253 0.9979587 -0.04791307 -0.028383 0.9979587 -0.05720845 -0.02536925 0.9992635 -0.02878839 -0.005664996 0.9999188 -0.0114183 -0.00251669 0.9999188 -0.01249544 -0.002516679 0.9999187 -0.01249537 -0.005664987 0.9999188 -0.01141828 -0.01705383 0.9992635 -0.03437349 -0.02838313 0.9979587 -0.05720869 -0.007576216 0.9992636 -0.0376161 -0.007576203 0.9992635 -0.03761602 -0.01705379 0.9992635 -0.03437342 -0.0126093 0.9979587 -0.06260547 -0.01260924 0.9979588 -0.06260508 -0.0008031224 0.9999188 0.01272106 -0.002417694 0.9992636 0.03829525 -0.02038277 0.9979587 0.06052259 -0.002417689 0.9992635 0.038295 -0.004023833 0.9979588 0.06373581 -0.004068204 0.9999188 0.01207973 -0.004068207 0.9999188 0.01207974 -0.01224681 0.9992636 0.03636449 -0.02038283 0.9979587 0.06052278 -0.01224679 0.9992636 0.03636442 -0.007056034 0.9999188 0.01061517 -0.02124133 0.9992636 0.03195568 -0.007056053 0.9999188 0.0106152 -0.03535249 0.9979587 0.0531847 -0.02124137 0.9992636 0.03195574 -0.03535274 0.9979588 0.05318504 -0.009563008 0.9999188 0.008427229 -0.01141828 0.9999188 0.005664987 -0.009563014 0.9999188 0.008427234 -0.04791307 0.9979587 0.04222253 -0.05720845 0.9979587 0.028383 -0.0479131 0.9979588 0.04222256 -0.02878839 0.9992635 0.02536925 -0.02878834 0.9992636 0.02536921 -0.01249544 0.9999188 0.00251669 -0.0114183 0.9999188 0.005664996 -0.06260546 0.9979587 0.01260931 -0.05720869 0.9979587 0.02838313 -0.03437342 0.9992635 0.01705379 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.06300789 0 0.998013 -0.06300789 0 0.998013 -0.3191654 0 0.947699 -0.5535728 0 0.8328008 -0.3191654 0 0.947699 -0.5535728 0 0.8328008 -0.7502549 0 0.6611487 -0.7502549 0 0.6611487 -0.8958085 0 0.4444403 -0.8958085 0 0.4444403 -0.9803141 0 0.1974441 -0.9803141 0 0.1974441 -0.998013 -0 -0.06300789 -0.998013 -0 -0.06300789 -0.947699 -0 -0.3191654 -0.947699 -0 -0.3191654 -0.8328008 -0 -0.5535728 -0.8328008 -0 -0.5535728 -0.6611487 -0 -0.7502549 -0.4444403 0 -0.8958085 -0.6611487 -0 -0.7502549 -0.4444403 -0 -0.8958085 -0.1974441 -0 -0.9803141 -0.1974441 -0 -0.9803141 -0.06300777 0 0.998013 -0.06300777 0 0.998013 -0.3191655 0 0.947699 -0.5535727 0 0.8328009 -0.3191655 0 0.947699 -0.5535727 0 0.8328009 -0.750255 0 0.6611485 -0.8958084 0 0.4444404 -0.750255 0 0.6611485 -0.8958084 0 0.4444404 -0.9803141 0 0.1974441 -0.998013 0 -0.06300777 -0.9803141 0 0.1974441 -0.947699 0 -0.3191655 -0.998013 -0 -0.06300777 -0.947699 -0 -0.3191655 -0.8328009 -0 -0.5535727 -0.6611485 0 -0.750255 -0.8328009 -0 -0.5535727 -0.6611485 -0 -0.750255 -0.4444404 -0 -0.8958084 -0.1974441 0 -0.9803141 -0.4444404 -0 -0.8958084 -0.1974441 -0 -0.9803141 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.2811545 0 0.9596625 0.2811545 0 0.9596625 0.1968446 0 0.9804347 0.1110506 0 0.9938148 0.1968446 0 0.9804347 0.1110506 0 0.9938148 0.2955512 0 0.9553269 0.2056807 0 0.9786192 0.2955512 0 0.9553269 0.2056807 0 0.9786192 0.1140377 0 0.9934763 0.1140377 0 0.9934763 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0 0 1 0 -0.7502543 0 0.6611494 -0.7502543 0 0.6611494 -0.5535728 0 0.8328008 -0.319166 0 0.9476988 -0.5535728 0 0.8328008 -0.319166 0 0.9476988 -0.06300706 0 0.9980131 0.1974449 0 0.980314 -0.06300706 0 0.9980131 0.1974449 -0 0.980314 0.4444394 -0 0.8958089 0.4444394 -0 0.8958089 0.6611488 -0 0.7502548 0.6611488 -0 0.7502548 0.8328006 -0 0.553573 0.8328006 -0 0.553573 0.947699 -0 0.3191653 0.947699 -0 0.3191653 0.998013 -0 0.06300816 0.998013 -0 0.06300816 0.980314 0 -0.1974449 0.8958085 0 -0.4444403 0.980314 0 -0.1974449 0.8958085 0 -0.4444403 -0.8301337 0 0.5575644 -0.8301337 0 0.5575644 -0.8301389 -1.448025e-06 0.5575567 -0.830134 5.965331e-07 0.5575638 -0.8301324 -1.20407e-06 0.5575664 -0.8301337 0 0.5575644 -0.8301333 -4.546953e-07 0.557565 -0.8301336 -2.838559e-07 0.5575646 -0.830135 2.668741e-07 0.5575625 -0.830134 8.383818e-08 0.5575639 -0.830132 -6.749909e-09 0.557567 -0.8301337 0 0.5575644 -0.8301337 0 0.5575644 -0.8301337 -1.713512e-07 0.5575643 -0.01966143 0.9928849 0.117443 0.01855913 0.1303797 0.9912904 0.02429577 0.09985346 0.9947054 -0.06208564 0.09985346 0.9930633 0.01477174 0.3822244 0.9239514 0.0272106 0.2946879 0.9552061 -0.1479989 0.09985463 0.9839336 -0.1478758 0.1004771 0.9838887 -0.06208542 0.09985465 0.9930632 -0.05962548 0.2947375 0.9537162 0.01178212 0.6082796 0.7936353 0.02760836 0.4939213 0.8690681 -0.1424154 0.2930215 0.9454397 -0.1420147 0.2947413 0.9449652 -0.05424986 0.4940505 0.8677391 -0.059625 0.2947399 0.9537156 0.008104941 0.7928478 0.6093659 0.02361413 0.6839799 0.7291186 -0.1313562 0.4881858 0.8627979 -0.1294572 0.4940446 0.8597446 -0.04551117 0.6841173 0.7279508 -0.05425078 0.4940472 0.8677409 0.009352235 0.9237479 0.3828868 0.01402459 0.8186115 0.5741764 -0.1118513 0.6789882 0.7255787 -0.04551135 0.6841168 0.7279512 -0.03583812 0.8186115 0.5732285 -0.1097393 0.6840889 0.7210962 0.003189073 0.9914351 0.1305619 0.002797041 0.9911774 0.1325115 0.009352293 0.923748 0.3828866 -0.08098308 0.8323025 0.5483741 -0.08750001 0.8185682 0.5677058 -0.03583772 0.8186126 0.5732269 -0.02389826 0.9237481 0.3822544 -0.05170186 0.9378701 0.3431132 -0.009706509 0.9909524 0.1338617 -0.008039437 0.9916651 0.1285916 -0.02190878 0.9921063 0.1234716 -0.06334553 0.9236304 0.3780134 -0.02389821 0.923748 0.3822543 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.8979318 -5.554931e-08 0.4401346 0.8979318 -0 0.4401346 0.8979318 -0 0.4401347 0.8979318 -0 0.4401346 0.8979319 -3.671812e-08 0.4401346 0.8979318 -0 0.4401348 0.8979318 -3.537571e-08 0.4401346 0.8979342 -1.857827e-06 0.4401296 0.8979318 -3.970635e-08 0.4401346 0.8979319 2.774657e-07 0.4401345 0.8979353 -2.335179e-06 0.4401276 0.8979313 -3.697572e-07 0.4401357 0.8979316 -1.350257e-07 0.4401351 -0.947699 0 -0.3191653 -0.947699 0 -0.3191653 -0.998013 0 -0.06300809 -0.998013 0 -0.06300809 -0.9803141 0 0.1974442 -0.8958085 0 0.4444403 -0.9803141 0 0.1974442 -0.8958085 0 0.4444403 -0.7502553 0 0.6611483 -0.7502553 0 0.6611483 -0.5535728 0 0.8328008 -0.5535728 0 0.8328008 -0.3191663 0 0.9476987 -0.3191663 0 0.9476987 -0.063007 0 0.9980131 -0.063007 0 0.9980131 0.1974449 -0 0.980314 0.1974449 -0 0.980314 0.4444394 -0 0.8958089 0.4444394 -0 0.8958089 0.6611482 -0 0.7502553 0.6611482 -0 0.7502553 0.8328011 -0 0.5535722 0.8328011 -0 0.5535722 -0.7212669 0 0.6926572 -0.7212669 0 0.6926572 -0.8301336 0 0.5575646 -0.9140117 0 0.4056878 -0.8301336 0 0.5575646 -0.9140117 0 0.4056878 -0.7128838 0 0.7012823 -0.7128838 0 0.7012823 -0.8301336 0 0.5575646 -0.8301336 0 0.5575646 -0.918825 0 0.3946652 -0.918825 0 0.3946652 -0.8979318 0 -0.4401345 -0.8979318 0 -0.4401346 -0.897926 -1.934388e-06 -0.4401464 -0.8979314 8.948002e-07 -0.4401354 -0.8979322 -1.852407e-07 -0.4401338 -0.8979318 0 -0.4401346 -0.8979324 -4.54696e-07 -0.4401333 -0.8979322 -2.270847e-07 -0.4401339 -0.897931 3.380421e-07 -0.4401362 -0.8979329 -9.298405e-08 -0.4401324 -0.8979315 -1.199982e-08 -0.4401354 -0.8979318 0 -0.4401346 -0.8979318 0 -0.4401346 -0.8979319 3.671812e-08 -0.4401346 -0.4755925 0.8187204 0.3217279 -0.5259969 0.8186821 0.230406 -0.4755928 0.8187201 0.3217281 -0.3210979 0.9362852 0.1423598 -0.1257557 0.988459 0.08446458 -0.1220884 0.989077 0.08259016 -0.1321899 0.9897294 0.05441957 -0.3231964 0.9207293 0.2186354 -0.358122 0.9206623 0.1553364 -0.323196 0.9207297 0.218635 -0.05567046 0.9969387 0.05489986 -0.1116957 0.9925915 0.04781371 -0.7153655 0.1078326 0.6903797 -0.7148333 0.1332679 0.6864787 -0.68372 0.3122454 0.6595678 -0.6868888 0.2930799 0.6650473 -0.9093227 0.1005111 0.4037693 -0.8260643 0.09889393 0.5548313 -0.9095312 0.09889346 0.4036992 -0.8266448 0.06281628 0.559207 -0.6218386 0.4998528 0.6028798 -0.6240895 0.4931124 0.6060961 -0.874863 0.2897631 0.3881393 -0.8738279 0.2930278 0.3880202 -0.7919439 0.2929421 0.5357329 -0.7919433 0.2929452 0.5357322 -0.5312077 0.6710563 0.5172058 -0.5275312 0.6775723 0.5124516 -0.8019068 0.4811157 0.3542219 -0.7952125 0.4930764 0.3528635 -0.7206423 0.4929698 0.487499 -0.7206427 0.4929691 0.4874994 -0.4153318 0.8143542 0.4053724 -0.4113314 0.8187942 0.4004779 -0.676778 0.6730187 0.298358 -0.6727998 0.6774872 0.29724 -0.6092677 0.6774363 0.4121563 -0.6092689 0.6774346 0.4121573 -0.2841416 0.9175304 0.2782113 -0.1630822 0.9736385 0.1594743 -0.1024019 0.9890068 0.1066738 -0.2792717 0.920756 0.2724257 -0.5104973 0.8298203 0.2253684 0 1 0 0 1 0 0 1 0 0 1 -0 0 1 -0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0 0.06779821 -8.749017e-08 0.9976991 0.06779826 -0 0.9976991 0.06779793 -0 0.9976991 0.06779826 -0 0.9976991 0.06779825 1.132142e-08 0.997699 0.06779794 -0 0.9976991 0.06779823 1.162891e-08 0.9976991 0.06779068 1.195634e-06 0.9976996 0.06779762 -2.865824e-07 0.997699 0.06779709 -6.646385e-08 0.9976991 0.06779796 -8.288545e-08 0.997699 0.06779842 1.856301e-07 0.997699 0.06779883 3.194507e-07 0.997699 -0.1974441 0 -0.9803142 -0.1974441 0 -0.9803142 -0.4444403 0 -0.8958085 -0.4444403 0 -0.8958085 -0.661148 0 -0.7502555 -0.661148 0 -0.7502555 -0.832801 0 -0.5535725 -0.9476994 0 -0.3191643 -0.832801 0 -0.5535725 -0.9476994 0 -0.3191643 -0.9980129 0 -0.06300924 -0.9980129 0 -0.06300924 -0.980314 0 0.1974449 -0.980314 0 0.1974449 -0.895808 0 0.4444412 -0.895808 0 0.4444412 -0.7502553 0 0.6611482 -0.5535734 0 0.8328004 -0.7502553 0 0.6611482 -0.5535734 0 0.8328004 -0.3191651 0 0.9476991 -0.3191651 0 0.9476991 -0.06300769 0 0.9980131 -0.06300769 0 0.9980131 -0.9637701 0 -0.2667344 -0.9637701 -0 -0.2667344 -0.8979318 -0 -0.4401346 -0.8012028 0 -0.5983928 -0.8979318 -0 -0.4401346 -0.8012028 -0 -0.5983928 -0.06779818 0 -0.9976991 -0.06779818 0 -0.9976991 -0.06779797 -3.405704e-07 -0.9976991 -0.06779844 -2.388731e-07 -0.9976991 -0.06779816 -6.936484e-08 -0.997699 -0.06779823 1.24986e-08 -0.9976991 -0.06779781 8.778782e-08 -0.9976991 -0.0677979 6.167073e-08 -0.997699 -0.0677987 -1.114939e-07 -0.997699 -0.0677988 -1.205045e-07 -0.997699 -0.06779698 -7.620351e-08 -0.9976991 -0.06779823 0 -0.9976991 -0.06779823 0 -0.9976991 -0.06779822 -1.254536e-08 -0.997699 -0.516426 0.8187163 -0.2510135 -0.283315 0.9365106 -0.2065926 -0.1363286 0.9884074 -0.06682349 -0.1328766 0.989026 -0.06458598 -0.1134169 0.9896822 -0.0875544 -0.3516948 0.9203742 -0.1709446 -0.3141823 0.9203008 -0.2331006 -0.3516967 0.9203734 -0.1709453 -0.07451109 0.997009 -0.0205228 -0.09656188 0.9926972 -0.0723049 -0.9555258 0.1082812 -0.2743094 -0.9518719 0.1336751 -0.2758093 -0.9131148 0.3120035 -0.2624407 -0.9190763 0.2939835 -0.2624359 -0.8043486 0.09873687 -0.5858963 -0.8934729 0.09953459 -0.4379488 -0.8043278 0.09953476 -0.5857899 -0.8975593 0.06370332 -0.4362673 -0.83353 0.4989077 -0.2373158 -0.8369381 0.4930258 -0.2376137 -0.7735543 0.2889012 -0.5640479 -0.7725984 0.293922 -0.5627624 -0.859682 0.2938416 -0.4178563 -0.859681 0.293845 -0.4178561 -0.7139489 0.6705684 -0.2015317 -0.7078805 0.6772151 -0.2007108 -0.7068728 0.4828161 -0.5169328 -0.6618675 0.6770793 -0.3217068 -0.7030206 0.4929678 -0.5125862 -0.7825558 0.4928753 -0.3803684 -0.7825554 0.4928761 -0.3803683 -0.5597668 0.8136132 -0.1571455 -0.5525044 0.8187891 -0.1559596 -0.5962996 0.6736387 -0.4366206 -0.5939929 0.6771249 -0.4343664 -0.6618673 0.6770793 -0.3217067 -0.383733 0.9172198 -0.107037 -0.2194835 0.9736875 -0.06131544 -0.1439476 0.9889539 -0.03534363 -0.3764185 0.9203963 -0.1057339 -0.4511048 0.8292022 -0.3300425 -0.5164255 0.8187167 -0.2510133 -0.462537 0.8186781 -0.3403319 -0.8301337 -4.443945e-08 0.5575644 -0.8301337 0 0.5575644 -0.8301338 0 0.5575643 -0.8301337 0 0.5575645 -0.8301337 -2.93745e-08 0.5575644 -0.8301338 0 0.5575643 -0.8301342 2.204365e-08 0.5575636 -0.830117 -6.905483e-06 0.5575892 -0.8301325 2.303895e-07 0.5575662 -0.8301339 -2.201025e-07 0.5575641 -0.8301327 -9.480893e-07 0.5575659 -0.8301337 -9.221735e-08 0.5575643 -0.8301343 -3.370813e-07 0.5575636 0.7502543 0 -0.6611494 0.7502543 0 -0.6611494 0.5535728 0 -0.8328008 0.319166 0 -0.9476988 0.5535728 0 -0.8328008 0.319166 0 -0.9476988 0.06300706 0 -0.9980131 0.06300706 0 -0.9980131 0 1 -0 0 1 0 0 1 0 0 1 0 0 1 -0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0 0.9604921 0 0.2783071 0.9604921 0 0.2783071 0.8979319 0 0.4401344 0.8979319 0 0.4401344 0.8083419 0 0.5887133 0.8083419 0 0.5887133 0 1 -0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0 0 1 -0 0 1 -0 0 1 -0 0 1 0 0 1 -0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.2508864 -0 -0.9680165 -0.2508864 -0 -0.9680165 -0.06779817 -0 -0.997699 0.1176225 0 -0.9930584 -0.06779817 -0 -0.997699 0.1176225 0 -0.9930584 -0.2392251 0 -0.9709642 -0.2392251 -0 -0.9709642 -0.06779815 -0 -0.9976991 0.1056696 0 -0.9944013 -0.06779815 -0 -0.9976991 0.1056696 0 -0.9944013 -0.02774555 0.9207292 -0.3892146 0.03739941 0.9362015 -0.3494683 -0.01027065 0.988459 -0.15114 0.01902802 0.9897311 -0.1416696 -0.01048099 0.989077 -0.1470267 0.04464147 0.9206589 -0.3878071 -0.02774559 0.9207298 -0.3892132 -0.01970949 0.9969388 -0.07566214 0.01436493 0.9926686 -0.1200114 -0.2402607 0.1078354 -0.9647001 -0.237077 0.1337095 -0.9622454 -0.2293675 0.3122482 -0.9218957 -0.2323785 0.2940393 -0.9271144 -0.06746119 0.09957372 -0.9927407 0.1051444 0.09957373 -0.9894593 0.105201 0.09902199 -0.9895087 -0.07096115 0.06373861 -0.9954406 -0.06796543 0.2939003 -0.9534166 -0.2111556 0.4998432 -0.8399822 -0.2128327 0.4930217 -0.8435827 0.101659 0.2891148 -0.9518813 0.1010436 0.2939746 -0.9504573 -0.0618687 0.4928776 -0.8678962 -0.06796517 0.2938967 -0.9534177 -0.1823095 0.6710569 -0.7186417 -0.18013 0.6772906 -0.7133237 0.09421995 0.4827493 -0.8706754 -0.05232269 0.6771558 -0.7339771 -0.06186912 0.4928828 -0.8678933 0.09236845 0.4929763 -0.8651256 -0.1433971 0.8143541 -0.5623741 -0.1411586 0.8187943 -0.5564623 0.0799922 0.6734803 -0.7348644 -0.05232253 0.6771531 -0.7339795 0.0791406 0.6771998 -0.7315308 -0.04082834 0.8187203 -0.5727392 -0.09886681 0.9175311 -0.3851779 -0.05656773 0.9736385 -0.2209706 -0.096292 0.9207558 -0.3780696 -0.04118126 0.9890068 -0.1420195 0.06033459 0.8289192 -0.5561048 -0.04082832 0.8187199 -0.5727396 0.06344673 0.8186823 -0.5707309 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.8979318 -5.554931e-08 -0.4401346 -0.8979318 0 -0.4401346 -0.8979318 0 -0.4401347 -0.8979318 0 -0.4401346 -0.8979319 -3.671812e-08 -0.4401346 -0.8979318 0 -0.4401348 -0.8979318 -3.537571e-08 -0.4401346 -0.8979342 -1.857827e-06 -0.4401296 -0.8979318 -3.970635e-08 -0.4401346 -0.8979319 2.774657e-07 -0.4401345 -0.8979353 -2.335179e-06 -0.4401276 -0.8979313 -3.697572e-07 -0.4401357 -0.8979316 -1.350257e-07 -0.4401351 0.947699 -0 0.3191653 0.947699 -0 0.3191653 0.998013 -0 0.06300809 0.9803141 0 -0.1974442 0.998013 -0 0.06300809 0.9803141 0 -0.1974442 0.8958085 0 -0.4444403 0.8958085 0 -0.4444403 0.7502553 0 -0.6611483 0.5535728 0 -0.8328008 0.7502553 0 -0.6611483 0.5535728 0 -0.8328008 0.3191663 0 -0.9476987 0.3191663 0 -0.9476987 0.063007 0 -0.9980131 0.063007 0 -0.9980131 0.7128838 0 -0.7012823 0.7128838 0 -0.7012823 0.8301336 0 -0.5575646 0.8301336 0 -0.5575646 0.918825 0 -0.3946652 0.918825 0 -0.3946652 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.8979318 -0 0.4401345 0.8979318 0 0.4401346 0.897926 -1.934388e-06 0.4401464 0.8979314 8.948002e-07 0.4401354 0.8979322 -1.852407e-07 0.4401338 0.8979318 0 0.4401346 0.8979324 -4.54696e-07 0.4401333 0.8979322 -2.270847e-07 0.4401339 0.897931 3.380421e-07 0.4401362 0.8979329 -9.298405e-08 0.4401324 0.8979315 -1.199982e-08 0.4401354 0.8979318 -0 0.4401346 0.8979318 -0 0.4401346 0.8979319 3.671812e-08 0.4401346 0.3231965 0.9207295 -0.2186354 0.3225076 0.9357152 -0.1429195 0.1257557 0.988459 -0.08446458 0.1220884 0.989077 -0.08259016 0.1321852 0.9897288 -0.05444165 0.3581063 0.9206635 -0.1553657 0.3231959 0.9207297 -0.2186351 0.05567046 0.9969387 -0.05489986 0.1120341 0.9925463 -0.04795859 0.7153576 0.1078333 -0.6903879 0.7148255 0.1333473 -0.6864715 0.683715 0.3122459 -0.6595728 0.6868454 0.2933213 -0.6649857 0.9093416 0.1004047 -0.4037533 0.8260529 0.09903178 -0.5548237 0.9095187 0.09903154 -0.4036936 0.7918827 0.2931829 -0.5356917 0.8266347 0.06300518 -0.5592007 0.6218502 0.4998504 -0.6028697 0.6241487 0.4929705 -0.6061506 0.874843 0.2898824 -0.3880953 0.8737706 0.2932631 -0.3879714 0.7918833 0.293181 -0.5356919 0.720709 0.4928278 -0.487544 0.5312077 0.6710563 -0.5172058 0.5277109 0.6772568 -0.5126836 0.8019589 0.4810269 -0.3542247 0.7952994 0.4929318 -0.35287 0.7207098 0.4928264 -0.4875444 0.6095071 0.6771224 -0.4123182 0.4153318 0.8143542 -0.4053724 0.4113314 0.8187942 -0.4004779 0.6772757 0.6724482 -0.2985148 0.673073 0.6771738 -0.2973357 0.4755927 0.81872 -0.3217281 0.6095072 0.6771223 -0.4123183 0.2841416 0.9175304 -0.2782113 0.1630822 0.9736385 -0.1594743 0.2792717 0.920756 -0.2724257 0.1024019 0.9890068 -0.1066738 0.5118946 0.8288132 -0.2259037 0.5259664 0.818685 -0.2304655 0.4755924 0.8187203 -0.3217279 -0.06779821 -8.749017e-08 -0.9976991 -0.06779826 0 -0.9976991 -0.06779793 0 -0.9976991 -0.06779826 0 -0.9976991 -0.06779825 1.132142e-08 -0.997699 -0.06779794 0 -0.9976991 -0.06779674 8.904882e-08 -0.9976991 -0.06779851 -5.015448e-07 -0.997699 -0.0677976 -3.059499e-07 -0.9976991 -0.06779799 1.748611e-07 -0.9976991 -0.06779768 -2.611232e-07 -0.9976991 -0.06779945 4.565355e-07 -0.997699 -0.06779872 2.184468e-07 -0.997699 0.1974441 -0 0.9803142 0.1974441 -0 0.9803142 0.4444403 -0 0.8958085 0.4444403 -0 0.8958085 0.661148 -0 0.7502555 0.661148 -0 0.7502555 0.832801 -0 0.5535725 0.832801 -0 0.5535725 0.9476994 -0 0.3191643 0.9476994 -0 0.3191643 0.9980129 -0 0.06300924 0.9980129 -0 0.06300924 0.980314 0 -0.1974449 0.895808 0 -0.4444412 0.980314 0 -0.1974449 0.895808 0 -0.4444412 0.7502553 0 -0.6611482 0.5535734 0 -0.8328004 0.7502553 0 -0.6611482 0.5535734 0 -0.8328004 0.3191651 0 -0.9476991 0.06300769 0 -0.9980131 0.3191651 0 -0.9476991 0.06300769 0 -0.9980131 0.06779818 -0 0.9976991 0.06779818 0 0.9976991 0.06779885 -2.884737e-07 0.997699 0.06779855 -3.593686e-07 0.997699 0.06779752 2.54888e-07 0.9976991 0.06779823 1.24986e-08 0.9976991 0.06779781 1.240396e-07 0.9976991 0.06779909 -2.974211e-07 0.997699 0.06779793 -4.767828e-08 0.9976991 0.06779753 -6.660086e-09 0.9976991 0.06779808 -1.999571e-08 0.997699 0.06779823 -0 0.9976991 0.06779823 -0 0.9976991 0.06779822 -1.254536e-08 0.997699 0.9637701 0 0.2667344 0.9637701 0 0.2667344 0.8979318 0 0.4401346 0.8979318 0 0.4401346 0.8012028 0 0.5983928 0.8012028 0 0.5983928 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.4041973 -0.0003797179 -0.9146718 -0.1968446 -0 -0.9804347 -0.197444 0.0005673996 -0.980314 0.02431082 0.09350966 0.9953215 -0.06236678 0.0313705 0.9975602 -0.1487424 0 0.988876 -0.0623975 0 0.9980514 -0.2767404 -0.0003796708 0.9609447 -0.06300776 0.0005674451 0.9980129 -0.7212669 0 0.6926573 -0.4400934 -0.01371616 0.8978472 -0.3190474 0.0272078 0.9473482 -0.5900303 -0.0003797867 0.807381 -0.5533678 0.02720761 0.8324926 -0.9140117 0 0.4056878 -0.8301118 -0.007249514 0.5575499 -0.7502549 0.0005673242 0.6611484 -0.7378449 0.01764378 0.6747396 -0.9036957 0.01764381 0.4278114 -0.9705727 -0.0003797914 0.2408081 -0.8958083 0.0005673174 0.4444403 -0.9604921 0 -0.2783071 -0.9976052 -0.01371616 0.06779201 -0.9799513 0.02720767 0.197371 -0.9942276 -0.0003796536 -0.107291 -0.9976436 0.02720781 -0.06298444 -0.8083419 -0 -0.5887133 -0.8979083 -0.007249558 -0.4401228 -0.9476988 0.0005674665 -0.3191655 -0.9532641 0.01764369 -0.3016227 -0.8223435 0.01764376 -0.5687177 -0.8328007 0.0005672948 -0.5535726 -0.6938323 -0.0003798365 -0.7201365 -0.2811545 0 -0.9596625 -0.1967477 0.03137054 -0.9799522 -0.6609038 0.02720779 -0.7499773 -0.5575119 -0.01371609 -0.8300556 -0.110564 0.09350975 -0.9894602 -0.4442758 0.0272077 -0.8954768 0.8301337 0 -0.5575644 0.8301337 0 -0.5575644 0.8301389 -1.448025e-06 -0.5575567 0.830134 5.965331e-07 -0.5575638 0.8301324 -1.20407e-06 -0.5575664 0.8301337 0 -0.5575644 0.8301333 -4.546953e-07 -0.557565 0.8301336 -2.838559e-07 -0.5575646 0.830135 2.668741e-07 -0.5575625 0.830134 8.383818e-08 -0.5575639 0.830132 -6.749909e-09 -0.557567 0.8301337 0 -0.5575644 0.8301337 0 -0.5575644 0.8301337 -1.713512e-07 -0.5575643 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.3513442 0.9205398 0.1707742 0.2832885 0.9365143 0.206612 0.1359967 0.9884641 0.06666077 0.1325414 0.9890817 0.064423 0.1131414 0.9897357 0.08730513 0.313857 0.9204667 0.2328837 0.3513439 0.9205399 0.170774 0.07588353 0.9968976 0.02090082 0.09656188 0.9926972 0.0723049 0.9555668 0.1079683 0.2742898 0.9518719 0.1336751 0.2758093 0.9133577 0.3112673 0.2624698 0.9190697 0.293984 0.2624583 0.8043486 0.09873687 0.5858963 0.8934729 0.09953459 0.4379488 0.8043278 0.09953476 0.5857899 0.8975593 0.06370332 0.4362673 0.8341179 0.4978729 0.2374234 0.8369223 0.4930278 0.2376651 0.7735543 0.2889012 0.5640479 0.7725984 0.293922 0.5627624 0.859682 0.2938416 0.4178563 0.859681 0.293845 0.4178561 0.7825553 0.4928763 0.3803681 0.7146549 0.6697386 0.2017882 0.7083828 0.6766214 0.2009408 0.7068728 0.4828161 0.5169328 0.7030206 0.4929678 0.5125862 0.6623613 0.6764819 0.3219468 0.7825559 0.4928753 0.3803685 0.5588637 0.8142361 0.1571334 0.5531574 0.8183013 0.1562049 0.596357 0.6736244 0.4365645 0.5944366 0.6765271 0.4346909 0.6623615 0.6764816 0.321947 0.5170541 0.818226 0.2513189 0.3835016 0.9172989 0.1071876 0.2201336 0.9735157 0.06171292 0.3759631 0.9205693 0.105849 0.1435399 0.9890122 0.03537278 0.4511209 0.8291988 0.3300292 0.5170548 0.8182254 0.2513194 0.4630757 0.8181849 0.3407851 0.8301337 -4.443945e-08 -0.5575644 0.8301337 0 -0.5575644 0.8301338 0 -0.5575643 0.8301337 0 -0.5575645 0.8301337 -2.93745e-08 -0.5575644 0.8301338 0 -0.5575643 0.8301342 2.204365e-08 -0.5575636 0.830117 -6.905483e-06 -0.5575892 0.8301325 2.303895e-07 -0.5575662 0.8301339 -2.201025e-07 -0.5575641 0.8301327 -9.480893e-07 -0.5575659 0.8301337 -9.221735e-08 -0.5575643 0.8301343 -3.370813e-07 -0.5575636 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -3.801002 64.26799 7.754539 -1.664464 64.26799 8.474081 -2.131964 63.56799 16.49983 0.5855053 64.26799 8.616129 -5.678508 64.26799 6.506538 -9.20979 63.56799 13.85531 -7.8636 62.86799 23.34941 -16.20045 62.86799 18.56277 -7.83277 61.468 39.87803 -17.88707 61.468 36.49195 -4.182556 62.168 32.3699 2.755319 61.468 40.54649 -7.169034 64.26799 4.815127 -12.48199 63.56799 10.99953 -22.07093 62.86799 10.95012 -26.72239 61.468 30.619 -18.06806 62.168 27.18179 -8.616129 64.26799 0.5855053 -8.171001 64.26799 2.795573 -16.30949 63.56799 3.284877 -24.58131 62.86799 1.670412 -33.73663 61.468 22.65942 -24.48757 62.168 21.57923 -7.754539 64.26799 -3.801002 -8.474081 64.26799 -1.664464 -16.60394 63.56799 -1.048259 -23.34941 62.86799 -7.8636 -38.45177 61.468 13.15564 -40.54649 61.468 2.755319 -31.99647 62.168 6.444376 -6.506538 64.26799 -5.678508 -13.85531 63.56799 -9.20979 -18.56277 62.86799 -16.20045 -39.87803 61.468 -7.83277 -32.57415 62.168 -2.056508 -4.815127 64.26799 -7.169034 -10.99953 63.56799 -12.48199 -10.95012 62.86799 -22.07093 -36.49195 61.468 -17.88707 -30.619 61.468 -26.72239 -27.18179 62.168 -18.06806 -4.344535 63.56799 -16.05972 -0.5855053 64.26799 -8.616129 -2.795573 64.26799 -8.171001 -22.65942 61.468 -33.73663 -21.57923 62.168 -24.48757 -13.15564 61.468 -38.45177 -2.755319 61.468 -40.54649 -8.523248 62.168 -31.50648 -0.6257263 63.21799 20.62801 -29.23829 62.168 14.50609 -30.93195 62.168 -10.41724 -4.732894 62.51799 -28.24471 3.801002 64.26799 -7.754539 1.664464 64.26799 -8.474081 2.131964 63.56799 -16.49983 5.678508 64.26799 -6.506538 9.20979 63.56799 -13.85531 7.8636 62.86799 -23.34941 16.20045 62.86799 -18.56277 7.83277 61.468 -39.87803 17.88707 61.468 -36.49195 4.182556 62.168 -32.3699 7.169034 64.26799 -4.815127 12.48199 63.56799 -10.99953 22.07093 62.86799 -10.95012 26.72239 61.468 -30.619 18.06806 62.168 -27.18179 8.616129 64.26799 -0.5855053 8.171001 64.26799 -2.795573 16.30949 63.56799 -3.284877 24.58131 62.86799 -1.670412 33.73663 61.468 -22.65942 24.48757 62.168 -21.57923 8.474081 64.26799 1.664464 16.60394 63.56799 1.048259 23.34941 62.86799 7.8636 38.45177 61.468 -13.15564 40.54649 61.468 -2.755319 31.99647 62.168 -6.444376 6.506538 64.26799 5.678508 7.754539 64.26799 3.801002 13.85531 63.56799 9.20979 18.56277 62.86799 16.20045 39.87803 61.468 7.83277 32.57415 62.168 2.056508 4.815127 64.26799 7.169034 10.99953 63.56799 12.48199 10.95012 62.86799 22.07093 36.49195 61.468 17.88707 30.619 61.468 26.72239 27.18179 62.168 18.06806 4.344535 63.56799 16.05972 2.795573 64.26799 8.171001 22.65942 61.468 33.73663 21.57923 62.168 24.48757 13.15564 61.468 38.45177 8.523248 62.168 31.50648 0.8683156 62.51799 -28.62533 29.23829 62.168 -14.50609 30.93195 62.168 10.41724 3.410622 63.21799 20.35372 - - - - - - - - - - 0.02869186 -0.9959511 -0.08519489 0.005465585 -0.9962306 -0.08657219 0.04780919 -0.9962636 -0.07192464 0.03206787 -0.9957939 -0.08582661 0.04588779 -0.9957443 -0.07992244 0.02898918 -0.996564 -0.07758678 0.02688505 -0.9964459 -0.0798299 0.005687442 -0.9959178 -0.09008627 0.06479558 -0.9962636 -0.05709995 0.07297981 -0.9957443 -0.0562782 0.05631408 -0.9963259 -0.06452571 0.05833847 -0.9960564 -0.0668453 0.05042106 -0.9958433 -0.07585398 0.04132766 -0.9965495 -0.0719801 0.02820578 -0.9967475 -0.07549009 0.03404825 -0.995257 -0.09112691 0.0846646 -0.9962636 -0.01705221 0.08315925 -0.9956818 -0.04125805 0.08315925 -0.9956818 -0.04125806 0.08896127 -0.9957443 -0.02406612 0.07294454 -0.9966791 -0.0361902 0.06833547 -0.9958433 -0.06021939 0.06572738 -0.9965494 -0.05068551 0.05538969 -0.9964457 -0.06346651 0.05936409 -0.9959162 -0.06802044 0.08797631 -0.9956818 0.02962859 0.08619316 -0.9962636 0.005441655 0.09139922 -0.9957443 0.0118098 0.08851831 -0.9960564 -0.006015233 0.08544665 -0.9963259 -0.005806494 0.08928996 -0.9958433 -0.01798381 0.0801207 -0.9965495 -0.02167454 0.07192464 -0.9962636 0.04780919 0.08797633 -0.9956818 0.02962862 0.07992244 -0.9957443 0.04588779 0.0771699 -0.9966791 0.02598924 0.09090202 -0.9958433 0.005738942 0.08404401 -0.9964457 -0.005711166 0.09007446 -0.9959162 -0.006120963 0.08231635 -0.9965494 0.01063619 0.05709995 -0.9962636 0.06479558 0.0562782 -0.9957443 0.07297981 0.0668453 -0.9960564 0.05833847 0.06452571 -0.9963259 0.05631408 0.07585398 -0.9958433 0.05042106 0.0719801 -0.9965495 0.04132766 0.03921894 -0.996564 0.07295174 0.0171272 -0.9962305 0.08503692 0.03995366 -0.9959511 0.08053012 0.04338404 -0.9957939 0.08069931 0.06021939 -0.9958433 0.06833547 0.06802044 -0.9959162 0.05936409 0.06346651 -0.9964457 0.05538969 0.05068551 -0.9965494 0.06572738 0.01782242 -0.9959178 0.08848865 0.03743763 -0.9964459 0.07545885 0.04606328 -0.995257 0.08568297 0.03815911 -0.9967475 0.07098032 -0.001635965 -0.9961855 -0.08724491 0.003298749 -0.9961083 -0.08807576 0.01656671 -0.9963216 -0.08407574 0.01443084 -0.9958645 -0.08969752 0.005627336 -0.9962345 -0.08651678 0.08159293 -0.9958433 -0.04048095 0.07970215 -0.9964457 -0.02726877 0.06992869 -0.9964457 -0.04696804 0.07297044 -0.9961291 -0.04901106 0.08316902 -0.9961292 -0.0284549 0.08625395 -0.9961292 0.01694182 0.08631928 -0.9958433 0.02907053 0.07563984 -0.9964456 0.03707599 0.07893002 -0.9961291 0.03868872 0.08265848 -0.9964457 0.01623561 0.01018127 -0.9961856 0.08666422 0.02325225 -0.9965308 0.07991036 0.02826216 -0.9959865 0.08492466 0.01656969 -0.9962161 0.08531711 0.01652721 -0.9960125 0.08766958 -0.02869186 -0.9959511 0.08519489 -0.005465585 -0.9962306 0.08657219 -0.04780919 -0.9962636 0.07192464 -0.04588779 -0.9957443 0.07992244 -0.03206787 -0.9957939 0.08582661 -0.02898918 -0.996564 0.07758678 -0.02688505 -0.9964459 0.0798299 -0.005687442 -0.9959178 0.09008627 -0.06479558 -0.9962636 0.05709995 -0.05631408 -0.9963259 0.06452571 -0.07297981 -0.9957443 0.0562782 -0.05833847 -0.9960564 0.0668453 -0.05042106 -0.9958433 0.07585398 -0.04132766 -0.9965495 0.0719801 -0.03404825 -0.995257 0.09112691 -0.02820578 -0.9967475 0.07549009 -0.0846646 -0.9962636 0.01705221 -0.08315925 -0.9956818 0.04125805 -0.08896127 -0.9957443 0.02406612 -0.08315925 -0.9956818 0.04125806 -0.07294454 -0.9966791 0.0361902 -0.06833547 -0.9958433 0.06021939 -0.06572738 -0.9965494 0.05068551 -0.05538969 -0.9964457 0.06346651 -0.05936409 -0.9959162 0.06802044 -0.08619316 -0.9962636 -0.005441655 -0.09139922 -0.9957443 -0.0118098 -0.08851831 -0.9960564 0.006015233 -0.08544665 -0.9963259 0.005806494 -0.08928996 -0.9958433 0.01798381 -0.0801207 -0.9965495 0.02167454 -0.07192464 -0.9962636 -0.04780919 -0.08797634 -0.9956818 -0.0296286 -0.08797632 -0.9956818 -0.02962862 -0.07992244 -0.9957443 -0.04588779 -0.0771699 -0.9966791 -0.02598924 -0.09090202 -0.9958433 -0.005738942 -0.08231635 -0.9965494 -0.01063619 -0.09007446 -0.9959162 0.006120963 -0.08404401 -0.9964457 0.005711166 -0.05709995 -0.9962636 -0.06479558 -0.0668453 -0.9960564 -0.05833847 -0.0562782 -0.9957443 -0.07297981 -0.06452571 -0.9963259 -0.05631408 -0.07585398 -0.9958433 -0.05042106 -0.0719801 -0.9965495 -0.04132766 -0.03921894 -0.996564 -0.07295174 -0.0171272 -0.9962305 -0.08503692 -0.03995366 -0.9959511 -0.08053012 -0.04338404 -0.9957939 -0.08069931 -0.06021939 -0.9958433 -0.06833547 -0.06802044 -0.9959162 -0.05936409 -0.05068551 -0.9965494 -0.06572738 -0.06346651 -0.9964457 -0.05538969 -0.01782242 -0.9959178 -0.08848865 -0.03743763 -0.9964459 -0.07545885 -0.04606328 -0.995257 -0.08568297 -0.03815911 -0.9967475 -0.07098032 0.001636642 -0.9961855 0.08724485 -0.004514932 -0.9960125 0.08909949 -0.01222786 -0.9965308 0.0823214 -0.01651336 -0.9959865 0.08796737 -0.004875226 -0.996216 0.08677439 -0.08159293 -0.9958433 0.04048095 -0.07970215 -0.9964457 0.02726877 -0.06992869 -0.9964457 0.04696804 -0.07297044 -0.9961291 0.04901106 -0.08316902 -0.9961292 0.0284549 -0.08625395 -0.9961292 -0.01694182 -0.08631928 -0.9958433 -0.02907053 -0.07563984 -0.9964456 -0.03707599 -0.08265848 -0.9964457 -0.01623561 -0.07893002 -0.9961291 -0.03868872 -0.01728002 -0.9962345 -0.0849601 -0.02778855 -0.9963216 -0.0810616 -0.01018196 -0.9961855 -0.08666417 -0.01518372 -0.9961083 -0.0868198 -0.02643287 -0.9958645 -0.08692062 - - - - - - - - - - - - - - -

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

-
-
-
- - - - 0.130526 0 -0.9914449 0.130526 0 -0.9914449 0.3826835 0 -0.9238795 0.3826835 0 -0.9238795 0.6087615 0 -0.7933534 0.6087615 0 -0.7933534 0.7933534 0 -0.6087615 0.7933534 0 -0.6087615 0.9238795 0 -0.3826835 0.9914449 0 -0.130526 0.9238795 0 -0.3826835 0.9914449 0 -0.130526 0.9914449 0 0.130526 0.9914449 0 0.130526 0.9238795 0 0.3826835 0.7933534 0 0.6087615 0.9238795 0 0.3826835 0.7933534 0 0.6087615 0.6087615 0 0.7933534 0.3826835 0 0.9238795 0.6087615 0 0.7933534 0.130526 0 0.9914449 0.3826835 0 0.9238795 0.130526 0 0.9914449 -0.130526 0 0.9914449 -0.130526 0 0.9914449 -0.3826835 0 0.9238795 -0.3826835 0 0.9238795 -0.6087615 0 0.7933534 -0.6087615 0 0.7933534 -0.7933534 0 0.6087615 -0.9238795 0 0.3826835 -0.7933534 0 0.6087615 -0.9238795 0 0.3826835 -0.9914449 0 0.130526 -0.9914449 0 -0.130526 -0.9914449 0 0.130526 -0.9914449 -0 -0.130526 -0.9238795 -0 -0.3826835 -0.9238795 -0 -0.3826835 -0.7933534 -0 -0.6087615 -0.7933534 -0 -0.6087615 -0.6087615 -0 -0.7933534 -0.6087615 -0 -0.7933534 -0.3826835 -0 -0.9238795 -0.3826835 -0 -0.9238795 -0.130526 -0 -0.9914449 -0.130526 -0 -0.9914449 - - - - - - - - - - 4.87587e-15 51.054 39.8145 4.87587e-15 16.0274 39.8145 -10.30475 16.0274 38.45786 -10.30475 51.054 38.45786 -19.90725 51.054 34.48037 -19.90725 16.0274 34.48037 -28.1531 51.054 28.1531 -28.1531 16.0274 28.1531 -34.48037 51.054 19.90725 -34.48037 16.0274 19.90725 -38.45786 51.054 10.30475 -38.45786 16.0274 10.30475 -39.8145 51.054 7.313805e-15 -39.8145 16.0274 7.313805e-15 -38.45786 51.054 -10.30475 -38.45786 16.0274 -10.30475 -34.48037 51.054 -19.90725 -34.48037 16.0274 -19.90725 -28.1531 51.054 -28.1531 -28.1531 16.0274 -28.1531 -19.90725 51.054 -34.48037 -19.90725 16.0274 -34.48037 -10.30475 51.054 -38.45786 0 51.054 -39.8145 -10.30475 16.0274 -38.45786 0 16.0274 -39.8145 10.30475 51.054 -38.45786 10.30475 16.0274 -38.45786 19.90725 51.054 -34.48037 19.90725 16.0274 -34.48037 28.1531 51.054 -28.1531 28.1531 16.0274 -28.1531 34.48037 51.054 -19.90725 34.48037 16.0274 -19.90725 38.45786 51.054 -10.30475 38.45786 16.0274 -10.30475 39.8145 51.054 -1.127853e-14 39.8145 16.0274 -1.127853e-14 38.45786 51.054 10.30475 38.45786 16.0274 10.30475 34.48037 51.054 19.90725 34.48037 16.0274 19.90725 28.1531 51.054 28.1531 28.1531 16.0274 28.1531 19.90725 51.054 34.48037 19.90725 16.0274 34.48037 10.30475 51.054 38.45786 10.30475 16.0274 38.45786 - - - - - - - - - - - - - - -

0 0 1 0 2 0 3 1 0 1 2 1 4 2 3 2 2 2 4 3 2 3 5 3 6 4 4 4 7 4 4 5 5 5 7 5 8 6 6 6 9 6 6 7 7 7 9 7 10 8 8 8 11 8 12 9 10 9 11 9 8 10 9 10 11 10 12 11 11 11 13 11 14 12 12 12 15 12 12 13 13 13 15 13 16 14 14 14 17 14 18 15 16 15 17 15 14 16 15 16 17 16 18 17 17 17 19 17 20 18 18 18 21 18 22 19 20 19 21 19 18 20 19 20 21 20 23 21 22 21 24 21 22 22 21 22 24 22 23 23 24 23 25 23 26 24 23 24 25 24 26 25 25 25 27 25 28 26 26 26 29 26 26 27 27 27 29 27 30 28 28 28 31 28 28 29 29 29 31 29 32 30 30 30 33 30 34 31 32 31 33 31 30 32 31 32 33 32 34 33 33 33 35 33 36 34 34 34 37 34 38 35 36 35 37 35 34 36 35 36 37 36 38 37 37 37 39 37 40 38 38 38 41 38 38 39 39 39 41 39 42 40 40 40 43 40 40 41 41 41 43 41 44 42 42 42 45 42 42 43 43 43 45 43 46 44 44 44 47 44 44 45 45 45 47 45 0 46 46 46 1 46 46 47 47 47 1 47

-
-
-
- - - - -0.9930616 0 -0.1175949 -0.985293 0 0.1708737 -0.985293 0 0.1708737 -0.9181346 0 -0.3962687 -0.9930616 0 -0.1175949 -0.9181346 0 -0.3962687 -0.5515172 0 -0.8341635 -0.7667509 0 -0.6419447 -0.7667509 0 -0.6419447 -0.5515172 0 -0.8341635 -0.2903568 0 -0.9569184 -0.2903568 0 -0.9569184 -0.9821131 0 0.1882916 -0.9979047 0 -0.06470191 -0.9821131 0 0.1882916 -0.9495752 0 -0.3135391 -0.9979047 -0 -0.06470191 -0.9495752 -0 -0.3135391 -0.8402305 -0 -0.5422294 -0.6768975 0 -0.7360773 -0.8402305 -0 -0.5422294 -0.470067 0 -0.8826307 -0.6768975 -0 -0.7360773 -0.470067 -0 -0.8826307 0.6097481 0 -0.7925953 0.6097481 0 -0.7925953 0.7996998 0 -0.6004001 0.9312569 0 -0.3643631 0.7996998 0 -0.6004001 0.9312569 0 -0.3643631 0.9948131 0 -0.1017195 0.9857273 0 0.16835 0.9948131 0 -0.1017195 0.9857273 0 0.16835 -0.2133792 -0.03915352 -0.9761845 -0.3129315 0 -0.9497758 -0.3405895 -0.02015983 -0.9399959 -0.3129232 -0.006722522 -0.9497546 -0.2849361 -0 -0.9585465 -0.1818217 -0.01037947 -0.9832768 0.07879961 -0.04634768 -0.9958125 0 0.008038171 -0.9999678 0.3644151 -0.02559116 -0.930885 0.1818136 0.01403628 -0.9832329 0.310066 0 -0.950715 0.3863482 -0.05236226 -0.9208655 0.3868786 0 -0.9221307 0.4555158 -0.155051 -0.8766211 - - - - - - - - - - 17.84454 1.778 27.97782 17.84454 16.0274 27.97782 17.95228 16.0274 27.06796 18.0011 16.0274 28.88056 18.0011 1.778 28.88056 17.95228 1.778 27.06796 18.31535 16.0274 26.22675 18.31535 1.778 26.22675 18.90351 1.778 25.52424 18.90351 16.0274 25.52424 19.66778 16.0274 25.01894 19.66778 1.778 25.01894 20.54453 1.778 24.75291 20.54453 16.0274 24.75291 18.3163 16.0274 30.52464 18.20799 16.0274 32.19516 18.3163 1.778 30.52464 17.68312 16.0274 33.78477 18.20799 1.778 32.19516 17.68312 1.778 33.78477 16.77541 16.0274 35.19134 16.77541 1.778 35.19134 15.5432 16.0274 36.32448 14.06565 16.0274 37.11139 15.5432 1.778 36.32448 14.06565 1.778 37.11139 -21.1418 16.0274 33.34918 -19.72737 16.0274 34.43731 -19.72737 1.778 34.43731 -21.1418 1.778 33.34918 -22.21325 16.0274 31.92207 -22.21325 1.778 31.92207 -22.86348 16.0274 30.26019 -22.86348 1.778 30.26019 -23.045 16.0274 28.48489 -23.045 1.778 28.48489 -22.74457 16.0274 26.72581 -22.74457 1.778 26.72581 2.701296 16.0274 39.59546 10.74923 6.858 38.20408 12.97102 1.778 37.508 11.86523 1.778 37.87234 10.74923 1.778 38.20408 3.623345 6.858 39.52176 -8.895135 16.0274 38.67783 -3.623345 6.858 39.52176 -10.74923 6.858 38.20408 -10.74923 1.778 38.20408 -13.84163 1.778 37.19552 -16.84106 1.778 35.93711 - - - - - - - - - - - - - - -

0 0 1 0 2 0 0 1 3 1 1 1 0 2 4 2 3 2 5 3 2 3 6 3 5 4 0 4 2 4 7 5 5 5 6 5 8 6 9 6 10 6 8 7 6 7 9 7 8 8 7 8 6 8 11 9 8 9 10 9 12 10 10 10 13 10 12 11 11 11 10 11 14 12 3 12 4 12 15 13 14 13 16 13 14 14 4 14 16 14 17 15 15 15 18 15 15 16 16 16 18 16 17 17 18 17 19 17 20 18 17 18 21 18 22 19 20 19 21 19 17 20 19 20 21 20 23 21 22 21 24 21 22 22 21 22 24 22 23 23 24 23 25 23 26 24 27 24 28 24 26 25 28 25 29 25 30 26 26 26 31 26 32 27 30 27 31 27 26 28 29 28 31 28 32 29 31 29 33 29 34 30 32 30 35 30 36 31 34 31 35 31 32 32 33 32 35 32 36 33 35 33 37 33 38 34 23 34 39 34 39 35 23 35 25 35 39 36 25 36 40 36 39 37 40 37 41 37 39 38 41 38 42 38 38 39 39 39 43 39 44 40 38 40 45 40 38 41 43 41 45 41 27 42 44 42 46 42 44 43 45 43 46 43 46 44 47 44 48 44 46 45 48 45 49 45 27 46 46 46 28 46 46 47 49 47 28 47

-
-
-
- - - - -28.70694 16.0274 -23.04873 -28.70694 1.778 -23.04873 -28.03739 1.778 -23.01471 -28.03739 16.0274 -23.01471 -27.37473 16.0274 -22.91297 -27.37473 1.778 -22.91297 -26.72581 16.0274 -22.74457 -26.72581 1.778 -22.74457 -28.88056 1.778 18.0011 -28.88056 16.0274 18.0011 -28.55733 16.0274 17.91381 -28.55733 1.778 17.91381 -28.22669 16.0274 17.86104 -28.22669 1.778 17.86104 -27.89235 1.778 17.84339 -27.89235 16.0274 17.84339 -27.00212 1.778 17.97075 -27.00212 16.0274 17.97075 -26.18331 16.0274 18.34261 -26.18331 1.778 18.34261 -25.5016 1.778 18.92913 -25.5016 16.0274 18.92913 -25.0117 1.778 19.68328 -25.0117 16.0274 19.68328 -24.75291 16.0274 20.54453 -24.75291 1.778 20.54453 -30.52464 1.778 18.3163 -30.52464 16.0274 18.3163 -32.19516 16.0274 18.20799 -32.19516 1.778 18.20799 -33.78477 16.0274 17.68312 -33.78477 1.778 17.68312 -35.19134 16.0274 16.77541 -35.19134 1.778 16.77541 -36.32448 16.0274 15.5432 -37.11139 16.0274 14.06565 -36.32448 1.778 15.5432 -37.11139 1.778 14.06565 -39.59546 16.0274 2.701296 -39.59546 1.778 2.701296 -38.67783 16.0274 -8.895135 -38.67783 1.778 -8.895135 -34.43731 16.0274 -19.72737 -34.43731 1.778 -19.72737 -33.38851 16.0274 -21.10261 -32.01861 16.0274 -22.15837 -33.38851 1.778 -21.10261 -30.42158 16.0274 -22.82226 -32.01861 1.778 -22.15837 -30.42158 1.778 -22.82226 - - - - - - - - - - -0.05075776 0 0.998711 -0.05075776 0 0.998711 -0.1517527 0 0.9884185 -0.2511821 0 0.9679398 -0.1517527 0 0.9884185 -0.2511821 0 0.9679398 -0.260705 0 -0.9654185 -0.1575941 0 -0.9875039 -0.260705 0 -0.9654185 -0.1575941 0 -0.9875039 -0.05272896 0 -0.9986088 -0.05272896 0 -0.9986088 0.1416215 0 -0.9899209 0.4135011 0 -0.9105036 0.1416215 0 -0.9899209 0.4135011 0 -0.9105036 0.6522076 0 -0.7580404 0.6522076 0 -0.7580404 0.9576972 0 -0.2877781 0.8385914 0 -0.5447609 0.8385914 0 -0.5447609 0.9576972 0 -0.2877781 -0.1882916 -0 -0.9821131 -0.1882916 -0 -0.9821131 0.06470191 0 -0.9979047 0.06470191 0 -0.9979047 0.3135391 0 -0.9495752 0.3135391 0 -0.9495752 0.5422294 0 -0.8402305 0.7360773 0 -0.6768975 0.5422294 0 -0.8402305 0.8826307 0 -0.470067 0.7360773 0 -0.6768975 0.8826307 0 -0.470067 0.9769337 0 -0.213543 0.9769337 0 -0.213543 0.9968838 0 0.07888438 0.9968838 0 0.07888438 0.9311899 0 0.3645345 0.9311899 0 0.3645345 0.7951523 0 0.6064098 0.6104363 0 0.7920653 0.7951523 0 0.6064098 0.3838559 0 0.923393 0.6104363 0 0.7920653 0.3838559 0 0.923393 0.1309449 0 0.9913896 0.1309449 0 0.9913896 - - - - - - - - - - - - - - -

0 0 1 0 2 0 3 1 0 1 2 1 4 2 3 2 5 2 6 3 4 3 5 3 3 4 2 4 5 4 6 5 5 5 7 5 8 6 9 6 10 6 11 7 10 7 12 7 11 8 8 8 10 8 13 9 11 9 12 9 14 10 12 10 15 10 14 11 13 11 12 11 16 12 14 12 15 12 16 13 17 13 18 13 16 14 15 14 17 14 19 15 16 15 18 15 20 16 18 16 21 16 20 17 19 17 18 17 22 18 23 18 24 18 22 19 21 19 23 19 22 20 20 20 21 20 25 21 22 21 24 21 9 22 8 22 26 22 27 23 9 23 26 23 28 24 27 24 29 24 27 25 26 25 29 25 30 26 28 26 31 26 28 27 29 27 31 27 32 28 30 28 33 28 34 29 32 29 33 29 30 30 31 30 33 30 35 31 34 31 36 31 34 32 33 32 36 32 35 33 36 33 37 33 38 34 35 34 37 34 38 35 37 35 39 35 40 36 38 36 41 36 38 37 39 37 41 37 42 38 40 38 43 38 40 39 41 39 43 39 44 40 42 40 43 40 45 41 44 41 46 41 44 42 43 42 46 42 47 43 45 43 48 43 45 44 46 44 48 44 47 45 48 45 49 45 0 46 47 46 1 46 47 47 49 47 1 47

-
-
-
- - - - 32.90109 16.0274 -18.03 30.93605 16.0274 -18.32913 30.93605 1.778 -18.32913 34.68812 16.0274 -17.15972 32.90109 1.778 -18.03 36.13525 16.0274 -15.79713 34.68812 1.778 -17.15972 37.11139 16.0274 -14.06565 36.13525 1.778 -15.79713 37.11139 1.778 -14.06565 27.97782 1.778 -17.84454 28.88056 16.0274 -18.0011 27.97782 16.0274 -17.84454 28.88056 1.778 -18.0011 27.06796 1.778 -17.95228 27.06796 16.0274 -17.95228 26.22675 1.778 -18.31535 26.22675 16.0274 -18.31535 25.52424 1.778 -18.90351 25.52424 16.0274 -18.90351 25.01894 1.778 -19.66778 25.01894 16.0274 -19.66778 24.75291 1.778 -20.54453 24.75291 16.0274 -20.54453 29.55289 1.778 -18.18266 29.55289 16.0274 -18.18266 30.24061 16.0274 -18.29241 30.24061 1.778 -18.29241 34.43731 16.0274 19.72737 34.43731 1.778 19.72737 33.34918 1.778 21.1418 33.34918 16.0274 21.1418 31.92207 16.0274 22.21325 31.92207 1.778 22.21325 30.26019 16.0274 22.86348 30.26019 1.778 22.86348 28.48489 16.0274 23.045 28.48489 1.778 23.045 26.72581 16.0274 22.74457 26.72581 1.778 22.74457 37.46238 8.128 -13.10221 37.23115 1.778 -13.74552 37.34815 1.778 -13.42436 37.46238 1.778 -13.10221 39.59546 16.0274 -2.701296 39.43818 8.128 -4.441575 38.67783 16.0274 8.895135 39.43818 8.128 4.441575 37.46238 8.128 13.10221 37.46238 1.778 13.10221 36.59002 1.778 15.37102 35.5804 1.778 17.58217 - - - - - - - - - - -0.1504904 0 0.9886115 -0.4378382 0 0.8990538 -0.1504904 0 0.9886115 -0.6855225 0 0.7280515 -0.4378382 0 0.8990538 -0.8711055 0 0.4910959 -0.6855225 0 0.7280515 -0.8711055 0 0.4910959 0.1708737 -0 0.985293 0.1708737 0 0.985293 -0.1175949 0 0.9930616 -0.1175949 0 0.9930616 -0.3962687 0 0.9181346 -0.3962687 0 0.9181346 -0.6419447 0 0.7667509 -0.6419447 0 0.7667509 -0.8341635 0 0.5515172 -0.8341635 0 0.5515172 -0.9569184 0 0.2903568 -0.9569184 0 0.2903568 0.2607101 0 0.9654171 0.2607101 0 0.9654171 0.1575937 0 0.9875041 0.05272759 0 0.9986089 0.1575937 0 0.9875041 0.05272759 0 0.9986089 -0.7925953 -0 -0.6097481 -0.7925953 -0 -0.6097481 -0.6004001 0 -0.7996998 -0.6004001 -0 -0.7996998 -0.3643631 -0 -0.9312569 -0.1017195 0 -0.9948131 -0.3643631 -0 -0.9312569 -0.1017195 -0 -0.9948131 0.16835 0 -0.9857273 0.16835 0 -0.9857273 -0.9366059 -0.001390708 0.3503818 -0.9395899 -0.0004635094 0.3423021 -0.9425027 0 0.3341987 -0.9765619 -0.02758254 0.2134617 -0.9748229 -0.01619039 0.2223919 -0.9955654 -0.05141271 -0.07878006 -0.9998018 0.01990691 0 -0.9299876 -0.05080037 -0.3640638 -0.9744657 0.03153846 -0.2223104 -0.9333814 -0 -0.3588859 -0.9094108 -0.02342756 -0.4152387 -0.9096602 -0 -0.4153532 -0.8803589 -0.0700428 -0.4691079 -0.9395897 0 0.3423028 - - - - - - - - - - - - - - -

0 0 1 0 2 0 3 1 0 1 4 1 0 2 2 2 4 2 5 3 3 3 6 3 3 4 4 4 6 4 7 5 5 5 8 5 5 6 6 6 8 6 7 7 8 7 9 7 10 8 11 8 12 8 10 9 13 9 11 9 14 10 12 10 15 10 14 11 10 11 12 11 16 12 15 12 17 12 16 13 14 13 15 13 18 14 17 14 19 14 18 15 16 15 17 15 20 16 19 16 21 16 20 17 18 17 19 17 22 18 21 18 23 18 22 19 20 19 21 19 11 20 13 20 24 20 25 21 11 21 24 21 26 22 25 22 24 22 1 23 26 23 27 23 26 24 24 24 27 24 1 25 27 25 2 25 28 26 29 26 30 26 31 27 28 27 30 27 32 28 31 28 30 28 32 29 30 29 33 29 34 30 32 30 35 30 36 31 34 31 35 31 32 32 33 32 35 32 36 33 35 33 37 33 38 34 36 34 39 34 36 35 37 35 39 35 40 36 9 36 41 36 40 37 41 37 42 37 40 38 42 38 43 38 44 39 7 39 45 39 7 40 40 40 45 40 46 41 44 41 47 41 44 42 45 42 47 42 28 43 46 43 48 43 46 44 47 44 48 44 48 45 49 45 50 45 48 46 50 46 51 46 28 47 48 47 29 47 48 48 51 48 29 48 40 49 7 49 9 49

-
-
-
- - - - -0.04569581 0 0.9989554 -0.08658265 -0.01620807 0.9961128 -0.1367065 0.00167473 0.9906101 -0.257153 -0.01582211 0.9662411 -0.4197505 0.03847434 0.9068237 -0.226576 -0.002060616 0.9739914 -0.310066 0 0.950715 -0.3863482 -0.05236226 0.9208655 -0.3868786 0 0.9221307 -0.4555158 -0.155051 0.8766211 0.985293 0 -0.1708737 0.9930616 -0 0.1175949 0.985293 0 -0.1708737 0.9930616 -0 0.1175949 0.9181346 -0 0.3962687 0.9181346 0 0.3962687 0.7667509 -0 0.6419447 0.7667509 0 0.6419447 0.2903568 -0 0.9569184 0.5515172 -0 0.8341635 0.5515172 0 0.8341635 0.2903568 -0 0.9569184 0.9821131 0 -0.1882916 0.9821131 0 -0.1882916 0.9979047 0 0.06470191 0.9979047 0 0.06470191 0.9495752 0 0.3135391 0.8402305 0 0.5422294 0.9495752 0 0.3135391 0.6768975 0 0.7360773 0.8402305 0 0.5422294 0.470067 0 0.8826307 0.6768975 0 0.7360773 0.470067 0 0.8826307 -0.6097481 0 0.7925953 -0.7996998 0 0.6004001 -0.6097481 0 0.7925953 -0.9312569 0 0.3643631 -0.7996998 0 0.6004001 -0.9312569 0 0.3643631 -0.9948131 0 0.1017195 -0.9948131 0 0.1017195 -0.9857273 -0 -0.16835 -0.9857273 -0 -0.16835 0.297332 -0.006235309 0.9547538 0.3129315 0 0.9497758 0.1801467 -0.007881282 0.9836082 0.2265745 0.004157812 0.9739849 0.3405895 -0.02015983 0.9399959 0.3129232 -0.006722522 0.9497546 0.2849361 0 0.9585465 0.06034309 -0.005802325 0.9981608 0.1367056 0.003940753 0.9906039 0.04569581 0 0.9989554 - - - - - - - - - - 0 16.0274 -39.6875 0 6.858 -39.6875 3.623345 6.858 -39.52176 6.847586 16.0274 -39.0923 7.216425 6.858 -39.0259 13.48979 16.0274 -37.32457 10.74923 6.858 -38.20408 19.72737 16.0274 -34.43731 10.74923 1.778 -38.20408 13.84163 1.778 -37.19552 16.84106 1.778 -35.93711 19.72737 1.778 -34.43731 -18.0011 1.778 -28.88056 -18.0011 16.0274 -28.88056 -17.84454 16.0274 -27.97782 -17.84454 1.778 -27.97782 -17.95228 16.0274 -27.06796 -17.95228 1.778 -27.06796 -18.31535 1.778 -26.22675 -18.31535 16.0274 -26.22675 -18.90351 1.778 -25.52424 -18.90351 16.0274 -25.52424 -19.66778 1.778 -25.01894 -19.66778 16.0274 -25.01894 -20.54453 16.0274 -24.75291 -20.54453 1.778 -24.75291 -18.3163 16.0274 -30.52464 -18.3163 1.778 -30.52464 -18.20799 16.0274 -32.19516 -18.20799 1.778 -32.19516 -17.68312 16.0274 -33.78477 -17.68312 1.778 -33.78477 -16.77541 16.0274 -35.19134 -15.5432 16.0274 -36.32448 -16.77541 1.778 -35.19134 -14.06565 16.0274 -37.11139 -15.5432 1.778 -36.32448 -14.06565 1.778 -37.11139 21.1418 16.0274 -33.34918 22.21325 16.0274 -31.92207 21.1418 1.778 -33.34918 22.86348 16.0274 -30.26019 22.21325 1.778 -31.92207 22.86348 1.778 -30.26019 23.045 16.0274 -28.48489 23.045 1.778 -28.48489 22.74457 16.0274 -26.72581 22.74457 1.778 -26.72581 -9.492491 16.0274 -38.53557 -10.74923 6.858 -38.20408 -4.781065 16.0274 -39.39846 -7.216425 6.858 -39.0259 -12.97102 1.778 -37.508 -11.86523 1.778 -37.87234 -10.74923 1.778 -38.20408 -3.623345 6.858 -39.52176 - - - - - - - - - - - - - - -

0 0 1 0 2 0 3 1 0 1 2 1 3 2 2 2 4 2 5 3 3 3 6 3 7 4 5 4 6 4 3 5 4 5 6 5 6 6 8 6 9 6 6 7 9 7 10 7 7 8 6 8 11 8 6 9 10 9 11 9 12 10 13 10 14 10 15 11 14 11 16 11 15 12 12 12 14 12 17 13 15 13 16 13 18 14 16 14 19 14 18 15 17 15 16 15 20 16 19 16 21 16 20 17 18 17 19 17 22 18 23 18 24 18 22 19 21 19 23 19 22 20 20 20 21 20 25 21 22 21 24 21 26 22 13 22 12 22 26 23 12 23 27 23 28 24 26 24 29 24 26 25 27 25 29 25 30 26 28 26 31 26 32 27 30 27 31 27 28 28 29 28 31 28 33 29 32 29 34 29 32 30 31 30 34 30 35 31 33 31 36 31 33 32 34 32 36 32 35 33 36 33 37 33 38 34 7 34 11 34 39 35 38 35 40 35 38 36 11 36 40 36 41 37 39 37 42 37 39 38 40 38 42 38 41 39 42 39 43 39 44 40 41 40 45 40 41 41 43 41 45 41 46 42 44 42 47 42 44 43 45 43 47 43 48 44 35 44 49 44 49 45 35 45 37 45 50 46 48 46 51 46 48 47 49 47 51 47 49 48 37 48 52 48 49 49 52 49 53 49 49 50 53 50 54 50 0 51 50 51 55 51 50 52 51 52 55 52 0 53 55 53 1 53

-
-
-
- - - - -0.6056411 0 -0.7957379 -0.4511296 0.00233153 -0.8924555 -0.579951 -0.003631476 -0.8146433 -0.2891029 0.001702038 -0.9572965 -0.1586035 -0.00155025 -0.9873411 -0.3627344 -0.004932793 -0.9318796 -0.05411762 0 -0.9985346 -0.1234176 -0.004915774 -0.9923426 0.03141157 0 -0.9995065 0.09410806 9.357769e-05 -0.9955619 0.03361256 -0.0001006126 -0.9994349 0.1564346 0.0001730607 -0.9876883 0.1006834 -0.00018712 -0.9949185 0.2181435 0.000238436 -0.9759167 0.1673008 -0.0002595154 -0.9859059 0.2789902 0.000289645 -0.9602939 0.2331628 -0.0003178362 -0.9724377 0.3387381 0.0003267754 -0.9408807 0.297969 -0.0003620747 -0.9545755 0.3971484 0.0003498587 -0.9177544 0.3614294 -0.0003921269 -0.9323994 0.4539907 0.0003587699 -0.8910063 0.4232581 -0.0004080827 -0.9060091 0.5090412 0.000353591 -0.8607421 0.4831721 -0.0004099463 -0.8755253 0.5620831 0.000334277 -0.8270808 0.5409034 -0.0003977094 -0.8410847 0.6129069 0.0003008578 -0.7901551 0.5961903 -0.0003713729 -0.802843 0.6613117 0.0002533284 -0.7501112 0.648783 -0.0003309183 -0.7609734 0.7071068 0.0001916828 -0.7071067 0.698444 -0.0002763605 -0.7156646 0.7501112 0.0001159476 -0.6613117 0.7449485 -0.0002076981 -0.667122 0.7901551 2.613612e-05 -0.6129069 0.8270808 -2.711819e-05 -0.5620831 0.7880861 -0.0001249102 -0.6155651 0.8607421 7.021637e-05 -0.5090412 0.8276628 -7.533572e-05 -0.5612258 0.8910064 0.0001534388 -0.4539908 0.8634991 -0.0001655609 -0.5043505 0.9177544 0.0002224767 -0.3971484 0.8954337 -0.0002417485 -0.4451948 0.9408807 0.0002774728 -0.3387381 0.9233207 -0.0003037913 -0.3840297 0.9602939 0.000318325 -0.2789902 0.9470363 -0.0003517426 -0.3211266 0.9664715 -0.0003855386 -0.2567739 0.9758968 -0.0063957 -0.2181391 0.9876874 -0.001365634 -0.1564344 0.9955619 0.0004054579 -0.09410807 0.9871295 0.001433258 -0.1599161 0.9811789 0.02708966 -0.1911913 0.9921716 0 -0.1248822 0.9981363 -0.0003843432 -0.06102342 0.9995064 0.0004080586 -0.03141157 0.9999999 -0.0003856719 0 0.9995064 0.0004080586 0.03141157 0.9981363 -0.0003843432 0.06102342 0.9955619 0.0004054579 0.09410807 0.9876874 -0.001365634 0.1564344 0.9758968 -0.0063957 0.2181391 0.9921716 0 0.1248822 0.9871295 0.001433259 0.1599161 0.9811789 0.02708968 0.1911913 0.9664715 -0.0003855386 0.2567739 0.9602939 0.000318325 0.2789902 0.9470363 -0.0003517422 0.3211266 0.9408807 0.0002774728 0.3387381 0.9177544 0.0002224767 0.3971484 0.9233207 -0.0003037917 0.3840297 0.8910064 0.0001534388 0.4539908 0.8954337 -0.0002417488 0.4451948 0.8607421 7.021637e-05 0.5090412 0.8634991 -0.0001655604 0.5043505 0.8270808 -2.711819e-05 0.5620831 0.8276628 -7.533563e-05 0.5612258 0.7901551 2.613612e-05 0.6129069 0.7501112 0.0001159476 0.6613117 0.7880861 -0.0001249098 0.6155651 0.7071068 0.0001916828 0.7071067 0.7449485 -0.0002076978 0.667122 0.6613117 0.0002533284 0.7501112 0.698444 -0.0002763612 0.7156646 0.6129069 0.0003008578 0.7901551 0.648783 -0.0003309183 0.7609734 0.5620831 0.000334277 0.8270808 0.5961903 -0.0003713736 0.802843 0.5090412 0.000353591 0.8607421 0.5409034 -0.0003977101 0.8410847 0.4539907 0.0003587699 0.8910063 0.4831721 -0.0004099463 0.8755253 0.3971484 0.0003498587 0.9177544 0.4232581 -0.000408082 0.9060091 0.3387381 0.0003267754 0.9408807 0.3614294 -0.0003921269 0.9323994 0.297969 -0.0003620751 0.9545755 0.2789902 0.000289645 0.9602939 0.2181435 0.000238436 0.9759167 0.2331628 -0.0003178365 0.9724377 0.1673008 -0.0002595151 0.9859059 0.1564346 0.0001730607 0.9876883 0.1006834 -0.0001871198 0.9949185 0.09410806 9.357769e-05 0.9955619 0.03361256 -0.0001006126 0.9994349 0.03141157 -0 0.9995065 0 0.02343705 -0.9997253 0.001493984 0.06837242 -0.9976588 0.005502567 0.1305242 -0.9914298 0.005768628 0.1325218 -0.9911633 0.006625107 0.3826749 -0.9238593 -0.003318518 0.2705124 -0.9627108 -0.002450423 0.4473487 -0.8943563 0.003239065 0.6087582 -0.7933491 0.004202647 0.6118773 -0.7909415 0.009674468 0.7933161 -0.608733 -0.002198657 0.7525488 -0.6585327 -0.002622344 0.8499964 -0.5267821 0.009331585 0.9238393 -0.3826666 0.004765656 0.9171133 -0.3985981 0.01103553 0.9913844 -0.1305183 -0.004336754 0.9680922 -0.2505566 0.002027374 0.995418 -0.095598 0.01182977 0.9913755 0.1305171 -0.001864475 0.9973163 0.07319004 0.01072974 0.9238264 0.3826613 -0.006586863 0.9670311 0.2545731 0.004274786 0.793346 0.6087559 -0.003202193 0.899083 0.4377666 -0.0003010332 0.6087614 0.7933533 0.000274756 0.7847343 0.6198322 0.005347984 0.624655 0.7808825 0.006892307 0.3826742 0.9238576 -0.00293375 0.4583651 0.8887591 -0.0006716963 0.3081629 0.9513334 0.006099307 0.1305238 0.9914264 0.0006376411 0.1979838 0.9802051 0.004225672 0.1139618 0.9934762 -0 0.03934492 0.9992257 -0.6056444 0 -0.7957354 -0.4511295 0.002331709 -0.8924555 -0.5799546 -0.003631427 -0.8146407 -0.289103 0.001701799 -0.9572965 -0.1586026 -0.001550405 -0.9873413 -0.3627318 -0.004932853 -0.9318805 -0.0541173 0 -0.9985346 -0.1234176 -0.004915826 -0.9923426 -0.1305246 0 0.9914451 -0.1305246 0 0.9914451 -0.3826795 0 0.9238811 -0.3826795 0 0.9238811 -0.6087626 0 0.7933524 -0.6087626 0 0.7933524 -0.7933527 0 0.6087624 -0.7933527 0 0.6087624 -0.9238801 0 0.3826821 -0.9238801 0 0.3826821 -0.9914448 0 0.1305265 -0.9914448 0 0.1305265 0.1305318 0 -0.9914442 0.1305318 0 -0.9914442 0.6087626 0 -0.7933524 0.3826795 0 -0.9238811 0.3826795 0 -0.9238811 0.6087626 0 -0.7933524 0.7933527 0 -0.6087624 0.7933527 0 -0.6087624 0.9238801 0 -0.3826821 0.9238801 0 -0.3826821 0.9914448 0 -0.1305265 0.9914448 0 -0.1305265 0.9914448 0 0.1305265 0.9914448 0 0.1305265 0.9238801 0 0.3826821 0.9238801 0 0.3826821 0.7933527 0 0.6087624 0.7933527 0 0.6087624 0.6087626 0 0.7933524 0.6087626 0 0.7933524 0.3826795 0 0.9238811 0.3826795 0 0.9238811 0.1305318 0 0.9914442 0.1305318 0 0.9914442 0.1305254 0 -0.9914449 0.1305254 0 -0.9914449 0.3826833 0 -0.9238796 0.6087605 0 -0.7933541 0.3826833 0 -0.9238796 0.6087605 0 -0.7933541 0.7933541 0 -0.6087605 0.9238796 0 -0.3826833 0.7933541 0 -0.6087605 0.9914449 0 -0.1305254 0.9238796 0 -0.3826833 0.9914449 0 -0.1305254 0.9914448 0 0.1305258 0.9914448 0 0.1305258 0.9238796 0 0.3826833 0.9238796 0 0.3826833 0.7933541 0 0.6087605 0.7933541 0 0.6087605 0.6087605 0 0.7933541 0.6087605 0 0.7933541 0.3826833 0 0.9238796 0.3826833 0 0.9238796 0.1305254 0 0.9914449 0.1305254 0 0.9914449 0.1305258 0 -0.9914448 0.1305258 0 -0.9914448 0.3826833 0 -0.9238796 0.6087605 0 -0.7933541 0.3826833 0 -0.9238796 0.6087605 0 -0.7933541 0.7933541 0 -0.6087605 0.9238796 0 -0.3826833 0.7933541 0 -0.6087605 0.9914448 0 -0.1305258 0.9238796 0 -0.3826833 0.9914448 0 -0.1305258 0.9914449 0 0.1305254 0.9914449 0 0.1305254 0.9238796 0 0.3826833 0.9238796 0 0.3826833 0.7933541 0 0.6087605 0.7933541 0 0.6087605 0.6087605 0 0.7933541 0.6087605 0 0.7933541 0.3826833 0 0.9238796 0.3826833 0 0.9238796 0.1305258 0 0.9914448 0.1305258 0 0.9914448 0.1305258 0 -0.9914448 0.1305258 0 -0.9914448 0.3826833 0 -0.9238796 0.6087605 0 -0.7933541 0.3826833 0 -0.9238796 0.6087605 0 -0.7933541 0.7933541 0 -0.6087605 0.9238796 0 -0.3826833 0.7933541 0 -0.6087605 0.9914449 0 -0.1305254 0.9238796 0 -0.3826833 0.9914449 0 -0.1305254 0.9914448 0 0.1305258 0.9914448 0 0.1305258 0.9238796 0 0.3826833 0.9238796 0 0.3826833 0.7933541 0 0.6087605 0.7933541 0 0.6087605 0.6087605 0 0.7933541 0.6087605 0 0.7933541 0.3826833 0 0.9238796 0.3826833 0 0.9238796 0.1305258 0 0.9914448 0.1305258 0 0.9914448 0.1305254 0 -0.9914449 0.1305254 0 -0.9914449 0.3826833 0 -0.9238796 0.6087605 0 -0.7933541 0.3826833 0 -0.9238796 0.6087605 0 -0.7933541 0.7933541 0 -0.6087605 0.9238796 0 -0.3826833 0.7933541 0 -0.6087605 0.9914448 0 -0.1305258 0.9238796 0 -0.3826833 0.9914448 0 -0.1305258 0.9914449 0 0.1305254 0.9914449 0 0.1305254 0.9238796 0 0.3826833 0.9238796 0 0.3826833 0.7933541 0 0.6087605 0.6087605 0 0.7933541 0.7933541 0 0.6087605 0.6087605 0 0.7933541 0.3826833 0 0.9238796 0.3826833 0 0.9238796 0.1305254 0 0.9914449 0.1305254 0 0.9914449 0.1305263 0 -0.9914449 0.1305263 0 -0.9914449 0.3826831 0 -0.9238797 0.3826831 0 -0.9238797 0.6087621 0 -0.7933528 0.7933528 0 -0.6087621 0.6087621 0 -0.7933528 0.7933528 0 -0.6087621 0.9238793 0 -0.3826841 0.9914449 0 -0.130526 0.9238793 0 -0.3826841 0.9914449 0 -0.130526 0.9914449 0 0.130526 0.9238793 0 0.3826841 0.9914449 0 0.130526 0.7933539 0 0.6087608 0.9238793 0 0.3826841 0.7933539 0 0.6087608 0.6087621 0 0.7933528 0.6087621 0 0.7933528 0.3826831 0 0.9238797 0.3826831 0 0.9238797 0.1305263 0 0.9914449 0.1305263 0 0.9914449 0.130526 0 -0.9914449 0.3826841 0 -0.9238793 0.130526 0 -0.9914449 0.3826841 0 -0.9238793 0.6087608 0 -0.7933539 0.7933528 0 -0.6087621 0.6087608 0 -0.7933539 0.7933528 0 -0.6087621 0.9238797 0 -0.3826831 0.9914449 0 -0.1305263 0.9238797 0 -0.3826831 0.9914449 0 0.130526 0.9914449 0 -0.1305263 0.9238797 0 0.3826831 0.9914449 0 0.130526 0.7933528 0 0.6087621 0.9238797 0 0.3826831 0.7933528 0 0.6087621 0.6087608 0 0.7933539 0.6087608 0 0.7933539 0.3826841 0 0.9238793 0.3826841 0 0.9238793 0.130526 0 0.9914449 0.130526 0 0.9914449 0.130526 0 -0.9914449 0.130526 0 -0.9914449 0.3826831 0 -0.9238797 0.3826831 0 -0.9238797 0.6087621 0 -0.7933528 0.6087621 0 -0.7933528 0.7933539 0 -0.6087608 0.7933539 0 -0.6087608 0.9238793 0 -0.3826841 0.9238793 0 -0.3826841 0.9914449 0 -0.130526 0.9914449 0 0.130526 0.9914449 0 -0.130526 0.9914449 0 0.130526 0.9238793 0 0.3826841 0.7933528 0 0.6087621 0.9238793 0 0.3826841 0.7933528 0 0.6087621 0.6087621 0 0.7933528 0.3826831 0 0.9238797 0.6087621 0 0.7933528 0.3826831 0 0.9238797 0.130526 0 0.9914449 0.130526 0 0.9914449 0.130526 0 -0.9914449 0.130526 0 -0.9914449 0.3826841 0 -0.9238793 0.3826841 0 -0.9238793 0.6087621 0 -0.7933528 0.6087621 0 -0.7933528 0.7933528 0 -0.6087621 0.7933528 0 -0.6087621 0.9238797 0 -0.3826831 0.9238797 0 -0.3826831 0.9914449 0 -0.130526 0.9914449 0 -0.130526 0.9914449 0 0.1305263 0.9914449 0 0.1305263 0.9238797 0 0.3826831 0.7933528 0 0.6087621 0.9238797 0 0.3826831 0.7933528 0 0.6087621 0.6087621 0 0.7933528 0.6087621 0 0.7933528 0.3826841 0 0.9238793 0.130526 0 0.9914449 0.3826841 0 0.9238793 0.130526 0 0.9914449 -0.130526 0 0.9914449 -0.130526 0 0.9914449 -0.3826841 0 0.9238793 -0.3826841 0 0.9238793 -0.6087608 0 0.7933539 -0.7933528 0 0.6087621 -0.6087608 0 0.7933539 -0.7933528 0 0.6087621 -0.9238797 0 0.3826831 -0.9238797 0 0.3826831 -0.9914449 0 0.1305263 -0.9914449 0 -0.130526 -0.9914449 0 0.1305263 -0.9238797 0 -0.3826831 -0.9914449 -0 -0.130526 -0.7933528 0 -0.6087621 -0.9238797 -0 -0.3826831 -0.6087608 0 -0.7933539 -0.7933528 -0 -0.6087621 -0.6087608 -0 -0.7933539 -0.3826841 -0 -0.9238793 -0.3826841 -0 -0.9238793 -0.130526 -0 -0.9914449 -0.130526 -0 -0.9914449 -0.1305263 0 0.9914449 -0.1305263 0 0.9914449 -0.3826831 0 0.9238797 -0.3826831 0 0.9238797 -0.6087621 0 0.7933528 -0.6087621 0 0.7933528 -0.7933528 0 0.6087621 -0.9238793 0 0.3826841 -0.7933528 0 0.6087621 -0.9238793 0 0.3826841 -0.9914449 0 0.130526 -0.9914449 0 -0.130526 -0.9914449 0 0.130526 -0.9238793 0 -0.3826841 -0.9914449 -0 -0.130526 -0.9238793 -0 -0.3826841 -0.7933539 -0 -0.6087608 -0.6087621 0 -0.7933528 -0.7933539 -0 -0.6087608 -0.3826831 0 -0.9238797 -0.6087621 -0 -0.7933528 -0.3826831 -0 -0.9238797 -0.1305263 -0 -0.9914449 -0.1305263 -0 -0.9914449 -0.130526 0 0.9914449 -0.130526 0 0.9914449 -0.3826841 0 0.9238793 -0.6087621 0 0.7933528 -0.3826841 0 0.9238793 -0.6087621 0 0.7933528 -0.7933528 0 0.6087621 -0.7933528 0 0.6087621 -0.9238797 0 0.3826831 -0.9238797 0 0.3826831 -0.9914449 0 0.130526 -0.9914449 0 0.130526 -0.9914449 -0 -0.1305263 -0.9238797 0 -0.3826831 -0.9914449 -0 -0.1305263 -0.7933528 0 -0.6087621 -0.9238797 -0 -0.3826831 -0.7933528 -0 -0.6087621 -0.6087621 -0 -0.7933528 -0.6087621 -0 -0.7933528 -0.3826841 -0 -0.9238793 -0.130526 0 -0.9914449 -0.3826841 -0 -0.9238793 -0.130526 -0 -0.9914449 -0.130526 0 0.9914449 -0.130526 0 0.9914449 -0.3826831 0 0.9238797 -0.3826831 0 0.9238797 -0.6087621 0 0.7933528 -0.6087621 0 0.7933528 -0.7933539 0 0.6087608 -0.9238793 0 0.3826841 -0.7933539 0 0.6087608 -0.9238793 0 0.3826841 -0.9914449 0 0.130526 -0.9914449 0 -0.130526 -0.9914449 0 0.130526 -0.9238793 0 -0.3826841 -0.9914449 -0 -0.130526 -0.7933528 0 -0.6087621 -0.9238793 -0 -0.3826841 -0.6087621 0 -0.7933528 -0.7933528 -0 -0.6087621 -0.6087621 -0 -0.7933528 -0.3826831 -0 -0.9238797 -0.3826831 -0 -0.9238797 -0.130526 -0 -0.9914449 -0.130526 -0 -0.9914449 -0.1305258 0 0.9914448 -0.1305258 0 0.9914448 -0.3826833 0 0.9238796 -0.6087605 0 0.7933541 -0.3826833 0 0.9238796 -0.6087605 0 0.7933541 -0.7933541 0 0.6087605 -0.7933541 0 0.6087605 -0.9238796 0 0.3826833 -0.9914449 0 0.1305254 -0.9238796 0 0.3826833 -0.9914449 0 0.1305254 -0.9914448 -0 -0.1305258 -0.9914448 -0 -0.1305258 -0.9238796 -0 -0.3826833 -0.9238796 -0 -0.3826833 -0.7933541 -0 -0.6087605 -0.7933541 -0 -0.6087605 -0.6087605 -0 -0.7933541 -0.6087605 -0 -0.7933541 -0.3826833 -0 -0.9238796 -0.3826833 -0 -0.9238796 -0.1305258 -0 -0.9914448 -0.1305258 -0 -0.9914448 -0.1305254 0 0.9914449 -0.1305254 0 0.9914449 -0.3826833 0 0.9238796 -0.3826833 0 0.9238796 -0.6087605 0 0.7933541 -0.6087605 0 0.7933541 -0.7933541 0 0.6087605 -0.7933541 0 0.6087605 -0.9238796 0 0.3826833 -0.9914448 0 0.1305258 -0.9238796 0 0.3826833 -0.9914448 0 0.1305258 -0.9914449 -0 -0.1305254 -0.9914449 -0 -0.1305254 -0.9238796 -0 -0.3826833 -0.9238796 -0 -0.3826833 -0.7933541 -0 -0.6087605 -0.7933541 -0 -0.6087605 -0.6087605 -0 -0.7933541 -0.6087605 -0 -0.7933541 -0.3826833 -0 -0.9238796 -0.3826833 -0 -0.9238796 -0.1305254 -0 -0.9914449 -0.1305254 -0 -0.9914449 -0.1305254 0 0.9914449 -0.1305254 0 0.9914449 -0.3826833 0 0.9238796 -0.3826833 0 0.9238796 -0.6087605 0 0.7933541 -0.6087605 0 0.7933541 -0.7933541 0 0.6087605 -0.7933541 0 0.6087605 -0.9238796 0 0.3826833 -0.9914449 0 0.1305254 -0.9238796 0 0.3826833 -0.9914449 0 0.1305254 -0.9914448 -0 -0.1305258 -0.9914448 -0 -0.1305258 -0.9238796 -0 -0.3826833 -0.9238796 -0 -0.3826833 -0.7933541 -0 -0.6087605 -0.7933541 -0 -0.6087605 -0.6087605 -0 -0.7933541 -0.6087605 -0 -0.7933541 -0.3826833 -0 -0.9238796 -0.3826833 -0 -0.9238796 -0.1305254 -0 -0.9914449 -0.1305254 -0 -0.9914449 -0.1305258 0 0.9914448 -0.1305258 0 0.9914448 -0.3826833 0 0.9238796 -0.3826833 0 0.9238796 -0.6087605 0 0.7933541 -0.6087605 0 0.7933541 -0.7933541 0 0.6087605 -0.7933541 0 0.6087605 -0.9238796 0 0.3826833 -0.9914448 0 0.1305258 -0.9238796 0 0.3826833 -0.9914448 0 0.1305258 -0.9914449 -0 -0.1305254 -0.9914449 -0 -0.1305254 -0.9238796 -0 -0.3826833 -0.9238796 -0 -0.3826833 -0.7933541 -0 -0.6087605 -0.7933541 -0 -0.6087605 -0.6087605 -0 -0.7933541 -0.6087605 -0 -0.7933541 -0.3826833 -0 -0.9238796 -0.3826833 -0 -0.9238796 -0.1305258 -0 -0.9914448 -0.1305258 -0 -0.9914448 -0.1305318 0 0.9914442 -0.1305318 0 0.9914442 -0.3826795 0 0.9238811 -0.3826795 0 0.9238811 -0.6087626 0 0.7933524 -0.6087626 0 0.7933524 -0.7933527 0 0.6087624 -0.7933527 0 0.6087624 -0.9238801 0 0.3826821 -0.9238801 0 0.3826821 -0.9914448 0 0.1305265 -0.9914448 0 0.1305265 -0.9914448 -0 -0.1305265 -0.9914448 -0 -0.1305265 -0.7933527 0 -0.6087624 -0.9238801 -0 -0.3826821 -0.9238801 -0 -0.3826821 -0.6087626 0 -0.7933524 -0.7933527 -0 -0.6087624 -0.6087626 -0 -0.7933524 -0.3826795 -0 -0.9238811 -0.3826795 -0 -0.9238811 -0.1305318 -0 -0.9914442 -0.1305318 -0 -0.9914442 -1 0 0 -1 0 0 -0.9914448 -0 -0.1305265 -0.9914448 -0 -0.1305265 -0.7933527 0 -0.6087624 -0.9238801 -0 -0.3826821 -0.9238801 -0 -0.3826821 -0.6087626 0 -0.7933524 -0.7933527 -0 -0.6087624 -0.3826795 0 -0.9238811 -0.6087626 -0 -0.7933524 -0.1305246 0 -0.9914451 -0.3826795 -0 -0.9238811 0.1305246 0 -0.9914451 -0.1305246 3.001563e-17 -0.9914451 0.3826795 0 -0.9238811 0.1305246 0 -0.9914451 0.6087626 0 -0.7933524 0.3826795 0 -0.9238811 0.7933527 0 -0.6087624 0.6087626 0 -0.7933524 0.9238801 0 -0.3826821 0.7933527 0 -0.6087624 0.9238801 0 -0.3826821 0.9914448 0 -0.1305265 0.9914448 0 -0.1305265 1 -0 0 1 0 0 0.9914448 0 0.1305265 0.9914448 0 0.1305265 0.9238801 0 0.3826821 0.9238801 0 0.3826821 0.7933527 0 0.6087624 0.7933527 0 0.6087624 0.6087626 0 0.7933524 0.6087626 0 0.7933524 0.3826795 0 0.9238811 0.3826795 0 0.9238811 0.1305246 0 0.9914451 0.1305246 0 0.9914451 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 -0 -0 -1 -0 0 -1 0 0 -1 0 0 -1 -0 0 -1 0 0 -1 0 0 -1 -0 0 -1 0 0 -1 0 0 -1 -0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 -0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0 0 -1 -0 0 -1 -0 0 -1 -0 0 -1 0 0 -1 -0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0 0 -1 0 -1 0 0 -1 0 0 -0.1305271 0 0.9914448 -0.1305271 0 0.9914448 -0.3826809 0 0.9238806 -0.3826809 0 0.9238806 -0.6087629 0 0.7933522 -0.6087629 0 0.7933522 -0.7933514 0 0.6087639 -0.7933514 0 0.6087639 -0.9238792 0 0.3826843 -0.9914449 0 0.1305253 -0.9238792 0 0.3826843 -0.9914449 0 0.1305253 0 -0 1 0 0 1 -0.1305265 0 0.9914448 -0.1305265 0 0.9914448 -0.3826833 0 0.9238796 -0.3826833 0 0.9238796 -0.7933521 0 0.608763 -0.6087617 0 0.7933531 -0.6087617 0 0.7933531 -0.9238802 0 0.3826819 -0.7933521 0 0.608763 -0.9914447 0 0.1305276 -0.9238802 0 0.3826819 -0.9914447 0 0.1305276 -1 0 0 -1 0 0 -0.9914447 0 -0.1305276 -0.9914447 0 -0.1305276 -0.7933524 0 -0.6087627 -0.9238801 0 -0.3826821 -0.9238801 0 -0.3826821 -0.6087617 0 -0.7933531 -0.7933524 0 -0.6087627 -0.6087617 0 -0.7933531 -0.1305265 0 -0.9914448 -0.3826833 0 -0.9238796 -0.3826833 0 -0.9238796 -0.1305265 0 -0.9914448 0 0 -1 0 0 -1 -0.9914444 0 -0.1305299 -0.923881 0 -0.38268 -0.9914444 -0 -0.1305299 -0.923881 -0 -0.38268 -0.7933514 -0 -0.6087639 -0.7933514 -0 -0.6087639 -0.6087621 -0 -0.7933528 -0.6087621 -0 -0.7933528 -0.3826825 -0 -0.92388 -0.1305265 0 -0.9914448 -0.3826825 -0 -0.92388 -0.1305265 -0 -0.9914448 -1 0 0 -1 0 0 -0.1305253 0 0.9914449 -0.1305253 0 0.9914449 -0.3826835 0 0.9238795 -0.3826835 0 0.9238795 -0.6087621 0 0.7933528 -0.6087621 0 0.7933528 -0.7933522 0 0.6087628 -0.9238805 0 0.3826812 -0.7933522 0 0.6087628 -0.9914444 0 0.1305299 -0.9238805 0 0.3826812 -0.9914444 0 0.1305299 0 0 1 0 -0 1 0.9914449 0 0.1305253 0.9914449 0 0.1305253 0.9238788 0 0.3826851 0.7933545 0 0.6087599 0.9238788 0 0.3826851 0.6087621 0 0.7933528 0.7933545 0 0.6087599 0.3826835 0 0.9238795 0.6087621 0 0.7933528 0.3826835 0 0.9238795 0.1305253 0 0.9914449 0.1305253 0 0.9914449 1 0 0 1 -0 0 0.1305253 0 -0.9914449 0.1305253 0 -0.9914449 0.3826835 0 -0.9238795 0.3826835 0 -0.9238795 0.6087621 0 -0.7933528 0.6087621 0 -0.7933528 0.7933528 0 -0.6087621 0.9238795 0 -0.3826835 0.7933528 0 -0.6087621 0.9238795 0 -0.3826835 0.9914449 0 -0.1305253 0.9914449 0 -0.1305253 -0 0 -1 0 0 -1 -0.9914449 -0 -0.1305253 -0.9914449 -0 -0.1305253 -0.9238795 -0 -0.3826835 -0.7933506 0 -0.608765 -0.9238795 -0 -0.3826835 -0.7933506 -0 -0.608765 -0.6087621 -0 -0.7933528 -0.3826819 0 -0.9238802 -0.6087621 -0 -0.7933528 -0.3826819 -0 -0.9238802 -0.1305259 -0 -0.9914449 -0.1305259 -0 -0.9914449 0.09624743 0 -0.9953574 0.2851754 -0.004086631 -0.9584666 0.1234172 0.005700205 -0.9923385 0.4635334 -0.004938445 -0.8860657 0.6068335 0.01040986 -0.7947608 0.3627261 0.008170183 -0.93186 0.5799544 0 -0.814649 0.09646007 0 -0.9953368 0.279205 0.002542486 -0.9602282 0.1234196 -0.003438155 -0.9923486 0.4508855 0.002348059 -0.8925787 0.3627318 -0.004936234 -0.9318805 0.570289 -0.004857336 -0.8214298 0.6414232 0 -0.7671873 0.5799549 -0.003503285 -0.8146411 -0.0004431116 0.8206452 -0.5714379 -0.0002196501 0.7992584 -0.6009874 0.0001021257 0.8146774 -0.5799145 -1.174197e-05 0.7697587 -0.638335 6.389349e-06 0.7979598 -0.6027106 -2.542541e-05 0.7362405 -0.67672 1.210442e-05 0.7696279 -0.6384927 0 0.70545 -0.7087597 0 0.6106049 -0.7919353 0.001403773 0.7208435 -0.6930965 0 0.610605 -0.7919354 0 1 -0 0 1 -0 0 1 -0 0 1 -0 0 1 -0 0 1 -0 -0.5799544 -0 -0.814649 -0.6068335 0.01040986 -0.7947608 -0.4635334 -0.004938449 -0.8860657 -0.2851754 -0.004086631 -0.9584666 -0.3627261 0.008170183 -0.93186 -0.09624743 -0 -0.9953574 -0.1234172 0.005700205 -0.9923385 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 -0 -1 0 0 -1 0 -0.4472131 0 0.8944275 -0.4472131 0 0.8944275 0 -0.03584162 0.9993575 0.006230988 -0.1305238 0.9914256 0.003562883 -0.1046864 0.9944989 0.0005798682 -0.1932621 0.9811469 0.005835954 -0.3826767 0.9238639 -0.0008640949 -0.3437794 0.93905 0.008254788 -0.6087407 0.7933263 -0.004006222 -0.5245912 0.8513449 -0.002993854 -0.6737663 0.7389385 0.008703631 -0.7933232 0.6087384 0.003961743 -0.7798354 0.6259722 -0.00327864 -0.8630342 0.5051348 0.006620959 -0.9238595 0.3826746 0.009018799 -0.9268231 0.3753899 0.01232203 -0.9913695 0.1305164 -0.003595217 -0.9746965 0.2235031 -0.001573194 -0.9977849 0.06650565 0.01101395 -0.9913847 -0.1305183 0.001869337 -0.9954731 -0.09502559 0.01048539 -0.9238289 -0.3826619 -0.005402958 -0.9660544 -0.2582821 0.003772681 -0.7933477 -0.6087572 -0.002782278 -0.9011794 -0.4334375 -0.0006711471 -0.6087613 -0.7933531 0.0005836752 -0.7866409 -0.6174105 0.005769278 -0.6266624 -0.7792696 0.006913742 -0.3826741 -0.9238576 -0.003105074 -0.4604466 -0.887682 -0.0005976576 -0.3095658 -0.9508778 0.00609431 -0.1305239 -0.9914264 0.000576315 -0.1992786 -0.9799427 0.004280363 -0.1145974 -0.9934027 0 -0.0395184 -0.9992188 0.8609518 -0.4958977 0.1133461 0.1305206 0.009234854 -0.9914026 0.1581139 0 -0.9874209 0.3065713 -0.001279577 -0.9518468 0.92506 -0.06202005 0.3747231 0.9958672 0.001911845 -0.09080131 0.325678 -0.00276925 -0.9454767 0.9913728 0.01206707 -0.1305163 0.200835 0.008631133 -0.9795871 0.9212765 -0.07501365 0.3816054 0.9975802 -0.001758103 0.06950246 0.8800659 0.01391545 0.4746477 0.3826569 -0.01180742 -0.9238151 0.3566256 -0.006428594 -0.9342253 0.9703293 -0.005937773 0.2417144 0.4263217 -0.003669833 -0.9045642 0.991365 0.01269306 0.1305153 0.7934903 -0.02980241 0.6078528 0.7930242 -0.0288004 0.608509 0.5411307 0.003585701 -0.8409309 0.3994598 0.006988509 -0.916724 0.3348286 0.002065482 -0.9422768 0.3152659 0.001126259 -0.9490027 0.1305237 -0.00609313 -0.9914265 0.716826 0.009879904 0.6971821 0.90901 3.357578e-05 0.4167742 0.6086474 -0.01935227 -0.7932048 0.9238338 0.009941014 0.3826647 0.6828529 0.01144494 -0.7304662 0.6086605 -0.01821474 0.7932218 0.8087957 -8.701412e-05 0.5880898 0.5309522 -0.00206542 -0.8473992 0.3826808 0.003824946 -0.9238727 0.584864 -0.003577741 0.8111235 0.7931984 -0.01975686 -0.6086428 0.6763539 -0.003758069 0.7365672 0.7933397 0.005833778 0.6087512 0.8116923 0.00314629 -0.5840769 0.9103914 -0.003102658 -0.4137365 0.3826568 -0.01181525 0.923815 0.6087433 0.007734616 -0.7933297 0.4582896 0.002335839 0.8887998 0.6629979 -0.001935395 -0.7486187 0.9185773 -0.106982 -0.3804873 0.3549944 -0.006056497 0.9348488 0.7786414 0.002508354 -0.6274642 0.3227136 -0.002534478 0.9464933 0.7933273 0.008075367 -0.6087417 0.8660457 -0.002899693 -0.4999565 0.3039419 -0.001118333 0.9526899 0.9410933 -0.3178405 -0.1154155 0.9166252 -0.3810979 -0.1206756 0.4277045 0.001777132 0.903917 0.5379441 -0.001703017 0.8429788 0.6087425 0.007869731 0.7933288 0.9248452 0.008801933 -0.380242 0.1305206 0.009234854 0.9914026 0.3082816 0.0008307103 0.9512948 0.3286241 0.001750668 0.9444592 0.3605202 0.00385372 0.9327434 0.3826761 0.006267393 0.9238613 0.1305241 -0.005541062 0.9914297 0.1581139 0 0.9874209 0.9238498 0.00801513 -0.3826713 0.9712617 -0.003760953 -0.2379846 0.9710346 0.0757206 -0.2266233 0.9842529 0.1692205 0.05109363 0.9781589 0.04092013 0.2037912 0.9988988 0 0.04691592 0.9479641 -0 0.3183773 0.9988988 -0 0.04691592 0.8247338 -0 0.5655212 0.9479641 -0 0.3183773 0.8247338 -0 0.5655212 0.638586 -0 0.7695504 0.638586 0 0.7695504 0.1380889 -0 0.9904199 0.4037394 -0 0.914874 0.4037394 0 0.914874 0.1380889 -0 0.9904199 0.6057375 -0 0.7956646 0.4514226 0.002387823 0.8923071 0.2910584 -0.004990741 0.9566923 0.5596093 -0.006451203 0.8287315 0.1263585 0.002376897 0.9919818 0.2926144 -0.004738992 0.9562188 -0.04696598 -0.0008961036 0.9988961 -0.2152403 0.0009504047 0.9765607 0 -0.006822723 0.9999768 -0.3754235 0.001075592 0.9268527 -0.5140641 -0.001162705 0.857751 -0.2926114 -0.007138939 0.9562047 -0.6249918 0 0.7806313 -0.5596069 -0.006574182 0.8287322 -0.09624743 0 0.9953574 -0.2851754 -0.004086631 0.9584666 -0.1234172 0.005700205 0.9923385 -0.4635334 -0.004938445 0.8860657 -0.6068351 0.01041004 0.7947596 -0.3627261 0.008170183 0.93186 -0.5799555 0 0.8146483 0 0.610605 0.7919353 0 0.6106049 0.7919353 -0.001097575 0.7206097 0.6933401 0 0.7123925 0.7017812 -0.0004223676 0.8180088 0.5752056 -0.00087768 0.7703946 0.6375667 0.0006101993 0.7542569 0.6565791 -0.0004473125 0.7985985 0.6018639 0.0005433133 0.7860639 0.6181449 0.0004316492 0.807857 0.5893784 0.5799555 0 0.8146483 0.6068337 0.01040951 0.7947606 0.4635346 -0.004938612 0.8860651 0.2851746 -0.004086759 0.9584669 0.3627261 0.008170183 0.93186 0.09624772 0 0.9953574 0.1234172 0.005700129 0.9923385 0 0 1 0 -0 1 0 -0 1 0 0 1 0 -0 1 0 -0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0 0 -1 -0 0 -1 -0 0 -1 0 0 -1 0 0 -1 -0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.1380889 0 -0.9904199 0.4037394 0 -0.914874 0.1380889 0 -0.9904199 0.638586 0 -0.7695504 0.4037394 0 -0.914874 0.638586 0 -0.7695504 0.8247338 0 -0.5655212 0.8247338 0 -0.5655212 0.9479641 0 -0.3183773 0.9479641 0 -0.3183773 0.9988988 0 -0.04691592 0.9988988 0 -0.04691592 -0.03141157 0 0.9995065 -0.09410807 4.951824e-05 0.995562 -0.032533 -5.126239e-05 0.9994706 -0.1564346 9.532232e-05 0.9876884 -0.0974616 -9.890636e-05 0.9952393 -0.2181435 0.0001374537 0.9759167 -0.161978 -0.0001428861 0.9867944 -0.2789902 0.0001758899 0.9602939 -0.2258088 -0.0001832167 0.9741716 -0.3387381 0.000210665 0.9408807 -0.2886821 -0.0002198985 0.957425 -0.3971484 0.0002418386 0.9177544 -0.3503338 -0.0002528396 0.9366248 -0.4539907 0.0002693212 0.8910064 -0.4105034 -0.0002821183 0.911859 -0.5090412 0.0002931139 0.8607422 -0.4689344 -0.0003077521 0.8832329 -0.5620831 0.0003132391 0.8270808 -0.5253797 -0.0003297263 0.8508679 -0.6129068 0.0003297153 0.7901551 -0.5796007 -0.0003480227 0.8149005 -0.6613116 0.0003424944 0.7501112 -0.6313689 -0.0003626544 0.7754825 -0.7071067 0.0003515989 0.7071067 -0.6804636 -0.0003736379 0.7327818 -0.7501111 0.0003570703 0.6613116 -0.7266771 -0.0003809319 0.6869791 -0.7901551 0.0003588619 0.6129069 -0.7698146 -0.0003845441 0.6382675 -0.8270807 0.0003569825 0.562083 -0.8096929 -0.0003845015 0.5868537 -0.8607421 0.0003514704 0.5090412 -0.8461427 -0.0003807673 0.5329562 -0.8910064 0.0003422689 0.4539908 -0.8790107 -0.0003733548 0.4768017 -0.9177544 0.0003293727 0.3971484 -0.9081575 -0.0003623023 0.4186286 -0.9408807 0.0003127465 0.3387381 -0.9334598 -0.0003476212 0.3586819 -0.9602939 0.0002925718 0.2789902 -0.9548091 -0.0003292746 0.2972196 -0.9721166 -0.0003071544 0.2344975 -0.9759166 0.0002687116 0.2181435 -0.9837238 0.05669841 0.1705073 -0.9944542 -0.001035007 0.1051652 -0.9876475 -0.009081905 0.1564281 -0.9955583 -0.00272964 0.09410772 -0.9995065 0.0002089014 0.03141157 -0.9941508 0.01895336 0.1063249 -0.9999824 1.148708e-05 0.005947253 -1 -3.880747e-06 0 -0.9995065 0.0002089014 -0.03141157 -0.9955583 -0.00272964 -0.09410772 -0.9876475 -0.009081905 -0.1564281 -0.9999824 1.148708e-05 -0.005947253 -0.9991404 0 0.04145522 -0.9991404 0 -0.04145522 -0.9941508 0.01895336 -0.1063249 -0.9944542 -0.001035008 -0.1051652 -0.9759166 0.0002687116 -0.2181435 -0.9837238 0.05669844 -0.1705074 -0.9721166 -0.0003071546 -0.2344975 -0.9602939 0.0002925718 -0.2789902 -0.9408807 0.0003127465 -0.3387381 -0.9548091 -0.0003292746 -0.2972196 -0.9177544 0.0003293727 -0.3971484 -0.9334598 -0.0003476216 -0.3586819 -0.8910064 0.0003422689 -0.4539908 -0.9081575 -0.0003623023 -0.4186286 -0.8607421 0.0003514704 -0.5090412 -0.8790107 -0.0003733541 -0.4768017 -0.8270807 0.0003569825 -0.562083 -0.8461427 -0.0003807673 -0.5329562 -0.7901551 0.0003588619 -0.6129069 -0.8096929 -0.0003845008 -0.5868537 -0.7698146 -0.0003845441 -0.6382675 -0.7501111 0.0003570703 -0.6613116 -0.7071067 0.0003515989 -0.7071067 -0.7266771 -0.0003809319 -0.6869791 -0.6613116 0.0003424944 -0.7501112 -0.6804636 -0.0003736365 -0.7327818 -0.6129068 0.0003297153 -0.7901551 -0.6313689 -0.0003626544 -0.7754825 -0.5620831 0.0003132391 -0.8270808 -0.5796007 -0.0003480235 -0.8149005 -0.5090412 0.0002931139 -0.8607422 -0.5253797 -0.0003297271 -0.8508679 -0.4539907 0.0002693212 -0.8910064 -0.4689344 -0.0003077521 -0.8832329 -0.3971484 0.0002418386 -0.9177544 -0.4105034 -0.0002821175 -0.911859 -0.3503338 -0.0002528407 -0.9366248 -0.3387381 0.000210665 -0.9408807 -0.2886821 -0.0002198987 -0.957425 -0.2789902 0.0001758899 -0.9602939 -0.2258088 -0.0001832165 -0.9741716 -0.2181435 0.0001374537 -0.9759167 -0.161978 -0.0001428859 -0.9867944 -0.1564346 9.532232e-05 -0.9876884 -0.0974616 -9.890642e-05 -0.9952393 -0.09410807 4.951824e-05 -0.995562 -0.032533 -5.126238e-05 -0.9994706 -0.03141157 0 -0.9995065 -0.4472131 0 -0.8944275 -0.4472131 0 -0.8944275 -0 -1 0 0 -1 0 4.189806e-17 -1 -4.592276e-17 -5.762202e-16 -1 -1.935257e-16 -1.714789e-16 -1 -1.175833e-16 0 -1 0 1.079186e-18 -1 -2.605386e-18 1.253785e-18 -1 -1.633968e-18 1.389769e-18 -1 -1.066405e-18 1.52775e-18 -1 -6.328143e-19 6.623075e-18 -1 1.18351e-17 1.91222e-17 -1 1.493613e-17 -0 -1 0 5.193299e-18 -1 1.111656e-17 0 -1 0 0 -1 0 0 -1 0 -8.717413e-18 -1 1.136073e-17 3.898414e-18 -1 1.005695e-17 -0 -1 0 -9.548039e-18 -1 7.326482e-18 -1.00113e-17 -1 4.146825e-18 1.652169e-17 -1 -6.843473e-18 -1.070733e-16 -1 4.924741e-17 0 -1 0 1.136181e-16 -1 7.528081e-17 3.917578e-18 -1 9.448432e-18 2.143966e-18 -1 -2.118593e-17 -4.784997e-18 -1 1.155202e-17 0 -1 0 7.245012e-18 -1 1.312822e-17 0 -1 0 0 -1 0 1.578367e-17 -1 -6.53777e-18 0 -1 0 -0 -1 0 2.160275e-18 -1 -2.128106e-17 8.91549e-18 -1 1.386326e-17 -2.021423e-18 -1 1.535422e-17 1.023505e-17 -1 -1.333861e-17 1.588549e-17 -1 -2.091431e-18 2.425191e-18 -1 1.842118e-17 -9.987354e-18 -1 9.441751e-18 -6.464888e-18 -1 -1.560762e-17 1.365757e-17 -1 -1.047979e-17 -2.258182e-18 -1 -1.715271e-17 -1.043369e-17 -1 -1.466945e-17 0 -1 0 0 -1 0 1.365753e-17 -1 -1.047983e-17 -1.119085e-17 -1 8.587018e-18 8.105048e-17 -1 -1.020162e-17 0 -1 -2.359389e-17 -9.337686e-18 -1 1.005562e-17 0 -1 0 -8.483598e-18 -1 1.105607e-17 -0 -1 0 0 -1 0 0 -1 0 -0 -1 0 1.569904e-17 -1 3.790103e-17 -2.268024e-17 -1 -1.740319e-17 0 -1 0 1.049859e-17 -1 -2.534585e-17 -0 -1 0 0 -1 0 -1.154379e-17 -1 4.781592e-18 1.600667e-17 -1 -6.630179e-18 6.666323e-18 -1 1.609394e-17 9.839486e-18 -1 -1.282305e-17 -4.657599e-18 -1 1.124444e-17 5.051303e-18 -1 -3.836856e-17 -0 -1 0 1.715529e-17 -1 -2.258531e-18 2.378136e-18 -1 -1.806384e-17 5.679233e-18 -1 -1.371088e-17 0 -1 0 -1.297797e-17 -1 1.708572e-18 0 -1 0 -2.353783e-17 -1 -3.067515e-17 -7.631008e-18 -1 9.372831e-18 -1.63004e-18 -1 1.238146e-17 6.523469e-17 -1 5.00568e-17 5.658647e-17 -1 7.374481e-17 -7.102597e-18 -1 -5.394993e-17 6.013524e-17 -1 4.07768e-17 7.97364e-17 -1 3.30279e-17 1.477623e-17 -1 1.945315e-18 1.240202e-18 -1 9.420296e-18 1.405951e-18 -1 -8.285286e-18 -1.399884e-17 -1 -3.061512e-17 1.092766e-16 -1 1.438644e-17 1.880395e-18 -1 -1.428297e-17 6.147927e-18 -1 -1.484241e-17 -0 -1 0 -0 -1 0 -8.614228e-18 -1 -1.3951e-17 6.034471e-17 -1 3.524599e-17 1.074973e-17 -1 1.447582e-17 1.092841e-17 -1 1.424216e-17 -2.005024e-17 -1 -4.840547e-17 8.005241e-18 -1 -1.04326e-17 -1.341051e-17 -1 1.11189e-17 -2.005019e-17 -1 -4.840545e-17 2.133112e-17 -1 2.80829e-18 -6.43798e-18 -1 -1.212587e-17 -1.118966e-17 -1 1.458263e-17 -4.311463e-18 -1 1.611134e-17 5.729719e-17 -1 2.848722e-17 -0 -1 0 -1.458957e-17 -1 1.057431e-17 1.974467e-17 -1 8.178506e-18 8.932326e-18 -1 -6.854018e-18 6.551691e-18 -1 -1.276654e-18 -4.989115e-18 -1 -1.108242e-17 -1.422511e-17 -1 1.091533e-17 0 -1 0 -5.744551e-18 -1 8.076658e-18 4.004891e-18 -1 9.668665e-18 1.420822e-17 -1 1.090237e-17 -5.281464e-18 -1 -4.011679e-17 -3.117662e-17 -1 -4.063026e-17 -0 -1 0 -1.582173e-17 -1 6.553567e-18 2.333605e-17 -1 9.666106e-18 3.984304e-18 -1 -3.026383e-17 -1.005893e-17 -1 2.428436e-17 -2.827367e-17 -1 -2.16951e-17 0 -1 0 4.945163e-18 -1 6.444678e-18 2.938383e-18 -1 -1.225493e-17 1.346078e-17 -1 5.598641e-18 1.080872e-17 -1 1.423005e-18 2.763833e-17 -1 0 -3.984302e-18 -1 3.026382e-17 0 -1 0 0 -1 0 2.827367e-17 -1 2.16951e-17 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1.3911e-17 -1 8.762058e-18 -2.333605e-17 -1 -9.666103e-18 1.005893e-17 -1 -2.428435e-17 -1.770718e-17 -1 2.331191e-18 7.85384e-18 -1 2.514557e-19 6.338298e-18 -1 -1.68397e-18 8.013169e-18 -1 6.148705e-18 -3.5195e-18 -1 6.628943e-18 0 -1 0 -4.212536e-18 -1 6.822327e-18 0 -1 0 -1.481446e-17 -1 -1.950363e-18 -1.312705e-17 -1 7.120502e-18 9.503941e-18 -1 -3.936665e-18 5.281467e-18 -1 4.011679e-17 -2.133113e-17 -1 -2.808288e-18 3.117661e-17 -1 4.063026e-17 -0 -1 0 -3.741196e-18 -1 -1.000217e-17 -7.381489e-18 -1 -4.649346e-18 5.722266e-18 -1 2.370239e-18 -0 -1 0 -2.674465e-18 -1 5.940841e-18 9.275074e-18 -1 3.841848e-18 3.299199e-18 -1 -1.056934e-17 4.011679e-17 -1 -5.281464e-18 0 -1 0 -1.125053e-17 -1 -4.660119e-18 -8.075644e-18 -1 -5.853111e-18 -6.790662e-18 -1 5.210645e-18 -6.663383e-18 -1 -3.614417e-18 -4.334571e-18 -1 5.648937e-18 2.005024e-17 -1 4.840547e-17 2.005019e-17 -1 4.840546e-17 0 -1 0 7.102598e-18 -1 5.394994e-17 4.063026e-17 -1 -3.117662e-17 0 -1 0 5.969726e-18 -1 7.779895e-18 0 -1 0 4.840547e-17 -1 -2.005024e-17 9.838925e-18 -1 -3.33624e-18 0 -1 0 0 -1 0 -0 -1 0 2.16951e-17 -1 -2.827367e-17 3.510159e-18 -1 -9.05535e-18 3.026383e-17 -1 3.984304e-18 4.012749e-18 -1 -7.370958e-18 -1.028619e-17 -1 4.260676e-18 0 -1 0 1.098367e-17 -1 -4.568355e-18 -2.471358e-18 -1 5.966388e-18 1.440284e-17 -1 4.883798e-18 2.353783e-17 -1 3.067515e-17 9.083447e-18 -1 6.969985e-18 -5.051306e-18 -1 3.836856e-17 -1.09609e-17 -1 -8.41061e-18 -0 -1 0 -1.110407e-17 -1 5.118587e-18 3.353228e-18 -1 -7.177784e-18 4.840545e-17 -1 -2.005019e-17 0 -1 0 0 -1 0 9.666103e-18 -1 -2.333605e-17 1.211586e-17 -1 -6.023806e-18 2.428435e-17 -1 1.005893e-17 1.293519e-17 -1 5.357919e-18 -5.907216e-18 -1 -4.532755e-18 -0 -1 0 -0 -1 0 -9.344219e-18 -1 -7.747463e-18 4.008506e-18 -1 -7.263557e-18 -9.859205e-18 -1 1.297985e-18 5.793695e-18 -1 -7.163428e-18 -7.172697e-18 -1 -9.347624e-18 -1.004258e-17 -1 3.858863e-18 1.308632e-17 -1 -7.643424e-18 2.268024e-17 -1 1.740319e-17 1.588883e-17 -1 -2.091791e-18 1.722447e-17 -1 2.267636e-18 -0 -1 0 -5.563003e-18 -1 -7.249855e-18 0 -1 0 0 -1 0 0 -1 0 7.920042e-18 -1 9.289609e-18 4.760201e-18 -1 -7.401935e-18 2.808288e-18 -1 -2.133113e-17 1.797936e-17 -1 7.912192e-18 1.494195e-17 -1 3.969802e-18 1.44556e-17 -1 -9.80213e-18 1.534433e-17 -1 -2.020105e-18 3.067515e-17 -1 -2.353782e-17 1.42601e-17 -1 -1.094218e-17 5.394994e-17 -1 -7.102598e-18 1.682077e-17 -1 -6.967383e-18 0 -1 0 -9.618861e-18 -1 -1.179488e-17 -6.935833e-18 -1 -2.159033e-18 -9.024409e-18 -1 2.809179e-18 -7.274967e-18 -1 -2.795406e-18 -8.6052e-18 -1 2.075777e-18 -4.68778e-18 -1 -1.131729e-17 -7.545929e-18 -1 -3.478405e-18 -1.390846e-18 -1 -1.056454e-17 -4.108912e-18 -1 -9.919772e-18 4.777573e-18 -1 -3.628953e-17 5.992261e-18 -1 -8.069311e-18 0 -1 0 6.285256e-18 -1 -1.713533e-17 1.419177e-17 -1 -1.108503e-17 -3.323072e-18 -1 -2.524131e-17 -7.652188e-18 -1 1.326342e-18 1.04248e-17 -1 -1.358585e-17 -1.056288e-18 -1 -8.023316e-18 1.129255e-17 -1 -1.486684e-18 0 -1 0 7.920042e-18 -1 -9.28961e-18 -1.297797e-17 -1 -1.708572e-18 -0 -1 0 1.85991e-18 -1 -1.412749e-17 1.859908e-18 -1 1.41275e-17 5.010689e-18 -1 -1.209686e-17 8.117574e-18 -1 -1.057906e-17 0 -1 0 9.766941e-18 -1 -8.746566e-18 9.757704e-18 -1 -9.998286e-18 3.836856e-17 -1 5.051302e-18 -4.566514e-19 -1 2.294192e-17 1.083244e-17 -1 -8.312e-18 0 -1 0 -6.788695e-18 -1 1.638936e-17 1.31932e-17 -1 -5.464801e-18 -0 -1 0 1.740319e-17 -1 -2.268024e-17 0 -1 0 -0 -1 0 -0 -1 0 -0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 -0 -1 0 -1.068497e-17 -1 1.39249e-17 0 -1 0 0 -1 0 0 -1 0 -3.227387e-18 -1 -1.070375e-17 -1.068494e-17 -1 1.392492e-17 0 -1 0 -3.794818e-18 -1 -9.422477e-18 0 -1 0 0 -1 0 -2.787657e-17 -1 -3.669995e-18 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 -1.868959e-17 -1 -1.466273e-17 -6.143636e-18 -1 -1.06487e-18 -1.102429e-17 -1 -2.6615e-17 0 -1 0 -6.552088e-18 -1 -1.580518e-18 8.264512e-19 -1 -4.263886e-18 6.392167e-19 -1 4.855408e-18 7.089854e-19 -1 1.71163e-18 -1.154379e-17 -1 -4.781592e-18 1.400859e-18 -1 -2.422415e-17 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -2.863417e-18 -1 -1.235319e-17 0 -1 0 2.534585e-17 -1 1.049859e-17 0 -1 0 -1.129042e-17 -1 1.486416e-18 6.981071e-19 -1 -5.302684e-18 9.292135e-18 -1 -2.243322e-17 -6.691878e-18 -1 1.615562e-17 5.010683e-18 -1 1.209686e-17 -1.352206e-17 -1 1.037581e-17 -3.186562e-17 -1 -1.319924e-17 0 -1 0 -2.073078e-17 -1 -2.701694e-17 3.411302e-18 -1 -2.591147e-17 1.860847e-17 -1 1.427874e-17 8.117575e-18 -1 1.057906e-17 -2.142443e-18 -1 1.627358e-17 -3.005797e-17 -1 -2.30642e-17 -6.082872e-18 -1 7.922067e-18 -1.119085e-17 -1 -8.587015e-18 -1.485797e-17 -1 0 -1.55037e-17 -1 6.421842e-18 -9.987355e-18 -1 -9.441751e-18 -2.230806e-17 -1 2.936903e-18 -4.415648e-17 -1 -5.813269e-18 0 -1 0 0 -1 0 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 -2.308848e-17 -1 -3.008944e-17 1.469497e-17 -1 2.863443e-18 1.233713e-17 -1 -5.110204e-18 -8.483598e-18 -1 -1.105607e-17 -2.699155e-17 -1 -2.071129e-17 1.662656e-17 -1 2.16682e-17 -1.323624e-17 -1 -3.195509e-17 0 -1 0 1.083244e-17 -1 8.312e-18 9.757704e-18 -1 9.998286e-18 0 -1 0 -9.479936e-17 -1 1.013884e-17 1.647698e-17 -1 3.295401e-17 -1.925989e-17 -1 1.462883e-17 -0 -1 0 0 -1 0 1.647698e-17 -1 -3.295401e-17 0 -1 0 -2.655295e-17 -1 -1.099859e-17 0 -1 0 -0 -1 0 -1.912825e-18 -1 1.9533e-17 1.31932e-17 -1 5.464799e-18 1.623599e-17 -1 1.159508e-17 -1.24728e-17 -1 9.570741e-18 -0 -1 0 0 -1 0 -2.220715e-17 -1 -2.923618e-18 -1.704236e-17 -1 -7.059153e-18 -2.732762e-18 -1 -1.664839e-17 -1.258556e-17 -1 1.640177e-17 -1.611351e-17 -1 6.674407e-18 -2.61334e-18 -1 1.592086e-17 -7.635518e-18 -1 1.843399e-17 -3.13575e-18 -1 2.521306e-17 -7.231394e-19 -1 2.221609e-17 -2.961056e-18 -1 2.249048e-17 -1.33632e-17 -1 1.759302e-18 -3.184669e-18 -1 1.373912e-17 7.472606e-19 -1 2.221906e-17 3.673782e-17 -1 4.624099e-18 2.961056e-18 -1 2.249048e-17 0 -1 8.414892e-17 -1.115502e-17 -1 -1.46859e-18 -3.536496e-18 -1 1.172892e-17 -3.728299e-18 -1 9.967684e-18 -9.44591e-18 -1 -3.912609e-18 -4.451437e-18 -1 7.300028e-18 -5.762202e-16 -1 1.935257e-16 7.587583e-18 -1 1.831826e-17 -3.836856e-17 -1 -5.051306e-18 2.454242e-16 -1 -5.561317e-16 0 -1 0 -1.740319e-17 -1 2.268024e-17 -1.714788e-16 -1 1.175833e-16 4.189806e-17 -1 4.592275e-17 1.327736e-16 -1 -1.600034e-16 -2.562965e-17 -1 -1.168409e-17 -0 -1 0 -3.067515e-17 -1 2.353783e-17 -4.840546e-17 -1 2.005019e-17 1.973527e-18 -1 1.950171e-17 -5.394994e-17 -1 7.102598e-18 1.244461e-17 -1 1.621808e-17 -9.479936e-17 -1 -1.013883e-17 -4.840547e-17 -1 2.005024e-17 -4.063026e-17 -1 3.117661e-17 -0 -1 0 -0 -1 0 -2.14956e-17 -1 -1.649419e-17 1.220529e-17 -1 9.365473e-18 -1.453189e-17 -1 -1.893828e-17 -4.657593e-18 -1 -1.124444e-17 -8.988562e-18 -1 -2.170058e-17 -1.630041e-18 -1 -1.238147e-17 -9.337687e-18 -1 -1.005562e-17 -2.077818e-18 -1 -2.121785e-17 -4.011679e-17 -1 5.281467e-18 -2.16951e-17 -1 2.827367e-17 1.564726e-17 -1 6.481283e-18 -0 -1 0 -3.627003e-18 -1 -2.755018e-17 3.627003e-18 -1 -2.755018e-17 -9.666106e-18 -1 2.333605e-17 -3.026383e-17 -1 -3.984302e-18 -8.834006e-19 -1 -2.713961e-17 0 -1 0 1.228582e-17 -1 -1.617456e-18 1.129255e-17 -1 1.486684e-18 9.766942e-18 -1 8.746567e-18 -2.80829e-18 -1 2.133112e-17 -2.428436e-17 -1 -1.005893e-17 -1.64447e-17 -1 -4.954017e-18 1.593478e-17 -1 -2.097867e-18 1.287683e-17 -1 1.695276e-18 2.6894e-18 -1 1.584867e-17 0 -1 0 1.281072e-17 -1 -5.306357e-18 3.029343e-18 -1 1.263429e-17 3.382682e-18 -1 1.083678e-17 0 -1 0 0 -1 0 0 -1 0 -1.487068e-17 -1 -1.141069e-17 -1.091474e-17 -1 -1.422433e-17 -1.100908e-17 -1 -1.352196e-17 0 -1 0 2.167145e-16 -1 3.502156e-16 0 -1 0 -0 -1 0 -0 -1 0 8.922207e-18 -1 -2.154038e-17 1.434431e-17 -1 -1.86938e-17 2.10721e-17 -1 -1.616923e-17 9.12896e-19 -1 -2.714403e-17 -0 -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 0 -1 0 0 -1 0 0 -1 0 0 -1 0.09624758 0 -0.9953574 0.285175 -0.004086694 -0.9584668 0.1234172 0.005700168 -0.9923385 0.463534 -0.004938528 -0.8860653 0.6068344 0.01040977 -0.7947601 0.3627261 0.008170183 -0.93186 0.5799555 0 -0.8146483 0.09645975 0 -0.9953368 0.2792031 0.002542762 -0.9602286 0.1234184 -0.003438048 -0.9923487 0.4508884 0.002348112 -0.8925772 0.3627335 -0.004936242 -0.9318798 0.5702858 -0.004857114 -0.821432 0.6414163 0 -0.767193 0.5799525 -0.003502944 -0.8146428 -0.5799555 -0 -0.8146483 -0.6068344 0.01040977 -0.7947601 -0.463534 -0.004938528 -0.8860653 -0.2851754 -0.004086631 -0.9584666 -0.3627261 0.008170183 -0.93186 -0.09624758 -0 -0.9953574 -0.1234173 0.005700198 -0.9923385 -0.0004431127 0.8206452 -0.5714378 -0.0002196504 0.7992584 -0.6009874 0.0001021258 0.8146774 -0.5799145 -1.174196e-05 0.7697587 -0.638335 6.389344e-06 0.7979599 -0.6027106 -2.542543e-05 0.7362405 -0.67672 1.210443e-05 0.7696278 -0.6384927 0 0.70545 -0.7087597 0.001403772 0.7208435 -0.6930965 0 0.610605 -0.7919353 0 0.6106049 -0.7919353 - - - - - - - - - - 11.66968 0 1.925053 11.66968 2.617575 1.925053 11.89206 2.454397 1.755792 11.97613 0 1.706884 12.13609 2.351837 1.632173 12.32669 0 1.570428 12.38107 2.295878 1.558088 12.5392 2.277797 1.532715 12.7 0 1.524 12.7 2.271815 1.524 0 9.331501e-17 -42.672 0 58.674 -42.672 2.679397 58.674 -42.5878 2.866958 9.331501e-17 -42.57558 5.34822 58.674 -42.33552 5.720961 9.331501e-17 -42.28676 7.995935 58.674 -41.91616 8.549109 9.331501e-17 -41.80685 10.61209 58.674 -41.33138 11.33862 9.331501e-17 -41.138 13.18637 58.674 -40.58348 14.0769 9.331501e-17 -40.28325 15.70861 58.674 -39.67542 16.75156 9.331501e-17 -39.24646 18.16885 58.674 -38.61078 19.35052 9.331501e-17 -38.03231 20.55739 58.674 -37.39376 21.86203 9.331501e-17 -36.6463 22.8648 58.674 -36.02916 24.27475 9.331501e-17 -35.09467 25.08197 58.674 -34.52237 26.57777 9.331501e-17 -33.38445 27.20016 58.674 -32.87934 28.76068 9.331501e-17 -31.52337 29.21099 58.674 -31.10655 30.81363 9.331501e-17 -29.51982 31.10655 58.674 -29.21099 32.72732 9.331501e-17 -27.38288 32.87934 58.674 -27.20016 34.49311 9.331501e-17 -25.12219 34.52237 58.674 -25.08197 36.02916 58.674 -22.8648 36.10303 9.331501e-17 -22.74798 37.39376 58.674 -20.55739 37.5498 9.331501e-17 -20.27096 38.61078 58.674 -18.16885 38.82688 9.331501e-17 -17.70234 39.67542 58.674 -15.70861 39.9285 9.331501e-17 -15.05372 40.58348 58.674 -13.18637 40.84968 9.331501e-17 -12.33707 41.33138 58.674 -10.61209 41.58625 9.331501e-17 -9.564672 42.49314 7.112 -3.902927 41.91616 58.674 -7.995935 42.33552 58.674 -5.34822 42.5878 58.674 -2.679397 42.1349 9.331501e-17 -6.749049 42.49314 9.331501e-17 -3.902927 42.65211 7.112 -1.302594 42.672 58.674 -2.156308e-14 42.65211 7.112 1.302594 42.5878 58.674 2.679397 42.49314 7.112 3.902927 42.33552 58.674 5.34822 41.91616 58.674 7.995935 41.33138 58.674 10.61209 42.1349 9.331501e-17 6.749049 42.49314 9.331501e-17 3.902927 41.58625 9.331501e-17 9.564672 40.84968 9.331501e-17 12.33707 40.58348 58.674 13.18637 39.9285 9.331501e-17 15.05372 39.67542 58.674 15.70861 38.82688 9.331501e-17 17.70234 38.61078 58.674 18.16885 37.5498 9.331501e-17 20.27096 37.39376 58.674 20.55739 36.10303 9.331501e-17 22.74798 36.02916 58.674 22.8648 34.49311 9.331501e-17 25.12219 34.52237 58.674 25.08197 32.87934 58.674 27.20016 32.72732 9.331501e-17 27.38288 31.10655 58.674 29.21099 30.81363 9.331501e-17 29.51982 29.21099 58.674 31.10655 28.76068 9.331501e-17 31.52337 27.20016 58.674 32.87934 26.57777 9.331501e-17 33.38445 25.08197 58.674 34.52237 24.27475 9.331501e-17 35.09467 22.8648 58.674 36.02916 21.86203 9.331501e-17 36.6463 20.55739 58.674 37.39376 19.35052 9.331501e-17 38.03231 18.16885 58.674 38.61078 16.75156 9.331501e-17 39.24646 15.70861 58.674 39.67542 14.0769 9.331501e-17 40.28325 13.18637 58.674 40.58348 11.33862 9.331501e-17 41.138 10.61209 58.674 41.33138 8.549109 9.331501e-17 41.80685 7.995935 58.674 41.91616 5.720961 9.331501e-17 42.28676 5.34822 58.674 42.33552 2.866958 9.331501e-17 42.57558 2.679397 58.674 42.5878 5.225813e-15 9.331501e-17 42.672 5.225813e-15 58.674 42.672 -8.636 4.445 2.6543 -4.936426 4.445 2.6543 -4.945175 4.322422 2.651426 -4.969733 4.201827 2.643125 -8.636 3.758017 2.563857 -5.055558 3.973728 2.612128 -8.636 3.11785 2.298691 -5.352704 3.496331 2.479008 -5.723514 3.032064 2.247802 -8.636 2.568126 1.876873 -6.08817 2.618491 1.925922 -8.636 2.146309 1.32715 -6.381555 2.297924 1.560569 -6.570328 2.095412 1.234742 -8.636 1.881143 0.6869834 -6.720112 1.936251 0.8667452 -8.636 1.7907 4.87587e-16 -6.819214 1.831556 0.463945 -6.8577 1.791016 0.04099979 -8.636 1.881143 -0.6869834 -6.824892 1.82557 -0.4290223 -8.636 2.146309 -1.32715 -6.700997 1.956498 -0.9231643 -8.636 2.568126 -1.876873 -6.484295 2.187409 -1.395823 -8.636 3.11785 -2.298691 -6.137464 2.564005 -1.872763 -5.739622 3.014412 -2.235784 -8.636 3.758017 -2.563857 -5.377319 3.463268 -2.466079 -5.150717 3.796788 -2.573955 -8.636 4.445 -2.6543 -5.025794 4.040426 -2.623247 -4.961078 4.237513 -2.64613 -4.936426 4.445 -2.6543 35.79968 0 1.925053 35.79968 2.617575 1.925053 36.02206 2.454397 1.755792 36.10613 0 1.706884 36.26609 2.351837 1.632173 36.4567 0 1.570428 36.51107 2.295878 1.558088 36.6692 2.277797 1.532715 36.83 0 1.524 36.83 2.271815 1.524 0 5.588 -39.28491 0 0 -39.28491 0.5170454 0 -39.21684 0.5170454 5.588 -39.21684 0.998855 5.588 -39.01727 0.998855 0 -39.01727 1.412594 5.588 -38.69979 1.412594 0 -38.69979 1.730068 5.588 -38.28606 1.730068 0 -38.28606 1.92964 5.588 -37.80424 1.92964 0 -37.80424 1.99771 5.588 -37.2872 1.99771 4.66575e-17 -37.2872 -0.5170454 5.588 38.45484 2.446489e-16 5.588 38.52291 2.446489e-16 0 38.52291 -0.5170454 0 38.45484 -1.412594 5.588 37.93779 -0.998855 5.588 38.25527 -0.998855 0 38.25527 -1.412594 0 37.93779 -1.730068 5.588 37.52406 -1.730068 0 37.52406 -1.92964 5.588 37.04224 -1.92964 0 37.04224 -1.99771 5.588 36.5252 -1.99771 0 36.5252 -1.92964 5.588 36.00816 -1.92964 0 36.00816 -1.730068 5.588 35.52634 -1.730068 0 35.52634 -1.412594 5.588 35.11261 -1.412594 0 35.11261 -0.998855 5.588 34.79513 -0.998855 0 34.79513 -0.5170454 5.588 34.59556 -0.5170454 0 34.59556 0 5.588 34.52749 0 0 34.52749 -25.81824 12.954 27.83754 -25.81824 3.577075e-17 27.83754 -26.34087 3.577075e-17 27.76873 -26.34087 12.954 27.76873 -26.82789 12.954 27.567 -27.2461 12.954 27.2461 -26.82789 3.577075e-17 27.567 -27.2461 3.577075e-17 27.2461 -27.567 12.954 26.82789 -27.567 3.577075e-17 26.82789 -27.76873 12.954 26.34087 -27.83754 12.954 25.81824 -27.76873 3.577075e-17 26.34087 -27.83754 3.577075e-17 25.81824 -27.76873 12.954 25.2956 -27.76873 3.577075e-17 25.2956 -27.567 12.954 24.80859 -27.567 3.577075e-17 24.80859 -27.2461 12.954 24.39038 -27.2461 3.577075e-17 24.39038 -26.82789 12.954 24.06947 -26.82789 3.577075e-17 24.06947 -26.34087 12.954 23.86774 -26.34087 3.577075e-17 23.86774 -25.81824 12.954 23.79894 -25.81824 3.577075e-17 23.79894 25.81824 12.954 -23.79894 25.81824 3.577075e-17 -23.79894 25.2956 3.577075e-17 -23.86774 25.2956 12.954 -23.86774 24.80859 12.954 -24.06947 24.39038 12.954 -24.39038 24.80859 3.577075e-17 -24.06947 24.39038 3.577075e-17 -24.39038 24.06947 12.954 -24.80859 24.06947 3.577075e-17 -24.80859 23.86774 12.954 -25.2956 23.79894 12.954 -25.81824 23.86774 3.577075e-17 -25.2956 23.79894 3.577075e-17 -25.81824 23.86774 12.954 -26.34087 23.86774 3.577075e-17 -26.34087 24.06947 12.954 -26.82789 24.06947 3.577075e-17 -26.82789 24.39038 12.954 -27.2461 24.39038 3.577075e-17 -27.2461 24.80859 12.954 -27.567 24.80859 3.577075e-17 -27.567 25.2956 12.954 -27.76873 25.2956 3.577075e-17 -27.76873 25.81824 12.954 -27.83754 25.81824 3.577075e-17 -27.83754 25.81824 12.954 27.83754 25.81824 3.577075e-17 27.83754 25.2956 3.577075e-17 27.76873 25.2956 12.954 27.76873 24.80859 12.954 27.567 24.39038 12.954 27.2461 24.80859 3.577075e-17 27.567 24.39038 3.577075e-17 27.2461 24.06947 12.954 26.82789 24.06947 3.577075e-17 26.82789 23.86774 12.954 26.34087 23.79894 12.954 25.81824 23.86774 3.577075e-17 26.34087 23.79894 3.577075e-17 25.81824 23.86774 12.954 25.2956 23.86774 3.577075e-17 25.2956 24.06947 12.954 24.80859 24.06947 3.577075e-17 24.80859 24.39038 12.954 24.39038 24.39038 3.577075e-17 24.39038 24.80859 12.954 24.06947 24.80859 3.577075e-17 24.06947 25.2956 12.954 23.86774 25.2956 3.577075e-17 23.86774 25.81824 12.954 23.79894 25.81824 3.577075e-17 23.79894 -25.81824 12.954 -23.79894 -25.81824 3.577075e-17 -23.79894 -26.34087 3.577075e-17 -23.86774 -26.34087 12.954 -23.86774 -26.82789 12.954 -24.06947 -27.2461 12.954 -24.39038 -26.82789 3.577075e-17 -24.06947 -27.2461 3.577075e-17 -24.39038 -27.567 12.954 -24.80859 -27.567 3.577075e-17 -24.80859 -27.76873 12.954 -25.2956 -27.83754 12.954 -25.81824 -27.76873 3.577075e-17 -25.2956 -27.83754 3.577075e-17 -25.81824 -27.76873 12.954 -26.34087 -27.76873 3.577075e-17 -26.34087 -27.567 12.954 -26.82789 -27.567 3.577075e-17 -26.82789 -27.2461 12.954 -27.2461 -27.2461 3.577075e-17 -27.2461 -26.82789 12.954 -27.567 -26.82789 3.577075e-17 -27.567 -26.34087 12.954 -27.76873 -26.34087 3.577075e-17 -27.76873 -25.81824 12.954 -27.83754 -25.81824 3.577075e-17 -27.83754 20.35442 6.096 30.37033 21.01839 6.096 30.45774 21.01839 0 30.45774 20.35442 0 30.37033 19.73569 6.096 30.11405 19.73569 0 30.11405 19.20438 6.096 29.70636 19.20438 0 29.70636 18.79669 6.096 29.17505 18.79669 0 29.17505 18.5404 6.096 28.55632 18.5404 0 28.55632 18.45299 6.096 27.89235 18.45299 0 27.89235 18.5404 6.096 27.22837 18.5404 0 27.22837 18.79669 6.096 26.60965 19.20438 6.096 26.07833 18.79669 0 26.60965 19.20438 0 26.07833 19.73569 6.096 25.67064 19.73569 0 25.67064 20.35442 6.096 25.41436 20.35442 0 25.41436 21.01839 6.096 25.32694 21.01839 0 25.32694 27.22837 6.096 -18.5404 27.89235 6.096 -18.45299 27.89235 0 -18.45299 26.60965 6.096 -18.79669 27.22837 0 -18.5404 26.60965 0 -18.79669 26.07833 6.096 -19.20438 26.07833 0 -19.20438 25.67064 6.096 -19.73569 25.67064 0 -19.73569 25.41436 6.096 -20.35442 25.41436 0 -20.35442 25.32694 6.096 -21.01839 25.41436 6.096 -21.68236 25.32694 0 -21.01839 25.67064 6.096 -22.30109 25.41436 0 -21.68236 26.07833 6.096 -22.8324 25.67064 0 -22.30109 26.07833 0 -22.8324 26.60965 6.096 -23.24009 26.60965 0 -23.24009 27.22837 6.096 -23.49638 27.22837 0 -23.49638 27.89235 6.096 -23.58379 27.89235 0 -23.58379 -21.01839 6.096 -25.32694 -21.01839 0 -25.32694 -21.68236 0 -25.41436 -21.68236 6.096 -25.41436 -22.30109 6.096 -25.67064 -22.30109 0 -25.67064 -22.8324 6.096 -26.07833 -22.8324 0 -26.07833 -23.24009 6.096 -26.60965 -23.24009 0 -26.60965 -23.49638 6.096 -27.22837 -23.49638 0 -27.22837 -23.58379 6.096 -27.89235 -23.58379 0 -27.89235 -23.49638 6.096 -28.55632 -23.49638 0 -28.55632 -23.24009 6.096 -29.17505 -23.24009 0 -29.17505 -22.8324 6.096 -29.70636 -22.8324 0 -29.70636 -22.30109 6.096 -30.11405 -22.30109 0 -30.11405 -21.68236 6.096 -30.37033 -21.68236 0 -30.37033 -21.01839 6.096 -30.45774 -21.01839 0 -30.45774 -28.55632 6.096 23.49638 -27.89235 6.096 23.58379 -27.89235 0 23.58379 -28.55632 0 23.49638 -29.17505 6.096 23.24009 -29.17505 0 23.24009 -29.70636 6.096 22.8324 -29.70636 0 22.8324 -30.11405 6.096 22.30109 -30.11405 0 22.30109 -30.37033 6.096 21.68236 -30.37033 0 21.68236 -30.45774 6.096 21.01839 -30.45774 0 21.01839 -30.37033 6.096 20.35442 -30.37033 0 20.35442 -30.11405 6.096 19.73569 -30.11405 0 19.73569 -29.70636 6.096 19.20438 -29.70636 0 19.20438 -29.17505 6.096 18.79669 -29.17505 0 18.79669 -28.55632 6.096 18.5404 -28.55632 0 18.5404 -27.89235 6.096 18.45299 -27.89235 0 18.45299 -27.22837 0 18.5404 -27.22837 6.096 18.5404 -26.60965 6.096 18.79669 -26.60965 0 18.79669 -26.07833 6.096 19.20438 -26.07833 0 19.20438 -25.67064 6.096 19.73569 -25.67064 0 19.73569 -25.41436 6.096 20.35442 -25.41436 0 20.35442 -25.32694 6.096 21.01839 -25.32694 0 21.01839 -25.41436 6.096 21.68236 -25.67064 6.096 22.30109 -25.41436 0 21.68236 -26.07833 6.096 22.8324 -25.67064 0 22.30109 -26.60965 6.096 23.24009 -26.07833 0 22.8324 -26.60965 0 23.24009 -27.22837 6.096 23.49638 -27.22837 0 23.49638 -20.35442 6.096 -30.37033 -20.35442 0 -30.37033 -19.73569 6.096 -30.11405 -19.73569 0 -30.11405 -19.20438 6.096 -29.70636 -19.20438 0 -29.70636 -18.79669 6.096 -29.17505 -18.79669 0 -29.17505 -18.5404 6.096 -28.55632 -18.5404 0 -28.55632 -18.45299 6.096 -27.89235 -18.45299 0 -27.89235 -18.5404 6.096 -27.22837 -18.79669 6.096 -26.60965 -18.5404 0 -27.22837 -18.79669 0 -26.60965 -19.20438 6.096 -26.07833 -19.20438 0 -26.07833 -19.73569 6.096 -25.67064 -20.35442 6.096 -25.41436 -19.73569 0 -25.67064 -20.35442 0 -25.41436 28.55632 6.096 -23.49638 28.55632 0 -23.49638 29.17505 6.096 -23.24009 29.17505 0 -23.24009 29.70636 6.096 -22.8324 29.70636 0 -22.8324 30.11405 6.096 -22.30109 30.11405 0 -22.30109 30.37033 6.096 -21.68236 30.37033 0 -21.68236 30.45774 6.096 -21.01839 30.45774 0 -21.01839 30.37033 6.096 -20.35442 30.37033 0 -20.35442 30.11405 6.096 -19.73569 29.70636 6.096 -19.20438 30.11405 0 -19.73569 29.70636 0 -19.20438 29.17505 6.096 -18.79669 29.17505 0 -18.79669 28.55632 6.096 -18.5404 28.55632 0 -18.5404 21.68236 0 25.41436 21.68236 6.096 25.41436 22.30109 6.096 25.67064 22.30109 0 25.67064 22.8324 6.096 26.07833 22.8324 0 26.07833 23.24009 6.096 26.60965 23.24009 0 26.60965 23.49638 6.096 27.22837 23.49638 0 27.22837 23.58379 6.096 27.89235 23.58379 0 27.89235 23.49638 6.096 28.55632 23.24009 6.096 29.17505 23.49638 0 28.55632 22.8324 6.096 29.70636 23.24009 0 29.17505 22.30109 6.096 30.11405 22.8324 0 29.70636 22.30109 0 30.11405 21.68236 6.096 30.37033 21.68236 0 30.37033 -25.2956 12.954 -27.76873 -25.2956 3.577075e-17 -27.76873 -24.80859 12.954 -27.567 -24.80859 3.577075e-17 -27.567 -24.39038 12.954 -27.2461 -24.39038 3.577075e-17 -27.2461 -24.06947 12.954 -26.82789 -24.06947 3.577075e-17 -26.82789 -23.86774 12.954 -26.34087 -23.86774 3.577075e-17 -26.34087 -23.79894 12.954 -25.81824 -23.79894 3.577075e-17 -25.81824 -23.86774 12.954 -25.2956 -23.86774 3.577075e-17 -25.2956 -24.06947 12.954 -24.80859 -24.06947 3.577075e-17 -24.80859 -24.39038 12.954 -24.39038 -24.39038 3.577075e-17 -24.39038 -24.80859 12.954 -24.06947 -24.80859 3.577075e-17 -24.06947 -25.2956 12.954 -23.86774 -25.2956 3.577075e-17 -23.86774 26.34087 12.954 23.86774 26.34087 3.577075e-17 23.86774 26.82789 12.954 24.06947 26.82789 3.577075e-17 24.06947 27.2461 12.954 24.39038 27.2461 3.577075e-17 24.39038 27.567 12.954 24.80859 27.567 3.577075e-17 24.80859 27.76873 12.954 25.2956 27.76873 3.577075e-17 25.2956 27.83754 12.954 25.81824 27.83754 3.577075e-17 25.81824 27.76873 12.954 26.34087 27.76873 3.577075e-17 26.34087 27.567 12.954 26.82789 27.567 3.577075e-17 26.82789 27.2461 12.954 27.2461 27.2461 3.577075e-17 27.2461 26.82789 12.954 27.567 26.82789 3.577075e-17 27.567 26.34087 12.954 27.76873 26.34087 3.577075e-17 27.76873 26.34087 12.954 -27.76873 26.34087 3.577075e-17 -27.76873 26.82789 12.954 -27.567 26.82789 3.577075e-17 -27.567 27.2461 12.954 -27.2461 27.2461 3.577075e-17 -27.2461 27.567 12.954 -26.82789 27.567 3.577075e-17 -26.82789 27.76873 12.954 -26.34087 27.76873 3.577075e-17 -26.34087 27.83754 12.954 -25.81824 27.83754 3.577075e-17 -25.81824 27.76873 12.954 -25.2956 27.76873 3.577075e-17 -25.2956 27.567 12.954 -24.80859 27.567 3.577075e-17 -24.80859 27.2461 12.954 -24.39038 27.2461 3.577075e-17 -24.39038 26.82789 12.954 -24.06947 26.82789 3.577075e-17 -24.06947 26.34087 12.954 -23.86774 26.34087 3.577075e-17 -23.86774 -25.2956 12.954 23.86774 -25.2956 3.577075e-17 23.86774 -24.80859 12.954 24.06947 -24.80859 3.577075e-17 24.06947 -24.39038 12.954 24.39038 -24.39038 3.577075e-17 24.39038 -24.06947 12.954 24.80859 -24.06947 3.577075e-17 24.80859 -23.86774 12.954 25.2956 -23.86774 3.577075e-17 25.2956 -23.79894 12.954 25.81824 -23.79894 3.577075e-17 25.81824 -23.86774 12.954 26.34087 -23.86774 3.577075e-17 26.34087 -24.06947 12.954 26.82789 -24.06947 3.577075e-17 26.82789 -24.39038 12.954 27.2461 -24.39038 3.577075e-17 27.2461 -24.80859 12.954 27.567 -24.80859 3.577075e-17 27.567 -25.2956 12.954 27.76873 -25.2956 3.577075e-17 27.76873 0.5170454 0 34.59556 0.5170454 5.588 34.59556 0.998855 5.588 34.79513 0.998855 0 34.79513 1.412594 5.588 35.11261 1.412594 0 35.11261 1.730068 5.588 35.52634 1.730068 0 35.52634 1.92964 5.588 36.00816 1.92964 0 36.00816 1.99771 5.588 36.5252 1.99771 0 36.5252 1.92964 5.588 37.04224 1.92964 0 37.04224 1.412594 5.588 37.93779 1.730068 5.588 37.52406 1.730068 0 37.52406 0.998855 5.588 38.25527 1.412594 0 37.93779 0.998855 0 38.25527 0.5170454 5.588 38.45484 0.5170454 0 38.45484 1.99771 0 -35.7632 1.99771 5.588 -35.7632 1.92964 0 -35.24615 1.92964 5.588 -35.24615 1.412594 5.588 -34.35061 1.730068 5.588 -34.76434 1.730068 0 -34.76434 0.998855 5.588 -34.03313 1.412594 0 -34.35061 0.5170454 5.588 -33.83356 0.998855 0 -34.03313 4.558826e-16 5.588 -33.76549 0.5170454 0 -33.83356 -0.5170454 5.588 -33.83356 -8.291426e-16 0 -33.76549 -0.998855 5.588 -34.03313 -0.5170454 0 -33.83356 -1.412594 5.588 -34.35061 -0.998855 0 -34.03313 -1.730068 5.588 -34.76434 -1.412594 0 -34.35061 -1.92964 5.588 -35.24615 -1.730068 0 -34.76434 -1.92964 0 -35.24615 -1.99771 5.588 -35.7632 -1.99771 0 -35.7632 -1.99771 0 -37.2872 -1.99771 5.588 -37.2872 -1.92964 0 -37.80424 -1.92964 5.588 -37.80424 -1.730068 5.588 -38.28606 -1.730068 0 -38.28606 -1.412594 5.588 -38.69979 -1.412594 0 -38.69979 -0.998855 5.588 -39.01727 -0.998855 0 -39.01727 -0.5170454 5.588 -39.21684 -0.5170454 0 -39.21684 -9.161898 0.381 7.352307 -8.779023 0.381 7.510899 -22.59215 0.381 22.80499 -8.368148 0.381 7.564991 -24.17965 0.381 21.21749 -9.49068 0.381 7.100023 21.16309 0.381 -24.18501 22.75059 0.381 -22.59751 21.16309 0.381 -4.500009 -23.71468 0.381 -23.72004 -23.3859 0.381 -23.97232 -23.96696 0.381 -23.39126 22.75059 0.381 -6.087509 -8.368148 0.381 -4.500009 -23.00302 0.381 -24.13092 -22.59215 0.381 -24.18501 -24.12556 0.381 -23.00838 -24.17965 0.381 -22.59751 22.6965 0.381 -5.676633 22.28562 0.381 -4.964976 22.53791 0.381 -5.293758 21.95684 0.381 -4.712693 21.57397 0.381 -4.554101 -9.161898 0.381 -4.287324 -9.49068 0.381 -4.03504 -9.742964 0.381 -3.706259 -9.901555 0.381 -3.323384 -8.779023 0.381 -4.445916 33.86309 0.381 7.564991 34.27396 0.381 7.619084 34.65684 0.381 7.777676 -9.955648 0.381 -2.912508 35.3965 0.381 8.741616 34.98562 0.381 8.02996 35.23791 0.381 8.358742 35.45059 0.381 9.152492 -9.955648 0.381 5.977491 33.86309 0.381 22.80499 -9.901555 0.381 6.388367 -9.742964 0.381 6.771242 35.45059 0.381 21.21749 35.3965 0.381 21.62837 35.23791 0.381 22.01124 34.27396 0.381 22.7509 34.65684 0.381 22.59231 34.98562 0.381 22.34002 -23.71468 0.381 22.34002 -23.96696 0.381 22.01124 -23.3859 0.381 22.59231 -24.12556 0.381 21.62837 22.28562 0.381 -23.72004 22.53791 0.381 -23.39126 22.6965 0.381 -23.00838 -23.00302 0.381 22.7509 21.57397 0.381 -24.13092 21.95684 0.381 -23.97232 35.45059 0 9.152492 35.45059 0 21.21749 33.86309 0 7.564991 34.27396 0 7.619084 34.65684 0 7.777676 34.98562 0 8.02996 35.23791 0 8.358742 35.3965 0 8.741616 -8.368148 0 7.564991 -8.779023 0 7.510899 -9.161898 0 7.352307 -9.49068 0 7.100023 -9.742964 0 6.771242 -9.901555 0 6.388367 -9.955648 0 5.977491 -9.955648 0 -2.912508 -9.901555 0 -3.323384 -9.742964 0 -3.706259 -9.49068 0 -4.03504 -9.161898 0 -4.287324 -8.779023 0 -4.445916 -8.368148 0 -4.500009 21.16309 0 -4.500009 22.75059 0 -6.087509 22.6965 0 -5.676633 22.53791 0 -5.293758 22.28562 0 -4.964976 21.95684 0 -4.712693 21.57397 0 -4.554101 22.75059 0 -22.59751 21.16309 0 -24.18501 21.57397 0 -24.13092 21.95684 0 -23.97232 22.28562 0 -23.72004 22.53791 0 -23.39126 22.6965 0 -23.00838 -22.59215 0 -24.18501 -24.17965 0 -22.59751 -24.12556 0 -23.00838 -23.96696 0 -23.39126 -23.71468 0 -23.72004 -23.3859 0 -23.97232 -23.00302 0 -24.13092 -24.17965 0 21.21749 -22.59215 0 22.80499 -23.00302 0 22.7509 -23.3859 0 22.59231 -23.71468 0 22.34002 -23.96696 0 22.01124 -24.12556 0 21.62837 33.86309 4.66575e-17 22.80499 35.3965 0 21.62837 35.23791 0 22.01124 34.98562 0 22.34002 34.65684 0 22.59231 34.27396 0 22.7509 39.46002 3.048 2.732823 40.09269 3.048 2.794 40.09269 0 2.794 38.85079 3.048 2.551558 39.28386 0 2.693406 38.28758 3.048 2.256922 38.52431 0 2.397752 37.86032 2.617575 1.925053 37.86032 0 1.925053 37.11913 2.291482 1.55202 37.2033 0 1.570428 37.39302 2.35156 1.631818 37.55387 0 1.706884 37.63612 2.45362 1.754886 37.75486 2.528992 1.836883 35.37242 3.048 2.256922 34.80921 3.048 2.551558 34.19998 3.048 2.732823 33.56731 3.048 2.794 35.13569 0 2.397752 34.37614 0 2.693406 33.56731 0 2.794 -28.28781 58.674 -28.28781 -32.87934 58.674 -27.20016 -34.52237 58.674 -25.08197 -31.10655 58.674 -29.21099 -29.21099 58.674 -31.10655 -27.20016 58.674 -32.87934 -25.08197 58.674 -34.52237 -20.0025 58.674 -34.64535 -22.8648 58.674 -36.02916 -20.55739 58.674 -37.39376 -18.16885 58.674 -38.61078 -15.70861 58.674 -39.67542 -34.64535 58.674 -20.0025 -38.61078 58.674 -18.16885 -39.67542 58.674 -15.70861 -37.39376 58.674 -20.55739 -36.02916 58.674 -22.8648 -10.35406 58.674 -38.64186 -13.18637 58.674 -40.58348 -10.61209 58.674 -41.33138 -7.995935 58.674 -41.91616 -38.64186 58.674 -10.35406 -41.33138 58.674 -10.61209 -41.91616 58.674 -7.995935 -40.58348 58.674 -13.18637 -42.33552 58.674 -5.34822 -5.34822 58.674 -42.33552 -40.005 58.674 7.348799e-15 -42.5878 58.674 -2.679397 -42.672 58.674 -6.796198e-14 0 58.674 -40.005 -2.679397 58.674 -42.5878 -42.5878 58.674 2.679397 -42.33552 58.674 5.34822 -38.64186 58.674 10.35406 -41.91616 58.674 7.995935 -41.33138 58.674 10.61209 10.35406 58.674 -38.64186 -40.58348 58.674 13.18637 -39.67542 58.674 15.70861 -34.64535 58.674 20.0025 -38.61078 58.674 18.16885 -37.39376 58.674 20.55739 20.0025 58.674 -34.64535 -36.02916 58.674 22.8648 -34.52237 58.674 25.08197 -28.28781 58.674 28.28781 -32.87934 58.674 27.20016 -31.10655 58.674 29.21099 28.28781 58.674 -28.28781 -29.21099 58.674 31.10655 -27.20016 58.674 32.87934 -25.08197 58.674 34.52237 -20.0025 58.674 34.64535 -22.8648 58.674 36.02916 34.64535 58.674 -20.0025 -20.55739 58.674 37.39376 -18.16885 58.674 38.61078 -15.70861 58.674 39.67542 -10.35406 58.674 38.64186 -13.18637 58.674 40.58348 38.64186 58.674 -10.35406 -10.61209 58.674 41.33138 -7.995935 58.674 41.91616 -5.34822 58.674 42.33552 4.8992e-15 58.674 40.005 -2.679397 58.674 42.5878 40.005 58.674 -1.133249e-14 10.35406 58.674 38.64186 38.64186 58.674 10.35406 20.0025 58.674 34.64535 34.64535 58.674 20.0025 28.28781 58.674 28.28781 -41.9083 9.525 -5.132117e-15 -42.6703 9.525 0.381 -42.67181 9.525 0.1270015 -42.67181 9.525 -0.1270015 -42.6703 9.525 -0.381 -42.6703 0 -0.381 -41.9083 0 -5.132117e-15 -4.957077 4.634912 -2.647489 -8.636 5.131983 -2.563857 -5.012176 4.816113 -2.628217 -5.155254 5.10088 -2.572041 -8.636 5.77215 -2.298691 -5.51275 5.601703 -2.389022 -8.636 6.321874 -1.876873 -5.88803 6.046901 -2.116461 -6.202544 6.397505 -1.798054 -8.636 6.743691 -1.32715 -6.416596 6.629854 -1.507238 -6.599259 6.825424 -1.174288 -8.636 7.008857 -0.6869834 -6.741484 6.976366 -0.7982028 -8.636 7.0993 -7.51902e-16 -6.830675 7.070525 -0.3890098 -6.857736 7.099022 0.03789413 -8.636 7.008857 0.6869834 -6.819247 7.058478 0.4633791 -8.636 6.743691 1.32715 -6.705734 6.938522 0.9096787 -8.636 6.321874 1.876873 -6.490084 6.708799 1.385922 -8.636 5.77215 2.298691 -6.141726 6.33069 1.867998 -5.745555 5.882533 2.231324 -8.636 5.131983 2.563857 -5.379715 5.429938 2.464809 -5.153111 5.097307 2.572957 -5.026749 4.852177 2.62288 -4.961202 4.653866 2.646039 -6.858 7.112 7.914758e-16 -6.762797 7.112 -0.7231404 -4.78714 7.112 2.698797 -4.064 7.112 2.794 -4.064 0 2.794 -6.858 0 5.132494e-16 -6.762797 0 0.7231404 -6.483675 7.112 -1.397 -5.461 7.112 2.419675 -6.762797 0 -0.7231404 -6.039656 7.112 -1.975656 -4.78714 0 2.698797 -6.483675 0 -1.397 -6.039656 7.112 1.975656 -5.461 7.112 -2.419675 -5.461 0 2.419675 -6.483675 7.112 1.397 -6.039656 0 -1.975656 -4.78714 7.112 -2.698797 -6.039656 0 1.975656 -6.762797 7.112 0.7231404 -6.483675 0 1.397 -5.461 0 -2.419675 -4.064 7.112 -2.794 -4.78714 0 -2.698797 -4.064 0 -2.794 42.47997 4.66575e-17 -3.622638 42.47997 7.112 -3.622638 42.39064 7.112 -3.35664 42.39064 4.66575e-17 -3.35664 42.23195 7.112 -3.125222 42.23195 4.66575e-17 -3.125222 42.01602 4.66575e-17 -2.946035 42.01602 7.112 -2.946035 41.75931 4.66575e-17 -2.832748 41.75931 7.112 -2.832748 41.4814 7.112 -2.794 41.4814 0 -2.794 26.43032 0 -1.925053 26.43032 2.617575 -1.925053 26.20824 2.454565 -1.755982 26.05663 0 -1.672714 25.96458 2.352045 -1.632439 25.71996 2.296039 -1.558308 25.62546 0 -1.540769 25.46097 2.272668 -1.525263 25.17454 0 -1.540769 25.19915 2.281184 -1.537565 24.94563 2.322115 -1.593483 24.74337 0 -1.672714 24.71233 2.396656 -1.688068 24.52744 2.493151 -1.798747 24.36968 0 -1.925053 24.36968 2.617575 -1.925053 22.76998 3.048 -2.732823 22.13731 3.048 -2.794 22.13731 0 -2.794 23.37921 3.048 -2.551558 22.94614 0 -2.693406 23.94242 3.048 -2.256922 23.70569 0 -2.397752 26.85758 3.048 -2.256922 27.09431 0 -2.397752 27.42079 3.048 -2.551558 28.03002 3.048 -2.732823 27.85386 0 -2.693406 28.66269 3.048 -2.794 28.66269 0 -2.794 41.4814 7.112 2.794 41.75931 7.112 2.832748 42.01602 7.112 2.946035 42.23195 7.112 3.125222 42.39064 7.112 3.35664 42.47997 7.112 3.622638 41.4814 0 2.794 41.75931 4.66575e-17 2.832748 42.01602 4.66575e-17 2.946035 42.23195 4.66575e-17 3.125222 42.39064 4.66575e-17 3.35664 42.47997 4.66575e-17 3.622638 -2.775041 9.331501e-17 42.58167 -5.538333 9.331501e-17 42.31107 -8.278178 9.331501e-17 41.86134 -10.98298 9.331501e-17 41.23438 -13.64128 9.331501e-17 40.43285 -16.24183 9.331501e-17 39.46014 -18.77361 9.331501e-17 38.32037 -21.22592 9.331501e-17 37.01837 -23.58836 9.331501e-17 35.55965 -25.85094 9.331501e-17 33.95038 -28.00408 9.331501e-17 32.19738 -30.03865 9.331501e-17 30.30807 -31.94606 9.331501e-17 28.29044 -33.71822 9.331501e-17 26.15304 -35.34762 9.331501e-17 23.90492 -36.82738 9.331501e-17 21.55559 -38.15123 9.331501e-17 19.11501 -39.31355 9.331501e-17 16.5935 -40.30944 9.331501e-17 14.00174 -41.13467 9.331501e-17 11.3507 -41.78576 9.331501e-17 8.65161 -42.25993 9.331501e-17 5.91589 -42.5552 9.331501e-17 3.155124 -42.6703 0 0.381 -42.5552 9.331501e-17 -3.155124 -42.25993 9.331501e-17 -5.91589 -41.78576 9.331501e-17 -8.65161 -41.13467 9.331501e-17 -11.3507 -40.30944 9.331501e-17 -14.00174 -39.31355 9.331501e-17 -16.5935 -38.15123 9.331501e-17 -19.11501 -36.82738 9.331501e-17 -21.55559 -35.34762 9.331501e-17 -23.90492 -33.71822 9.331501e-17 -26.15304 -31.94606 9.331501e-17 -28.29044 -30.03865 9.331501e-17 -30.30807 -28.00408 9.331501e-17 -32.19738 -25.85094 9.331501e-17 -33.95038 -23.58836 9.331501e-17 -35.55965 -21.22592 9.331501e-17 -37.01837 -18.77361 9.331501e-17 -38.32037 -16.24183 9.331501e-17 -39.46014 -13.64128 9.331501e-17 -40.43285 -10.98298 9.331501e-17 -41.23438 -8.278178 9.331501e-17 -41.86134 -5.538333 9.331501e-17 -42.31107 -2.775041 9.331501e-17 -42.58167 13.42387 0 1.706884 13.07331 0 1.570428 13.73032 0 1.925053 14.39431 0 2.397752 10.24614 0 2.693406 11.00569 0 2.397752 15.15386 0 2.693406 15.96269 0 2.794 9.437311 0 2.794 9.437311 3.048 2.794 15.96269 3.048 2.794 15.33002 3.048 2.732823 14.72079 3.048 2.551558 14.15758 3.048 2.256922 13.73032 2.617575 1.925053 12.98913 2.291482 1.55202 13.26302 2.35156 1.631818 13.50611 2.45362 1.754886 13.62486 2.528992 1.836883 11.24242 3.048 2.256922 10.67921 3.048 2.551558 10.06998 3.048 2.732823 - - - - - - - - - - - - - - -

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

-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/ros/src/system/gazebo/catvehicle/package.xml b/ros/src/system/gazebo/catvehicle/package.xml deleted file mode 100644 index fe05b494d03..00000000000 --- a/ros/src/system/gazebo/catvehicle/package.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - catvehicle - 1.6.3 - The catvehicle package (formerly known as azcar_sim) - - Jonathan Sprinkle - - BSD - - Jonathan Sprinkle - Rahul Bhadani - Sam Taylor - Kennon McKeever - Alex Warren - Swati Munjal - Ashley Kang - Matt Bunting - Sean Whitsitt - - catkin - autoware_build_flags - - controller_manager - gazebo_ros_control - geometry_msgs - position_controllers - roscpp - rospy - sensor_msgs - std_msgs - tf - transmission_interface - velocity_controllers - velodyne_pointcloud - - controller_manager - gazebo_ros_control - geometry_msgs - position_controllers - roscpp - rospy - sensor_msgs - std_msgs - tf - transmission_interface - velocity_controllers - velodyne_pointcloud - - diff --git a/ros/src/system/gazebo/catvehicle/simulink/build_ros_model.sh b/ros/src/system/gazebo/catvehicle/simulink/build_ros_model.sh deleted file mode 100755 index 84606467702..00000000000 --- a/ros/src/system/gazebo/catvehicle/simulink/build_ros_model.sh +++ /dev/null @@ -1,126 +0,0 @@ -#!/bin/bash -# -# Copyright 2014-2015 The MathWorks, Inc. -ARCHIVE=$1 -CATKIN_WS=$2 - -catkinWorkspaceHelp() { - echo "" - echo "You can create a Catkin workspace as follows:" - echo " mkdir -p ~/catkin_ws/src" - echo " cd ~/catkin_ws/src" - echo " catkin_init_workspace" -} - - -commandUsage() { - echo "Usage: $(basename $0) ARCHIVE_NAME... CATKIN_WS..." - echo "Extract and build a C++ ROS node generated from a Simulink model." - echo "ARCHIVE_NAME is the name of the TGZ file generated from the Simulink model." - echo "CATKIN_WS is the full path to your ROS Catkin workspace." - echo "" - echo "Example:" - echo " ./$(basename $0) simulinkmodel.tgz ~/catkin_ws" -} - - -fullUsage() { - commandUsage - catkinWorkspaceHelp - exit -} - - -toLowerCase() { - echo $1 | tr '[A-Z]' '[a-z]' -} - -if [ -z $1 ] || ([ ! -z $1 ] && [ $1 = "-h" ] || [ $1 = "--help" ]) ; then - fullUsage - exit 0 -fi - -if [ ! $# -eq 2 ] ; then - echo "Expected two input arguments. Got $#." - fullUsage - exit 1 -fi - -# Check Catkin workspace -if [ ! -d "$CATKIN_WS" ] ; then - echo "The catkin workspace directory, "$CATKIN_WS", does not exist." - echo "Enter a valid catkin workspace directory." - catkinWorkspaceHelp - exit 1 -fi - -# Sanity check for CATKIN workspace -if [ ! -f "$CATKIN_WS"/src/CMakeLists.txt ] ; then - echo "The Catkin workspace directory, "$CATKIN_WS", is not a valid Catkin workspace." - echo "Enter a valid Catkin workspace directory." - catkinWorkspaceHelp - exit 1 -fi - -# Check Simulink archive -if [ ! -f "$ARCHIVE" ] ; then - echo "The archive, "$ARCHIVE", does not exist." - echo "Enter a valid Simulink model archive (.tgz file)." - echo "" - commandUsage - exit 1 -fi - -# Enforce that $ARCHIVE ends with .tgz, since the model -# name is derived by stripping off the .tgz extension -if [ ${ARCHIVE: -4} != ".tgz" ] ; then - echo "The archive, "$ARCHIVE", does not have a .tgz extension." - echo "Enter a valid Simulink model archive (.tgz file)." - echo "" - commandUsage - exit 1 -fi - -# Check if $ARCHIVE is a valid zip file -gzip -t $ARCHIVE 2> /dev/null -VALID_ZIP=$? -if [ $VALID_ZIP -ne 0 ] ; then - echo "The archive, "$ARCHIVE", is not a valid .tgz (tar zip) file." - echo "" - commandUsage - exit 1 -fi - -# Check for one of the standard files generated from Simulink -# (ert_main.cpp) -tar ztf $ARCHIVE | grep -q ert_main.cpp 2> /dev/null -VALID_SIMULINK_ARCHIVE=$? -if [ $VALID_SIMULINK_ARCHIVE -ne 0 ] ; then - echo "The archive, "$ARCHIVE", is not a valid Simulink model archive (.tgz file)." - echo "" - commandUsage - exit 1 -fi - -# $ARCHIVE appears to be valid. -# Extract and build it - -MODEL_NAME=$(toLowerCase $(basename $ARCHIVE .tgz)) -PROJECT_DIR="$CATKIN_WS/src/$MODEL_NAME" -echo "Catkin project directory: $PROJECT_DIR" - -# Extract files to catkin project directory -mkdir -p "$PROJECT_DIR" -rm -fr "$PROJECT_DIR"/* -tar -C "$PROJECT_DIR" -xf $ARCHIVE - -# Ensure that catkin_make will rebuild the executable -touch "$PROJECT_DIR"/*.cpp - -# Build the Simulink model as a catkin project -CURR_DIR=`pwd` -cd "$CATKIN_WS" -catkin_make "$MODEL_NAME"_node -cd "$CURR_DIR" - -exit 0 diff --git a/ros/src/system/gazebo/catvehicle/simulink/cameraExample.slx b/ros/src/system/gazebo/catvehicle/simulink/cameraExample.slx deleted file mode 100644 index f77cc9a8263..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/simulink/cameraExample.slx and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/simulink/carFollower.slx b/ros/src/system/gazebo/catvehicle/simulink/carFollower.slx deleted file mode 100644 index 20b72f2625e..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/simulink/carFollower.slx and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/simulink/car_speed_tested.slx b/ros/src/system/gazebo/catvehicle/simulink/car_speed_tested.slx deleted file mode 100644 index ccf64478994..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/simulink/car_speed_tested.slx and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/simulink/catvehicle_hoffmannFollower.slx b/ros/src/system/gazebo/catvehicle/simulink/catvehicle_hoffmannFollower.slx deleted file mode 100644 index 02619cbde55..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/simulink/catvehicle_hoffmannFollower.slx and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/simulink/circularPathPrototype.m b/ros/src/system/gazebo/catvehicle/simulink/circularPathPrototype.m deleted file mode 100644 index 3f90fa2c4d3..00000000000 --- a/ros/src/system/gazebo/catvehicle/simulink/circularPathPrototype.m +++ /dev/null @@ -1,12 +0,0 @@ -%% my test file -% To visualize the angles, run this code: -radius=3.6; start=[0 0]; -angles=linspace(-pi,pi,31); -r = radius*exp(angles*1j); -xs = real(r)-radius+start(1); -ys = imag(r)+start(2); -% since the direction of travel is in the 'x' direction, the -% heading (phi) matchines the angle of the circle -phis=(pi/2)+angles; -xends=cos(phis);yends=sin(phis); -figure;plot(xs,ys);hold on; quiver(xs,ys,xends,yends);axis equal;hold off \ No newline at end of file diff --git a/ros/src/system/gazebo/catvehicle/simulink/cmdvel2gazebo.slx b/ros/src/system/gazebo/catvehicle/simulink/cmdvel2gazebo.slx deleted file mode 100644 index 26df550d535..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/simulink/cmdvel2gazebo.slx and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/simulink/controllerTester.slx b/ros/src/system/gazebo/catvehicle/simulink/controllerTester.slx deleted file mode 100644 index 48ce7ad9c14..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/simulink/controllerTester.slx and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/simulink/deadMansSwitch_tester.slx b/ros/src/system/gazebo/catvehicle/simulink/deadMansSwitch_tester.slx deleted file mode 100644 index db15a39736c..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/simulink/deadMansSwitch_tester.slx and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/simulink/obstacleStopper.slx b/ros/src/system/gazebo/catvehicle/simulink/obstacleStopper.slx deleted file mode 100644 index 2d300a780e6..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/simulink/obstacleStopper.slx and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/simulink/plotData.m b/ros/src/system/gazebo/catvehicle/simulink/plotData.m deleted file mode 100644 index b9c2f2bd6bd..00000000000 --- a/ros/src/system/gazebo/catvehicle/simulink/plotData.m +++ /dev/null @@ -1,16 +0,0 @@ -% Author: Jonathan Sprinkle -% plots the distance outputs from a data file - -function plotData( timeseries ) - -% this timeseries is what we have -figure -hold on -plot(timeseries.dist); -plot(timeseries.velConverted); -plot(timeseries.vdot); -plot(timeseries.vout); -plot(timeseries.uTireAngle); -legend({'dist','velConverted','vdot','vout','uTireAngle'}); - -end \ No newline at end of file diff --git a/ros/src/system/gazebo/catvehicle/simulink/plotDistances.m b/ros/src/system/gazebo/catvehicle/simulink/plotDistances.m deleted file mode 100644 index 1f3597c8782..00000000000 --- a/ros/src/system/gazebo/catvehicle/simulink/plotDistances.m +++ /dev/null @@ -1,13 +0,0 @@ -% Author: Jonathan Sprinkle -% plots the distance outputs from a data file - -function plotDistances -load distances.mat -% this timeseries is what we have -figure -hold on -plot(DistanceEstimator.Data__signal_1_); -plot(DistanceEstimator.Data__signal_2_); -legend({'Distance','Angle (rad)'}); - -end \ No newline at end of file diff --git a/ros/src/system/gazebo/catvehicle/simulink/plotDisvout.m b/ros/src/system/gazebo/catvehicle/simulink/plotDisvout.m deleted file mode 100644 index 51b4e4ce37b..00000000000 --- a/ros/src/system/gazebo/catvehicle/simulink/plotDisvout.m +++ /dev/null @@ -1,13 +0,0 @@ -% Author: Jonathan Sprinkle -% plots the distance outputs from a data file - -function plotData( timeseries ) - -% this timeseries is what we have -figure -hold on -plot(timeseries.Data); -plot(timeseries.uVelOut); -legend({'Distance','VelOut'}); - -end \ No newline at end of file diff --git a/ros/src/system/gazebo/catvehicle/simulink/quickExample.slx b/ros/src/system/gazebo/catvehicle/simulink/quickExample.slx deleted file mode 100644 index 1f4fe507d66..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/simulink/quickExample.slx and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/simulink/safeOpenLoopCircle.slx b/ros/src/system/gazebo/catvehicle/simulink/safeOpenLoopCircle.slx deleted file mode 100644 index 0602affcbf6..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/simulink/safeOpenLoopCircle.slx and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/simulink/simpleStateFlowModel.slx b/ros/src/system/gazebo/catvehicle/simulink/simpleStateFlowModel.slx deleted file mode 100644 index a01ce4fe0f6..00000000000 Binary files a/ros/src/system/gazebo/catvehicle/simulink/simpleStateFlowModel.slx and /dev/null differ diff --git a/ros/src/system/gazebo/catvehicle/src/cmdvel2gazebo.py b/ros/src/system/gazebo/catvehicle/src/cmdvel2gazebo.py deleted file mode 100755 index 309d253a257..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/cmdvel2gazebo.py +++ /dev/null @@ -1,163 +0,0 @@ -#!/usr/bin/env python -# -# Author: Jonathan Sprinkle -# Copyright (c) 2015-2016 Arizona Board of Regents -# All rights reserved. -# -# Permission is hereby granted, without written agreement and without -# license or royalty fees, to use, copy, modify, and distribute this -# software and its documentation for any purpose, provided that the -# above copyright notice and the following two paragraphs appear in -# all copies of this software. -# -# IN NO EVENT SHALL THE ARIZONA BOARD OF REGENTS BE LIABLE TO ANY PARTY -# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -# ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -# IF THE ARIZONA BOARD OF REGENTS HAS BEEN ADVISED OF THE POSSIBILITY OF -# SUCH DAMAGE. -# -# THE ARIZONA BOARD OF REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, -# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -# AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER -# IS ON AN "AS IS" BASIS, AND THE ARIZONA BOARD OF REGENTS HAS NO OBLIGATION -# TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -# This node converts cmd_vel inputs to the vehicle to the ROS topics that -# are exposed in Gazebo for moving the vehicle in simulation. Notably, the -# inputs to Gazebo are to joints on the wheel, so there is a multiplier of -# 2.8101 that is applied to the joint's velocity whenever we try to move -# so that the output in Gazebo will match the desired input velocity. - -import rospy -from std_msgs.msg import String, Float64 -from geometry_msgs.msg import Twist, Pose -import sys, getopt, math - -class cmdvel2gazebo: - - def __init__(self,ns): - self.ns = ns - rospy.init_node('cmdvel2gazebo', anonymous=True) - - # the format(ns) looks for the namespace in the ros parameter server, I guess - rospy.Subscriber('cmd_vel'.format(ns), Twist, self.callback) - self.pub_steerL = rospy.Publisher('front_left_steering_position_controller/command'.format(ns), Float64, queue_size=1) - self.pub_steerR = rospy.Publisher('front_right_steering_position_controller/command'.format(ns), Float64, queue_size=1) - self.pub_rearL = rospy.Publisher('joint1_velocity_controller/command'.format(ns), Float64, queue_size=1) - self.pub_rearR = rospy.Publisher('joint2_velocity_controller/command'.format(ns), Float64, queue_size=1) - - # initial velocity and tire angle are 0 - self.x = 0 - self.z = 0 - - # TODO: get wheelbase and treadwidth from SDF or - # params database instead of hardcoded here - - # car Wheelbase (in m) - # simulator value matches the 'real' car - self.L = 2.62 - - # car Tread - # this value is from the car's manual - # self.T=1.55 - - # car Tread - # this value is from the simulator - self.T=1.301 - - # how many seconds delay for the dead man's switch - # TODO: set timeout from launch file or rosparam - self.timeout=rospy.Duration.from_sec(0.2); - self.lastMsg=rospy.Time.now() - - # we want maxsteer to be that of the "inside" tire, and since it is 0.6 in gazebo, we - # set our ideal steering angle max to be less than that, based on geometry - self.maxsteerInside=0.6; - # tan(maxsteerInside) = wheelbase/radius --> solve for max radius at this angle - rMax = self.L/math.tan(self.maxsteerInside); - # radius of inside tire is rMax, so radius of the ideal middle tire (rIdeal) is rMax+treadwidth/2 - rIdeal = rMax+(self.T/2.0) - # tan(angle) = wheelbase/radius - self.maxsteer=math.atan2(self.L,rIdeal) - # the ideal max steering angle we can command is now set - rospy.loginfo(rospy.get_caller_id() + " maximum ideal steering angle set to {0}.".format(self.maxsteer)) - - - def callback(self,data): - # 2.8101 is the gain factor in order to account for mechanical reduction of the tyres - self.x = 2.8101*data.linear.x - # constrain the ideal steering angle such that the ackermann steering is maxed out - self.z = max(-self.maxsteer,min(self.maxsteer,data.angular.z)) - self.lastMsg = rospy.Time.now() - - def publish(self): - # now that these values are published, we - # reset the velocity, so that if we don't hear new - # ones for the next timestep that we time out; note - # that the tire angle will not change - # NOTE: we only set self.x to be 0 after 200ms of timeout - if rospy.Time.now() - self.lastMsg > self.timeout: - # rospy.loginfo(rospy.get_caller_id() + " timed out waiting for new input, setting velocity to 0.") - self.x = 0 - return - - if self.z != 0: - T=self.T - L=self.L - # self.v is the linear *velocity* - r = L/math.fabs(math.tan(self.z)) - - rL = r-(math.copysign(1,self.z)*(T/2.0)); - rR = r+(math.copysign(1,self.z)*(T/2.0)) - msgRearR = Float64() - # the right tire will go a little faster when we turn left (positive angle) - # amount is proportional to the radius of the outside/ideal - msgRearR.data = self.x*rR/r; - msgRearL = Float64() - # the left tire will go a little slower when we turn left (positive angle) - # amount is proportional to the radius of the inside/ideal - msgRearL.data = self.x*rL/r; - - self.pub_rearL.publish(msgRearL) - self.pub_rearR.publish(msgRearR) - - msgSteerL = Float64() - msgSteerR = Float64() - # the left tire's angle is solved directly from geometry - msgSteerL.data = math.atan2(L,rL)*math.copysign(1,self.z) - self.pub_steerL.publish(msgSteerL) - - # the right tire's angle is solved directly from geometry - msgSteerR.data = math.atan2(L,rR)*math.copysign(1,self.z) - self.pub_steerR.publish(msgSteerR) - else: - # if we aren't turning, everything is easy! - msgRear = Float64() - msgRear.data = self.x; - self.pub_rearL.publish(msgRear) - self.pub_rearR.publish(msgRear) - - msgSteer = Float64() - msgSteer.data = self.z - - self.pub_steerL.publish(msgSteer) - self.pub_steerR.publish(msgSteer) -def usage(): - print('cmdvel2gazebo -n catvehicle') - - -def main(argv): - # we eventually get the ns (namespace) from the ROS parameter server for this node - ns='' - node = cmdvel2gazebo(ns) - rate = rospy.Rate(100) # run at 10Hz - while not rospy.is_shutdown(): - node.publish() - rate.sleep() - -if __name__ == '__main__': - main(sys.argv[1:]) - try: - listener('catvehicle') - except rospy.ROSInterruptException: - pass diff --git a/ros/src/system/gazebo/catvehicle/src/cont.cc b/ros/src/system/gazebo/catvehicle/src/cont.cc deleted file mode 100644 index dddcd60adb8..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/cont.cc +++ /dev/null @@ -1,221 +0,0 @@ -#include -#include -#include -#include -#include -#include "ros/ros.h" -#include "geometry_msgs/Twist.h" -// JMS added Wrench for steering info -#include "geometry_msgs/Wrench.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "std_msgs/String.h" -#include "catvehicle/cont.hh" -#include - -using namespace std; - -//string logFile = "//home//"+std::string(getpwuid (getuid())->pw_name)+"//azcar_speed//vData.mat"; -//fstream logOut(logFile.c_str(),ios_base::out | ios_base::app); - -namespace gazebo -{ - CatSteering::CatSteering() - { - /*Rahul added default values of update rate of odometry data*/ - this->updateRate = 100.0; - this->prevUpdateTime = ros::Time::now(); - } - - void CatSteering::Load(physics::ModelPtr _parent, sdf::ElementPtr _sdf) - { - // Store the pointer to the model - - this->model = _parent; - this->world = _parent->GetWorld(); - this->robotNamespace = ""; - - /* Rahul Added updateRate tag in urdf file which can be used to control the publishing rate of - odometry data. Following code reads the update rate value from urdf file and check if they - are factor of real time update rate specified in the gazebo. If they are not just print - warning message and proceed gracefully - */ - physicsEngine = (this->world)->GetPhysicsEngine(); - //get the update rate from sdf - if (_sdf->HasElement("updateRate")) - { - this->updateRate = _sdf->GetElement("updateRate")->Get(); - //TO DO: Check if gazebo's update rate is multiple of update rate specified in the urdf file. - if( fmod(physicsEngine->GetRealTimeUpdateRate(), this->updateRate) != 0) - { - ROS_WARN_STREAM("updateRate in urdf file is not a factor of real time update rate specified in gazebo"); - ROS_WARN("update rate = %f",this->updateRate); - } - else - { - ROS_INFO("update rate = %f",this->updateRate); - } - } - // get namespace from urdf .gazebo file which is actually passed to .gazebo file from .launch file - if (_sdf->HasElement("robotNamespace")) - { - this->robotNamespace = _sdf->GetElement("robotNamespace")->Get(); - } - this->speedTopic = this->robotNamespace + "/vel"; - - this->tireTopic = this->robotNamespace + "/steering"; - - this->odomTopic = this->robotNamespace + "/odom"; - - // this->tfScope = this->robotNamespace.substr(1,this->robotNamespace.size()-1); - this->tfScope = ""; - - - //Start up ros_node - int argc = 0; - char** argv = NULL; - ros::init(argc, argv, "cat_sim", ros::init_options::NoSigintHandler | ros::init_options::AnonymousName); - rosnode_ = new ros::NodeHandle(this->robotNamespace); - - ros_pub = rosnode_->advertise(speedTopic, 1); - steering_pub = rosnode_->advertise(tireTopic, 1); - odom_pub = rosnode_->advertise(odomTopic, 1); - - - //rosnode_ = new ros::NodeHandle(robot_namespace); - this->ros_spinner_thread_ = boost::thread( boost::bind( &CatSteering::CatVehicleSimROSThread, this ) ); - } //end Load - - void CatSteering::CatVehicleSimROSThread() - { - ROS_INFO_STREAM("$ Callback thread id=" << boost::this_thread::get_id()); - - //Added by Rahul - ros::NodeHandle nodehandle; - //modelRead calback function is necessary in order to get instantaneous velocity vector - ros::Subscriber sub = nodehandle.subscribe("gazebo/model_states", 1, &CatSteering::modelRead, this); - - ros::Rate loop_rate(10); - - while (this->rosnode_->ok()) - { - ros::spinOnce(); - loop_rate.sleep( ); - } - } //end CatVehicleSimROSThread - - //Added by Rahul - void CatSteering::modelRead(const gazebo_msgs::ModelStates::ConstPtr& msg) - { - - /* Rahul added code to control the update rate of odometry data*/ - ros::Duration duration = ros::Time::now() - this->prevUpdateTime; - if (duration.toSec() < 1.0/(this->updateRate)) - { - return; - } - - - // gazebo::common::Time::MSleep(10); - - - ros::Time current_time = ros::Time::now(); - vector modelNames = msg->name; - int index=-1; - - // figure out which index we are in the msg list of model states - for( int i=0; irobotNamespace == std::string("/"+modelNames[i]) ) - { - // ROS_INFO_STREAM(this->robotNamespace << " comparing to " << std::string("/"+modelNames[i]) << "[" << i << "]"); - index = i; - } - } - - double Vx, Vy, Vz, V; - //Variable to story velocity vector that will be used for publishing on speed topic - geometry_msgs::Twist out_vel; - // JMS: output to give steering information - geometry_msgs::Wrench steering_msg; - - linear_vel = model->GetRelativeLinearVel(); - angular_vel = model->GetRelativeAngularVel(); - Vx = out_vel.linear.x = linear_vel.x; - Vy = out_vel.linear.y = linear_vel.y; - Vz = out_vel.linear.z = linear_vel.z; - out_vel.angular.x = angular_vel.x; - out_vel.angular.y = angular_vel.y; - out_vel.angular.z = angular_vel.z; - V = sqrt(Vx*Vx + Vy*Vy + Vz*Vz); - - - //Publish the velocity as string to speed topic - ros_pub.publish(out_vel); - // logOut << V << ";\n"; - - // JMS: get information about the steering joints - physics::JointPtr steering_joints[2]; - steering_joints[0] = model->GetJoint("front_left_steering_joint"); - steering_joints[1] = model->GetJoint("front_right_steering_joint"); - //physics::JointState j_state0 = new physics::JointState(steering_joints[0]); - //physics::JointState j_state1 = new physics::JointState(steering_joints[1]); - - double a0,a1; - a0 = steering_joints[0]->GetAngle(0).Radian(); - a1 = steering_joints[1]->GetAngle(0).Radian(); - // average these values, though in most modes they will be equal - - steering_msg.torque.z = (a0+a1)/2.0; - steering_pub.publish(steering_msg); - - if( index == -1 ) - { - ROS_ERROR_STREAM("Unable to find odometry for model name " << this->robotNamespace << "=" << index); - } - else - { - static tf::TransformBroadcaster br; - tf::Transform transform; - transform.setOrigin( tf::Vector3(msg->pose[index].position.x, - msg->pose[index].position.y, - msg->pose[index].position.z) ); - tf::Quaternion q(msg->pose[index].orientation.x, - msg->pose[index].orientation.y, - msg->pose[index].orientation.z, - msg->pose[index].orientation.w); - transform.setRotation(q); - br.sendTransform(tf::StampedTransform(transform, current_time, - this->tfScope + "/odom", - this->tfScope + "/base_link") ); - // br.sendTransform(tf::StampedTransform(transform, ros::Time::now(), - // this->tfScope + "/odom", - // this->tfScope + "/base_link") ); - - // grab the odometry from the incoming msg and post it - nav_msgs::Odometry odom; - odom.header.stamp = current_time; - odom.header.frame_id = this->tfScope + "/odom"; - // we calculate our index in the pose msg by - odom.child_frame_id = this->tfScope + "/base_link"; - odom.pose.pose = msg->pose[index]; - odom.twist.twist = msg->twist[index]; - - odom_pub.publish(odom); - /* Rahul added variable to save the time of last update of odometry data*/ - this->prevUpdateTime = ros::Time::now(); - } - } - // Register this plugin with the simulator - GZ_REGISTER_MODEL_PLUGIN(CatSteering) -} diff --git a/ros/src/system/gazebo/catvehicle/src/cont_lead.cc b/ros/src/system/gazebo/catvehicle/src/cont_lead.cc deleted file mode 100644 index ab31a1c061f..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/cont_lead.cc +++ /dev/null @@ -1,105 +0,0 @@ -#include -#include -#include -#include -#include -#include "ros/ros.h" -#include "geometry_msgs/Twist.h" -#include -#include -//#include - -#include "cont_lead.hh" - -namespace gazebo -{ - void LeadSteering::Load(physics::ModelPtr _parent, sdf::ElementPtr /*_sdf*/) - { - // Store the pointer to the model - model = _parent; - -// prev_angle = 0.0; - angle = 0.0; -// cur_angle = 0.0; - - // Get Pointer to the for jointcontroller - j_cont = new physics::JointController(model); - - //Get pointers at joints - steering_joints[0] = model->GetJoint("front_left_steering_joint"); - steering_joints[1] = model->GetJoint("front_right_steering_joint"); - - // Listen to the update event. This event is broadcast every - // simulation iteration. - this->updateConnection = event::Events::ConnectWorldUpdateBegin( - boost::bind(&LeadSteering::OnUpdate, this, _1)); - - - //Start up ros_node - std::string robot_namespace = "/"; - int argc = 0; - char** argv = NULL; - ros::init(argc, argv, "lead_sim", ros::init_options::NoSigintHandler | ros::init_options::AnonymousName); - rosnode_ = new ros::NodeHandle(robot_namespace); - this->ros_spinner_thread_ = boost::thread( boost::bind( &LeadSteering::LeadVehicleSimROSThread,this ) ); - } //end Load - - // Called by the world update start event - void LeadSteering::OnUpdate(const common::UpdateInfo & /*_info*/) - { -// SteeringSmooth(); - j_cont->SetJointPosition(steering_joints[0], angle); - j_cont->SetJointPosition(steering_joints[1], angle); - } //end OnUpdate - - void LeadSteering::LeadVehicleSimROSThread() - { - ROS_INFO_STREAM("Callback thread id=" << boost::this_thread::get_id()); - std::string topic_name = "cmd_str_lead"; - sub_ = rosnode_->subscribe(topic_name, 1000, &LeadSteering::Callback, this); - - while (this->rosnode_->ok()) - { - usleep(1000); - ros::spinOnce(); - } - } //end LeadVehicleSimROSThread - - - void LeadSteering::Callback(const geometry_msgs::Twist::ConstPtr& msg) - { - float ang = msg->angular.z; - angle = ang; -// cur_angle = ang; -// SteeringSmooth(); - } //end Callback - -/* void LeadSteering::SteeringSmooth() - { - double mini = 0.01; - difference = cur_angle - prev_angle; - - if( ( abs(difference) > mini ) && ( difference > 0.0) ) - { - prev_angle += mini; - angle = prev_angle; - usleep(1000); - SteeringSmooth(); - } - else if( ( abs(difference) > mini ) && ( difference < 0.0) ) - { - prev_angle -= mini; - angle = prev_angle; - usleep(2000); - SteeringSmooth(); - } - else - { - angle = cur_angle; - prev_angle = angle; - } - }*/ - - // Register this plugin with the simulator - GZ_REGISTER_MODEL_PLUGIN(LeadSteering) -} diff --git a/ros/src/system/gazebo/catvehicle/src/distanceEstimator.cpp b/ros/src/system/gazebo/catvehicle/src/distanceEstimator.cpp deleted file mode 100644 index 43a1f87f8fa..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/distanceEstimator.cpp +++ /dev/null @@ -1,166 +0,0 @@ -// Author: Jonathan Sprinkle -// This (very simple) node reads a laser scan, and -// publishes the distance to the nearest point -// -// TODO: ensure nearest few points are somewhat close -// TODO: what to return if no closest points? -// TODO: enable angle range we care about -// TODO: enable distance range we care about - -#include "ros/ros.h" -#include "std_msgs/Float32.h" -#include "sensor_msgs/LaserScan.h" - -#include -#include - - -// this global var holds the distance -std_msgs::Float32 angle; -std_msgs::Float32 dist; -std_msgs::Float32 dist_1; -std_msgs::Float32 vel; -std_msgs::Float32 vel_1; -std_msgs::Float32 accel; -ros::Time lastUpdate; -bool newMessage; -double angle_min; -double angle_max; - -// This very simple callback looks through the data array, and then -// returns the value (not the index) of that distance -void scanCallback( const sensor_msgs::LaserScan::ConstPtr& scan ) -{ - - // update what was 1 time ago - dist_1 = dist; - vel_1 = vel; - lastUpdate = scan->header.stamp; -// ROS_INFO_STREAM(lastUpdate); - newMessage = true; - dist.data = scan->range_max; - angle.data = scan->angle_min; - float angle_tmp=scan->angle_min; - float inc = scan->angle_increment; - for( std::vector::const_iterator it=scan->ranges.begin(); - it!=scan->ranges.end(); it++, angle_tmp=angle_tmp+inc ) - { - if( dist.data > *it && *it > scan->range_min - && angle_tmp > angle_min && angle_tmp < angle_max - ) - { - dist.data = *it; - angle.data = angle_tmp; - } - } - - // HACK update from 0.02 to reflect actual time - // if the distance is greater now than before, then - // vel is greater (i.e., they are moving away from us) - vel.data = (dist.data - dist_1.data)/0.02; - // if vel is greater now than it was before, then - // accel is greater (i.e., they are accel away from us) - accel.data = (vel.data - vel_1.data)/0.02; -} - -int main( int argc, char **argv ) -{ - // initialize global vars - dist.data = dist_1.data = 0; - vel.data = vel_1.data = 0; - accel.data = 0; - - std::string scan_topic; - std::string dist_topic; - std::string angle_topic; - - /** - * The ros::init() function needs to see argc and argv so that it can perform - * any ROS arguments and name remapping that were provided at the command line. For programmatic - * remappings you can use a different version of init() which takes remappings - * directly, but for most command-line programs, passing argc and argv is the easiest - * way to do it. The third argument to init() is the name of the node. - * - * You must call one of the versions of ros::init() before using any other - * part of the ROS system. - */ - ros::init(argc, argv, "DistanceEstimator"); - - /** - * NodeHandle is the main access point to communications with the ROS system. - * The first NodeHandle constructed will fully initialize this node, and the last - * NodeHandle destructed will close down the node. - */ -// ros::NodeHandle n; - // set up the handle for this node, in order to publish information - // the node handle is retrieved from the parameters in the .launch file, - // but we have to initialize the handle to have the name in that file. - ros::NodeHandle n("~"); - - /** - * The advertise() function is how you tell ROS that you want to - * publish on a given topic name. This invokes a call to the ROS - * master node, which keeps a registry of who is publishing and who - * is subscribing. After this advertise() call is made, the master - * node will notify anyone who is trying to subscribe to this topic name, - * and they will in turn negotiate a peer-to-peer connection with this - * node. advertise() returns a Publisher object which allows you to - * publish messages on that topic through a call to publish(). Once - * all copies of the returned Publisher object are destroyed, the topic - * will be automatically unadvertised. - * - * The second parameter to advertise() is the size of the message queue - * used for publishing messages. If messages are published more quickly - * than we can send them, the number here specifies how many messages to - * buffer up before throwing some away. - */ - n.param("dist_topic", dist_topic, std::string("dist")); - n.param("angle_topic", angle_topic, std::string("angle")); - n.param("scan_topic", scan_topic, std::string("/scan")); -// n.param("angle_min", angle_min, -M_PI/32.0f); -// n.param("angle_max", angle_max, M_PI/32.0f); - n.param("angle_min", angle_min, -0.1); - n.param("angle_max", angle_max, 0.1); - - ROS_INFO_STREAM("Node namespace is " << ros::this_node::getNamespace()); - ROS_INFO_STREAM("Node name is " << ros::this_node::getName( ) ); - - -// TODO: make this not just a float value - ros::Publisher dist_pub = n.advertise(dist_topic, 1); - ros::Publisher angle_pub = n.advertise(angle_topic, 1); - - // we also want to subscribe to the signaller - ros::Subscriber sub = n.subscribe(scan_topic, 1, &scanCallback); - - ROS_INFO_STREAM("Looking for scan in topic " << scan_topic); - ROS_INFO_STREAM("Publishing estimated distance to target in topic " << ros::this_node::getName( ) << "/" << dist_topic); - ROS_INFO_STREAM("Publishing estimated angle to target in topic " << ros::this_node::getName( ) << "/" << angle_topic); - - // run at 50Hz? - ros::Rate loop_rate(1000); - lastUpdate = ros::Time(); - newMessage = false; - - while( ros::ok() ) - { -// ROS_INFO( "Nearest object=%lf", dist ); - - // TODO: publish only if the time stamp is newer from the sensor - double eps = (double)1/(double)100; // the epsilon time that is 'equal' in diff - if( newMessage ) - { - dist_pub.publish(dist); - angle_pub.publish(angle); - newMessage = false; - } -// vel_pub.publish(vel); -// accel_pub.publish(accel); - ros::spinOnce( ); - loop_rate.sleep( ); - - } - - return EXIT_SUCCESS; -} - diff --git a/ros/src/system/gazebo/catvehicle/src/joy2cmdvel.py b/ros/src/system/gazebo/catvehicle/src/joy2cmdvel.py deleted file mode 100755 index bd7fa12107c..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/joy2cmdvel.py +++ /dev/null @@ -1,82 +0,0 @@ -#!/usr/bin/env python -# -# Author: Jonathan Sprinkle -# Copyright (c) 2015-2016 Arizona Board of Regents -# All rights reserved. -# -# Permission is hereby granted, without written agreement and without -# license or royalty fees, to use, copy, modify, and distribute this -# software and its documentation for any purpose, provided that the -# above copyright notice and the following two paragraphs appear in -# all copies of this software. -# -# IN NO EVENT SHALL THE ARIZONA BOARD OF REGENTS BE LIABLE TO ANY PARTY -# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -# ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -# IF THE ARIZONA BOARD OF REGENTS HAS BEEN ADVISED OF THE POSSIBILITY OF -# SUCH DAMAGE. -# -# THE ARIZONA BOARD OF REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, -# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -# AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER -# IS ON AN "AS IS" BASIS, AND THE ARIZONA BOARD OF REGENTS HAS NO OBLIGATION -# TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - - - -import rospy -from std_msgs.msg import String, Float64 -from geometry_msgs.msg import Twist, Pose -from sensor_msgs.msg import Joy -import sys, getopt - -# requires the ros-kinetic-joysticks - -class joy2cmdvel: - - def __init__(self): - rospy.init_node('joy2cmdvel', anonymous=True) - - self.ns = rospy.get_param("~namespace","catvehicle") - self.velmax = rospy.get_param("~velmax",3) - - rospy.loginfo(rospy.get_caller_id() + " startup in namespace {0} with max velocity {1}".format(self.ns,self.velmax)) - - - rospy.Subscriber('/joy'.format(self.ns), Joy, self.callback) - self.pub_cmdvel = rospy.Publisher('{0}/cmd_vel'.format(self.ns), Twist, queue_size=1) - - self.x = 0 - self.z = 0 - - def callback(self,data): -# rospy.loginfo(rospy.get_caller_id() + " heard linear=%lf, angular=%lf", data.axes[3], data.axes[0]) - self.x = data.axes[3]*self.velmax - self.z = data.axes[0] - - def publish(self): - msgTwist = Twist() - msgTwist.linear.x = self.x - msgTwist.angular.z = self.z - self.pub_cmdvel.publish(msgTwist) - -def usage(): - print('joy2cmdvel -n catvehicle') - - -def main(argv): - - node = joy2cmdvel() - rate = rospy.Rate(100) # run at 100Hz - while not rospy.is_shutdown(): - node.publish() - rate.sleep() - -if __name__ == '__main__': - main(sys.argv[1:]) - try: - listener('catvehicle') - except rospy.ROSInterruptException: - pass - - diff --git a/ros/src/system/gazebo/catvehicle/src/leadercmd.cc b/ros/src/system/gazebo/catvehicle/src/leadercmd.cc deleted file mode 100644 index 4e00290553d..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/leadercmd.cc +++ /dev/null @@ -1,55 +0,0 @@ -/* Author: Rahul Kumar Bhadani - * This code applies velocity profile to the leader car -*/ - -#include "ros/ros.h" -#include "geometry_msgs/Twist.h" -#include "nav_msgs/Odometry.h" - -#include -#include - - -// this global var holds the distance -geometry_msgs::Twist leader_vel; - - - -int main( int argc, char **argv ) -{ - ros::init(argc, argv, "leadercmd"); - - ros::NodeHandle n; - - std::string leader_InputVel_topic="/catvehicle/cmd_vel"; - - - ros::Publisher leader_vel_pub = n.advertise(leader_InputVel_topic, 1); - - ros::Rate loop_rate(100); - - double bias = 3.0; - double sinecomp = 0.0; - double t = 0; - double pi = 3.14159265359; - while( ros::ok() ) - { - if(t > 100) - { - t = 0.0; - } - sinecomp = sin(t*5/(2*pi)); - t += 0.005; - - - leader_vel.linear.x = bias + sinecomp; - - leader_vel_pub.publish(leader_vel); - ros::spinOnce( ); - loop_rate.sleep( ); - - } - - return EXIT_SUCCESS; -} - diff --git a/ros/src/system/gazebo/catvehicle/src/odom2path.py b/ros/src/system/gazebo/catvehicle/src/odom2path.py deleted file mode 100755 index 4af2f63964a..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/odom2path.py +++ /dev/null @@ -1,136 +0,0 @@ -#!/usr/bin/env python -# -# Author: Jonathan Sprinkle -# Copyright (c) 2015-2016 Arizona Board of Regents -# All rights reserved. -# -# Permission is hereby granted, without written agreement and without -# license or royalty fees, to use, copy, modify, and distribute this -# software and its documentation for any purpose, provided that the -# above copyright notice and the following two paragraphs appear in -# all copies of this software. -# -# IN NO EVENT SHALL THE ARIZONA BOARD OF REGENTS BE LIABLE TO ANY PARTY -# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -# ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -# IF THE ARIZONA BOARD OF REGENTS HAS BEEN ADVISED OF THE POSSIBILITY OF -# SUCH DAMAGE. -# -# THE ARIZONA BOARD OF REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, -# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -# AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER -# IS ON AN "AS IS" BASIS, AND THE ARIZONA BOARD OF REGENTS HAS NO OBLIGATION -# TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -# This node will publish the path in which you've traveled. The publishing -# happens at 10Hz, unless no connection to odometry exists. -# The published path is appended whenever the odometry differs by at least -# 1m in the L1 norm---i.e., x or y changes by 1m---from the last point in the -# published path. - -import rospy -from std_msgs.msg import String, Header -from geometry_msgs.msg import Twist, Pose, PoseStamped -from nav_msgs.msg import Path, Odometry -import sys, getopt - -class odom2path: - - def __init__(self,ns): - self.ns = ns - rospy.init_node('odom2path', anonymous=True) - - # set so that whenever we receive on the odom topic, - # the callback method is called - rospy.Subscriber('odom'.format(ns), Odometry, self.callback) - # setup the state data for the publisher - self.pub_path = rospy.Publisher('path'.format(ns), Path, queue_size=10) - # we want to publish immediately when we receive a new data point - self.publishNow = True - # initialize the path message and its header - self.pathMsg = Path() - self.pathMsg.header = Header() - # initial values are not provided (set to None) - self.x = None - self.y = None - - # This method is called whenever we receive from the subscriber above - def callback(self,data): - # we always publish right away - self.publishNow = True - # increment the header's sequence - self.pathMsg.header.seq += 1 - # using rospy.Time means automatically getting sim time as appropriate - self.pathMsg.header.stamp = rospy.Time.now() - # the odometry frame is set here - # TODO: set a parameter for the odometry frame - self.pathMsg.header.frame_id = '{0}/odom'.format(self.ns) - - # Note that we append a new pose to the path ONLY if the position - # has moved more than 1m from its previous spot (L1 norm) - if self.x == None or (abs(self.x - data.pose.pose.position.x) > 1 - or abs(self.y - data.pose.pose.position.y) > 1): - pose = PoseStamped() - - # copy over the values individually - pose.header.frame_id='{0}/odom'.format(self.ns) - pose.header.seq= len(self.pathMsg.poses)+1 - pose.header.stamp = rospy.Time.now() - pose.pose.position.x = float(data.pose.pose.position.x) - pose.pose.position.y = float(data.pose.pose.position.y) - pose.pose.orientation.x = float(data.pose.pose.orientation.x) - pose.pose.orientation.y = float(data.pose.pose.orientation.y) - pose.pose.orientation.z = float(data.pose.pose.orientation.z) - pose.pose.orientation.w = float(data.pose.pose.orientation.w) - - self.pathMsg.poses.append(pose) - - self.x = float(data.pose.pose.position.x) - self.y = float(data.pose.pose.position.y) - - # refer to the publishNow var, which is set during the receipt of a new msg - def publish(self): - if self.publishNow: - rospy.logdebug(rospy.get_caller_id() + " publishing new path with {0} elements.".format(len(self.pathMsg.poses))) - self.pub_path.publish(self.pathMsg) - # after we publish, we ensure to wait until a new odom point arrives - self.publishNow = False - -def usage(): - print('odom2path -n catvehicle') - - -def main(argv): - # here we must acquire the ns from the cmd line, so that we can - # ensure that we use the right frame for the tf of the path msgs - ns='' - try: - opts, args = getopt.getopt(argv, "hn:", ["help", "namespace="]) - except getopt.GetoptError: - usage() - exit.sys() - - for o, a in opts: - if o == "help": - usage() - exit.sys() - elif o in ("-n","-namespace"): - ns=a - else: - usage() - exit.sys() - - node = odom2path(ns) - rate = rospy.Rate(10) # run at 10Hz - while not rospy.is_shutdown(): - node.publish() - rate.sleep() - -if __name__ == '__main__': - main(sys.argv[1:]) - try: - listener('catvehicle') - except rospy.ROSInterruptException: - pass - - diff --git a/ros/src/system/gazebo/catvehicle/src/primitiveCmdVel.py b/ros/src/system/gazebo/catvehicle/src/primitiveCmdVel.py deleted file mode 100755 index 019909b09bf..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/primitiveCmdVel.py +++ /dev/null @@ -1,99 +0,0 @@ -#!/usr/bin/env python -# -# Author: Jonathan Sprinkle -# Copyright (c) 2015 Arizona Board of Regents -# All rights reserved. -# -# Permission is hereby granted, without written agreement and without -# license or royalty fees, to use, copy, modify, and distribute this -# software and its documentation for any purpose, provided that the -# above copyright notice and the following two paragraphs appear in -# all copies of this software. -# -# IN NO EVENT SHALL THE ARIZONA BOARD OF REGENTS BE LIABLE TO ANY PARTY -# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -# ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -# IF THE ARIZONA BOARD OF REGENTS HAS BEEN ADVISED OF THE POSSIBILITY OF -# SUCH DAMAGE. -# -# THE ARIZONA BOARD OF REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, -# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -# AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER -# IS ON AN "AS IS" BASIS, AND THE ARIZONA BOARD OF REGENTS HAS NO OBLIGATION -# TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -# This node generates cmd_vel inputs to the vehicle in order to make it move -# around. Use the arrow keys to make the vehicle turn its wheels, move forward, -# or backward. If you want to move forward (but turn left), first press the left -# arrow key, then press up. - -import rospy -from geometry_msgs.msg import Twist -import sys, getopt, curses - -class primitiveCmdVel: - - def __init__(self,ns): - self.ns = ns - rospy.init_node('primitiveCmdVel', anonymous=True) - self.pub_cmd_vel = rospy.Publisher('{0}/cmd_vel'.format(ns), Twist, queue_size=1) - - self.x = 0 - self.z = 0 - - def publish(self): - msg = Twist() - msg.linear.x = self.x - msg.angular.z = self.z - self.pub_cmd_vel.publish(msg) - -def usage(): - print('primitiveCmdVel -n catvehicle') - - -def main(argv): - ns='catvehicle' - try: - opts, args = getopt.getopt(argv, "hn:", ["help", "namespace="]) - except getopt.GetoptError: - usage() - exit.sys() - - stdscr = curses.initscr() - node = primitiveCmdVel(ns) - while not rospy.is_shutdown(): - -# import curses -#stdscr = curses.initscr() -#c = stdscr.getch() -#print 'you entered', chr(c) -#curses.endwin() - - ch = stdscr.getch() - -# ch = sys.stdin.read(1) - node.x = 4 - node.z = 0 - # left arrow - if ch == chr(37): - node.z = 1 - # up arrow - elif ch == chr(38): - node.x = node.x - # right arrow - elif ch == chr(39): - node.z = -1 - # down arrow - elif ch == chr(40): - node.x = -node.x - else: - curses.endwin() - - node.publish() - - curses.endwin() - -if __name__ == '__main__': - main(sys.argv[1:]) - - diff --git a/ros/src/system/gazebo/catvehicle/src/resetSim.sh b/ros/src/system/gazebo/catvehicle/src/resetSim.sh deleted file mode 100755 index 49289eb31ac..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/resetSim.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -rosservice call /gazebo/reset_world diff --git a/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/README.txt b/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/README.txt deleted file mode 100644 index a64474c58f6..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/README.txt +++ /dev/null @@ -1,7 +0,0 @@ -Author: Jonathan Sprinkle - -This tests directory contains tests that command the simulated car in -Gazebo using only commands to the low-level joints and transmissions on -the simulated car. - -The tests will run ONLY when the cmdvel2gazebo.py node is not running. diff --git a/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdSimpleTest.sh b/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdSimpleTest.sh deleted file mode 100755 index 8eb6b92f6b3..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdSimpleTest.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash - -NS=catvehicle$1 -CL=front_left_steering_position_controller -CR=front_right_steering_position_controller -R=0.57 - -echo "Tires right" -rostopic pub -1 /${NS}/${CL}/command std_msgs/Float64 "data: -${R}" & -rostopic pub -1 /${NS}/${CR}/command std_msgs/Float64 "data: -${R}" - -echo "Tires front" -rostopic pub -1 /${NS}/${CL}/command std_msgs/Float64 "data: 0.0" & -rostopic pub -1 /${NS}/${CR}/command std_msgs/Float64 "data: 0.0" - -echo "Tires left" -rostopic pub -1 /${NS}/${CL}/command std_msgs/Float64 "data: ${R}" & -rostopic pub -1 /${NS}/${CR}/command std_msgs/Float64 "data: ${R}" - -echo "Tires front" -rostopic pub -1 /${NS}/${CL}/command std_msgs/Float64 "data: 0.0" & -rostopic pub -1 /${NS}/${CR}/command std_msgs/Float64 "data: 0.0" - - -echo "Move forward" -rostopic pub -1 /${NS}/joint1_velocity_controller/command std_msgs/Float64 "data: 1.0" & -rostopic pub -1 /${NS}/joint2_velocity_controller/command std_msgs/Float64 "data: 1.0" - -echo "Now stopping" -rostopic pub -1 /${NS}/joint1_velocity_controller/command std_msgs/Float64 "data: 0.0" & -rostopic pub -1 /${NS}/joint2_velocity_controller/command std_msgs/Float64 "data: 0.0" - -echo "Move backward" -rostopic pub -1 /${NS}/joint1_velocity_controller/command std_msgs/Float64 "data: -1.0" & -rostopic pub -1 /${NS}/joint2_velocity_controller/command std_msgs/Float64 "data: -1.0" - -echo "Now stopping" -rostopic pub -1 /${NS}/joint1_velocity_controller/command std_msgs/Float64 "data: 0.0" & -rostopic pub -1 /${NS}/joint2_velocity_controller/command std_msgs/Float64 "data: 0.0" - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdTireRateTest.sh b/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdTireRateTest.sh deleted file mode 100755 index 762b0de72d5..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdTireRateTest.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -echo "Tires right" -rostopic pub -1 /catvehicle/front_left_steering_controller/command std_msgs/Float64 "data: -1.0" & -rostopic pub -1 /catvehicle/front_right_steering_controller/command std_msgs/Float64 "data: -1.0" - -echo "Tires front" -rostopic pub -1 /catvehicle/front_left_steering_controller/command std_msgs/Float64 "data: 0.0" & -rostopic pub -1 /catvehicle/front_right_steering_controller/command std_msgs/Float64 "data: 0.0" - -echo "Tires left" -rostopic pub -1 /catvehicle/front_left_steering_controller/command std_msgs/Float64 "data: 1.0" & -rostopic pub -1 /catvehicle/front_right_steering_controller/command std_msgs/Float64 "data: 1.0" - -echo "Tires front" -rostopic pub -1 /catvehicle/front_left_steering_controller/command std_msgs/Float64 "data: 0.0" & -rostopic pub -1 /catvehicle/front_right_steering_controller/command std_msgs/Float64 "data: 0.0" - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdTireTest.sh b/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdTireTest.sh deleted file mode 100755 index 13c1f56ab76..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdTireTest.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -NS=catvehicle$1 -CL=front_left_steering_position_controller -CR=front_right_steering_position_controller -R=10.0 - -echo "Tires right" -rostopic pub -1 /${NS}/${CL}/command std_msgs/Float64 "data: -${R}" & -rostopic pub -1 /${NS}/${CR}/command std_msgs/Float64 "data: -${R}" - -echo "Tires front" -rostopic pub -1 /${NS}/${CL}/command std_msgs/Float64 "data: 0.0" & -rostopic pub -1 /${NS}/${CR}/command std_msgs/Float64 "data: 0.0" - -echo "Tires left" -rostopic pub -1 /${NS}/${CL}/command std_msgs/Float64 "data: ${R}" & -rostopic pub -1 /${NS}/${CR}/command std_msgs/Float64 "data: ${R}" - -echo "Tires front" -rostopic pub -1 /${NS}/${CL}/command std_msgs/Float64 "data: 0.0" & -rostopic pub -1 /${NS}/${CR}/command std_msgs/Float64 "data: 0.0" - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdVelFastTest.sh b/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdVelFastTest.sh deleted file mode 100755 index 0c17bcb9ff7..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdVelFastTest.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -echo "Move forward" -rostopic pub -1 /catvehicle/joint1_velocity_controller/command std_msgs/Float64 "data: 50.0" & -rostopic pub -1 /catvehicle/joint2_velocity_controller/command std_msgs/Float64 "data: 50.0" - -echo "Now stopping" -rostopic pub -1 /catvehicle/joint1_velocity_controller/command std_msgs/Float64 "data: 0.0" & -rostopic pub -1 /catvehicle/joint2_velocity_controller/command std_msgs/Float64 "data: 0.0" - -echo "Move backward" -rostopic pub -1 /catvehicle/joint1_velocity_controller/command std_msgs/Float64 "data: -50.0" & -rostopic pub -1 /catvehicle/joint2_velocity_controller/command std_msgs/Float64 "data: -50.0" - -echo "Now stopping" -rostopic pub -1 /catvehicle/joint1_velocity_controller/command std_msgs/Float64 "data: 0.0" & -rostopic pub -1 /catvehicle/joint2_velocity_controller/command std_msgs/Float64 "data: 0.0" - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdVelTest.sh b/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdVelTest.sh deleted file mode 100755 index 80e7bfd0447..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/cmdVelTest.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -echo "Move forward" -rostopic pub -1 /catvehicle/joint1_velocity_controller/command std_msgs/Float64 "data: 10.0" & -rostopic pub -1 /catvehicle/joint2_velocity_controller/command std_msgs/Float64 "data: 10.0" - -echo "Now stopping" -rostopic pub -1 /catvehicle/joint1_velocity_controller/command std_msgs/Float64 "data: 0.0" & -rostopic pub -1 /catvehicle/joint2_velocity_controller/command std_msgs/Float64 "data: 0.0" - -echo "Move backward" -rostopic pub -1 /catvehicle/joint1_velocity_controller/command std_msgs/Float64 "data: -10.0" & -rostopic pub -1 /catvehicle/joint2_velocity_controller/command std_msgs/Float64 "data: -10.0" - -echo "Now stopping" -rostopic pub -1 /catvehicle/joint1_velocity_controller/command std_msgs/Float64 "data: 0.0" & -rostopic pub -1 /catvehicle/joint2_velocity_controller/command std_msgs/Float64 "data: 0.0" - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/runCmdTests.sh b/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/runCmdTests.sh deleted file mode 100755 index eae7a79ac90..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/cmdTests/runCmdTests.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -./cmdSimpleTest.sh - -./cmdTireTest.sh - -./cmdVelTest.sh - - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/README.txt b/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/README.txt deleted file mode 100644 index 84871c382ae..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/README.txt +++ /dev/null @@ -1,5 +0,0 @@ -Author: Jonathan Sprinkle - -Sends cmd_vel message tests. These tests will only run correctly when -the cmdvel2gazebo node is running. - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/cmdSimpleTest.sh b/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/cmdSimpleTest.sh deleted file mode 100755 index e5d9531137b..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/cmdSimpleTest.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -NS=/$1 - -if [ $# -eq 1 ]; then - NS=/catvehicle -fi - - -echo 'Car' $NS ' should move forward for a few seconds' -rostopic pub -r 10 -f forward.bagy $NS/cmd_vel geometry_msgs/Twist -echo 'Car should move in reverse for a few seconds' -rostopic pub -r 10 -f reverse.bagy $NS/cmd_vel geometry_msgs/Twist -echo 'Car should stop' diff --git a/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/cmdTireTest.sh b/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/cmdTireTest.sh deleted file mode 100755 index 9b8c6f5efed..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/cmdTireTest.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -NS=/$1 - -echo "Tires right" -rostopic pub -1 $NS/cmd_vel geometry_msgs/Twist '{linear : {x: 0.0, y: 0.0, z: 0.0}, angular: {x: 0.0, y: 0.0, z: -0.4}}' - -echo "Tires front" -rostopic pub -1 $NS/cmd_vel geometry_msgs/Twist '{linear : {x: 0.0, y: 0.0, z: 0.0}, angular: {x: 0.0, y: 0.0, z: 0.0}}' - -echo "Tires left" -rostopic pub -1 $NS/cmd_vel geometry_msgs/Twist '{linear : {x: 0.0, y: 0.0, z: 0.0}, angular: {x: 0.0, y: 0.0, z: 0.4}}' - -echo "Tires front" -rostopic pub -1 $NS/cmd_vel geometry_msgs/Twist '{linear : {x: 0.0, y: 0.0, z: 0.0}, angular: {x: 0.0, y: 0.0, z: 0.0}}' - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/forward.bagy b/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/forward.bagy deleted file mode 100644 index 3951cff0f33..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/forward.bagy +++ /dev/null @@ -1,1791 +0,0 @@ -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: 1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- diff --git a/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/reverse.bagy b/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/reverse.bagy deleted file mode 100644 index 53aa65d2a64..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/reverse.bagy +++ /dev/null @@ -1,1791 +0,0 @@ -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- -linear: - x: -1.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 0.0 ---- diff --git a/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/runTests.sh b/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/runTests.sh deleted file mode 100755 index ea01052a93f..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/cmd_velTests/runTests.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -./cmdSimpleTest.sh catvehicle - -./cmdTireTest.sh catvehicle - - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/openloop/hardLeft.bagy b/ros/src/system/gazebo/catvehicle/src/tests/openloop/hardLeft.bagy deleted file mode 100644 index e3783e62165..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/openloop/hardLeft.bagy +++ /dev/null @@ -1,15552 +0,0 @@ -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- -linear: - x: 3.0 - y: 0.0 - z: 0.0 -angular: - x: 0.0 - y: 0.0 - z: 1.0 ---- diff --git a/ros/src/system/gazebo/catvehicle/src/tests/openloop/hardLeft.sh b/ros/src/system/gazebo/catvehicle/src/tests/openloop/hardLeft.sh deleted file mode 100755 index 246e9caffb0..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/openloop/hardLeft.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -function usage() -{ -cat << EOF -usage: hardLeft.sh -r PUBRATE -n NAMESPACE - -PUBRATE is the rate at which to publish the bagy file. Default is 100. If you - want to run a simulation at 0.1 of real time, set this to 10, for example. -NAMESPACE is the robot name. Default is catvehicle -EOF -} - -NS=/catvehicle -PUBRATE=100 - -while getopts n:r: flag; do - case $flag in - n) - NS=/$OPTARG - ;; - r) - PUBRATE=$OPTARG - ;; - ?) - usage; - exit; - ;; - esac -done - -echo "Car $NS receiving inputs with latched rate" -rostopic pub -r ${PUBRATE} -f hardLeft.bagy $NS/cmd_vel_safe geometry_msgs/Twist - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/slomo/comparison.m b/ros/src/system/gazebo/catvehicle/src/tests/slomo/comparison.m deleted file mode 100644 index 40107dab3af..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/slomo/comparison.m +++ /dev/null @@ -1,83 +0,0 @@ -% Author: Jonathan Sprinkle -% Compares bag files from several experiments in gazebo using the same -% inputs - -%% load the bagfiles - -% realtime1000 = rosbag('simpleGazeboInputs/realtime1000.bag'); -% realtime100 = rosbag('simpleGazeboInputs/realtime100.bag'); -% slowtime1000 = rosbag('simpleGazeboInputs/slowtime1000.bag'); -% slowtime100 = rosbag('simpleGazeboInputs/slowtime100.bag'); - -% realtime1000 = rosbag('complexGazeboInputs/realtime1000.bag'); -% realtime100 = rosbag('complexGazeboInputs/realtime100.bag'); -% slowtime1000 = rosbag('complexGazeboInputs/slowtime1000.bag'); -% slowtime100 = rosbag('complexGazeboInputs/slowtime100.bag'); -% realtime100_5000 = rosbag('complexGazeboInputs/realtime100-5000.bag'); -% realtime100_5000_variant = rosbag('complexGazeboInputs/realtime100-5000-variant.bag'); -% realtime100_5000_variant2 = rosbag('complexGazeboInputs/realtime100-5000-variant2.bag'); - -% realtime1000 = rosbag('complexGazeboInputs/realtime1000.bag'); -% realtime100 = rosbag('complexGazeboInputs/realtime100.bag'); -% slowtime1000 = rosbag('complexGazeboInputs/slowtime1000.bag'); -% slowtime100 = rosbag('complexGazeboInputs/slowtime100.bag'); - -% badSteering = rosbag('complexGazeboInputs/hardleft-badSteering.bag'); -% goodSteering= rosbag('complexGazeboInputs/hardleft-goodSteering.bag'); -% goodSteeringSlomo= rosbag('complexGazeboInputs/hardleft-goodSteering-slomo.bag'); -% goodSteeringSlomo2= rosbag('complexGazeboInputs/hardleft-goodSteering-slomo2.bag'); -% -% badSteering = rosbag('complexGazeboInputs/hardleft-badSteering.bag'); -% goodSteering= rosbag('complexGazeboInputs/hardleft-goodSteering.bag'); -% goodSteeringSlomo= rosbag('complexGazeboInputs/hardleft-goodSteering-slomo.bag'); -% goodSteeringSlomo2= rosbag('complexGazeboInputs/hardleft-goodSteering-slomo2.bag'); -% - -%% set up the cell arrays -bagfiles = cell(2,1); -ts = cell(2,1); - -bagfiles{1} = rosbag('complexGazeboInputs/hardLeft-lessbounce1.bag'); -bagfiles{2} = rosbag('complexGazeboInputs/hardLeft-lessbounce2.bag'); -bagfiles{3} = rosbag('complexGazeboInputs/hardLeft-lessbounce3.bag'); -% bagfiles{4} = rosbag('complexGazeboInputs/hardLeft-seed4.bag'); -% bagfiles{5} = rosbag('complexGazeboInputs/hardLeft-seed5.bag'); - -% bagfiles{1} = realtime1000; -% bagfiles{2} = realtime100; -% bagfiles{3} = slowtime1000; -% bagfiles{4} = slowtime100; -% bagfiles{5} = realtime100_5000; -% bagfiles{6} = realtime100_5000_variant; -% bagfiles{7} = realtime100_5000_variant2; - -%% make the cell of titles -titles = cell(2,1); -titles{1} = 'Run 1'; -titles{2} = 'Run 2'; -titles{3} = 'Run 3'; -% titles{4} = 'Run 4'; -% titles{5} = 'Run 5'; -% titles{1} = 'Real time, 1000Hz'; -% titles{2} = 'Real time, 100Hz'; -% titles{3} = '1/10 time, 1000Hz'; -% titles{4} = '1/10 time, 100Hz'; -% titles{5} = 'Real time, 100Hz (5000 iters)'; -% titles{6} = 'Real time, 100Hz (5000 iters, erp=0.1, cmcv=10, csl=0.01), #1'; -% titles{7} = 'Real time, 100Hz (5000 iters, erp=0.1, cmcv=10, csl=0.01), #2'; - -%% grab data inputs of cmd_vel_safe -for i=1:length(bagfiles) - bagselect = select(bagfiles{i}, 'Topic', '/catvehicle/odom'); - ts{i} = timeseries(bagselect, 'Pose.Pose.Position.X', 'Pose.Pose.Position.Y'); -end - -%% produce a plot of data -figure -hold on - -for i=1:length(bagfiles) - plot(ts{i}.Data(:,2),ts{i}.Data(:,1)); -end - -legend(titles); diff --git a/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/hardLeft.sh b/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/hardLeft.sh deleted file mode 100755 index 246e9caffb0..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/hardLeft.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -function usage() -{ -cat << EOF -usage: hardLeft.sh -r PUBRATE -n NAMESPACE - -PUBRATE is the rate at which to publish the bagy file. Default is 100. If you - want to run a simulation at 0.1 of real time, set this to 10, for example. -NAMESPACE is the robot name. Default is catvehicle -EOF -} - -NS=/catvehicle -PUBRATE=100 - -while getopts n:r: flag; do - case $flag in - n) - NS=/$OPTARG - ;; - r) - PUBRATE=$OPTARG - ;; - ?) - usage; - exit; - ;; - esac -done - -echo "Car $NS receiving inputs with latched rate" -rostopic pub -r ${PUBRATE} -f hardLeft.bagy $NS/cmd_vel_safe geometry_msgs/Twist - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/joystick1.sh b/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/joystick1.sh deleted file mode 100755 index 5e2124d6b92..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/joystick1.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -function usage() -{ -cat << EOF -usage: joystick1 -r PUBRATE -n NAMESPACE - -PUBRATE is the rate at which to publish the bagy file. Default is 100. If you - want to run a simulation at 0.1 of real time, set this to 10, for example. -NAMESPACE is the robot name. Default is catvehicle -EOF -} - -NS=/catvehicle -PUBRATE=100 - -while getopts n:r: flag; do - case $flag in - n) - NS=/$OPTARG - ;; - r) - PUBRATE=$OPTARG - ;; - ?) - usage; - exit; - ;; - esac -done - -echo "Car $NS receiving inputs at $PUBRATE rate (set lower to run in slo motion)" -rostopic pub -r $PUBRATE -f joystickInput1.bagy $NS/cmd_vel_safe geometry_msgs/Twist - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/realtime100.txt b/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/realtime100.txt deleted file mode 100644 index 1981b443841..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/realtime100.txt +++ /dev/null @@ -1,19 +0,0 @@ -In this run we did: - -0.01 -1 -100 - - - quick - 1000 - 1.3 - - -And ran - -./joystick1.sh -r 100 - -It seemed like we got a real-time factor of about 1.00 most of the time. - - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/realtime1000.txt b/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/realtime1000.txt deleted file mode 100644 index 3bccfabcf99..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/realtime1000.txt +++ /dev/null @@ -1,20 +0,0 @@ -In this run we did: - -0.001 -1 -1000 - - - quick - 1000 - 1.3 - - - -And ran - -./joystick1.sh -r 100 - -It seemed like we got a real-time factor of about 0.5 to 0.6 most of the time. - - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/slowtime100.txt b/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/slowtime100.txt deleted file mode 100644 index 34baf166cfe..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/slowtime100.txt +++ /dev/null @@ -1,19 +0,0 @@ -In this run we did: - -0.01 -1 -10 - - - quick - 1000 - 1.3 - - -And ran - -./joystick1.sh -r 10 - -It seemed like we got a real-time factor of about 0.10 most of the time. - - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/slowtime1000.txt b/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/slowtime1000.txt deleted file mode 100644 index cb7526309b0..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/slomo/complexGazeboInputs/slowtime1000.txt +++ /dev/null @@ -1,19 +0,0 @@ -In this run we did: - -0.001 -1 -100 - - - quick - 1000 - 1.3 - - -And ran - -./joystick1.sh -r 10 - -It seemed like we got a real-time factor of about 0.10 most of the time. - - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/hardLeft.sh b/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/hardLeft.sh deleted file mode 100755 index 6a8b37bc274..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/hardLeft.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -function usage() -{ -cat << EOF -usage: hardLeft.sh -r PUBRATE -n NAMESPACE - -PUBRATE is the rate at which to publish the bagy file. Default is 100. If you - want to run a simulation at 0.1 of real time, set this to 10, for example. -NAMESPACE is the robot name. Default is catvehicle -EOF -} - -NS=/catvehicle -PUBRATE=100 - -while getopts n:r: flag; do - case $flag in - n) - NS=/$OPTARG - ;; - r) - PUBRATE=$OPTARG - ;; - ?) - usage; - exit; - ;; - esac -done - -echo "Car $NS receiving inputs with latched rate" -rostopic pub -r 100 -f hardLeft.bagy $NS/cmd_vel_safe geometry_msgs/Twist - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/joystick1.sh b/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/joystick1.sh deleted file mode 100755 index 5e2124d6b92..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/joystick1.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -function usage() -{ -cat << EOF -usage: joystick1 -r PUBRATE -n NAMESPACE - -PUBRATE is the rate at which to publish the bagy file. Default is 100. If you - want to run a simulation at 0.1 of real time, set this to 10, for example. -NAMESPACE is the robot name. Default is catvehicle -EOF -} - -NS=/catvehicle -PUBRATE=100 - -while getopts n:r: flag; do - case $flag in - n) - NS=/$OPTARG - ;; - r) - PUBRATE=$OPTARG - ;; - ?) - usage; - exit; - ;; - esac -done - -echo "Car $NS receiving inputs at $PUBRATE rate (set lower to run in slo motion)" -rostopic pub -r $PUBRATE -f joystickInput1.bagy $NS/cmd_vel_safe geometry_msgs/Twist - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/realtime100.txt b/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/realtime100.txt deleted file mode 100644 index 9b30332c920..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/realtime100.txt +++ /dev/null @@ -1,19 +0,0 @@ -In this run we did: - -0.01 -1 -100 - - - quick - 200 - 1.3 - - -And ran - -./joystick1.sh -r 100 - -It seemed like we got a real-time factor of about 1.00 most of the time. - - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/realtime1000.txt b/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/realtime1000.txt deleted file mode 100644 index ca8aa3b85c8..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/realtime1000.txt +++ /dev/null @@ -1,20 +0,0 @@ -In this run we did: - -0.001 -1 -1000 - - - quick - 200 - 1.3 - - - -And ran - -./joystick1.sh -r 100 - -It seemed like we got a real-time factor of about 0.6 to 0.7 most of the time. - - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/slowtime100.txt b/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/slowtime100.txt deleted file mode 100644 index 1ccff6fc50b..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/slowtime100.txt +++ /dev/null @@ -1,19 +0,0 @@ -In this run we did: - -0.01 -1 -10 - - - quick - 200 - 1.3 - - -And ran - -./joystick1.sh -r 10 - -It seemed like we got a real-time factor of about 0.10 most of the time. - - diff --git a/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/slowtime1000.txt b/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/slowtime1000.txt deleted file mode 100644 index d096b56d0e9..00000000000 --- a/ros/src/system/gazebo/catvehicle/src/tests/slomo/simpleGazeboInputs/slowtime1000.txt +++ /dev/null @@ -1,19 +0,0 @@ -In this run we did: - -0.001 -1 -100 - - - quick - 200 - 1.3 - - -And ran - -./joystick1.sh -r 10 - -It seemed like we got a real-time factor of about 0.10 most of the time. - - diff --git a/ros/src/system/gazebo/catvehicle/urdf/catvehicle.gazebo b/ros/src/system/gazebo/catvehicle/urdf/catvehicle.gazebo deleted file mode 100644 index f3673cdd181..00000000000 --- a/ros/src/system/gazebo/catvehicle/urdf/catvehicle.gazebo +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - 10000 - 10000 - 10000000 - 1 - 0.01 - 10.0 - - - - 10000 - 10000 - 10000000 - 1 - 0.01 - 10.0 - - - - 10000 - 10000 - 1000000 - 1 - 0.01 - 100.0 - - - - 10000 - 10000 - 1000000 - 1 - 0.01 - 100.0 - - - - 0.6 - 0.5 - 1000000 - 0.1 - 0.01 - 10.0 - - - - 0.6 - 0.5 - 1000000 - 0.1 - 0.01 - 10.0 - - - - - /$(arg roboname) - gazebo_ros_control/DefaultRobotHWSim - - - - - - back_left_wheel_joint, back_right_wheel_joint, front_left_steering_joint, front_right_steering_joint, front_right_wheel_joint, front_left_wheel_joint - 50.0 - /$(arg roboname) - true - - - - - - /$(arg roboname) - - - - diff --git a/ros/src/system/gazebo/catvehicle/urdf/catvehicle.xacro b/ros/src/system/gazebo/catvehicle/urdf/catvehicle.xacro deleted file mode 100644 index 1025c153527..00000000000 --- a/ros/src/system/gazebo/catvehicle/urdf/catvehicle.xacro +++ /dev/null @@ -1,598 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - transmission_interface/SimpleTransmission - - VelocityJointInterface - - - VelocityJointInterface - 1 - - - - - transmission_interface/SimpleTransmission - - VelocityJointInterface - - - VelocityJointInterface - 1 - - - - - transmission_interface/SimpleTransmission - - PositionJointInterface - - - PositionJointInterface - 1 - - - - - transmission_interface/SimpleTransmission - - PositionJointInterface - - - PositionJointInterface - 1 - - - - diff --git a/ros/src/system/gazebo/catvehicle/urdf/catvehicle_front_laser_points.gazebo b/ros/src/system/gazebo/catvehicle/urdf/catvehicle_front_laser_points.gazebo deleted file mode 100644 index 410d9630847..00000000000 --- a/ros/src/system/gazebo/catvehicle/urdf/catvehicle_front_laser_points.gazebo +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - 0.6 - 0.5 - - - - - 0 0 0 0 0 0 - true - 40 - - - - 180 - 1 - -1.57 - 1.57 - - - - 1.5 - - 80.0 - 0.05 - - - - gaussian - 0.0 - 0.02 - - - - - - /$(arg roboname)/front_laser_points - /front_laser_link - 0.02 - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/urdf/catvehicle_left_camera.gazebo b/ros/src/system/gazebo/catvehicle/urdf/catvehicle_left_camera.gazebo deleted file mode 100644 index 332520f2a5a..00000000000 --- a/ros/src/system/gazebo/catvehicle/urdf/catvehicle_left_camera.gazebo +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - 0.6 - 0.5 - - - - - 30.0 - - 1.3962634 - - 640 - 480 - R8G8B8 - - - 0.02 - 300 - - - gaussian - 0.0 - 0.007 - - - - true - 0.0 - /$(arg roboname) - camera_left - image_raw_left - camera_left_info - camera_left_link - 0.07 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/urdf/catvehicle_right_camera.gazebo b/ros/src/system/gazebo/catvehicle/urdf/catvehicle_right_camera.gazebo deleted file mode 100644 index cc939a2ebfa..00000000000 --- a/ros/src/system/gazebo/catvehicle/urdf/catvehicle_right_camera.gazebo +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - 0.6 - 0.5 - - - - - 30.0 - - 1.3962634 - - 640 - 480 - R8G8B8 - - - 0.02 - 300 - - - gaussian - 0.0 - 0.007 - - - - true - 0.0 - /$(arg roboname) - camera_right - image_raw_right - camera_right_info - camera_right_link - 0.07 - 0.0 - 0.0 - 0.0 - 0.0 - 0.0 - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/urdf/catvehicle_velodyne_points.gazebo b/ros/src/system/gazebo/catvehicle/urdf/catvehicle_velodyne_points.gazebo deleted file mode 100644 index bd4ac38660e..00000000000 --- a/ros/src/system/gazebo/catvehicle/urdf/catvehicle_velodyne_points.gazebo +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - 0.6 - 0.5 - - - - - 0 0 0 0 0 0 - false - 30 - - - - 1000 - 1 - -3.14 - 3.14 - - - 32 - 1 - -0.18622663 - - 0.53529248 - - - - 1 - 150.0 - 0.02 - - - - - - velodyne - 101 - /$(arg roboname) - points_raw - 0.02 - 30 - - - - - - diff --git a/ros/src/system/gazebo/catvehicle/urdf/humancar.gazebo b/ros/src/system/gazebo/catvehicle/urdf/humancar.gazebo deleted file mode 100644 index c36fdaec499..00000000000 --- a/ros/src/system/gazebo/catvehicle/urdf/humancar.gazebo +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - 10000 - 10000 - 10000000 - 1 - 0.01 - 10.0 - - - - 10000 - 10000 - 10000000 - 1 - 0.01 - 10.0 - - - - 10000 - 10000 - 1000000 - 1 - 0.01 - 100.0 - - - - 10000 - 10000 - 1000000 - 1 - 0.01 - 100.0 - - - - 0.6 - 0.5 - 1000000 - 0.1 - 0.01 - 10.0 - - - - 0.6 - 0.5 - 1000000 - 0.1 - 0.01 - 10.0 - - - - - - /$(arg roboname) - gazebo_ros_control/DefaultRobotHWSim - - - - - - - - - back_left_wheel_joint, back_right_wheel_joint, front_left_steering_joint, front_right_steering_joint, front_right_wheel_joint, front_left_wheel_joint - 5.0 - /$(arg roboname) - true - - - - - - /$(arg roboname) - 100.0 - - - diff --git a/ros/src/system/gazebo/catvehicle/urdf/humancar.xacro b/ros/src/system/gazebo/catvehicle/urdf/humancar.xacro deleted file mode 100644 index a01f83b5c90..00000000000 --- a/ros/src/system/gazebo/catvehicle/urdf/humancar.xacro +++ /dev/null @@ -1,403 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - transmission_interface/SimpleTransmission - - VelocityJointInterface - - - VelocityJointInterface - 1 - - - - - transmission_interface/SimpleTransmission - - VelocityJointInterface - - - VelocityJointInterface - 1 - - - - - transmission_interface/SimpleTransmission - - PositionJointInterface - - - PositionJointInterface - 1 - - - - - transmission_interface/SimpleTransmission - - PositionJointInterface - - - PositionJointInterface - 1 - - - - - diff --git a/ros/src/system/gazebo/catvehicle/worlds/azcar.world b/ros/src/system/gazebo/catvehicle/worlds/azcar.world deleted file mode 100644 index 219721022b9..00000000000 --- a/ros/src/system/gazebo/catvehicle/worlds/azcar.world +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - model://ground_plane - - - - model://sun - - - - - 20 -20 20 0.000000 0.6 2.356190 - orbit - - - - - 0.01 - 1 - 100 - 0 0 -9.8 - - - - - diff --git a/ros/src/system/gazebo/catvehicle/worlds/barrels.world b/ros/src/system/gazebo/catvehicle/worlds/barrels.world deleted file mode 100644 index df978dd705e..00000000000 --- a/ros/src/system/gazebo/catvehicle/worlds/barrels.world +++ /dev/null @@ -1,1969 +0,0 @@ - - - - 1 - 0 0 10 0 -0 0 - 0.8 0.8 0.8 1 - 0.2 0.2 0.2 1 - - 1000 - 0.9 - 0.01 - 0.001 - - -0.5 0.1 -0.9 - - - 1 - - - - - 0 0 1 - 100 100 - - - - - - 100 - 50 - - - - - - - - 10 - - - 0 - - - 0 0 1 - 100 100 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - - - 0.001 - 1 - 1000 - 0 0 -9.8 - - - 0.4 0.4 0.4 1 - 0.7 0.7 0.7 1 - 1 - - - EARTH_WGS84 - 0 - 0 - 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - 8 -9 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - 13 -8.50998 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - 19 -8 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - -5 7 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - 12 5 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - -9 -5 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - -27 7.54531 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - -10 27 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - -31 -5 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - -9.56809 -20 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - -26 -14 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - 9 -23 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - 11 22 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - 27 6.44725 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - 25 -11 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - -19 19 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - 21 16 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - 3 28 0 0 -0 0 - 0 - - - 281 846000000 - 72 324664972 - 1485560276 529309325 - - -0.250932 -21.8081 -2e-06 6e-06 2e-06 -0.002034 - - -0.250932 -21.8081 -2e-06 6e-06 2e-06 -0.002034 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 12.0469 -15.2088 -3e-06 3e-06 -6e-06 -0.002048 - - 12.0469 -15.2088 -3e-06 3e-06 -6e-06 -0.002048 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 18.9999 -7.99888 1e-06 -1e-06 -2e-06 -0.002006 - - 18.9999 -7.99888 1e-06 -1e-06 -2e-06 -0.002006 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 8.9999 -22.9992 -3e-06 -2e-06 9e-06 -0.001422 - - 8.9999 -22.9992 -3e-06 -2e-06 9e-06 -0.001422 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 10.9999 22.0007 1e-06 -1e-06 -2e-06 -0.001372 - - 10.9999 22.0007 1e-06 -1e-06 -2e-06 -0.001372 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 26.9999 6.44798 1e-06 -1e-06 -2e-06 -0.001309 - - 26.9999 6.44798 1e-06 -1e-06 -2e-06 -0.001309 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 21.031 -12.6723 1e-06 -1e-06 -2e-06 -0.001219 - - 21.031 -12.6723 1e-06 -1e-06 -2e-06 -0.001219 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -19 19.0006 1e-06 -1e-06 -2e-06 -0.001183 - - -19 19.0006 1e-06 -1e-06 -2e-06 -0.001183 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 21 16.0006 1e-06 -1e-06 -2e-06 -0.00112 - - 21 16.0006 1e-06 -1e-06 -2e-06 -0.00112 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 2.99993 28.0006 1e-06 -1e-06 -2e-06 -0.001057 - - 2.99993 28.0006 1e-06 -1e-06 -2e-06 -0.001057 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -16.5172 12.0058 -4e-06 2e-06 -7e-06 -0.001926 - - -16.5172 12.0058 -4e-06 2e-06 -7e-06 -0.001926 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 19.134 9.52298 -2e-06 -1e-06 -7e-06 -0.001846 - - 19.134 9.52298 -2e-06 -1e-06 -7e-06 -0.001846 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 25.4331 -3.40512 -3e-06 3e-06 -6e-06 -0.001732 - - 25.4331 -3.40512 -3e-06 3e-06 -6e-06 -0.001732 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -27.0001 7.54625 -3e-06 3e-06 -6e-06 -0.001679 - - -27.0001 7.54625 -3e-06 3e-06 -6e-06 -0.001679 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -10.0001 27.0009 -1e-06 -2e-06 8e-06 -0.001682 - - -10.0001 27.0009 -1e-06 -2e-06 8e-06 -0.001682 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -31.0001 -4.99911 -4e-06 5e-06 9e-06 -0.001599 - - -31.0001 -4.99911 -4e-06 5e-06 9e-06 -0.001599 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -9.5682 -19.9991 -0 0 -0 -0.001545 - - -9.5682 -19.9991 -0 0 -0 -0.001545 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -26.0001 -13.9992 -0 0 -0 -0.00146 - - -26.0001 -13.9992 -0 0 -0 -0.00146 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 0 0 0 0 -0 0 - - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 0.597215 21.4103 0 0 -0 0 - - 0.597215 21.4103 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -10 22 0 0 -0 0 - - -10 22 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -26 2 0 0 -0 1.49459 - - -26 2 0 0 -0 1.49459 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -16 -16 0 0 -0 0 - - -16 -16 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 8 -18 0 0 -0 0 - - 8 -18 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 24 2 0 0 -0 1.52298 - - 24 2 0 0 -0 1.52298 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - - - 57.5279 -14.7529 58.8659 -4.21338e-17 0.851643 2.54019 - orbit - - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 0.597215 21.4103 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - -10 22 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - -26 2 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - -16 -16 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 8 -18 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 24 2 0 0 -0 0 - - - diff --git a/ros/src/system/gazebo/catvehicle/worlds/canyonview_field.world b/ros/src/system/gazebo/catvehicle/worlds/canyonview_field.world deleted file mode 100644 index 81ad9bfc6d5..00000000000 --- a/ros/src/system/gazebo/catvehicle/worlds/canyonview_field.world +++ /dev/null @@ -1,2337 +0,0 @@ - - - - 1 - 0 0 10 0 -0 0 - 0.8 0.8 0.8 1 - 0.2 0.2 0.2 1 - - 1000 - 0.9 - 0.01 - 0.001 - - -0.5 0.1 -0.9 - - - 1 - - - - - 0 0 1 - 100 100 - - - - - - 100 - 50 - - - - - - - - 10 - - - 0 - - - 0 0 1 - 100 100 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - - - 0.001 - 1 - 1000 - 0 0 -9.8 - - - 0.4 0.4 0.4 1 - 0.7 0.7 0.7 1 - 1 - - - EARTH_WGS84 - 0 - 0 - 0 - 0 - - - 1 - - - - - 20 20 0.1 - - - 10 - - - - - - - - - - - - 0 - - - 20 20 0.1 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 0 -0.566523 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 8 -10 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 0 -10 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - -7.48184 -10 0 0 -0 0 - - - 2157 19000000 - 174 106565443 - 1456853831 178896490 - - -6.61237 -4.95296 0.049999 -1e-06 -2e-06 3.1e-05 - - -6.61237 -4.95296 0.049999 -1e-06 -2e-06 3.1e-05 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 21.8481 -5.03809 0.049999 -1e-06 -2e-06 2.6e-05 - - 21.8481 -5.03809 0.049999 -1e-06 -2e-06 2.6e-05 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -6.60955 -3.1216 0.049999 -1e-06 -3e-06 0.000218 - - -6.60955 -3.1216 0.049999 -1e-06 -3e-06 0.000218 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 21.733 -3.37039 0.049999 3e-06 -1.03398e-25 0.000214 - - 21.733 -3.37039 0.049999 3e-06 -1.03398e-25 0.000214 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -5.55865 22.5873 0 0 -0 0 - - -5.55865 22.5873 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 10.5708 21.6062 0 0 -0 0 - - 10.5708 21.6062 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 23 21.4174 0 0 -0 0 - - 23 21.4174 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 0.030437 -3.13546 0 0 -0 0 - - 0.030437 -3.13546 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 0 10 0 0 -0 0 - - 0 10 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 15.4977 10 0 0 -0 0 - - 15.4977 10 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 0.098625 -18.8432 0 0 -0 0 - - 0.098625 -18.8432 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 15.5136 -18.7124 0 0 -0 0 - - 15.5136 -18.7124 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 15.4321 -3.44172 0 0 -0 0 - - 15.4321 -3.44172 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 0 0 0 0 -0 0 - - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 21.0984 -28.2425 0 0 -0 0 - - 21.0984 -28.2425 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 5.90195 -28.2526 0 0 -0 0 - - 5.90195 -28.2526 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -7.47394 -28.3953 0 0 -0 0 - - -7.47394 -28.3953 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -10.0111 3.35383 0 0 0 -1.54096 - - -10.0111 3.35383 0 0 0 -1.54096 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -9.89857 16.4946 0 0 0 -1.55018 - - -9.89857 16.4946 0 0 0 -1.55018 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -9.62184 -19.7051 0 0 0 -1.57192 - - -9.62184 -19.7051 0 0 0 -1.57192 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 25.0903 -13.975 0 0 0 -1.55011 - - 25.0903 -13.975 0 0 0 -1.55011 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -9.79209 -7.708 0 0 0 -1.56057 - - -9.79209 -7.708 0 0 0 -1.56057 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 24.9445 -1.63963 0 0 0 -1.55025 - - 24.9445 -1.63963 0 0 0 -1.55025 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 25.1873 7.83728 0 0 0 -1.5463 - - 25.1873 7.83728 0 0 0 -1.5463 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 25.6023 17.5115 0 0 0 -1.53629 - - 25.6023 17.5115 0 0 0 -1.53629 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - -10.4668 -4 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 10 -4 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - -10 4 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 10 3 0 0 -0 0 - - - 1 - - - - - 20 20 0.1 - - - 10 - - - - - - - - - - - - 0 - - - 20 20 0.1 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 0 10 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 10 10 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 10 17 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - -10 11 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - -9 17 0 0 -0 0 - - - - 4.19271 -4.73864 50.7829 0 1.5258 1.58289 - orbit - - - - 1 - - - - - model://house_2/meshes/house_2.dae - - - 10 - - - - - - - - - - - - - - model://house_2/meshes/house_2.dae - - - - - - model://house_1/materials/textures/House_1_Normal.png - - - - - 0 - 0 - - 0 - 0 - 1 - - -6 24 0 0 -0 0 - - - 1 - - - - - model://house_3/meshes/house_3.dae - - - 10 - - - - - - - - - - - - - - model://house_3/meshes/house_3.dae - - - - - - model://house_1/materials/textures/House_1_Normal.png - - - - - 0 - 0 - - 0 - 0 - 1 - - 6.44611 24 0 0 -0 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - -6.45916 5 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - 6 5 0 0 -0 0 - 0 - - - 1 - - - - - 20 20 0.1 - - - 10 - - - - - - - - - - - - 0 - - - 20 20 0.1 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 15.4977 10 0 0 -0 0 - - - 1 - - - - - 20 20 0.1 - - - 10 - - - - - - - - - - - - 0 - - - 20 20 0.1 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 0 -18 0 0 -0 0 - - - 1 - - - - - 20 20 0.1 - - - 10 - - - - - - - - - - - - 0 - - - 20 20 0.1 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 15.5321 -9.5053 0 0 -0 0 - - - 1 - - - - - 20 20 0.1 - - - 10 - - - - - - - - - - - - 0 - - - 20 20 0.1 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 15.4321 -3.44172 0 0 -0 0 - - - 1 - - - - - model://house_3/meshes/house_3.dae - - - 10 - - - - - - - - - - - - - - model://house_3/meshes/house_3.dae - - - - - - model://house_1/materials/textures/House_1_Normal.png - - - - - 0 - 0 - - 0 - 0 - 1 - - 23 21.4174 0 0 -0 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - -6.53856 -4.53181 0 0 -0 0 - 0 - - - - - 0 0 0.4 0 -0 0 - 500 - - 51.2096 - 51.2096 - 25 - 0 - 0 - 0 - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - 10 - - - - - - - - - - - - - - model://construction_barrel/meshes/construction_barrel.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - 21.5955 -5 0 0 -0 0 - 0 - - - diff --git a/ros/src/system/gazebo/catvehicle/worlds/neighborhood.world b/ros/src/system/gazebo/catvehicle/worlds/neighborhood.world deleted file mode 100644 index e4a8b0a5624..00000000000 --- a/ros/src/system/gazebo/catvehicle/worlds/neighborhood.world +++ /dev/null @@ -1,989 +0,0 @@ - - - - - - - - 1 - - - - - 0 0 1 - 100 100 - - - - - - 100 - 50 - - - - - - - - 10 - - - 0 - - - 0 0 1 - 100 100 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - - - 1 - 0 0 10 0 -0 0 - 0.8 0.8 0.8 1 - 0.2 0.2 0.2 1 - - 1000 - 0.9 - 0.01 - 0.001 - - -0.5 0.1 -0.9 - - - - 47.2952 -9.18432 14.3866 3.14536e-17 0.489796 2.43312 - orbit - - - - 0.001 - 1 - 1000 - 0 0 -9.8 - - - 0.4 0.4 0.4 1 - 0.7 0.7 0.7 1 - 1 - - - EARTH_WGS84 - 0 - 0 - 0 - 0 - - - 1 - - - - - 20 20 0.1 - - - 10 - - - - - - - - - - - - 0 - - - 20 20 0.1 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - -0.579832 7.43849 0 0 -0 0 - - - 1 - - - - - 20 20 0.1 - - - 10 - - - - - - - - - - - - 0 - - - 20 20 0.1 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 19 7.43486 0 0 -0 0 - - - 1 - - - - - 20 20 0.1 - - - 10 - - - - - - - - - - - - 0 - - - 20 20 0.1 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 39 7.49528 0 0 -0 0 - - - 1 - - - - - 20 20 0.1 - - - 10 - - - - - - - - - - - - 0 - - - 20 20 0.1 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 39 27.4494 0 0 -0 0 - - - 1 - - - - - 20 20 0.1 - - - 10 - - - - - - - - - - - - 0 - - - 20 20 0.1 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 39 47.4433 0 0 -0 0 - - - 1 - - - - - model://house_1/meshes/house_1.dae - - - 10 - - - - - - - - - - - - - - model://house_1/meshes/house_1.dae - - - - - - House_1_Normal.png - - - - - 0 - 0 - - 0 - 0 - 1 - - -2.40435 26 0 0 -0 0 - - - 1 - - - - - model://house_2/meshes/house_2.dae - - - 10 - - - - - - - - - - - - - - model://house_2/meshes/house_2.dae - - - - - - model://house_1/materials/textures/House_1_Normal.png - - - - - 0 - 0 - - 0 - 0 - 1 - - 10.586 29 0 0 -0 0 - - - 1 - - - - - model://house_3/meshes/house_3.dae - - - 10 - - - - - - - - - - - - - - model://house_3/meshes/house_3.dae - - - - - - model://house_1/materials/textures/House_1_Normal.png - - - - - 0 - 0 - - 0 - 0 - 1 - - 23 25 0 0 -0 0 - - - 1050 40000000 - 1497 796478139 - 1447871586 208377429 - - -2.40435 26 0 0 -0 0 - - -2.40435 26 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 10.586 29 0 0 -0 0 - - 10.586 29 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 23 25 0 0 -0 0 - - 23 25 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - -0.579832 7.43849 0 0 -0 0 - - -0.579832 7.43849 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 19 7.43486 0 0 -0 0 - - 19 7.43486 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 39 7.49528 0 0 -0 0 - - 39 7.49528 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 39 27.4494 0 0 -0 0 - - 39 27.4494 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 39 47.4433 0 0 -0 0 - - 39 47.4433 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 0 0 0 0 -0 0 - - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 27 17.8342 0 0 0 -3.08258 - - 27 17.8342 0 0 0 -3.08258 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 27 12 0 0.024381 -0.009147 1.53118 - - 27 12 0 0.024381 -0.009147 1.53118 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - 27 2 0 -0.006911 0.012543 1.48507 - - 27 2 0 -0.006911 0.012543 1.48507 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 27 18 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 27 12 0 0 -0 0 - - - 1 - - - - - model://jersey_barrier/meshes/jersey_barrier.dae - - - - - 0 0 0.5715 0 -0 0 - - - 4.06542 0.3063 1.143 - - - 10 - - - - - - - - - - - - 0 0 0.032258 0 -0 0 - - - 4.06542 0.8107 0.064516 - - - 10 - - - - - - - - - - - - 0 0 0.1 0 -0 0 - - - 4.06542 0.65 0.1 - - - 10 - - - - - - - - - - - - 0 0 0.2 0 -0 0 - - - 4.06542 0.5 0.1 - - - 10 - - - - - - - - - - - - 0 -0.224 0.2401 0.9 -0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 0.224 0.2401 -0.9 0 0 - - - 4.06542 0.5 0.064516 - - - 10 - - - - - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - 27 2 0 0 -0 0 - - - diff --git a/ros/src/system/gazebo/catvehicle/worlds/skidpan.world b/ros/src/system/gazebo/catvehicle/worlds/skidpan.world deleted file mode 100644 index 16b90a3e894..00000000000 --- a/ros/src/system/gazebo/catvehicle/worlds/skidpan.world +++ /dev/null @@ -1,130 +0,0 @@ - - - - 1 - - - - - 0 0 1 - 100 100 - - - - - - 100 - 50 - - - - - - - - 10 - - - 0 - - - 0 0 1 - 100 100 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - - - 1 - 0 0 10 0 -0 0 - 0.8 0.8 0.8 1 - 0.2 0.2 0.2 1 - - 1000 - 0.9 - 0.01 - 0.001 - - -0.5 0.1 -0.9 - - - - 59.5752 -26.7965 20.1721 3.14536e-17 0.489796 2.43312 - orbit - - - - - 0 0 -9.81 - 0.01 - 1 - 100 - - - quick - 5000 - 1.3 - - - 0 - 0.1 - 100 - 0.001 - - - - - 0.4 0.4 0.4 1 - 0.7 0.7 0.7 1 - 1 - - - EARTH_WGS84 - 0 - 0 - 0 - 0 - - - 1089 336000000 - 39 555346329 - 1460561885 675223227 - - 0 0 0 0 -0 0 - - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - 0 0 0 0 -0 0 - - - - - diff --git a/ros/src/system/gazebo/catvehicle/worlds/urban.world b/ros/src/system/gazebo/catvehicle/worlds/urban.world deleted file mode 100644 index cc637d3d4ce..00000000000 --- a/ros/src/system/gazebo/catvehicle/worlds/urban.world +++ /dev/null @@ -1,526 +0,0 @@ - - - - - - 1 - - - - - 0 0 1 - 100 100 - - - - - - 100 - 50 - - - - - - - - 10 - - - 0 - - - 0 0 1 - 1000 1000 - - - - - - - - 0 - 0 - - 0 - 0 - 1 - - - - - - -21.660200 -11.942800 12.053900 0.000000 0.443643 0.352194 - - - - 0.2 0.2 0.2 1.0 - false - - - 0 0 -9.81 - - - quick - 50 - 1.4 - - - 0.0 - 0.2 - 100.0 - 0.0 - - - 1000 - 0.001 - - - - false - 0 0 100 0 0 0 - 0.8 0.8 0.8 1 - 0.9 0.9 0.9 1 - - 1000 - 0.9 - 0.01 - 0.001 - - 0.2 0.2 -0.9 - - - false - -14 0 5 0 0 0 - 0.3 0.3 0.3 1 - 0.0 0.0 0.0 1 - - 80 - 0.9 - 0.01 - 0.001 - - - - model://construction_barrel - barrel_1 - 30 -1.0 0 0 0 0 - - - model://construction_barrel - barrel_2 - 60 1.2 0 0 0 0 - - - model://construction_barrel - barrel_3 - 108 5 0 0 0 0 - - - model://speed_limit_sign - speed_sign_1 - true - 15 -5 0 0 0 1.5707 - - - model://speed_limit_sign - speed_sign_2 - true - 70 5 0 0 0 1.5707 - - - model://speed_limit_sign - speed_sign_3 - true - 121 13 0 0 0 2.356 - - - model://speed_limit_sign - speed_sign_4 - true - 155 68 0 0 0 3.1415 - - - model://speed_limit_sign - speed_sign_5 - true - 175 95 0 0 0 1.5707 - - - model://house_1 - 12 9.5 0 0 0 0 - - - model://house_1 - house_1_b - 129.5 46 0 0 0 1.5707 - - - model://mailbox - mailbox_0 - true - 18 4 0 0 0 0 - - - model://mailbox - mailbox_1 - true - 24.5 -4.45 0 0 0 0 - - - model://house_2 - 30 -8 0 0 0 0 - - - model://house_2 - house_2_b - 77 8 0 0 0 0 - - - model://house_2 - house_2_c - 158 91 0 0 0 0 - - - model://house_3 - 54 7 0 0 0 0 - - - model://house_3 - house_3_b - 111 26 0 0 0 .78539 - - - model://house_3 - house_3_c - 170 106 0 0 0 0 - - - model://mailbox - mailbox_2 - true - 59 4.45 0 0 0 0 - - - model://fast_food - true - 95 7.0 0 0 0 0 - - - model://dumpster - true - 143 51.5 0 0 0 0 - - - model://gas_station - true - 135 84.8 0 0 0 0 - - - model://lamp_post - lamp_post_1 - true - 24 4 0 0 0 0 - - - model://lamp_post - lamp_post_2 - true - 54 4 0 0 0 0 - - - model://lamp_post - lamp_post_3 - true - 84 4 0 0 0 0 - - - model://lamp_post - lamp_post_4 - true - 14 -4 0 0 0 3.1415 - - - model://lamp_post - lamp_post_5 - true - 44 -4 0 0 0 3.1415 - - - model://lamp_post - lamp_post_6 - true - 74 -4 0 0 0 3.1415 - - - model://lamp_post - lamp_post_7 - true - 148 104 0 0 0 0 - - - model://lamp_post - lamp_post_8 - true - 178 104 0 0 0 0 - - - model://lamp_post - lamp_post_10 - true - 158 96 0 0 0 3.1415 - - - model://lamp_post - lamp_post_11 - true - 188 96 0 0 0 3.1415 - - - model://lamp_post - lamp_post_12 - true - 102 8 0 0 0 .785 - - - model://lamp_post - lamp_post_13 - true - 123 29 0 0 0 .785 - - - model://lamp_post - lamp_post_14 - true - 144 50 0 0 0 .785 - - - model://lamp_post - lamp_post_15 - true - 99 -4 0 0 0 3.1415 - - - model://lamp_post - lamp_post_16 - true - 120 14.5 0 0 0 -2.35 - - - model://lamp_post - lamp_post_17 - true - 141 35.5 0 0 0 -2.35 - - - 7.34 - 0 0 0.01 - 100 0 0.01 - 150 50 0.01 - 150 100 0.01 - 200 100 0.01 - - - - - 0 -0.1 0.95 0 -0 0 - 80 - - 24.88 - 0 - 0 - 25.73 - 0 - 2.48 - - - - 0 -0.1 0.01 0 -0 0 - - - 0.5 0.35 0.02 - - - 10 - - - - - - - - - - - - 0 0 0.02 0.04 -0 0 - - - model://person_standing/meshes/standing.dae - - - 10 - - - - - - - - - - - - 0 0 0.02 0.04 -0 0 - - - model://person_standing/meshes/standing.dae - - - - - 0 - 0 - - 0 - 0 - 1 - - 117 21 0 0 -0 0 - 0 - - - - true - - - 51 0 0 0 0 0 - - - 102 7.34 0.02 - - - - - - 100 - 50 - - - - - - 125 25 0 0 0 0.78539 - - - 72 7.34 0.02 - - - - - - 100 - 50 - - - - - - 150 75 0 0 0 0 - - - 7.34 53 0.02 - - - - - - 100 - 50 - - - - - - 173.5 100 0 0 0 0 - - - 54.5 7.34 0.02 - - - - - - 100 - 50 - - - - - - 198 106 0 0 0 0 - - - 6 5 0.02 - - - - - - 100 - 50 - - - - - - - - - - - diff --git a/ros/src/system/gazebo/laser_scan_converter/CHANGELOG.rst b/ros/src/system/gazebo/laser_scan_converter/CHANGELOG.rst deleted file mode 100644 index b5ebde80d50..00000000000 --- a/ros/src/system/gazebo/laser_scan_converter/CHANGELOG.rst +++ /dev/null @@ -1,93 +0,0 @@ -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Changelog for package laser_scan_converter -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -1.10.0 (2019-01-17) -------------------- -* Switch to Apache 2 license (develop branch) (`#1741 `_) - * Switch to Apache 2 - * Replace BSD-3 license header with Apache 2 and reassign copyright to the - Autoware Foundation. - * Update license on Python files - * Update copyright years - * Add #ifndef/define _POINTS_IMAGE_H\_ - * Updated license comment -* Contributors: Esteve Fernandez - -1.9.1 (2018-11-06) ------------------- - -1.9.0 (2018-10-31) ------------------- - -1.8.0 (2018-08-31) ------------------- - -1.7.0 (2018-05-18) ------------------- -* update Version from 1.6.3 to 1.7.0 in package.xml and CHANGELOG.rst -* Contributors: Kosuke Murakami - -1.6.3 (2018-03-06) ------------------- - -1.6.2 (2018-02-27) ------------------- -* Update CHANGELOG -* Contributors: Yusuke FUJII - -1.6.1 (2018-01-20) ------------------- -* update CHANGELOG -* Contributors: Yusuke FUJII - -1.6.0 (2017-12-11) ------------------- -* Prepare release for 1.6.0 -* Contributors: Yamato ANDO - -1.5.1 (2017-09-25) ------------------- -* Release/1.5.1 (`#816 `_) - * fix a build error by gcc version - * fix build error for older indigo version - * update changelog for v1.5.1 - * 1.5.1 -* Contributors: Yusuke FUJII - -1.5.0 (2017-09-21) ------------------- -* Update changelog -* Contributors: Yusuke FUJII - -1.4.0 (2017-08-04) ------------------- -* version number must equal current release number so we can start releasing in the future -* added changelogs -* Contributors: Dejan Pangercic - -1.3.1 (2017-07-16) ------------------- - -1.3.0 (2017-07-14) ------------------- - -1.2.0 (2017-06-07) ------------------- - -1.1.2 (2017-02-27 23:10) ------------------------- - -1.1.1 (2017-02-27 22:25) ------------------------- - -1.1.0 (2017-02-24) ------------------- -* Add Gazebo sim -* Contributors: Yukihiro Saito - -1.0.1 (2017-01-14) ------------------- - -1.0.0 (2016-12-22) ------------------- diff --git a/ros/src/system/gazebo/laser_scan_converter/CMakeLists.txt b/ros/src/system/gazebo/laser_scan_converter/CMakeLists.txt deleted file mode 100644 index c8768e05438..00000000000 --- a/ros/src/system/gazebo/laser_scan_converter/CMakeLists.txt +++ /dev/null @@ -1,99 +0,0 @@ -cmake_minimum_required(VERSION 2.8.3) -project(laser_scan_converter) - -## 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 - sensor_msgs - pcl_conversions - pcl_ros -) - - - -catkin_package() - -########### -## 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 cpp library -# add_library(point_cloud_converter -# src/${PROJECT_NAME}/point_cloud_converter.cpp -# ) - -## Declare a cpp executable -add_executable(laser_scan_converter_node src/converter.cpp) - -## Add cmake target dependencies of the executable/library -## as an example, message headers may need to be generated before nodes -# add_dependencies(point_cloud_converter_node point_cloud_converter_generate_messages_cpp) - -## Specify libraries to link a library or executable target against -target_link_libraries(laser_scan_converter_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 laser_scan_converter_node -# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} -# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} -) - - -foreach(dir launch) - install(DIRECTORY ${dir}/ - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/${dir}) -endforeach(dir) - - -## 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_point_cloud_converter.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/ros/src/system/gazebo/laser_scan_converter/launch/laser_scan_converter.launch b/ros/src/system/gazebo/laser_scan_converter/launch/laser_scan_converter.launch deleted file mode 100644 index 4d5c004676f..00000000000 --- a/ros/src/system/gazebo/laser_scan_converter/launch/laser_scan_converter.launch +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/ros/src/system/gazebo/laser_scan_converter/package.xml b/ros/src/system/gazebo/laser_scan_converter/package.xml deleted file mode 100644 index 13db8d07aa8..00000000000 --- a/ros/src/system/gazebo/laser_scan_converter/package.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - laser_scan_converter - 1.10.0 - The laser_scan_converter package to catvehcle laser scan to Autoware laser scan. - - - - Yukihiro Saito - - - Apache 2 - - catkin - roscpp - sensor_msgs - roscpp - sensor_msgs - - - - - - - - - - - diff --git a/ros/src/system/gazebo/laser_scan_converter/src/converter.cpp b/ros/src/system/gazebo/laser_scan_converter/src/converter.cpp deleted file mode 100644 index 3402b988a42..00000000000 --- a/ros/src/system/gazebo/laser_scan_converter/src/converter.cpp +++ /dev/null @@ -1,84 +0,0 @@ -/* - * Copyright 2015-2019 Autoware Foundation. All rights reserved. - * - * 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 -#include -#include - -using namespace std; - -class LaserScanConverter { -private: - boost::mutex m_mutex_; - // ROS - ros::NodeHandle nh_; - ros::Subscriber sub_points_; - ros::Publisher pub_points_; - - int queue_size_; - string laser_in_, laser_out_; - -public: - LaserScanConverter() - : nh_("~"), queue_size_(100), laser_in_("/points_in"), - laser_out_("/points_out") { - // Subscribe to the cloud topic using both the old message format and the - // new - sub_points_ = nh_.subscribe(laser_in_, queue_size_, - &LaserScanConverter::cloud_cb_points, this); - - pub_points_ = - nh_.advertise(laser_out_, queue_size_); - nh_.resolveName(laser_in_).c_str(); - nh_.resolveName(laser_out_).c_str(); - } - - void cloud_cb_points(const sensor_msgs::LaserScanConstPtr &msg) { - if (pub_points_.getNumSubscribers() <= 0) { - // ROS_DEBUG ("[point_cloud_converter] Got a PointCloud with %d points on - // %s, but no subscribers.", (int)msg->points.size (), nh_.resolveName - // (points_in_).c_str ()); - return; - } - - sensor_msgs::LaserScan output; - output = *msg; - output.ranges.clear(); - output.intensities.clear(); - for (int i; i < (int)msg->ranges.size(); ++i) { - if (msg->ranges.at(i) > 40.0) { - output.ranges.push_back(0); - output.intensities.push_back(0); - continue; - } - output.ranges.push_back(msg->ranges.at(i)); - output.intensities.push_back(msg->intensities.at(i)); - } - pub_points_.publish(output); - } -}; - -/* ---[ */ -int main(int argc, char **argv) { - // ROS init - ros::init(argc, argv, "laser_scan_converter", - ros::init_options::AnonymousName); - - LaserScanConverter p; - ros::spin(); - - return (0); -} diff --git a/ros/src/system/gazebo/point_cloud_converter/CHANGELOG.rst b/ros/src/system/gazebo/point_cloud_converter/CHANGELOG.rst deleted file mode 100644 index 2cd41a606c6..00000000000 --- a/ros/src/system/gazebo/point_cloud_converter/CHANGELOG.rst +++ /dev/null @@ -1,83 +0,0 @@ -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Changelog for package point_cloud_converter -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -1.10.0 (2019-01-17) -------------------- - -1.9.1 (2018-11-06) ------------------- - -1.9.0 (2018-10-31) ------------------- - -1.8.0 (2018-08-31) ------------------- - -1.7.0 (2018-05-18) ------------------- -* update Version from 1.6.3 to 1.7.0 in package.xml and CHANGELOG.rst -* Contributors: Kosuke Murakami - -1.6.3 (2018-03-06) ------------------- - -1.6.2 (2018-02-27) ------------------- -* Update CHANGELOG -* Contributors: Yusuke FUJII - -1.6.1 (2018-01-20) ------------------- -* update CHANGELOG -* Contributors: Yusuke FUJII - -1.6.0 (2017-12-11) ------------------- - -1.5.1 (2017-09-25) ------------------- -* Release/1.5.1 (`#816 `_) - * fix a build error by gcc version - * fix build error for older indigo version - * update changelog for v1.5.1 - * 1.5.1 -* Contributors: Yusuke FUJII - -1.5.0 (2017-09-21) ------------------- -* Update changelog -* Contributors: Yusuke FUJII - -1.4.0 (2017-08-04) ------------------- -* version number must equal current release number so we can start releasing in the future -* added changelogs -* Contributors: Dejan Pangercic - -1.3.1 (2017-07-16) ------------------- - -1.3.0 (2017-07-14) ------------------- - -1.2.0 (2017-06-07) ------------------- - -1.1.2 (2017-02-27 23:10) ------------------------- - -1.1.1 (2017-02-27 22:25) ------------------------- - -1.1.0 (2017-02-24) ------------------- -* Tuned gazebo parameter -* Add Gazebo sim -* Contributors: Yukihiro Saito - -1.0.1 (2017-01-14) ------------------- - -1.0.0 (2016-12-22) ------------------- diff --git a/ros/src/system/gazebo/point_cloud_converter/CMakeLists.txt b/ros/src/system/gazebo/point_cloud_converter/CMakeLists.txt deleted file mode 100644 index 9425731525f..00000000000 --- a/ros/src/system/gazebo/point_cloud_converter/CMakeLists.txt +++ /dev/null @@ -1,99 +0,0 @@ -cmake_minimum_required(VERSION 2.8.3) -project(point_cloud_converter) - -## 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 - sensor_msgs - pcl_conversions - pcl_ros -) - - - -catkin_package() - -########### -## 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 cpp library -# add_library(point_cloud_converter -# src/${PROJECT_NAME}/point_cloud_converter.cpp -# ) - -## Declare a cpp executable -add_executable(point_cloud_converter_node src/converter.cpp) - -## Add cmake target dependencies of the executable/library -## as an example, message headers may need to be generated before nodes -# add_dependencies(point_cloud_converter_node point_cloud_converter_generate_messages_cpp) - -## Specify libraries to link a library or executable target against -target_link_libraries(point_cloud_converter_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 point_cloud_converter_node -# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} -# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} -) - - -foreach(dir launch) - install(DIRECTORY ${dir}/ - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/${dir}) -endforeach(dir) - - -## 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_point_cloud_converter.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/ros/src/system/gazebo/point_cloud_converter/launch/point_cloud_converter.launch b/ros/src/system/gazebo/point_cloud_converter/launch/point_cloud_converter.launch deleted file mode 100644 index 62f8290639f..00000000000 --- a/ros/src/system/gazebo/point_cloud_converter/launch/point_cloud_converter.launch +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/ros/src/system/gazebo/point_cloud_converter/package.xml b/ros/src/system/gazebo/point_cloud_converter/package.xml deleted file mode 100644 index 79e8434aaa2..00000000000 --- a/ros/src/system/gazebo/point_cloud_converter/package.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - point_cloud_converter - 1.10.0 - The point_cloud_converter package to convert PointCloud to PointCloud2 or PointCloud2 to PointCloud. Basically the node of - http://wiki.ros.org/point_cloud_converter by Radu Bogdan Rusu revived. - - - - - Sammy Pfeiffer - - - TODO - - catkin - roscpp - sensor_msgs - roscpp - sensor_msgs - - - - - - - - - - - \ No newline at end of file diff --git a/ros/src/system/gazebo/point_cloud_converter/src/converter.cpp b/ros/src/system/gazebo/point_cloud_converter/src/converter.cpp deleted file mode 100644 index 814e9e81eb6..00000000000 --- a/ros/src/system/gazebo/point_cloud_converter/src/converter.cpp +++ /dev/null @@ -1,174 +0,0 @@ -/* - * Software License Agreement (BSD License) - * - * Copyright (c) 2009, 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. - * - * $Id: converter.cpp 33249 2010-03-11 02:09:24Z rusu $ - * - */ - -#include -#include -#include -#include -#include -#include -#include - -using namespace std; - -class PointCloudConverter -{ - private: - boost::mutex m_mutex_; - // ROS - ros::NodeHandle nh_; - ros::Subscriber sub_points_, sub_points2_; - ros::Publisher pub_points_, pub_points2_; - - int queue_size_; - string points_in_, points2_in_, points_out_, points2_out_; - - public: - PointCloudConverter () : nh_ ("~"), queue_size_ (100), - points_in_ ("/points_in"), points2_in_ ("/points2_in"), - points_out_ ("/points_out"), points2_out_ ("/points2_out") - { - // Subscribe to the cloud topic using both the old message format and the new - sub_points_ = nh_.subscribe (points_in_, queue_size_, &PointCloudConverter::cloud_cb_points, this); - sub_points2_ = nh_.subscribe (points2_in_, queue_size_, &PointCloudConverter::cloud_cb_points2, this); - pub_points_ = nh_.advertise (points_out_, queue_size_); - pub_points2_ = nh_.advertise (points2_out_, queue_size_); - ROS_INFO ("PointCloudConverter initialized to transform from PointCloud (%s) to PointCloud2 (%s).", nh_.resolveName (points_in_).c_str (), nh_.resolveName (points2_out_).c_str ()); - ROS_INFO ("PointCloudConverter initialized to transform from PointCloud2 (%s) to PointCloud (%s).", nh_.resolveName (points2_in_).c_str (), nh_.resolveName (points_out_).c_str ()); - } - - - inline std::string - getFieldsList (const sensor_msgs::PointCloud2 &cloud) - { - std::string result; - for (size_t i = 0; i < cloud.fields.size () - 1; ++i) - result += cloud.fields[i].name + " "; - result += cloud.fields[cloud.fields.size () - 1].name; - return (result); - } - - - inline std::string - getFieldsList (const sensor_msgs::PointCloud &points) - { - std::string result = "x y z"; - for (size_t i = 0; i < points.channels.size (); i++) - result = result + " " + points.channels[i].name; - return (result); - } - - - void - cloud_cb_points2 (const sensor_msgs::PointCloud2ConstPtr &msg) - { - if (pub_points_.getNumSubscribers () <= 0) - { - //ROS_DEBUG ("[point_cloud_converter] Got a PointCloud2 with %d points on %s, but no subscribers.", msg->width * msg->height, nh_.resolveName (points2_in_).c_str ()); - return; - } - - ROS_DEBUG ("[point_cloud_converter] Got a PointCloud2 with %d points (%s) on %s.", msg->width * msg->height, getFieldsList (*msg).c_str (), nh_.resolveName (points2_in_).c_str ()); - - sensor_msgs::PointCloud output; - // Convert to the new PointCloud format - if (!sensor_msgs::convertPointCloud2ToPointCloud (*msg, output)) - { - ROS_ERROR ("[point_cloud_converter] Conversion from sensor_msgs::PointCloud2 to sensor_msgs::PointCloud failed!"); - return; - } - ROS_DEBUG ("[point_cloud_converter] Publishing a PointCloud with %d points on %s.", (int)output.points.size (), nh_.resolveName (points_out_).c_str ()); - pub_points_.publish (output); - } - - - void - cloud_cb_points (const sensor_msgs::PointCloudConstPtr &msg) - { - if (pub_points2_.getNumSubscribers () <= 0) - { - //ROS_DEBUG ("[point_cloud_converter] Got a PointCloud with %d points on %s, but no subscribers.", (int)msg->points.size (), nh_.resolveName (points_in_).c_str ()); - return; - } - - ROS_DEBUG ("[point_cloud_converter] Got a PointCloud with %d points (%s) on %s.", (int)msg->points.size (), getFieldsList (*msg).c_str (), nh_.resolveName (points_in_).c_str ()); - - sensor_msgs::PointCloud2 output; - // Convert to the old point cloud format - if (!sensor_msgs::convertPointCloudToPointCloud2 (*msg, output)) - { - ROS_ERROR ("[point_cloud_converter] Conversion from sensor_msgs::PointCloud to sensor_msgs::PointCloud2 failed!"); - return; - } - ROS_DEBUG ("[point_cloud_converter] Publishing a PointCloud2 with %d points on %s.", output.height * output.width, nh_.resolveName (points2_out_).c_str ()); - - - pcl::PointCloud pcl_output; - pcl::fromROSMsg(output, pcl_output); - - pcl::PointCloud::Ptr filtered_output_ptr(new pcl::PointCloud()); - sensor_msgs::PointCloud2 filtered_output; - for (pcl::PointCloud::const_iterator item = pcl_output.begin(); item != pcl_output.end(); item++) - { - if (item->x * item->x + item->y * item->y + item->z * item->z > 100.0*100.0) - continue; - pcl::PointXYZI sampled_p; - sampled_p.x = item->x; - sampled_p.y = item->y; - sampled_p.z = item->z; - sampled_p.intensity = 0; - filtered_output_ptr->points.push_back(sampled_p); - } - pcl::toROSMsg(*filtered_output_ptr, filtered_output); - filtered_output.header = output.header; - pub_points2_.publish (filtered_output); - } - -}; - -/* ---[ */ -int - main (int argc, char** argv) -{ - // ROS init - ros::init (argc, argv, "point_cloud_converter", ros::init_options::AnonymousName); - - PointCloudConverter p; - ros::spin (); - - return (0); -} diff --git a/ros/src/system/gazebo/script/run.sh b/ros/src/system/gazebo/script/run.sh deleted file mode 100755 index 52d91b4bea4..00000000000 --- a/ros/src/system/gazebo/script/run.sh +++ /dev/null @@ -1,38 +0,0 @@ -#! /bin/bash -MY_PATH=$(readlink -f $(dirname $0)) - -# what type of terminal -OPTION_TITLE='--title' -OPTION_WORKING_DIR='working-directory' -OPTION_CORE_GEOMETRY='--geometry=50x10+0+0' -OPTION_RM_GEOMETRY='--geometry=50x10+500+0' -OPTION_COMMAND='--command' - -if [ $(which gnome-terminal) ]; then - TERMINAL=gnome-terminal -elif [ $(which mate-terminal) ]; then - TERMINAL=mate-terminal -elif [ $(which xfce4-terminal) ]; then - TERMINAL=xfce4-terminal -elif [ $(which lxterminal) ]; then - TERMINAL=lxterminal -elif [ $(which konsole) ]; then - TERMINAL=konsole - OPTION_WORKING_DIR='workdir' - OPTION_CORE_GEOMETRY='' - OPTION_RM_GEOMETRY='' - OPTION_PM_GEOMETRY='' - OPTION_COMMAND='-e' - OPTION_TITLE='-T' -fi - -echo "Process Manager" - -# boot gzserver -${TERMINAL} ${OPTION_CORE_GEOMETRY} ${OPTION_TITLE}="gzserver" --${OPTION_WORKING_DIR}=${MY_PATH} ${OPTION_COMMAND}="bash -c 'source ./devel/setup.bash; roslaunch catvehicle catvehicle_skidpan.launch'"& -# boot gzclient -${TERMINAL} ${OPTION_RM_GEOMETRY} ${OPTION_TITLE}="gzclient" --${OPTION_WORKING_DIR}=${MY_PATH} ${OPTION_COMMAND}="bash -c 'source ./devel/setup.bash; gzclient'" -# boot catvehicle2autoware -${TERMINAL} ${OPTION_RM_GEOMETRY} ${OPTION_TITLE}="catvehicle2autoware" --${OPTION_WORKING_DIR}=${MY_PATH} ${OPTION_COMMAND}="bash -c 'source ./devel/setup.bash; roslaunch point_cloud_converter point_cloud_converter.launch'" -${TERMINAL} ${OPTION_RM_GEOMETRY} ${OPTION_TITLE}="catvehicle2autoware" --${OPTION_WORKING_DIR}=${MY_PATH} ${OPTION_COMMAND}="bash -c 'source ./devel/setup.bash; roslaunch laser_scan_converter laser_scan_converter.launch'" -${TERMINAL} ${OPTION_RM_GEOMETRY} ${OPTION_TITLE}="catvehicle2autoware" --${OPTION_WORKING_DIR}=${MY_PATH} ${OPTION_COMMAND}="bash -c 'source ./devel/setup.bash; roslaunch twist_cmd_converter twist_cmd_converter.launch'" diff --git a/ros/src/system/gazebo/twist_cmd_converter/CHANGELOG.rst b/ros/src/system/gazebo/twist_cmd_converter/CHANGELOG.rst deleted file mode 100644 index f06cfe83553..00000000000 --- a/ros/src/system/gazebo/twist_cmd_converter/CHANGELOG.rst +++ /dev/null @@ -1,93 +0,0 @@ -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Changelog for package twist_cmd_converter -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -1.10.0 (2019-01-17) -------------------- -* Switch to Apache 2 license (develop branch) (`#1741 `_) - * Switch to Apache 2 - * Replace BSD-3 license header with Apache 2 and reassign copyright to the - Autoware Foundation. - * Update license on Python files - * Update copyright years - * Add #ifndef/define _POINTS_IMAGE_H\_ - * Updated license comment -* Contributors: Esteve Fernandez - -1.9.1 (2018-11-06) ------------------- - -1.9.0 (2018-10-31) ------------------- - -1.8.0 (2018-08-31) ------------------- - -1.7.0 (2018-05-18) ------------------- -* update Version from 1.6.3 to 1.7.0 in package.xml and CHANGELOG.rst -* Contributors: Kosuke Murakami - -1.6.3 (2018-03-06) ------------------- - -1.6.2 (2018-02-27) ------------------- -* Update CHANGELOG -* Contributors: Yusuke FUJII - -1.6.1 (2018-01-20) ------------------- -* update CHANGELOG -* Contributors: Yusuke FUJII - -1.6.0 (2017-12-11) ------------------- -* Prepare release for 1.6.0 -* Contributors: Yamato ANDO - -1.5.1 (2017-09-25) ------------------- -* Release/1.5.1 (`#816 `_) - * fix a build error by gcc version - * fix build error for older indigo version - * update changelog for v1.5.1 - * 1.5.1 -* Contributors: Yusuke FUJII - -1.5.0 (2017-09-21) ------------------- -* Update changelog -* Contributors: Yusuke FUJII - -1.4.0 (2017-08-04) ------------------- -* version number must equal current release number so we can start releasing in the future -* added changelogs -* Contributors: Dejan Pangercic - -1.3.1 (2017-07-16) ------------------- - -1.3.0 (2017-07-14) ------------------- - -1.2.0 (2017-06-07) ------------------- - -1.1.2 (2017-02-27 23:10) ------------------------- - -1.1.1 (2017-02-27 22:25) ------------------------- - -1.1.0 (2017-02-24) ------------------- -* Add Gazebo sim -* Contributors: Yukihiro Saito - -1.0.1 (2017-01-14) ------------------- - -1.0.0 (2016-12-22) ------------------- diff --git a/ros/src/system/gazebo/twist_cmd_converter/CMakeLists.txt b/ros/src/system/gazebo/twist_cmd_converter/CMakeLists.txt deleted file mode 100644 index 916a9d125e3..00000000000 --- a/ros/src/system/gazebo/twist_cmd_converter/CMakeLists.txt +++ /dev/null @@ -1,97 +0,0 @@ -cmake_minimum_required(VERSION 2.8.3) -project(twist_cmd_converter) - -## 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 - geometry_msgs -) - - - -catkin_package() - -########### -## 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 cpp library -# add_library(point_cloud_converter -# src/${PROJECT_NAME}/point_cloud_converter.cpp -# ) - -## Declare a cpp executable -add_executable(twist_cmd_converter_node src/converter.cpp) - -## Add cmake target dependencies of the executable/library -## as an example, message headers may need to be generated before nodes -# add_dependencies(twist_cmd_converter_node twist_cmd_generate_messages_cpp) - -## Specify libraries to link a library or executable target against -target_link_libraries(twist_cmd_converter_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 twist_cmd_converter_node -# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} -# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} - RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} -) - - -foreach(dir launch) - install(DIRECTORY ${dir}/ - DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/${dir}) -endforeach(dir) - - -## 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_point_cloud_converter.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/ros/src/system/gazebo/twist_cmd_converter/launch/twist_cmd_converter.launch b/ros/src/system/gazebo/twist_cmd_converter/launch/twist_cmd_converter.launch deleted file mode 100644 index 6c115bb68de..00000000000 --- a/ros/src/system/gazebo/twist_cmd_converter/launch/twist_cmd_converter.launch +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/ros/src/system/gazebo/twist_cmd_converter/package.xml b/ros/src/system/gazebo/twist_cmd_converter/package.xml deleted file mode 100644 index c6b87e9fc6a..00000000000 --- a/ros/src/system/gazebo/twist_cmd_converter/package.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - twist_cmd_converter - 1.10.0 - The twist_cmd_converter package from Autoware twist cmd to catvehcle twist cmd. - - - - Yukihiro Saito - - - Apache 2 - - catkin - roscpp - geometry_msgs - roscpp - geometry_msgs - - - - - - - - - - - diff --git a/ros/src/system/gazebo/twist_cmd_converter/src/converter.cpp b/ros/src/system/gazebo/twist_cmd_converter/src/converter.cpp deleted file mode 100644 index 7427ee731aa..00000000000 --- a/ros/src/system/gazebo/twist_cmd_converter/src/converter.cpp +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Copyright 2015-2019 Autoware Foundation. All rights reserved. - * - * 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 -#include -#include -#include -#include - -using namespace std; - -class TwistCmdConverter { -private: - boost::mutex m_mutex_; - // ROS - ros::NodeHandle nh_; - ros::Subscriber sub_twist_; - ros::Publisher pub_twist_; - - int queue_size_; - string twist_in_, twist_out_; - -public: - TwistCmdConverter() - : nh_("~"), queue_size_(100), twist_in_("/twist_in"), - twist_out_("/twist_out") { - // Subscribe to the cloud topic using both the old message format and the - // new - sub_twist_ = nh_.subscribe(twist_in_, queue_size_, - &TwistCmdConverter::cloud_cb_twist, this); - - pub_twist_ = nh_.advertise(twist_out_, queue_size_); - nh_.resolveName(twist_in_).c_str(); - nh_.resolveName(twist_out_).c_str(); - } - - void cloud_cb_twist(const geometry_msgs::TwistStampedConstPtr &msg) { - if (pub_twist_.getNumSubscribers() <= 0) { - // ROS_DEBUG ("[point_cloud_converter] Got a PointCloud with %d points on - // %s, but no subscribers.", (int)msg->points.size (), nh_.resolveName - // (points_in_).c_str ()); - return; - } - - geometry_msgs::Twist output; - output = msg->twist; - pub_twist_.publish(output); - } -}; - -/* ---[ */ -int main(int argc, char **argv) { - // ROS init - ros::init(argc, argv, "twist_cmd_converter", - ros::init_options::AnonymousName); - - TwistCmdConverter p; - ros::spin(); - - return (0); -} diff --git a/ros/src/system/sync/CMakeLists.txt b/ros/src/system/sync/CMakeLists.txt index 36c42b6f6c8..c171f0f05c7 100644 --- a/ros/src/system/sync/CMakeLists.txt +++ b/ros/src/system/sync/CMakeLists.txt @@ -57,3 +57,20 @@ target_link_libraries(sync_obj_fusion ${catkin_LIBRARIES} ${OpenCV_LIBS}) add_executable(time_monitor time_monitor.cpp) target_link_libraries(time_monitor ${catkin_LIBRARIES} ${OpenCV_LIBS}) add_dependencies(time_monitor ${catkin_EXPORTED_TARGETS}) + + +install(TARGETS + sync_drivers + sync_range_fusion + sync_track + sync_obj_reproj + sync_obj_fusion + time_monitor + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) diff --git a/ros/src/util/packages/autoware_bag_tools/CMakeLists.txt b/ros/src/util/packages/autoware_bag_tools/CMakeLists.txt index 514af81c13b..d774f392fc3 100644 --- a/ros/src/util/packages/autoware_bag_tools/CMakeLists.txt +++ b/ros/src/util/packages/autoware_bag_tools/CMakeLists.txt @@ -19,4 +19,9 @@ install(PROGRAMS add_executable(nmea2kml nodes/nmea2kml/nmea2kml.cpp nodes/nmea2kml/ReadNMEASentence.cpp) target_link_libraries(nmea2kml ${catkin_LIBRARIES}) -add_dependencies(nmea2kml ${catkin_EXPORTED_TARGETS}) \ No newline at end of file +add_dependencies(nmea2kml ${catkin_EXPORTED_TARGETS}) + +install(TARGETS nmea2kml + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/CMakeLists.txt b/ros/src/util/packages/autoware_launcher/CMakeLists.txt new file mode 100644 index 00000000000..a3fe389c131 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/CMakeLists.txt @@ -0,0 +1,18 @@ +cmake_minimum_required(VERSION 2.8.3) +project(autoware_launcher) + +find_package(catkin REQUIRED COMPONENTS python_qt_binding) +catkin_python_setup() + +catkin_package( + LIBRARIES autoware_launcher + CATKIN_DEPENDS python_qt_binding +) + +catkin_install_python(PROGRAMS scripts/main + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) + +if(CATKIN_ENABLE_TESTING) + catkin_add_nosetests(tests) +endif() diff --git a/ros/src/util/packages/autoware_launcher/README.md b/ros/src/util/packages/autoware_launcher/README.md new file mode 100644 index 00000000000..e662b1c0b59 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/README.md @@ -0,0 +1,15 @@ +# Autoware Launcher + +## Quick Start + +1. Start the Autoware Launcher
`$ rosrun autoware_launcher main` +1. Load a profile
File -> Load Profile +1. Show simulation panel
View -> Simulation +1. Play rosbag
Check "Simulation Mode", then, push "Play" button. +1. Push launch buttons
Map, Vehicle, Sensing, Visualization +1. Push buttons on rviz plugin
localization +1. Check the estimated vehicle pose. +1. Push buttons on rviz plugin
detection, prediction, decision, mission, motion + +## Plugins +* [Plugin File Format](./documents/plugin/format.md) diff --git a/ros/src/util/packages/autoware_launcher/documents/plugin/format.md b/ros/src/util/packages/autoware_launcher/documents/plugin/format.md new file mode 100644 index 00000000000..0883d40754a --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/documents/plugin/format.md @@ -0,0 +1,71 @@ +# Autoware Launcher Plugin File Format + +The plugin file is yaml file. Currently, there are the following versions. +* Plugin Version 0.1 (experimental) + +# Plugin Version 0.1 + +## Plugin File +The file is the following dictionary. + +### Node Type + +| Key | Type | Value/Comment | +|----------|--------|---------------| +| format | string | Fixed value: Autoware Launcher Plugin Version 0.1 | +| exts | [Extended Data List](#extended_data) | Extended Data Definitions | +| rules | [Children Rule List](#children_rule) | Children Rule Definitions | + +### Leaf Type + +| Key | Type | Value/Comment | +|----------|--------|---------------| +| format | string | Fixed value: Autoware Launcher Plugin Version 0.1 | +| rosxml | string | Path to roslaunch xml file | +| exts | [Extended Data List](#extended_data) | Extended Data Definitions | +| args | [Argument Data List](#argument_data) | Argument Data Definitions | + + +## Argument Data / Extended Data + +dictionary + +| Key | Type | Value/Comment | +|---------|---------------|---------------| +| name | string | Data name | +| type | string | Data type (Enum: [str, int, real, bool]) | +| list | string / null | List format: (Enum: [null, space, yaml]) | +| default | | Default value | + +## Children Rule + +dictionary + +| Key | Type | Value/Comment | +|---------|---------------|---------------| +| name | string | Child node name | +| list | bool | Is multiple node | +| plugin | [Reference Rule](#ref_rule) | Child type | + +## Reference Rule + +list (If a type other than the list is specified, it is converted to a list with 1 element.) + +Each element of the list must be: +* Path Type +* Scan Type + +### Path Type + +Type is string. Specify the path to the plugin file. + +### Scan Type + +Type is dictionary. Scan all plugin files from the specified root path. + +| Key | Type | Value/Comment | +|---------|---------------|-----------------| +| scan | string | Scan root path | + + + diff --git a/ros/src/util/packages/autoware_launcher/package.xml b/ros/src/util/packages/autoware_launcher/package.xml new file mode 100644 index 00000000000..2004e92c504 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/package.xml @@ -0,0 +1,26 @@ + + + + autoware_launcher + 0.1.0 + The tool for easily launching Autoware + + Isamu Takagi + Apache 2.0 + + catkin + python_qt_binding + rospy + python-rospkg + python_qt_binding + rospy + python-rospkg + python_qt_binding + rospy + python-rospkg + rostest + python-nose + + + + diff --git a/ros/src/util/packages/autoware_launcher/plugins/driver/camera/usb.xml b/ros/src/util/packages/autoware_launcher/plugins/driver/camera/usb.xml new file mode 100644 index 00000000000..da7a45d2081 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/driver/camera/usb.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/ros/src/util/packages/autoware_launcher/plugins/driver/camera/usb.yaml b/ros/src/util/packages/autoware_launcher/plugins/driver/camera/usb.yaml new file mode 100644 index 00000000000..ca959dfaa23 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/driver/camera/usb.yaml @@ -0,0 +1,15 @@ +format: Autoware Launcher Plugin Version 0.1 +args: +- { name: width, type: int } +- { name: height, type: int } +- { name: fps, type: int } + +panel: + widget: node.panel + frames: + - target: args.width + widget: basic.int + - target: args.height + widget: basic.int + - target: args.fps + widget: basic.int diff --git a/ros/src/util/packages/autoware_launcher/plugins/driver/lidar/vlp16.xml b/ros/src/util/packages/autoware_launcher/plugins/driver/lidar/vlp16.xml new file mode 100644 index 00000000000..dd5017dda34 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/driver/lidar/vlp16.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/driver/lidar/vlp16.yaml b/ros/src/util/packages/autoware_launcher/plugins/driver/lidar/vlp16.yaml new file mode 100644 index 00000000000..d78e5081cc9 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/driver/lidar/vlp16.yaml @@ -0,0 +1,15 @@ +format: Autoware Launcher Plugin Version 0.1 +args: +- { name: local_frame, type: str } +- { name: device_addr, type: str } +- { name: device_port, type: int } + +panel: + widget: node.panel + frames: + - target: args.local_frame + widget: basic.text + - target: args.device_addr + widget: basic.text + - target: args.device_port + widget: basic.int diff --git a/ros/src/util/packages/autoware_launcher/plugins/driver/lidar/vlp32c.xml b/ros/src/util/packages/autoware_launcher/plugins/driver/lidar/vlp32c.xml new file mode 100644 index 00000000000..d852253fbb9 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/driver/lidar/vlp32c.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/driver/lidar/vlp32c.yaml b/ros/src/util/packages/autoware_launcher/plugins/driver/lidar/vlp32c.yaml new file mode 100644 index 00000000000..d78e5081cc9 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/driver/lidar/vlp32c.yaml @@ -0,0 +1,15 @@ +format: Autoware Launcher Plugin Version 0.1 +args: +- { name: local_frame, type: str } +- { name: device_addr, type: str } +- { name: device_port, type: int } + +panel: + widget: node.panel + frames: + - target: args.local_frame + widget: basic.text + - target: args.device_addr + widget: basic.text + - target: args.device_port + widget: basic.int diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/calibration.xml b/ros/src/util/packages/autoware_launcher/plugins/leaf/calibration.xml new file mode 100644 index 00000000000..908bcd40119 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/calibration.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/calibration.yaml b/ros/src/util/packages/autoware_launcher/plugins/leaf/calibration.yaml new file mode 100644 index 00000000000..4c74a238433 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/calibration.yaml @@ -0,0 +1,10 @@ +format: Autoware Launcher Plugin Version 0.1 +args: +- name: calibration_file + type: str + +panel: + widget: node.panel + frames: + - target: args.calibration_file + widget: basic.file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/concat.xml b/ros/src/util/packages/autoware_launcher/plugins/leaf/concat.xml new file mode 100644 index 00000000000..bebd2920f55 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/concat.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/concat.yaml b/ros/src/util/packages/autoware_launcher/plugins/leaf/concat.yaml new file mode 100644 index 00000000000..b8eca7b2b77 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/concat.yaml @@ -0,0 +1,15 @@ +format: Autoware Launcher Plugin Version 0.1 +args: +- { name: input_topics, type: str, list: yaml } +- { name: output_topic, type: str, default: /points_raw } +- { name: output_frame, type: str, default: velodyne } + +panel: + widget: node.panel + frames: + - target: args.output_frame + widget: basic.text + - target: args.output_topic + widget: basic.text + - target: args.input_topics + widget: basic.textlist diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/lane_rule.xml b/ros/src/util/packages/autoware_launcher/plugins/leaf/lane_rule.xml new file mode 100644 index 00000000000..bbf716f90fc --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/lane_rule.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/lane_rule.yaml b/ros/src/util/packages/autoware_launcher/plugins/leaf/lane_rule.yaml new file mode 100644 index 00000000000..b4c40250c10 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/lane_rule.yaml @@ -0,0 +1 @@ +format: Autoware Launcher Plugin Version 0.1 \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/lane_stop.xml b/ros/src/util/packages/autoware_launcher/plugins/leaf/lane_stop.xml new file mode 100644 index 00000000000..8391bed3137 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/lane_stop.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/lane_stop.yaml b/ros/src/util/packages/autoware_launcher/plugins/leaf/lane_stop.yaml new file mode 100644 index 00000000000..b4c40250c10 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/lane_stop.yaml @@ -0,0 +1 @@ +format: Autoware Launcher Plugin Version 0.1 \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/map.xml b/ros/src/util/packages/autoware_launcher/plugins/leaf/map.xml new file mode 100644 index 00000000000..786cb0f162c --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/map.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/map.yaml b/ros/src/util/packages/autoware_launcher/plugins/leaf/map.yaml new file mode 100644 index 00000000000..1a85c5d273f --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/map.yaml @@ -0,0 +1,26 @@ +format: Autoware Launcher Plugin Version 0.1 +exts: +- name: description + type: str +args: +- name: transform_file + type: str + list: null +- name: point_cloud_files + type: str + list: space +- name: vector_map_files + type: str + list: space + +panel: + widget: node.panel + frames: + - target: exts.description + widget: basic.text + - target: args.transform_file + widget: basic.file + - target: args.point_cloud_files + widget: basic.filelist + - target: args.vector_map_files + widget: basic.filelist diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/ndt_matching.xml b/ros/src/util/packages/autoware_launcher/plugins/leaf/ndt_matching.xml new file mode 100644 index 00000000000..fad8548f1ec --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/ndt_matching.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/ndt_matching.yaml b/ros/src/util/packages/autoware_launcher/plugins/leaf/ndt_matching.yaml new file mode 100644 index 00000000000..b4c40250c10 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/ndt_matching.yaml @@ -0,0 +1 @@ +format: Autoware Launcher Plugin Version 0.1 \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/pure_pursuit.xml b/ros/src/util/packages/autoware_launcher/plugins/leaf/pure_pursuit.xml new file mode 100644 index 00000000000..b18e1d533cd --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/pure_pursuit.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/pure_pursuit.yaml b/ros/src/util/packages/autoware_launcher/plugins/leaf/pure_pursuit.yaml new file mode 100644 index 00000000000..b4c40250c10 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/pure_pursuit.yaml @@ -0,0 +1 @@ +format: Autoware Launcher Plugin Version 0.1 \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/rviz.xml b/ros/src/util/packages/autoware_launcher/plugins/leaf/rviz.xml new file mode 100644 index 00000000000..9dfa4c255ac --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/rviz.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/rviz.yaml b/ros/src/util/packages/autoware_launcher/plugins/leaf/rviz.yaml new file mode 100644 index 00000000000..943db27fe58 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/rviz.yaml @@ -0,0 +1,15 @@ +format: Autoware Launcher Plugin Version 0.1 +exts: +- name: description + type: str +args: +- name: rviz_config_file + type: str + +panel: + widget: node.panel + frames: + - target: exts.description + widget: basic.text + - target: args.rviz_config_file + widget: basic.file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/transform_v2b.xml b/ros/src/util/packages/autoware_launcher/plugins/leaf/transform_v2b.xml new file mode 100644 index 00000000000..dc6bc6efa91 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/transform_v2b.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/transform_v2b.yaml b/ros/src/util/packages/autoware_launcher/plugins/leaf/transform_v2b.yaml new file mode 100644 index 00000000000..ee9e7fedf0e --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/transform_v2b.yaml @@ -0,0 +1,20 @@ +format: Autoware Launcher Plugin Version 0.1 +args: +- { name: parent_frame, type: str, default: base_link } +- { name: local_frame, type: str, default: velodyne } +- { name: tx, type: real } +- { name: ty, type: real } +- { name: tz, type: real } +- { name: rx, type: real } +- { name: ry, type: real } +- { name: rz, type: real } + +panel: + widget: node.panel + frames: + - target: args.parent_frame + widget: basic.file + - target: args.local_frame + widget: basic.file + - target: [args.tx, args.ty, args.tz, args.rx, args.ry, args.rz] + widget: basic.transform diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/transform_v2v.xml b/ros/src/util/packages/autoware_launcher/plugins/leaf/transform_v2v.xml new file mode 100644 index 00000000000..2870c4c539f --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/transform_v2v.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/transform_v2v.yaml b/ros/src/util/packages/autoware_launcher/plugins/leaf/transform_v2v.yaml new file mode 100644 index 00000000000..3d141410f39 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/transform_v2v.yaml @@ -0,0 +1,20 @@ +format: Autoware Launcher Plugin Version 0.1 +args: +- { name: parent_frame, type: str, default: velodyne } +- { name: local_frame, type: str } +- { name: tx, type: real } +- { name: ty, type: real } +- { name: tz, type: real } +- { name: rx, type: real } +- { name: ry, type: real } +- { name: rz, type: real } + +panel: + widget: node.panel + frames: + - target: args.parent_frame + widget: basic.file + - target: args.local_frame + widget: basic.file + - target: [args.tx, args.ty, args.tz, args.rx, args.ry, args.rz] + widget: basic.transform diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/vehicle.xml b/ros/src/util/packages/autoware_launcher/plugins/leaf/vehicle.xml new file mode 100644 index 00000000000..d07412971f5 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/vehicle.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/vehicle.yaml b/ros/src/util/packages/autoware_launcher/plugins/leaf/vehicle.yaml new file mode 100644 index 00000000000..352b6f87ea3 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/vehicle.yaml @@ -0,0 +1,19 @@ +format: Autoware Launcher Plugin Version 0.1 +exts: +- name: description + type: str +args: +- name: vehicle_model + type: str +- name: vehicle_info + type: str + +panel: + widget: node.panel + frames: + - target: exts.description + widget: basic.text + - target: args.vehicle_model + widget: basic.file + - target: args.vehicle_info + widget: basic.file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/voxel_grid_filter.xml b/ros/src/util/packages/autoware_launcher/plugins/leaf/voxel_grid_filter.xml new file mode 100644 index 00000000000..f06fb83982d --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/voxel_grid_filter.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/voxel_grid_filter.yaml b/ros/src/util/packages/autoware_launcher/plugins/leaf/voxel_grid_filter.yaml new file mode 100644 index 00000000000..b4c40250c10 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/voxel_grid_filter.yaml @@ -0,0 +1 @@ +format: Autoware Launcher Plugin Version 0.1 \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/waypoint_loader.xml b/ros/src/util/packages/autoware_launcher/plugins/leaf/waypoint_loader.xml new file mode 100644 index 00000000000..eb1351fcb07 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/waypoint_loader.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ros/src/util/packages/autoware_launcher/plugins/leaf/waypoint_loader.yaml b/ros/src/util/packages/autoware_launcher/plugins/leaf/waypoint_loader.yaml new file mode 100644 index 00000000000..978a6a0e213 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/leaf/waypoint_loader.yaml @@ -0,0 +1,12 @@ +format: Autoware Launcher Plugin Version 0.1 +args: +- { name: load_csv, type: bool, default: true } +- { name: multi_lane_csv, type: str, default: "" } + +panel: + widget: node.panel + frames: + - target: args.load_csv + widget: basic.bool + - target: args.multi_lane_csv + widget: basic.file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/camera_group.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/camera_group.yaml new file mode 100644 index 00000000000..9bb60a386fe --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/camera_group.yaml @@ -0,0 +1,3 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: + - { name: camera, plugin: node/camera_node, list: true } \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/camera_node.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/camera_node.yaml new file mode 100644 index 00000000000..1b0601f01e8 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/camera_node.yaml @@ -0,0 +1,4 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: +- { name: driver, plugin: { scan: driver/camera } } +- { name: calibration, plugin: leaf/calibration } \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/decision.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/decision.yaml new file mode 100644 index 00000000000..1e14ed8a1e6 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/decision.yaml @@ -0,0 +1,2 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: [] \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/detect_obj.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/detect_obj.yaml new file mode 100644 index 00000000000..bd7c8703ad5 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/detect_obj.yaml @@ -0,0 +1,7 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: +- { name: points_preproc, plugin: refs/ray_ground_filter } +- { name: points_detect, plugin: refs/euclidean_cluster } +- { name: images_detect, plugin: refs/yolov3 } +- { name: fusion, plugin: refs/range_vision_fusion } +- { name: tracking, plugin: refs/imm_ukf_pda_track } \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/detect_tl.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/detect_tl.yaml new file mode 100644 index 00000000000..97bfdf75c68 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/detect_tl.yaml @@ -0,0 +1,4 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: + - { name: projection, plugin: refs/tl_projection } + - { name: recognition, plugin: refs/tl_recognition } \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/detection.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/detection.yaml new file mode 100644 index 00000000000..7aabd7081f3 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/detection.yaml @@ -0,0 +1,4 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: +- { name: object, plugin : node/detect_obj } +- { name: traffic_lights, plugin : node/detect_tl } \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/lidar_group.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/lidar_group.yaml new file mode 100644 index 00000000000..380b6d6fd50 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/lidar_group.yaml @@ -0,0 +1,3 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: +- { name: lidar, plugin: node/lidar_node, list: true } \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/lidar_merge.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/lidar_merge.yaml new file mode 100644 index 00000000000..60038332174 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/lidar_merge.yaml @@ -0,0 +1,4 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: +- { name: concat, plugin: leaf/concat } +- { name: transform, plugin: leaf/transform_v2b } \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/lidar_multi.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/lidar_multi.yaml new file mode 100644 index 00000000000..98cb8b01382 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/lidar_multi.yaml @@ -0,0 +1,4 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: +- { name: concat, plugin: node/lidar_merge } +- { name: lidars, plugin: node/lidar_group } \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/lidar_node.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/lidar_node.yaml new file mode 100644 index 00000000000..c5e25f5b7bd --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/lidar_node.yaml @@ -0,0 +1,4 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: +- { name: driver, plugin: { scan: driver/lidar } } +- { name: transform, plugin: leaf/transform_v2v } \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/lidar_single.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/lidar_single.yaml new file mode 100644 index 00000000000..41c80728c40 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/lidar_single.yaml @@ -0,0 +1,4 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: +- { name: driver, plugin: { scan: driver/lidar } } +- { name: transform, plugin: leaf/transform_v2b } \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/localization.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/localization.yaml new file mode 100644 index 00000000000..5250d6fb4dc --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/localization.yaml @@ -0,0 +1,5 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: +- { name: downsampler, plugin: leaf/voxel_grid_filter } +- { name: localizer, plugin: leaf/ndt_matching } +- { name: vel_pose_connect, plugin: refs/vel_pose_connect } \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/mission.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/mission.yaml new file mode 100644 index 00000000000..c3a95b8d926 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/mission.yaml @@ -0,0 +1,5 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: +- { name: lane_rule, plugin: leaf/lane_rule } +- { name: lane_stop, plugin: leaf/lane_stop } +- { name: lane_select, plugin: refs/lane_select } \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/motion.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/motion.yaml new file mode 100644 index 00000000000..b6741866828 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/motion.yaml @@ -0,0 +1,7 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: +- { name: obstacle_avoid, plugin: refs/obstacle_avoid } +- { name: velocity_set, plugin: refs/velocity_set } +- { name: waypoint_loader, plugin: leaf/waypoint_loader } +- { name: pure_pursuit, plugin: leaf/pure_pursuit } +- { name: twist_filter, plugin: refs/twist_filter } \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/prediction.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/prediction.yaml new file mode 100644 index 00000000000..5b24724ac37 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/prediction.yaml @@ -0,0 +1,3 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: +- { name: native_motion_predict, plugin: refs/native_motion_predict } \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/node/sensing.yaml b/ros/src/util/packages/autoware_launcher/plugins/node/sensing.yaml new file mode 100644 index 00000000000..b8b5b1ebd6d --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/node/sensing.yaml @@ -0,0 +1,14 @@ +format: Autoware Launcher Plugin Version 0.1 +exts: +- name: description + type: str +rules: +- { name: lidar, plugin: [node/lidar_single, node/lidar_multi] } +- { name: camera, plugin: node/camera_group } +- { name: gnss, plugin: refs/nmea2tfpose } + +panel: + widget: node.panel + frames: + - target: exts.description + widget: basic.text \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/refs/euclidean_cluster.yaml b/ros/src/util/packages/autoware_launcher/plugins/refs/euclidean_cluster.yaml new file mode 100644 index 00000000000..e98d9b8e418 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/refs/euclidean_cluster.yaml @@ -0,0 +1,10 @@ +format: Autoware Launcher Plugin Version 0.1 +rosxml: $(find lidar_euclidean_cluster_detect)/launch/lidar_euclidean_cluster_detect.launch +args: +- { name: use_gpu, type: bool, default: true } + +panel: + widget: node.panel + frames: + - target: args.use_gpu + widget: basic.bool diff --git a/ros/src/util/packages/autoware_launcher/plugins/refs/imm_ukf_pda_track.yaml b/ros/src/util/packages/autoware_launcher/plugins/refs/imm_ukf_pda_track.yaml new file mode 100644 index 00000000000..d4110984f4b --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/refs/imm_ukf_pda_track.yaml @@ -0,0 +1,2 @@ +format: Autoware Launcher Plugin Version 0.1 +rosxml: $(find imm_ukf_pda_track)/launch/imm_ukf_pda_track.launch diff --git a/ros/src/util/packages/autoware_launcher/plugins/refs/lane_select.yaml b/ros/src/util/packages/autoware_launcher/plugins/refs/lane_select.yaml new file mode 100644 index 00000000000..b921602061f --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/refs/lane_select.yaml @@ -0,0 +1,2 @@ +format: Autoware Launcher Plugin Version 0.1 +rosxml: $(find lane_planner)/launch/lane_select.launch diff --git a/ros/src/util/packages/autoware_launcher/plugins/refs/native_motion_predict.yaml b/ros/src/util/packages/autoware_launcher/plugins/refs/native_motion_predict.yaml new file mode 100644 index 00000000000..4ff85afdbf6 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/refs/native_motion_predict.yaml @@ -0,0 +1,2 @@ +format: Autoware Launcher Plugin Version 0.1 +rosxml: $(find naive_motion_predict)/launch/naive_motion_predict.launch diff --git a/ros/src/util/packages/autoware_launcher/plugins/refs/nmea2tfpose.yaml b/ros/src/util/packages/autoware_launcher/plugins/refs/nmea2tfpose.yaml new file mode 100644 index 00000000000..cc33ed3be76 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/refs/nmea2tfpose.yaml @@ -0,0 +1,12 @@ +format: Autoware Launcher Plugin Version 0.1 +rosxml: $(find gnss_localizer)/launch/nmea2tfpose.launch +args: +- name: plane + type: int + default: 7 + +panel: + widget: node.panel + frames: + - target: args.plane + widget: basic.int diff --git a/ros/src/util/packages/autoware_launcher/plugins/refs/obstacle_avoid.yaml b/ros/src/util/packages/autoware_launcher/plugins/refs/obstacle_avoid.yaml new file mode 100644 index 00000000000..8bf42f9d0f4 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/refs/obstacle_avoid.yaml @@ -0,0 +1,2 @@ +format: Autoware Launcher Plugin Version 0.1 +rosxml: $(find astar_planner)/launch/obstacle_avoid.launch diff --git a/ros/src/util/packages/autoware_launcher/plugins/refs/range_vision_fusion.yaml b/ros/src/util/packages/autoware_launcher/plugins/refs/range_vision_fusion.yaml new file mode 100644 index 00000000000..bb3b8e451e3 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/refs/range_vision_fusion.yaml @@ -0,0 +1,2 @@ +format: Autoware Launcher Plugin Version 0.1 +rosxml: $(find range_vision_fusion)/launch/range_vision_fusion.launch \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/refs/ray_ground_filter.yaml b/ros/src/util/packages/autoware_launcher/plugins/refs/ray_ground_filter.yaml new file mode 100644 index 00000000000..a283ee61526 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/refs/ray_ground_filter.yaml @@ -0,0 +1,2 @@ +format: Autoware Launcher Plugin Version 0.1 +rosxml: $(find points_preprocessor)/launch/ray_ground_filter.launch \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/refs/tl_projection.yaml b/ros/src/util/packages/autoware_launcher/plugins/refs/tl_projection.yaml new file mode 100644 index 00000000000..124a16a5239 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/refs/tl_projection.yaml @@ -0,0 +1,2 @@ +format: Autoware Launcher Plugin Version 0.1 +rosxml: $(find trafficlight_recognizer)/launch/feat_proj.launch diff --git a/ros/src/util/packages/autoware_launcher/plugins/refs/tl_recognition.yaml b/ros/src/util/packages/autoware_launcher/plugins/refs/tl_recognition.yaml new file mode 100644 index 00000000000..4b032622075 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/refs/tl_recognition.yaml @@ -0,0 +1,2 @@ +format: Autoware Launcher Plugin Version 0.1 +rosxml: $(find trafficlight_recognizer)/launch/traffic_light_recognition.launch \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/plugins/refs/twist_filter.yaml b/ros/src/util/packages/autoware_launcher/plugins/refs/twist_filter.yaml new file mode 100644 index 00000000000..e2dcdd9dfee --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/refs/twist_filter.yaml @@ -0,0 +1,2 @@ +format: Autoware Launcher Plugin Version 0.1 +rosxml: $(find waypoint_follower)/launch/twist_filter.launch diff --git a/ros/src/util/packages/autoware_launcher/plugins/refs/vel_pose_connect.yaml b/ros/src/util/packages/autoware_launcher/plugins/refs/vel_pose_connect.yaml new file mode 100644 index 00000000000..2c9b2f22a57 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/refs/vel_pose_connect.yaml @@ -0,0 +1,16 @@ +format: Autoware Launcher Plugin Version 0.1 +rosxml: $(find autoware_connector)/launch/vel_pose_connect.launch +args: +- { name: topic_pose_stamped, type: str, default: /ndt_pose } +- { name: topic_twist_stamped, type: str, default: /estimate_twist } +- { name: sim_mode, type: bool } + +panel: + widget: node.panel + frames: + - target: args.topic_pose_stamped + widget: basic.text + - target: args.topic_twist_stamped + widget: basic.text + - target: args.sim_mode + widget: basic.bool diff --git a/ros/src/util/packages/autoware_launcher/plugins/refs/velocity_set.yaml b/ros/src/util/packages/autoware_launcher/plugins/refs/velocity_set.yaml new file mode 100644 index 00000000000..6318fd03e00 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/refs/velocity_set.yaml @@ -0,0 +1,2 @@ +format: Autoware Launcher Plugin Version 0.1 +rosxml: $(find astar_planner)/launch/velocity_set.launch diff --git a/ros/src/util/packages/autoware_launcher/plugins/refs/yolov3.yaml b/ros/src/util/packages/autoware_launcher/plugins/refs/yolov3.yaml new file mode 100644 index 00000000000..7c026840d9a --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/refs/yolov3.yaml @@ -0,0 +1,31 @@ +format: Autoware Launcher Plugin Version 0.1 +rosxml: $(find vision_darknet_detect)/launch/vision_yolo3_detect.launch +args: +- { name: score_threshold, type: real, default: 0.50 } +- { name: nms_threshold, type: real, default: 0.45 } +- { name: image_src, type: str, default: /image_raw } +- { name: camera_id, type: str, default: "" } +- { name: gpu_device_id, type: int, default: 0 } +- { name: network_definition_file, type: str, default: $(find vision_darknet_detect)/darknet/cfg/yolov3.cfg } +- { name: pretrained_model_file, type: str, default: $(find vision_darknet_detect)/darknet/data/yolov3.weights } +- { name: names_file, type: str, default: $(find vision_darknet_detect)/darknet/cfg/coco.names } + +panel: + widget: node.panel + frames: + - target: args.score_threshold + widget: basic.real + - target: args.nms_threshold + widget: basic.real + - target: args.image_src + widget: basic.text + - target: args.camera_id + widget: basic.text + - target: args.gpu_device_id + widget: basic.int + - target: args.network_definition_file + widget: basic.text + - target: args.pretrained_model_file + widget: basic.text + - target: args.names_file + widget: basic.text diff --git a/ros/src/util/packages/autoware_launcher/plugins/root/default.yaml b/ros/src/util/packages/autoware_launcher/plugins/root/default.yaml new file mode 100644 index 00000000000..20f3bd37dbf --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/plugins/root/default.yaml @@ -0,0 +1,12 @@ +format: Autoware Launcher Plugin Version 0.1 +rules: +- { name: map, plugin : leaf/map } +- { name: vehicle, plugin : leaf/vehicle } +- { name: sensing, plugin : node/sensing } +- { name: localization, plugin : node/localization } +- { name: detection, plugin : node/detection } +- { name: prediction, plugin : node/prediction } +- { name: decision, plugin : node/decision } +- { name: mission, plugin : node/mission } +- { name: motion, plugin : node/motion } +- { name: visualization, plugin : leaf/rviz } diff --git a/ros/src/system/gazebo/catvehicle/CATKIN_IGNORE b/ros/src/util/packages/autoware_launcher/plugins/warntest.txt similarity index 100% rename from ros/src/system/gazebo/catvehicle/CATKIN_IGNORE rename to ros/src/util/packages/autoware_launcher/plugins/warntest.txt diff --git a/ros/src/util/packages/autoware_launcher/profiles/.gitignore b/ros/src/util/packages/autoware_launcher/profiles/.gitignore new file mode 100644 index 00000000000..ae524617e10 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/.gitignore @@ -0,0 +1,3 @@ +*.xml +/*.tmp +/*.tmp.launch \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart.launch b/ros/src/util/packages/autoware_launcher/profiles/quickstart.launch new file mode 100644 index 00000000000..2995a4d0e74 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart.launch @@ -0,0 +1 @@ +dummy \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/files/default.rviz b/ros/src/util/packages/autoware_launcher/profiles/quickstart/files/default.rviz new file mode 100644 index 00000000000..d01d5cb5fac --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/files/default.rviz @@ -0,0 +1,604 @@ +Panels: + - Class: rviz/Displays + Help Height: 0 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Camera1/Visibility1 + - /Vector Map CenterLines1/Namespaces1 + - /Global Path1/Namespaces1 + - /Local Rollouts1/Namespaces1 + - /MarkerArray1/Namespaces1 + Splitter Ratio: 0.695804 + Tree Height: 342 + - 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: Points Map + - Class: integrated_viewer/ImageViewerPlugin + Image topic: /image_raw + Lane topic: ----- + Name: ImageViewerPlugin + Point size: 3 + Point topic: ----- + Rect topic: ----- + - Class: Module Panel + Name: Module Panel + - Class: autoware_launcher_rviz::ModulePanel + Name: ModulePanel +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: false + 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: false + - Class: rviz/TF + Enabled: true + Frame Timeout: 15 + Frames: + All Enabled: true + base_link: + Value: true + camera: + Value: true + gps: + Value: true + map: + Value: true + mobility: + Value: true + velodyne: + Value: true + world: + Value: true + Marker Scale: 5 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: true + Tree: + world: + map: + gps: + {} + mobility: + {} + Update Interval: 0 + Value: true + - Alpha: 0.0500000007 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: 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: Points Map + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 2 + Size (m): 0.00999999978 + Style: Points + Topic: /points_map + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /vector_map + Name: Vector Map + Namespaces: + cross_walk: true + curb: true + gutter: true + road_edge: true + road_mark: true + road_pole: true + road_sign: true + signal: true + stop_line: true + street_light: true + utility_pole: true + white_line: true + zebra_zone: true + Queue Size: 100 + Value: true + - Class: rviz/Camera + Enabled: false + Image Rendering: overlay + Image Topic: /image_raw + Name: Camera + Overlay Alpha: 0.400000006 + Queue Size: 10 + Transport Hint: raw + Unreliable: false + Value: false + Visibility: + A* Sim Obstacle: true + Behavior State: true + Control Pose: true + Current Pose: true + Detection Range: true + Global Path: true + Global Waypoints: true + GlobalPathAnimation: true + Grid: true + Local Rollouts: true + Local Waypoints: true + MarkerArray: true + Next Waypoint Mark: true + Occupancy Grid Map: true + OverlayText: true + PP Trajectory Mark: true + Points Cluster: true + Points Map: true + Points Raw: true + Safety Box: true + Simulated Obstacle: true + Stixel: true + TF: false + Tracked Contours: true + Value: true + Vector Map: true + Vector Map CenterLines: true + Vehicle Model: true + Velocity (km/h): true + Vscan Points: true + Waypoint Guide: true + Zoom Factor: 1 + - Alpha: 0.5 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 210 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: Points Raw + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 1 + Size (m): 0.00999999978 + Style: Points + Topic: /points_raw + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: true + - Alpha: 0.5 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 255; 255; 0 + Color Transformer: FlatColor + Decay Time: 0 + Enabled: false + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 255 + Min Color: 0; 0; 0 + Min Intensity: 255 + Name: Vscan Points + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.00999999978 + Style: Points + Topic: /vscan_points + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: false + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.100000001 + Class: rviz/Pose + Color: 255; 25; 0 + Enabled: false + Head Length: 2 + Head Radius: 2 + Name: Control Pose + Shaft Length: 2 + Shaft Radius: 1 + Shape: Arrow + Topic: /control_pose + Unreliable: false + Value: false + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.100000001 + Class: rviz/Pose + Color: 255; 170; 255 + Enabled: false + Head Length: 2 + Head Radius: 2 + Name: Current Pose + Shaft Length: 2 + Shaft Radius: 1 + Shape: Arrow + Topic: /ndt_pose + Unreliable: false + Value: false + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /detection_range + Name: Detection Range + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /next_target_mark + Name: Next Waypoint Mark + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /trajectory_circle_mark + Name: PP Trajectory Mark + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: false + Marker Topic: /vscan_linelist + Name: Stixel + Namespaces: + {} + Queue Size: 100 + Value: false + - 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 + Name: Vehicle Model + Robot Description: robot_description + TF Prefix: "" + Update Interval: 0 + Value: true + Visual Enabled: true + - Alpha: 1 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: RGB8 + 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: Points Cluster + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 5 + Size (m): 0.00999999978 + Style: Points + Topic: /points_cluster + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /local_waypoints_mark + Name: Local Waypoints + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /global_waypoints_mark + Name: Global Waypoints + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /waypoint_guide + Name: Waypoint Guide + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /astar_sim_obstacle + Name: A* Sim Obstacle + Namespaces: + {} + Queue Size: 100 + Value: true + - Alpha: 0.699999988 + Class: rviz/Map + Color Scheme: map + Draw Behind: true + Enabled: true + Name: Occupancy Grid Map + Topic: /grid_map_visualization/distance_transform + Unreliable: false + Use Timestamp: false + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /vector_map_center_lines_rviz + Name: Vector Map CenterLines + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /global_waypoints_rviz + Name: Global Path + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /local_trajectories + Name: Local Rollouts + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /detected_polygons + Name: Tracked Contours + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /behavior_state + Name: Behavior State + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /AnimateGlobalPlan + Name: GlobalPathAnimation + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/Marker + Enabled: true + Marker Topic: /safety_border + Name: Safety Box + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: jsk_rviz_plugin/BoundingBoxArray + Enabled: true + Name: Simulated Obstacle + Topic: /dp_planner_tracked_boxes + Unreliable: false + Value: true + alpha: 0.800000012 + color: 25; 255; 0 + coloring: Value + line width: 0.00999999978 + only edge: false + show coords: false + - Buffer length: 100 + Class: jsk_rviz_plugin/Plotter2D + Enabled: true + Name: Velocity (km/h) + Show Value: true + Topic: /linear_velocity_viz + Value: true + auto color change: false + auto scale: true + background color: 0; 0; 0 + backround alpha: 0 + border: true + foreground alpha: 0.699999988 + foreground color: 85; 255; 0 + height: 80 + left: 40 + linewidth: 1 + max color: 255; 0; 0 + max value: 1 + min value: -1 + show caption: true + text size: 8 + top: 30 + update interval: 0.0399999991 + width: 80 + - Background Alpha: 0.800000012 + Background Color: 0; 0; 0 + Class: jsk_rviz_plugin/OverlayText + Enabled: true + Foreground Alpha: 0.800000012 + Foreground Color: 25; 255; 240 + Name: OverlayText + Overtake Color Properties: false + Overtake Position Properties: false + Topic: /ndt_monitor/ndt_info_text + Value: true + font: DejaVu Sans Mono + height: 128 + left: 0 + line width: 2 + text size: 12 + top: 0 + width: 128 + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /detection/object_tracker/objects_markers + Name: MarkerArray + Namespaces: + {} + Queue Size: 100 + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /prediction/motion_predictor/path_markers + Name: MarkerArray + Namespaces: + {} + Queue Size: 100 + Value: true + Enabled: true + Global Options: + Background Color: 0; 0; 0 + Default Light: true + Fixed Frame: world + 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: 929.954834 + Enable Stereo Rendering: + Stereo Eye Separation: 0.0599999987 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: -67.4288177 + Y: -135.02388 + Z: -0.0927070975 + Focal Shape Fixed Size: false + Focal Shape Size: 0.0500000007 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.00999999978 + Pitch: 1.56979632 + Target Frame: world + Value: Orbit (rviz) + Yaw: 5.15858078 + Saved: ~ +Window Geometry: + Camera: + collapsed: false + Displays: + collapsed: false + Height: 1245 + Hide Left Dock: false + Hide Right Dock: false + ImageViewerPlugin: + collapsed: false + Module Panel: + collapsed: false + ModulePanel: + collapsed: false + QMainWindow State: 000000ff00000000fd0000000400000000000002c50000042bfc0200000013fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afc000000380000018e000000c400fffffffa000000020100000003fb0000000a0049006d0061006700650000000000ffffffff0000000000000000fb0000000c00430061006d0065007200610000000000ffffffff0000006000fffffffb000000100044006900730070006c0061007900730100000000000001360000015600fffffffb00000016004d006f00640075006c006500500061006e0065006c01000001cc000000960000009400fffffffb00000022004100750074006f00770061007200650020004c00610075006e006300680065007200000001ec000000b10000000000000000fb0000001e0051007500690063006b0053007400610072007400500061006e0065006c0000000200000000790000000000000000fb0000000a0049006d006100670065010000028e000000d20000000000000000fb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261fb000000120049006d006100670065005f0072006100770000000000ffffffff0000000000000000fb0000000c00430061006d006500720061000000024e000001710000000000000000fb000000120049006d00610067006500200052006100770100000421000000160000000000000000fb0000000a0049006d00610067006501000002f4000000cb0000000000000000fb00000018004d006f00640075006c0065002000500061006e0065006c00000001c4000000a80000006e00fffffffb000000220049006d0061006700650056006900650077006500720050006c007500670069006e0100000268000001fb0000007e00fffffffb000000220049006d0061006700650056006900650077006500720050006c007500670069006e000000039e000000bb0000000000000000000000010000017b0000042bfc0200000004fb0000000a0056006900650077007301000000380000042b0000009c00fffffffb000000240054007200610066006600690063004c00690067006800740050006c007500670069006e00000003e8000001790000000000000000fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000001200530065006c0065006300740069006f006e010000025a000000b20000000000000000000000020000073f000000a8fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000009150000005cfc0100000002fb0000000800540069006d00650100000000000009150000020400fffffffb0000000800540069006d00650100000000000004500000000000000000000004c90000042b00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 2325 + X: 137 + Y: 48 diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root.yaml new file mode 100644 index 00000000000..6f66d6177bd --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root.yaml @@ -0,0 +1,13 @@ +children: +- map +- vehicle +- sensing +- localization +- detection +- prediction +- decision +- mission +- motion +- visualization +config: {} +plugin: root/default diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/decision.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/decision.yaml new file mode 100644 index 00000000000..9e3271636bb --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/decision.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: node/decision diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection.yaml new file mode 100644 index 00000000000..500ce45416c --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection.yaml @@ -0,0 +1,5 @@ +children: +- object +- traffic_lights +config: {} +plugin: node/detection diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object.yaml new file mode 100644 index 00000000000..9df95287e69 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object.yaml @@ -0,0 +1,8 @@ +children: +- points_preproc +- points_detect +- images_detect +- fusion +- tracking +config: {} +plugin: node/detect_obj diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/fusion.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/fusion.yaml new file mode 100644 index 00000000000..568e478b6b7 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/fusion.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: refs/range_vision_fusion diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/images_detect.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/images_detect.yaml new file mode 100644 index 00000000000..7ceae9681bf --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/images_detect.yaml @@ -0,0 +1,11 @@ +children: [] +config: + args.camera_id: '' + args.gpu_device_id: 0 + args.image_src: /image_raw + args.names_file: $(find vision_darknet_detect)/darknet/cfg/coco.names + args.network_definition_file: $(find vision_darknet_detect)/darknet/cfg/yolov3.cfg + args.nms_threshold: 0.45 + args.pretrained_model_file: $(find vision_darknet_detect)/darknet/data/yolov3.weights + args.score_threshold: 0.5 +plugin: refs/yolov3 diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/points_detect.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/points_detect.yaml new file mode 100644 index 00000000000..79052c3864c --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/points_detect.yaml @@ -0,0 +1,4 @@ +children: [] +config: + args.use_gpu: true +plugin: refs/euclidean_cluster diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/points_preproc.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/points_preproc.yaml new file mode 100644 index 00000000000..3fb6f7d3dd3 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/points_preproc.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: refs/ray_ground_filter diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/tracking.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/tracking.yaml new file mode 100644 index 00000000000..fa767fd118d --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/object/tracking.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: refs/imm_ukf_pda_track diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/traffic_lights.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/traffic_lights.yaml new file mode 100644 index 00000000000..f4f4969207f --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/traffic_lights.yaml @@ -0,0 +1,5 @@ +children: +- projection +- recognition +config: {} +plugin: node/detect_tl diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/traffic_lights/projection.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/traffic_lights/projection.yaml new file mode 100644 index 00000000000..e797116bde1 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/traffic_lights/projection.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: refs/tl_projection diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/traffic_lights/recognition.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/traffic_lights/recognition.yaml new file mode 100644 index 00000000000..04b06b397aa --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/detection/traffic_lights/recognition.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: refs/tl_recognition diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/localization.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/localization.yaml new file mode 100644 index 00000000000..51b00e8c693 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/localization.yaml @@ -0,0 +1,6 @@ +children: +- downsampler +- localizer +- vel_pose_connect +config: {} +plugin: node/localization diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/localization/downsampler.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/localization/downsampler.yaml new file mode 100644 index 00000000000..d42eec40e3b --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/localization/downsampler.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: leaf/voxel_grid_filter diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/localization/localizer.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/localization/localizer.yaml new file mode 100644 index 00000000000..c4461b00342 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/localization/localizer.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: leaf/ndt_matching diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/localization/vel_pose_connect.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/localization/vel_pose_connect.yaml new file mode 100644 index 00000000000..86f2fba1dd2 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/localization/vel_pose_connect.yaml @@ -0,0 +1,6 @@ +children: [] +config: + args.sim_mode: false + args.topic_pose_stamped: /ndt_pose + args.topic_twist_stamped: /estimate_twist +plugin: refs/vel_pose_connect diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/map.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/map.yaml new file mode 100644 index 00000000000..b1b55ba533b --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/map.yaml @@ -0,0 +1,113 @@ +children: [] +config: + args.point_cloud_files: + - $(env HOME)/.autoware/data/pointcloud_map/bin_global_moriyama_rgb-1.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_global_moriyama_rgb-2.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_global_moriyama_rgb-3.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_global_moriyama_rgb-4.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00144_-00853.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00144_-00854.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00144_-00855.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00145_-00852.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00145_-00853.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00145_-00854.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00146_-00846.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00146_-00847.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00146_-00851.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00146_-00852.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00146_-00853.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00147_-00846.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00147_-00847.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00147_-00849.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00147_-00850.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00147_-00851.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00147_-00852.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00148_-00847.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00148_-00848.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00148_-00849.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00149_-00846.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00149_-00847.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00149_-00848.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00150_-00846.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00150_-00847.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00150_-00848.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00151_-00848.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00151_-00849.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00151_-00850.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00152_-00849.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00152_-00850.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00152_-00851.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00153_-00850.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00153_-00851.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00153_-00852.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00154_-00851.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00154_-00852.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00154_-00853.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00155_-00852.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00155_-00853.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00155_-00854.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00155_-00855.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00156_-00854.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00156_-00855.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00156_-00856.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00157_-00856.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00157_-00857.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00158_-00856.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00158_-00857.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00158_-00858.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00159_-00857.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00159_-00858.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00159_-00859.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00160_-00858.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00160_-00859.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00160_-00860.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00160_-00861.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00161_-00860.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00161_-00861.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00162_-00861.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00162_-00862.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00163_-00861.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00163_-00862.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00164_-00862.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00164_-00863.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00165_-00863.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00165_-00864.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00166_-00864.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00166_-00865.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00167_-00864.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00167_-00865.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00167_-00866.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00167_-00867.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00168_-00865.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00168_-00866.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00168_-00867.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00168_-00868.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00168_-00869.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00169_-00868.pcd + - $(env HOME)/.autoware/data/pointcloud_map/bin_Laser-00169_-00869.pcd + args.transform_file: $(env HOME)/.autoware/data/tf/tf.launch + args.vector_map_files: + - $(env HOME)/.autoware/data/vector_map/area.csv + - $(env HOME)/.autoware/data/vector_map/crosswalk.csv + - $(env HOME)/.autoware/data/vector_map/curb.csv + - $(env HOME)/.autoware/data/vector_map/dtlane.csv + - $(env HOME)/.autoware/data/vector_map/gutter.csv + - $(env HOME)/.autoware/data/vector_map/idx.csv + - $(env HOME)/.autoware/data/vector_map/lane.csv + - $(env HOME)/.autoware/data/vector_map/line.csv + - $(env HOME)/.autoware/data/vector_map/node.csv + - $(env HOME)/.autoware/data/vector_map/point.csv + - $(env HOME)/.autoware/data/vector_map/pole.csv + - $(env HOME)/.autoware/data/vector_map/poledata.csv + - $(env HOME)/.autoware/data/vector_map/road_surface_mark.csv + - $(env HOME)/.autoware/data/vector_map/roadedge.csv + - $(env HOME)/.autoware/data/vector_map/roadsign.csv + - $(env HOME)/.autoware/data/vector_map/signaldata.csv + - $(env HOME)/.autoware/data/vector_map/stopline.csv + - $(env HOME)/.autoware/data/vector_map/streetlight.csv + - $(env HOME)/.autoware/data/vector_map/utilitypole.csv + - $(env HOME)/.autoware/data/vector_map/vector.csv + - $(env HOME)/.autoware/data/vector_map/whiteline.csv + - $(env HOME)/.autoware/data/vector_map/zebrazone.csv + exts.description: Moriyama +plugin: leaf/map diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/mission.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/mission.yaml new file mode 100644 index 00000000000..548017182b4 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/mission.yaml @@ -0,0 +1,6 @@ +children: +- lane_rule +- lane_stop +- lane_select +config: {} +plugin: node/mission diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/mission/lane_rule.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/mission/lane_rule.yaml new file mode 100644 index 00000000000..8bd2674be71 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/mission/lane_rule.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: leaf/lane_rule diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/mission/lane_select.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/mission/lane_select.yaml new file mode 100644 index 00000000000..05c2e5f92bb --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/mission/lane_select.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: refs/lane_select diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/mission/lane_stop.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/mission/lane_stop.yaml new file mode 100644 index 00000000000..b756bb6d981 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/mission/lane_stop.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: leaf/lane_stop diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion.yaml new file mode 100644 index 00000000000..a1e8f1e773b --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion.yaml @@ -0,0 +1,8 @@ +children: +- obstacle_avoid +- velocity_set +- waypoint_loader +- pure_pursuit +- twist_filter +config: {} +plugin: node/motion diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/obstacle_avoid.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/obstacle_avoid.yaml new file mode 100644 index 00000000000..745a9d5bad7 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/obstacle_avoid.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: refs/obstacle_avoid diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/pure_pursuit.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/pure_pursuit.yaml new file mode 100644 index 00000000000..f0fa31436ee --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/pure_pursuit.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: leaf/pure_pursuit diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/twist_filter.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/twist_filter.yaml new file mode 100644 index 00000000000..fd6d70450a4 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/twist_filter.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: refs/twist_filter diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/velocity_set.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/velocity_set.yaml new file mode 100644 index 00000000000..c44da60247b --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/velocity_set.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: refs/velocity_set diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/waypoint_loader.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/waypoint_loader.yaml new file mode 100644 index 00000000000..234cd6c004f --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/motion/waypoint_loader.yaml @@ -0,0 +1,5 @@ +children: [] +config: + args.load_csv: true + args.multi_lane_csv: $(env HOME)/.autoware/data/path/moriyama_path.txt +plugin: leaf/waypoint_loader diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/prediction.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/prediction.yaml new file mode 100644 index 00000000000..5907a8c9be3 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/prediction.yaml @@ -0,0 +1,4 @@ +children: +- native_motion_predict +config: {} +plugin: node/prediction diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/prediction/native_motion_predict.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/prediction/native_motion_predict.yaml new file mode 100644 index 00000000000..c5f9ba7ad46 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/prediction/native_motion_predict.yaml @@ -0,0 +1,3 @@ +children: [] +config: {} +plugin: refs/native_motion_predict diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing.yaml new file mode 100644 index 00000000000..6c3ef7493b5 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing.yaml @@ -0,0 +1,7 @@ +children: +- lidar +- camera +- gnss +config: + exts.description: '' +plugin: node/sensing diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/camera.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/camera.yaml new file mode 100644 index 00000000000..93f4664a365 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/camera.yaml @@ -0,0 +1,4 @@ +children: +- camera0 +config: {} +plugin: node/camera_group diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/camera/camera0.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/camera/camera0.yaml new file mode 100644 index 00000000000..d4a1d31afcb --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/camera/camera0.yaml @@ -0,0 +1,4 @@ +children: +- calibration +config: {} +plugin: node/camera_node diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/camera/camera0/calibration.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/camera/camera0/calibration.yaml new file mode 100644 index 00000000000..84782308bd6 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/camera/camera0/calibration.yaml @@ -0,0 +1,4 @@ +children: [] +config: + args.calibration_file: $(env HOME)/.autoware/data/calibration/calibration.yml +plugin: leaf/calibration diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/gnss.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/gnss.yaml new file mode 100644 index 00000000000..49b9abd31c4 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/gnss.yaml @@ -0,0 +1,4 @@ +children: [] +config: + args.plane: 7 +plugin: refs/nmea2tfpose diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/lidar.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/lidar.yaml new file mode 100644 index 00000000000..242c5dfe259 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/lidar.yaml @@ -0,0 +1,4 @@ +children: +- transform +config: {} +plugin: node/lidar_single diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/lidar/transform.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/lidar/transform.yaml new file mode 100644 index 00000000000..fd9377d01c2 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/sensing/lidar/transform.yaml @@ -0,0 +1,11 @@ +children: [] +config: + args.local_frame: velodyne + args.parent_frame: base_link + args.rx: '0' + args.ry: '0' + args.rz: '0' + args.tx: '1.2' + args.ty: '0' + args.tz: '2.0' +plugin: leaf/transform_v2b diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/vehicle.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/vehicle.yaml new file mode 100644 index 00000000000..248dfd213f1 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/vehicle.yaml @@ -0,0 +1,6 @@ +children: [] +config: + args.vehicle_info: $(find autoware_launcher)/resources/dummy.yaml + args.vehicle_model: $(find vehicle_description)/urdf/default.urdf + exts.description: Default +plugin: leaf/vehicle diff --git a/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/visualization.yaml b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/visualization.yaml new file mode 100644 index 00000000000..10dae4b8b49 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/profiles/quickstart/root/visualization.yaml @@ -0,0 +1,5 @@ +children: [] +config: + args.rviz_config_file: $(find autoware_launcher)/profiles/quickstart/files/default.rviz + exts.description: Default +plugin: leaf/rviz diff --git a/ros/src/util/packages/autoware_launcher/resources/autoware_logo.png b/ros/src/util/packages/autoware_launcher/resources/autoware_logo.png new file mode 100644 index 00000000000..3ef898f30fc Binary files /dev/null and b/ros/src/util/packages/autoware_launcher/resources/autoware_logo.png differ diff --git a/ros/src/util/packages/autoware_launcher/resources/dummy.yaml b/ros/src/util/packages/autoware_launcher/resources/dummy.yaml new file mode 100644 index 00000000000..e69de29bb2d diff --git a/ros/src/util/packages/autoware_launcher/resources/lgsvl.yaml b/ros/src/util/packages/autoware_launcher/resources/lgsvl.yaml new file mode 100644 index 00000000000..dde9c3c53d0 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/resources/lgsvl.yaml @@ -0,0 +1,27 @@ +initial_configuration: + map: SanFrancisco + time_of_day: 12 + freeze_time_of_day: true + fog_intensity: 0 + rain_intensity: 0 + road_wetness: 0 + enable_traffic: true + enable_pedestrian: true + traffic_density: 300 +vehicles: +- type: XE_Rigged-autoware + address: 127.0.0.1 + port: 9090 + command_type: twist + enable_lidar: true + enable_gps: true + enable_main_camera: true + enable_high_quality_rendering: false + position: + n: 4140310.4 + e: 590681.5 + h: 10 + orientation: + r: 0 + p: 0 + y: 269.9 diff --git a/ros/src/util/packages/autoware_launcher/resources/rosbagplay.xml b/ros/src/util/packages/autoware_launcher/resources/rosbagplay.xml new file mode 100644 index 00000000000..91fd8cc6a9f --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/resources/rosbagplay.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/resources/skins/autoware.css b/ros/src/util/packages/autoware_launcher/resources/skins/autoware.css new file mode 100644 index 00000000000..7cf5f6968fa --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/resources/skins/autoware.css @@ -0,0 +1,30 @@ +* +{ + color: #000000; + background-color: #FFFFFF; +} + +QPushButton +{ + color: #FFFFFF; + background-color: #223A70; +} + +QCheckBox::indicator +{ + width: 20px; + height: 20px; +} + +#FrameHeader +{ + border-top: 1px solid #223A70; +} + +#FrameHeader, #FrameWidget +{ + padding: 5px; + border-bottom: 1px solid #223A70; + border-left: 1px solid #223A70; + border-right: 1px solid #223A70; +} diff --git a/ros/src/util/packages/autoware_launcher/resources/skins/default.css b/ros/src/util/packages/autoware_launcher/resources/skins/default.css new file mode 100644 index 00000000000..00f8462024b --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/resources/skins/default.css @@ -0,0 +1,18 @@ +QCheckBox::indicator +{ + width: 20px; + height: 20px; +} + +#FrameHeader +{ + border-top: 1px solid #223A70; +} + +#FrameHeader, #FrameWidget +{ + padding: 5px; + border-bottom: 1px solid #223A70; + border-left: 1px solid #223A70; + border-right: 1px solid #223A70; +} diff --git a/ros/src/util/packages/autoware_launcher/runner/.gitignore b/ros/src/util/packages/autoware_launcher/runner/.gitignore new file mode 100644 index 00000000000..b81c7954b78 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/runner/.gitignore @@ -0,0 +1 @@ +*.xml \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/scripts/main b/ros/src/util/packages/autoware_launcher/scripts/main new file mode 100755 index 00000000000..781b2da02a3 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/scripts/main @@ -0,0 +1,13 @@ +#! /usr/bin/env python + +import logging +import sys + +from autoware_launcher.core import AwLaunchServer +from autoware_launcher.gui import AwQtGuiClient + +logging.basicConfig(level=logging.DEBUG, format="%(levelname)-5s: %(name)s: %(message)s") + +server = AwLaunchServer(sys.argv) +client = AwQtGuiClient(sys.argv, server) +sys.exit(client.start2()) \ No newline at end of file diff --git a/ros/src/system/gazebo/catvehicle/setup.py b/ros/src/util/packages/autoware_launcher/setup.py similarity index 50% rename from ros/src/system/gazebo/catvehicle/setup.py rename to ros/src/util/packages/autoware_launcher/setup.py index a2547fb3c55..ef0b1570c27 100644 --- a/ros/src/system/gazebo/catvehicle/setup.py +++ b/ros/src/util/packages/autoware_launcher/setup.py @@ -1,12 +1,12 @@ -## ! DO NOT MANUALLY INVOKE THIS setup.py, USE CATKIN INSTEAD +#!/usr/bin/env python from distutils.core import setup from catkin_pkg.python_setup import generate_distutils_setup -# fetch values from package.xml setup_args = generate_distutils_setup( - packages=['catvehicle'], - package_dir={'': 'src'}, + packages=['autoware_launcher'], + package_dir={'': 'src'} ) setup(**setup_args) + diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/__init__.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/__init__.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/__init__.py new file mode 100644 index 00000000000..234472be1dc --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/__init__.py @@ -0,0 +1,3 @@ +from .server import AwLaunchServer +from .server import AwLaunchServerIF +from .server import AwLaunchClientIF \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/basetree.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/basetree.py new file mode 100644 index 00000000000..08c122fd8dc --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/basetree.py @@ -0,0 +1,36 @@ +import os +import yaml + + + +class AwBaseTree(object): + + def __init__(self): + self.nodes = {} + + def find(self, path): + return self.nodes.get(path) + + def scan(self, path): + return filter(lambda node: node.startswith(path), self.nodes.keys()) + + def dump(self): + for name in sorted(self.nodes.keys()): + print "==================================================" + self.nodes[name].dump() + + +class AwBaseNode(object): + + def __init__(self, tree, path): + self.__tree = tree + self.__path = path + + def tree(self): + return self.__tree + + def path(self): + return self.__path + + def name(self): + return os.path.basename(self.__path) diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/launch.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/launch.py new file mode 100644 index 00000000000..7fe5ea68b04 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/launch.py @@ -0,0 +1,292 @@ +from logging import getLogger +logger = getLogger(__name__) + +import os +import yaml + +from . import basetree +from . import myutils + + + +class AwBaseNode(object): + + def __init__(self, name): + self.__nodename = name + self.__parent = None + self.__children = [] + self.__childmap = {} + + def dump(self, indent = 0): + print((indent * " ") + str(self)) + for child in self.children(): child.dump(indent + 2) + + def tree(self): + return self.__parent.tree() + + def nodename(self): # ToDo: remove + return self.__nodename + + def name(self): + return self.__nodename + + def nodepath(self): # ToDo: remove + return os.path.join(self.__parent.nodepath(), self.nodename()) + + def path(self): + return os.path.join(self.__parent.path(), self.name()) + + def fullpath(self): + return os.path.join(self.__parent.fullpath(), self.nodename()) + + def children(self): # ToDo: remove + return self.__children + + def childnodes(self): + return self.__children + + def childnames(self): + return [node.nodename() for node in self.__children] + + def getchild(self, name): + return self.__childmap.get(name) + + def haschild(self, name): + return name in self.__childmap + + def addchild(self, node): + self.__children.append(node) + self.__childmap[node.nodename()] = node + node.__parent = self + + def delchild(self, node): + self.__children.remove(node) + self.__childmap.pop(node.nodename()) + node.__parent = None + + def listnode(self, this = False): + result = [self] if this else [] + for child in self.children(): result.extend(child.listnode(True)) + return result + + + +class AwBaseTree(AwBaseNode): + + def __init__(self): + super(AwBaseTree, self).__init__(None) + self.treepath = "" + + def tree(self): + return self + + def nodepath(self): # ToDo: remove + return "" + + def path(self): + return "" + + def fullpath(self): + return self.treepath + + def find(self, path): + node = self + for name in path.split("/"): + node = node.getchild(name) + return node + + + +class AwLaunchTree(AwBaseTree): + + def __init__(self, server, plugins): + super(AwLaunchTree, self).__init__() + self.server = server + self.plugins = plugins + #self.treedir = None + + def __str__(self): + childnames = map(lambda child: child.nodename(), self.children()) + return "Tree:{} Children:{}".format(self.nodename(), childnames) + + def save(self, treepath): + self.treepath = treepath + with open(treepath + ".launch", mode = "w") as fp: + fp.write("dummy") + for node in self.listnode(): + fullpath = node.fullpath() + ".yaml" + myutils.makedirs(os.path.dirname(fullpath), exist_ok = True) + with open(fullpath, mode = "w") as fp: + fp.write(yaml.safe_dump(node.export_data(), default_flow_style = False)) + + def load(self, treepath, plugins): + def load_node(node): + fullpath = node.fullpath() + with open(fullpath + ".yaml") as fp: + node.import_data(yaml.safe_load(fp), plugins) + for child in node.children(): + load_node(child) + root = AwLaunchNode("root") + self.addchild(root) + self.treepath = treepath + load_node(root) + + def make(self, ppath, plugins): + plugin = plugins.find(ppath) + launch = AwLaunchNode("root") + launch.plugin = plugin + launch.config = plugin.default_config() + self.addchild(launch) + + def export(self, rootpath): + for node in self.listnode(): + xtext = node.generate_launch() + xpath = node.nodepath().replace("/", "-") + ".xml" + xpath = os.path.join(rootpath, xpath) + with open(xpath, mode="w") as fp: fp.write(xtext) + + def create(self, lpath, ppath): + logger.info("Tree Create: " + lpath + ", " + ppath) + parent = self.find(os.path.dirname(lpath)) + if not parent: + return "parent is not found" + if self.find(lpath): + return "name exists" + + plugin = self.plugins.find(ppath) + launch = AwLaunchNode(os.path.basename(lpath)) + launch.plugin = plugin + launch.config = plugin.default_config() + parent.addchild(launch) + return None + + + + +class AwLaunchNode(AwBaseNode): + + STOP, EXEC, TERM = 0x00, 0x01, 0x02 + + def __init__(self, name): + super(AwLaunchNode, self).__init__(name) + self.plugin = None + self.config = None + self.status = self.STOP + + def tostring(self): + return yaml.safe_dump(self.todict()) + + def todict(self): + return \ + { + "plugin" : self.plugin.todict(), + "config" : self.config, + "children": [child.nodename() for child in self.children()] + } + + # experimental + def remove_child(self, name): + if not name: + return "name is empty" + if not self.haschild(name): + return "name does not exist" + self.delchild(name) + self.send_config_removed(name) + return None + + def update(self, ldata): + self.config.update(ldata["config"]) + return None + + def launch(self, xmode): + if xmode: + return self.__exec() + else: + return self.__term() + + def __exec(self): + if self.plugin.isleaf(): + if self.status == self.STOP: + self.status = self.EXEC + return (True, True) + else: + status = self.STOP + for child in self.children(): + status |= child.status + if self.status != status: + self.status = status + return (True, False) + return (False, False) + + def __term(self): + if self.plugin.isleaf(): + if self.status == self.EXEC: + self.status = self.TERM + return (True, True) + else: + status = self.STOP + for child in self.children(): + status |= child.status + if self.status != status: + self.status = status + return (True, False) + return (False, False) + + def get_config(self, key, value): + return self.config.get(key, value) + + def generate_launch(self): + lines = [] + if self.plugin.isleaf(): + lines.append('') + lines.append(' '.format(self.plugin.rosxml())) + for data in self.plugin.args(): + argvalue = self.config.get("args." + data.name) + if argvalue is not None: + lines.append(' '.format(data.name, data.xmlstr(argvalue))) + lines.append(' ') + lines.append('') + else: + lines.append('') + for childname in self.childnames(): + childpath = os.path.join(self.path(), childname) + childpath = childpath.replace("/", "-") + ".xml" + lines.append(' '.format(childpath)) + lines.append('') + return "\n".join(lines) + + + + def import_data(self, data, plugins): + self.plugin = plugins.find(data["plugin"]) + self.config = data["config"] + if data["children"] is None: + self.setleaf() + else: + for childname in data["children"]: + self.addchild(AwLaunchNode(childname)) + + def export_data(self): + children = map(lambda node: node.nodename(), self.children()) + plugin = self.plugin.path() + config = self.config + return { "children": children, "plugin": plugin, "config": config } + + + # ToDo: remove function + def bind_listener(self, listener): + logger.warning("bind_listener: " + listener.__class__.__name__) + + # ToDo: remove function + def unbind_listener(self, listener): + logger.warning("unbind_listener: " + listener.__class__.__name__) + + + +if __name__ == "__main__": + from .plugin import AwPluginTree + plugin = AwPluginTree() + launch = AwLaunchTree(None) + launch.load(myutils.profile("default"), plugin) + launch.dump() + launch.save(myutils.profile("sample.bak")) \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/mylog.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/mylog.py new file mode 100644 index 00000000000..87a35e9ad30 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/mylog.py @@ -0,0 +1,10 @@ + + +def error(text): + print("\033[31m" + text + "\033[0m") + +def warning(text): + print("\033[33m" + text + "\033[0m") + +def info(text): + print("\033[32m" + text + "\033[0m") \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/myutils.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/myutils.py new file mode 100644 index 00000000000..6868492f268 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/myutils.py @@ -0,0 +1,46 @@ +import os +import yaml + + + +def userhome(path = ""): + return os.path.abspath(os.path.join(os.path.expanduser("~"), path)) + +def autoware(path = ""): + return os.path.abspath(os.path.join(os.path.dirname(__file__), 8 * "../", path)) + +def package(path = ""): + return os.path.abspath(os.path.join(os.path.dirname(__file__), 3 * "../", path)) + +def plugins(): + return os.path.join(package(), "plugins") + +def profile(profile = ""): + return os.path.join(package(), "profiles", profile) + +def parentpath(path): + return os.path.dirname(path) + +def makedirs(path, mode=0777, exist_ok=False): # workaround in python2 + if not (exist_ok and os.path.exists(path)): os.makedirs(path, mode) + +def listfiles(rootpath, relative=False): + filelist = [] + for currpath, dirnames, filenames in os.walk(rootpath): + if relative: + currpath = os.path.relpath(currpath, rootpath) + if currpath == ".": + currpath = "" + for filename in filenames: + filelist.append(os.path.join(currpath, filename)) + return filelist + +def envpath(path): + patterns = \ + [ + (os.environ['HOME'], "$(env HOME)") + ] + for pattern, replace in patterns: + if path.startswith(pattern): + return replace + path[len(pattern):] + return path diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/plugin.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/plugin.py new file mode 100644 index 00000000000..f13399cf425 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/plugin.py @@ -0,0 +1,209 @@ +from logging import getLogger +logger = getLogger(__name__) + +import collections +import os +import xml.etree.ElementTree as xmltree +import yaml + +from . import basetree +from . import myutils + + + +class AwPluginTree(basetree.AwBaseTree): + + def __init__(self): + super(AwPluginTree, self).__init__() + + filelist = myutils.listfiles(myutils.plugins(), relative=True) + nodelist = list() + for filepath in filelist: + fkey, fext = os.path.splitext(filepath) + if fext in [".yaml", ".xml"]: + if fkey not in self.nodes: + self.nodes[fkey] = AwPluginNode(self, fkey) + else: + logger.warning("plugin ignored: unknown extension ({})".format(filepath)) + + for plugin in self.nodes.values(): + plugin.load(myutils.plugins()) + + + +class AwPluginNode(basetree.AwBaseNode): + + def __init__(self, tree, path): + super(AwPluginNode, self).__init__(tree, path) + self.__isleaf = None + self.__rosxml = None + self.__fields = None + self.__args = None + self.__exts = None + self.__rules = None + self.__panel = None + self.__frame = None + + def dump(self): + print yaml.safe_dump(self.todict()) + + def todict(self): + return \ + { + "1.name" : self.path(), + "2.type" : "Node" if self.isnode() else "Leaf", + "3.file" : self.__rosxml, + "4.exts" : [data.todict() for data in self.__exts], + "5.args" : [data.todict() for data in self.__args], + "6.rules": [data.todict() for data in self.__rules], + "7.panel": self.__panel.todict(), + "8.frame": self.__frame.todict() + } + + def isnode(self): + return not self.__isleaf + + def isleaf(self): + return self.__isleaf + + def rosxml(self): + return self.__rosxml + + def fields(self): + return self.__fields + + def exts(self): + return self.__exts + + def args(self): + return self.__args + + def rules(self): + return self.__rules + + def panel(self): + return self.__panel + + def frame(self): + return self.__frame + + def default_config(self): + values = {"str":"", "int":"0", "bool":False} + def default_value(data): + value = data.rest.get("default") + if value is None: + return values[data.type] + else: + return value + config = {} + config.update({"args." + data.name: default_value(data) for data in self.__args}) + config.update({"exts." + data.name: default_value(data) for data in self.__exts}) + return config + + def argstr(self, config): + lines = [] + for argkey, argdef in self.__args.items(): + cfgkey = "args." + argkey + lines.append(argkey + ": " + config[cfgkey]) + return "\n".join(lines) + + def load(self, rootpath): + filepath = os.path.join(rootpath, self.path()) + + if os.path.exists(filepath + ".yaml"): + with open(filepath+ ".yaml") as fp: + ydata = yaml.safe_load(fp) + + if ydata.get("format") != "Autoware Launcher Plugin Version 0.1": + raise Exception("unknown plugin format: " + filepath) + + self.__isleaf = ydata.get("rules") is None + self.__rosxml = ydata.get("rosxml", "$(find autoware_launcher)/plugins/{}.xml".format(self.path())) + self.__exts = [AwPluginDataElement(data) for data in ydata.get("exts", [])] + self.__args = [AwPluginDataElement(data) for data in ydata.get("args", [])] + self.__rules = [AwPluginRuleElement(data, self) for data in ydata.get("rules", [])] + self.__panel = AwPluginPanelElement(ydata.get("panel", {})) + self.__frame = AwPluginFrameElement(ydata.get("frame", {})) + self.__fields = {} + self.__fields.update({"exts."+data.name: data for data in self.__exts}) + self.__fields.update({"args."+data.name: data for data in self.__args}) + + + +# AwPluginArgumentDataElement +# AwPluginExtendedDataElement +class AwPluginDataElement(object): + + def __init__(self, data): + self.name = data.pop("name") + self.type = data.pop("type") + self.list = data.pop("list", None) + self.rest = data # temporary, add default field + + def todict(self): + return vars(self) + + def xmlstr(self, value): + if self.list is None: + return value + if self.list == "space": + return " ".join(value) + if self.list == "yaml": + return "[{}]".format(",".join(value)) + raise Error(__class__.__name__ + ".xmlstr") + +class AwPluginRuleElement(object): + + def __init__(self, data, node): + self.unique = not data.get("list", False) + self.name = data["name"] + self.plugins = self.__init_plugins(data["plugin"], node) + + def todict(self): + return vars(self) + + def __init_plugins(self, plist, pnode): + plugins = [] + ptree = pnode.tree() + plist = plist if type(plist) is list else [plist] + for pdata in plist: + if type(pdata) is dict: + plugins.extend(ptree.scan(pdata["scan"])) + elif type(pdata) is str: + if ptree.find(pdata): + plugins.append(pdata) + else: + logger.warning("plugin is not found: {} in {}".format(pdata, pnode.path())) + else: + logger.warning("unknown plugin rule: {} in {}".format(pdata, pnode.path())) + return plugins + +class AwPluginFrameElement(object): + + def __init__(self, data): + self.widget = data.get("widget", "node.frame") + self.target = data.get("target") + self.title = data.get("title") + + def todict(self): + return vars(self) + +class AwPluginPanelElement(object): + + def __init__(self, data): + self.widget = data.get("widget", "node.panel") + self.frames = [AwPluginFrameElement(f) for f in data.get("frames", [])] + + def todict(self): + return \ + { + "widget": self.widget, + "frames": [vars(data) for data in self.frames] + } + + + + +if __name__ == "__main__": + plugin = AwPluginTree() + plugin.dump() \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/server.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/server.py new file mode 100644 index 00000000000..ca698231a46 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/core/server.py @@ -0,0 +1,132 @@ +from logging import getLogger +logger = getLogger(__name__) + +import yaml +from . import myutils +from .plugin import AwPluginTree +from .launch import AwLaunchTree +from .launch import AwLaunchNode + + +class AwLaunchServerIF(object): + def make_profile(self, ppath): raise NotImplementedError("make_profile") + def load_profile(self, fpath): raise NotImplementedError("load_profile") + def save_profile(self, fpath): raise NotImplementedError("save_profile") + def list_node (self, lpath): raise NotImplementedError("list_node") + def find_node (self, lpath): raise NotImplementedError("find_node") + def update_node (self, lpath, ldata): raise NotImplementedError("update_node") + def create_node (self, lpath, ppath): raise NotImplementedError("create_node") + def remove_node (self, lpath): raise NotImplementedError("remove_node") + def launch_node (self, lpath): raise NotImplementedError("launch_node") + #def list_plugin + #def find_plugin + #def runner_finished + #def runner_stdouted + #def runner_stderred + +class AwLaunchClientIF(object): + def profile_updated(self): logger.error("Not implemented: profile_updated in " + self.__class__.__name__) + def node_updated (self, lpath): logger.error("Not implemented: node_updated in " + self.__class__.__name__) + def node_created (self, lpath): logger.error("Not implemented: node_created in " + self.__class__.__name__) + def node_removed (self, lpath): logger.error("Not implemented: node_removed in " + self.__class__.__name__) + def status_updated (self, lpath, state): logger.error("Not implemented: status_updated in " + self.__class__.__name__) + + +class AwLaunchServer(AwLaunchServerIF): + + def __init__(self, sysarg): + self.__plugins = AwPluginTree() + self.__profile = AwLaunchTree(self, self.__plugins) + self.__runner = None + self.__clients = [] + + def register_runner(self, runner): + self.__runner = runner + + def register_client(self, client): + self.__clients.append(client) + + def make_profile(self, ppath): + logger.info("make_profile: " + ppath) + self.__profile = AwLaunchTree(self, self.__plugins) + self.__profile.make(ppath, self.__plugins) + for client in self.__clients: client.profile_updated() + + def load_profile(self, fpath): + logger.info("load_profile: " + fpath) + self.__profile = AwLaunchTree(self, self.__plugins) + self.__profile.load(myutils.profile(fpath), self.__plugins) + for client in self.__clients: client.profile_updated() + + def save_profile(self, fpath): + logger.info("save_profile: " + fpath) + self.__profile.save(myutils.profile(fpath)) + + def export_profile(self, fpath): + logger.info("export_profile: " + fpath) + self.__profile.export(fpath) + + def list_node(self): + logger.info("list_node: ") + return map(lambda node: node.nodepath(), self.__profile.listnode(False)) + + def find_node(self, lpath): + logger.info("find_node: " + lpath) + return self.__profile.find(lpath) + + def update_node(self, lpath, ldata): + error = self.__profile.find(lpath).update(ldata) + if not error: + for client in self.__clients: client.node_updated(lpath) + return error + + def create_node(self, lpath, ppath): + error = self.__profile.create(lpath, ppath) + if not error: + for client in self.__clients: client.node_created(lpath) + return error + + def remove_node(self, lpath): + pass + + def launch_node(self, lpath, xmode): # ToDo: update ancestors status + logger.info("launch_node: " + lpath + " " + str(xmode)) + difflist = [] + execlist = [] + nodelist = self.__profile.find(lpath).listnode(True) + nodelist = sorted(nodelist, reverse = True, key = lambda x: len(x.nodepath())) + for node in nodelist: + isdiff, isexec = node.launch(xmode) + if isdiff: difflist.append(node.nodepath()) + if isexec: execlist.append(node.nodepath()) + logger.info("Update:" + str(difflist)) + logger.info("Launch:" + str(execlist)) + for lpath in difflist: + state = self.__profile.find(lpath).status + for client in self.__clients: client.status_updated(lpath, state) + for lpath in execlist: + if xmode: + xtext = self.__profile.find(lpath).generate_launch() + self.__runner.roslaunch(lpath, xtext) + else: + self.__runner.terminate(lpath) + + def runner_finished(self, lpath): # ToDo: update ancestors status + self.__profile.find(lpath).status = AwLaunchNode.STOP + for client in self.__clients: client.status_updated(lpath, AwLaunchNode.STOP) + + def request_json(self, request): + try: + request = yaml.safe_load(request) + except: + return yaml.safe_dump({"error": "failed to load json"}) + + logger.info(request) + if request["command"] == "launch": + self.launch_node(request["path"], True) + return yaml.safe_dump({"error": None}) + if request["command"] == "terminate": + self.launch_node(request["path"], False) + return yaml.safe_dump({"error": None}) + + return yaml.safe_dump({"error": "command ignored"}) \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/__init__.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/__init__.py new file mode 100644 index 00000000000..79298c213a0 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/__init__.py @@ -0,0 +1 @@ +from .client import AwQtGuiClient \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/client.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/client.py new file mode 100644 index 00000000000..86fb686994b --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/client.py @@ -0,0 +1,210 @@ +from logging import getLogger +logger = getLogger(__name__) + +from python_qt_binding import QtCore +from python_qt_binding import QtWidgets + +from ..core import myutils +from .guimgr import AwQtGuiManager +from .mirror import AwLaunchTreeMirror + +# For Gui Manager +from .window import AwMainWindow +from .treeview import AwTreeViewPanel +from .treeview import AwControlPanel +from .procmgr import AwProcessPanel +from .summary import AwSummaryPanel +from .network import AwTcpServerPanel +from .quickstart import AwQuickStartPanel +from .simulation import AwRosbagSimulatorWidget +from .simulation import AwLgsvlSimulatorWidget +from .simulation import AwGazeboSimulatorWidget + + + +class AwQtGuiClient(object): + + def __init__(self, sysarg, server): + self.__sysarg = sysarg + self.__panels = [] + self.__guimgr = AwQtGuiManager(self) + self.__mirror = AwLaunchTreeMirror(self) + + self.__server = server + self.__server.register_client(self) + + + + def guimgr(self): + return self.__guimgr + + def select_config(self, lpath): # ToDo: consider moving to guimgr + self.__treeview.select_config(lpath) + + + + def start2(self): + + application = QtWidgets.QApplication(self.__sysarg) + resolution = application.desktop().screenGeometry() + resolution = min(resolution.width(), resolution.height()) + + with open(myutils.package("resources/skins/autoware.css")) as fp: + stylesheet = fp.read() + stylesheet += "* { font-size: " + str(resolution/100) + "px; }" + application.setStyleSheet(stylesheet) + + self.__treeview = AwTreeViewPanel(self) # ToDo: consider moving to guimgr + self.__control = AwControlPanel(self) # ToDo: consider moving to guimgr + self.__summary = AwSummaryPanel(self) # ToDo: consider moving to guimgr + self.__process = AwProcessPanel(self) # ToDo: consider moving to guimgr + self.__network = AwTcpServerPanel() + self.__quickstart = AwQuickStartPanel(self.__guimgr) + self.__sim_rosbag = AwRosbagSimulatorWidget(self.__guimgr) + self.__sim_lgsvl = AwLgsvlSimulatorWidget (self.__guimgr) + self.__sim_gazebo = AwGazeboSimulatorWidget(self.__guimgr) + + tabwidget = QtWidgets.QTabWidget() + tabwidget.setSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Expanding) + tabwidget.addTab(self.__summary, "Summary") + tabwidget.addTab(self.__process, "Process") + + #vsplitter = QtWidgets.QSplitter(QtCore.Qt.Vertical) + vsplitter = QtWidgets.QWidget() + vsplitter.setLayout(QtWidgets.QVBoxLayout()) + vsplitter.layout().setContentsMargins(0, 0, 0, 0) + vsplitter.layout().setSpacing(0) + vsplitter.layout().addWidget(self.__treeview) + vsplitter.layout().addWidget(self.__control) + + self.__develop = QtWidgets.QSplitter(QtCore.Qt.Horizontal) + self.__develop.addWidget(vsplitter) + self.__develop.addWidget(tabwidget) + + #mainwidget = QtWidgets.QTabWidget() + #mainwidget.addTab(hsplitter, "Profile Edit") + #mainwidget.addTab(self.__quickstart, "Quick Start") + #mainwidget.addTab(self.__network, "Server Debug") + + mainwidget = QtWidgets.QStackedWidget() + mainwidget.addWidget(self.__quickstart) + mainwidget.addWidget(self.__develop) + mainwidget.addWidget(self.__network) + + simulations = QtWidgets.QTabWidget() + simulations.addTab(self.__sim_rosbag, "Rosbag") + simulations.addTab(self.__sim_lgsvl, "LGSVL") + simulations.addTab(self.__sim_gazebo, "Gazebo") + + mainsplitter = QtWidgets.QSplitter(QtCore.Qt.Vertical) + mainsplitter.addWidget(mainwidget) + mainsplitter.addWidget(simulations) + + #dock = QtWidgets.QDockWidget() + #dock.setWidget( ) + #window.addDockWidget(QtCore.Qt.RightDockWidgetArea, dock) + + window = AwMainWindow(self) + window.setCentralWidget(mainsplitter) + window.show() + + simulations.hide() + window.addViewMenu("Simulation", simulations.setVisible) + + def switch_develop_mode(checked): + if checked: + mainwidget.setCurrentWidget(self.__develop) + else: + mainwidget.setCurrentWidget(self.__quickstart) + window.addViewMenu("Develop Mode", switch_develop_mode) + + # Debug + #mainwidget.setCurrentWidget(self.__develop) + simulations.hide() + self.__sim_rosbag.rosbag_file.path.setText(myutils.userhome(".autoware/log/20150324.bag")) + + # connect objects + self.__server.register_runner(self.__process) + self.__process.register_server(self.__server) + + self.__server.register_client(self.__network) + self.__network.register_server(self.__server) + + self.__panels.append(self.__treeview) + self.__panels.append(self.__summary) + self.__panels.append(self.__process) + self.__panels.append(self.__quickstart) + + self.__treeview.register_select_listener(self.__summary) + self.__treeview.register_select_listener(self.__process) + self.__treeview.register_select_listener(self.__control) + + if len(self.__sysarg) < 2: + self.__server.make_profile("root/default") + else: + self.__server.load_profile(self.__sysarg[1]) + + return application.exec_() + + + + def profile_updated(self): + self.__mirror.clear() + for panel in self.__panels: panel.profile_ui_cleared() + + for lpath in self.__server.list_node(): + lnode = self.__mirror.create(lpath) + for panel in self.__panels: panel.node_ui_created(lnode) + + self.__treeview.expandAll() + #self.__treeview.expandToDepth(0) + + def node_created(self, lpath): + logger.debug("node_created: " + lpath) + lnode = self.__mirror.create(lpath) + for panel in self.__panels: panel.node_ui_created(lnode) + + lpath = myutils.parentpath(lpath) + while lpath: + logger.debug("node_updated: " + lpath) + self.__mirror.clear(lpath) + lnode = self.__mirror.create(lpath) + for panel in self.__panels: panel.node_ui_updated(lnode) + lpath = myutils.parentpath(lpath) + + def node_updated(self, lpath): + while lpath: + logger.debug("node_updated: " + lpath) + self.__mirror.clear(lpath) + lnode = self.__mirror.create(lpath) + for panel in self.__panels: panel.node_ui_updated(lnode) + lpath = myutils.parentpath(lpath) + + def status_updated(self, lpath, state): + logger.debug("status_updated:" + lpath + " " + str(state)) + self.__treeview.status_ui_updated(lpath, state) + self.__quickstart.status_ui_updated(lpath, state) + + def load_profile(self, fpath): + self.__server.load_profile(fpath) + + def save_profile(self, fpath): + self.__server.save_profile(fpath) + + def export_profile(self, fpath): + self.__server.export_profile(fpath) + + def find_node(self, lpath): + return self.__server.find_node(lpath) + + def launch_node(self, lpath, xmode): + return self.__server.launch_node(lpath, xmode) + + def create_node(self, lpath, ppath): + return self.__server.create_node(lpath, ppath) + + def update_node(self, lpath, ldata): + return self.__server.update_node(lpath, ldata) + + + diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/guimgr.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/guimgr.py new file mode 100644 index 00000000000..3406202e57f --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/guimgr.py @@ -0,0 +1,158 @@ +from logging import getLogger +logger = getLogger(__name__) + +import importlib +import os + +from python_qt_binding import QtCore +from python_qt_binding import QtWidgets + +from ..core import myutils + +# ToDo: move package +# core : client, mirror +# gui : guimgr + +class AwQtGuiManager(object): + + def __init__(self, client): + self.__client = client + self.__widgets = {} + + for filepath in os.listdir(myutils.package("src/autoware_launcher/gui/plugins")): + fkey, fext = os.path.splitext(os.path.basename(filepath)) + if (fkey != "__init__") and (fext == ".py"): + logger.info("load plugin module: " + fkey) + module = importlib.import_module("autoware_launcher.gui.plugins." + fkey) + for wkey, wcls in module.plugin_widgets().items(): + self.__widgets[fkey + "." + wkey] = wcls + + def client(self): + return self.__client + + def widget(self, view): + return self.__widgets[view.widget] + + def create_widget(self, node, view, parent = None, widget = None): + widget = widget or self.widget(view) + return widget(self, node, view) + + def create_frame(self, mirror, guikey = None, guicls = None): + #logger.debug("Create Frame: {:<7} Key: {} Class: {}".format(mirror.nodename(), guikey, guicls)) + if not guicls: + guikey = guikey or mirror.plugin().frame() + guicls = self.__widgets[guikey + "_frame"] + return guicls(self, mirror) + + def create_panel(self, mirror, guikey = None, guicls = None): + #logger.debug(reate Panel: {:<7} Key: {} Class: {}".format(mirror.nodename(), guikey, guicls)) + if not guicls: + guikey = guikey or mirror.plugin().panel() + guicls = self.__widgets[guikey + "_panel"] + return guicls(self, mirror) + + def create_arg_frame(self, parent, opts): + guicls = self.__widgets["args." + opts["type"]] + return guicls(self, parent, opts) + + def create_info_frame(self, parent, opts): + guicls = self.__widgets["info." + opts["type"]] + return guicls(self, parent, opts) + + def create_frame_entire_vlayout(self): + layout = QtWidgets.QVBoxLayout() + layout.setSpacing(0) + layout.setContentsMargins(0, 0, 0, 0) + return layout + + def create_frame_header_hlayout(self): + layout = QtWidgets.QHBoxLayout() + layout.setSpacing(0) + layout.setContentsMargins(5, 2, 2, 2) + return layout + + def panel_add_widget(self, panel, widget): + + index = panel.layout().count() - 2 + panel.layout().insertWidget(index, widget) + + def panel_setup(self, widget, spacer = None): + + if widget.layout() is None: + self.__panel_setup(widget, spacer) + else: + self.__panel_reset(widget) + + def __panel_setup(self, widget, spacer): + + footer_layout = QtWidgets.QHBoxLayout() + footer_layout.setContentsMargins(2, 2, 2, 2) + footer_layout.setSpacing(2) + footer_layout.addStretch() + widget.footer = QtWidgets.QWidget() + widget.footer.setLayout(footer_layout) + + widget_layout = QtWidgets.QVBoxLayout() + widget_layout.setContentsMargins(16, 16, 16, 16) + widget_layout.setSpacing(16) + if not spacer: + widget_layout.addStretch() + else: + widget_layout.addWidget(spacer) + widget_layout.addWidget(widget.footer) + widget.setLayout(widget_layout) + + def __panel_reset(self, widget): + + footer_layout = widget.footer.layout() + while 1 < footer_layout.count(): + footer_layout.takeAt(footer_layout.count() - 1).widget().deleteLater() + + widget_layout = widget.layout() + while 2 < widget_layout.count(): + widget_layout.takeAt(0).widget().deleteLater() + + def frame_add_widget(self, frame, widget): + widget.setObjectName("FrameWidget") + frame.layout().addWidget(widget) + + def frame_add_button(self, frame, button): + frame.header.layout().addWidget(button) + + def frame_add_text_widget(self, frame, text): + layout = self.create_frame_header_hlayout() + layout.addWidget(QtWidgets.QLabel(text)) + widget = QtWidgets.QWidget() + widget.setLayout(layout) + self.frame_add_widget(frame, widget) + + def frame_setup(self, widget): + + if widget.layout() is None: + self.__frame_setup(widget) + else: + self.__frame_reset(widget) + + def __frame_setup(self, widget): + + widget.title = QtWidgets.QLabel("No Title") + widget.title.setSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) + layout = self.create_frame_header_hlayout() + layout.addWidget(widget.title) + widget.header = QtWidgets.QWidget() + widget.header.setObjectName("FrameHeader") + widget.header.setLayout(layout) + + layout = self.create_frame_entire_vlayout() + layout.addWidget(widget.header) + widget.setLayout(layout) + + def __frame_reset(self, widget): + + layout = widget.header.layout() + while 1 < layout.count(): + layout.takeAt(layout.count() - 1).widget().deleteLater() + + layout = widget.layout() + while 1 < layout.count(): + layout.takeAt(layout.count() - 1).widget().deleteLater() diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/mirror.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/mirror.py new file mode 100644 index 00000000000..61c28385e49 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/mirror.py @@ -0,0 +1,113 @@ +from ..core import myutils + + +class AwLaunchTreeMirror(object): + + def __init__(self, client): + self.nodes = {} + self.cache = {} + self.client = client + + def clear(self, lpath = None): + if lpath: + self.cache.pop(lpath, None) + else: + self.cache.clear() + + def find(self, path): + if path not in self.cache: + self.cache[path] = self.client.find_node(path) + return self.cache[path] + + def create(self, path): + if path not in self.nodes: + self.nodes[path] = AwLaunchNodeMirror(self, path) + return self.nodes[path] + + def remove(self, path, node): + self.nodes.pop(path) + + + +class AwLaunchNodeMirror(object): + + def __init__(self, tree, path): + self.__tree = tree + self.__path = path + self.__refs = [] + + def __find(self): + return self.__tree.find(self.__path) + + def tostring(self): + return self.__find().tostring() + + def status(self): + node = self.__find() + if node.status == node.STOP: return "stop" + if node.status == node.EXEC: return "exec" + if node.status == node.TERM: return "term" + return "exec/term" + + def isleaf(self): + return self.__find().plugin.isleaf() + + def path(self): + return self.__find().nodepath() + + def name(self): + return self.__find().nodename() + + def plugin(self): + return self.__find().plugin + + def config(self): + #return self.__find().config + return self.__find().config.copy() + + def update(self, ldata): + return self.__tree.client.update_node(self.__path, ldata) + + def launch(self, mode): + self.__tree.client.launch_node(self.__path, mode) + + def listnode(self, this): + return map(lambda node: node.nodepath(), self.__find().listnode(this)) + + def haschild(self, name): + return self.__find().haschild(name) + + def getchild(self, name): + return self.__tree.create(self.__path + "/" + name) + + def addchild(self, lname, ppath): + return self.__tree.client.create_node(self.__path + "/" + lname, ppath) + + def children(self): + mirrored_children = [] + for child in self.__find().children(): + mirrored_children.append(self.__tree.create(child.nodepath())) + return mirrored_children + + def childnames(self): + return map(lambda node: node.nodename(), self.__find().children()) + + def childnodes(self): + return [self.__tree.create(child.nodepath()) for child in self.__find().children()] + + def get_config(self, key, value = None): + return self.__find().config.get(key, value) + + def generate_launch(self): + return self.__find().generate_launch() + + + + +#class AwLaunchNodeMirror2(object): +# +# def __init__(self, writer): +# self.writer = writer +# +# def __getattr__(self, name): +# return getattr(self.writer, name) diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/network.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/network.py new file mode 100644 index 00000000000..e192ab212f4 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/network.py @@ -0,0 +1,56 @@ +from python_qt_binding import QtWidgets +from python_qt_binding import QtNetwork + +from ..core import AwLaunchClientIF + +class AwTcpServerPanel(QtWidgets.QTextEdit, AwLaunchClientIF): + + def __init__(self): + + super(AwTcpServerPanel, self).__init__() + self.server = None + self.tcpsvr = QtNetwork.QTcpServer(self) + self.connections = [] + self.setReadOnly(True) + + if self.tcpsvr.listen(QtNetwork.QHostAddress.Any, 33136): + self.append("Server started") + self.tcpsvr.newConnection.connect(self.on_new_connection) + else: + self.append("Server start error") + + def register_server(self, server): + self.server = server + + def on_new_connection(self): + + socket = self.tcpsvr.nextPendingConnection() + socket.buff = "" + self.connections.append(socket) + self.append("New connection {} {}".format(socket.localAddress().toString(), socket.localPort())) + + socket.error.connect(self.on_client_error) + #socket.disconnected.connect + socket.readyRead.connect(self.on_client_read_ready) + + def on_client_read_ready(self): + + socket = self.sender() + requests = str(socket.readAll()).split("\0") + requests[0] = socket.buff + requests[0] + socket.buff = requests.pop() + for request in requests: + self.request_json(request) + + def on_client_error(self): + + socket = self.sender() + self.append("Error " + socket.errorString()) + if socket in self.connections: + socket.close() + self.connections.remove(socket) + + def request_json(self, request): + self.append("Request " + request) + response = self.server.request_json(request) + self.append("Response " + response) diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/plugins/__init__.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/plugins/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/plugins/args.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/plugins/args.py new file mode 100644 index 00000000000..c0c41edeaa3 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/plugins/args.py @@ -0,0 +1,98 @@ +from python_qt_binding import QtCore, QtWidgets +from autoware_launcher.core import myutils +from autoware_launcher.gui import widgets + + + +def plugin_widgets(): + return {} + + +""" +class AwCameraCalibFrame(AwFileSelect): + + def __init__(self, guimgr, node, opts): + super(AwCameraCalibFrame, self).__init__(guimgr, node, opts) + + calib = QtWidgets.QPushButton("Calib") + calib.setCheckable(True) + calib.toggled.connect(self.calibrate) + self.add_button(calib) + + def refresh_image_topic(self): + from subprocess import Popen, PIPE + command = "rostopic find sensor_msgs/Image" + process = Popen(command.split(), stdout=PIPE, stderr=PIPE) + stdout, stderr = process.communicate() + self.topic_name.clear() + for topic in stdout.split("\n"): + if topic: self.topic_name.addItem(topic) + + def calibrate(self, checked): + + self.intrinsic_calibrator = QtCore.QProcess(self) + self.extrinsic_calibrator = QtCore.QProcess(self) + self.corner_size_x = QtWidgets.QLineEdit("8") + self.corner_size_y = QtWidgets.QLineEdit("6") + self.square_length = QtWidgets.QLineEdit("0.1") + self.topic_name = QtWidgets.QComboBox() + self.topic_refresh = QtWidgets.QPushButton("Refresh") + self.intrinsic_file = QtWidgets.QLineEdit() + self.intrinsic_browse = QtWidgets.QPushButton("Browse") + self.calib_intrinsic = QtWidgets.QPushButton("Calibrate Intrinsic") + self.calib_extrinsic = QtWidgets.QPushButton("Calibrate Extrinsic") + + self.refresh_image_topic() + self.topic_refresh.clicked.connect(self.refresh_image_topic) + self.intrinsic_browse.clicked.connect(self.select_intrinsic) + + self.calib_intrinsic.setCheckable(True) + self.calib_intrinsic.toggled.connect(self.calibrate_intrinsic) + self.calib_extrinsic.setCheckable(True) + self.calib_extrinsic.toggled.connect(self.calibrate_extrinsic) + + widget = QtWidgets.QWidget() + widget.setLayout(QtWidgets.QGridLayout()) + widget.layout().addWidget(QtWidgets.QLabel("Square Corners"), 0, 0) + widget.layout().addWidget(self.corner_size_x, 0, 1) + widget.layout().addWidget(QtWidgets.QLabel("x"), 0, 2) + widget.layout().addWidget(self.corner_size_y, 0, 3) + widget.layout().addWidget(QtWidgets.QLabel("Square Length"), 0, 4) + widget.layout().addWidget(self.square_length, 0, 5) + widget.layout().addWidget(QtWidgets.QLabel("Image Topic"), 1, 0) + widget.layout().addWidget(self.topic_name, 1, 1, 1, 4) + widget.layout().addWidget(self.topic_refresh, 1, 5) + widget.layout().addWidget(QtWidgets.QLabel("Intrinsic File"), 2, 0) + widget.layout().addWidget(self.intrinsic_file, 2, 1, 1, 4) + widget.layout().addWidget(self.intrinsic_browse, 2, 5) + widget.layout().addWidget(self.calib_intrinsic, 3, 0) + widget.layout().addWidget(self.calib_extrinsic, 3, 1) + + window = QtWidgets.QMainWindow(self) + window.setCentralWidget(widget) + window.setAttribute(QtCore.Qt.WA_DeleteOnClose, True) + window.setWindowModality(QtCore.Qt.ApplicationModal) + window.show() + + def select_intrinsic(self): + import os + filename, filetype = QtWidgets.QFileDialog.getOpenFileName(self, "Select File", os.path.expanduser("~")) + if filename: + self.intrinsic_file.setText(filename) + + def calibrate_intrinsic(self, checked): + if checked: + command = "rosrun autoware_camera_lidar_calibrator cameracalibrator.py --square {} --size {}x{} image:={}" + command = command.format(self.square_length.text(), self.corner_size_x.text(), self.corner_size_y.text(), self.topic_name.currentText()) + self.intrinsic_calibrator.start(command ) + else: + self.intrinsic_calibrator.terminate() + + def calibrate_extrinsic(self, checked): + if checked: + command = "roslaunch autoware_camera_lidar_calibrator camera_lidar_calibration.launch intrinsics_file:={} image_src:={}" + command = command.format(self.intrinsic_file.text(), self.topic_name.currentText()) + self.extrinsic_calibrator.start(command ) + else: + self.extrinsic_calibrator.terminate() +""" \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/plugins/basic.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/plugins/basic.py new file mode 100644 index 00000000000..d9a61f575f4 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/plugins/basic.py @@ -0,0 +1,324 @@ +from python_qt_binding import QtCore, QtWidgets +from autoware_launcher.core import myutils +from autoware_launcher.gui import widgets + + + +def plugin_widgets(): + return \ + { + "text" : AwTextFrame, + "textlist" : AwTextListFrame, + "file" : AwFileFrame, + "filelist" : AwFileListFrame, + "bool" : AwBooleanFrame, + "int" : AwIntegerFrame, + "real" : AwRealFrame, + "transform" : AwTransformFrame, + } + +def frame_title(view, text): + if view.title: + return view.title + else: + target = view.target + if type(target) is list: target = ", ".join(target) + return "{} ({})".format(text, target) + + + +class AwTextFrame(widgets.AwAbstructFrame): + + def __init__(self, guimgr, node, view): + super(AwTextFrame, self).__init__(guimgr, node, view) + super(AwTextFrame, self).setup_widget() + self.set_title(frame_title(self.view, "Text")) + + self.field = AwTextField(self.node.get_config(self.view.target)) + self.field.value_updated.connect(self.apply) + self.add_widget(self.field) + + def apply(self, value): + self.node.update({"config": {self.view.target: value}}) + + @staticmethod + def validate_argtypes(fields, view): + data = fields[view.target] + return (data.type == "str") and (data.list is None) + + +class AwTextListFrame(widgets.AwAbstructFrame): + + def __init__(self, guimgr, node, view): + super(AwTextListFrame, self).__init__(guimgr, node, view) + super(AwTextListFrame, self).setup_widget() + self.set_title(frame_title(self.view, "TextList")) + + self.field = AwTextListField(self.node.get_config(self.view.target)) + self.field.value_updated.connect(self.apply) + self.add_widget(self.field) + + def apply(self, value): + self.node.update({"config": {self.view.target: value}}) + + @staticmethod + def validate_argtypes(fields, view): + data = fields[view.target] + return (data.type == "str") and (data.list is not None) + + +class AwFileFrame(AwTextFrame): + + def __init__(self, guimgr, node, view): + super(AwFileFrame, self).__init__(guimgr, node, view) + self.add_button(AwFileBrowseButton(self.field)) + + + +class AwFileListFrame(AwTextListFrame): + + def __init__(self, guimgr, node, view): + super(AwFileListFrame, self).__init__(guimgr, node, view) + self.add_button(AwFileListBrowseButton(self.field)) + + + +class AwBooleanFrame(widgets.AwAbstructFrame): + + def __init__(self, guimgr, node, view): + super(AwBooleanFrame, self).__init__(guimgr, node, view) + super(AwBooleanFrame, self).setup_widget() + self.set_title(frame_title(self.view, "Boolean")) + + self.field = AwBooleanField(self.node.get_config(self.view.target)) + self.field.value_updated.connect(self.apply) + self.add_widget(self.field) + + def apply(self, value): + self.node.update({"config": {self.view.target: value}}) + + @staticmethod + def validate_argtypes(fields, view): + data = fields[view.target] + return (data.type == "bool") and (data.list is None) + + +class AwIntegerFrame(widgets.AwAbstructFrame): + + def __init__(self, guimgr, node, view): + super(AwIntegerFrame, self).__init__(guimgr, node, view) + super(AwIntegerFrame, self).setup_widget() + self.set_title(frame_title(self.view, "Integer")) + + self.field = AwIntegerField(self.node.get_config(self.view.target)) + self.field.value_updated.connect(self.apply) + self.add_widget(self.field) + + def apply(self, value): + self.node.update({"config": {self.view.target: value}}) + + @staticmethod + def validate_argtypes(fields, view): + data = fields[view.target] + return (data.type == "int") and (data.list is None) + + +class AwRealFrame(widgets.AwAbstructFrame): + + def __init__(self, guimgr, node, view): + super(AwRealFrame, self).__init__(guimgr, node, view) + super(AwRealFrame, self).setup_widget() + self.set_title(frame_title(self.view, "Float")) + + self.field = AwRealField(self.node.get_config(self.view.target)) + self.field.value_updated.connect(self.apply) + self.add_widget(self.field) + + def apply(self, value): + self.node.update({"config": {self.view.target: value}}) + + @staticmethod + def validate_argtypes(fields, view): + data = fields[view.target] + return (data.type == "real") and (data.list is None) + + +class AwTransformFrame(widgets.AwAbstructFrame): + + def __init__(self, guimgr, node, view): + super(AwTransformFrame, self).__init__(guimgr, node, view) + super(AwTransformFrame, self).setup_widget() + self.set_title(frame_title(self.view, "Transform")) + + widget = QtWidgets.QWidget() + widget.setLayout(QtWidgets.QHBoxLayout()) + for idx, txt in enumerate(["Tx", "Ty", "Tz", "Rx", "Ry", "Rz"]): + field = AwTextField(self.node.get_config(self.view.target[idx])) + field.target = self.view.target[idx] + field.value_updated.connect(self.apply) + widget.layout().addWidget(QtWidgets.QLabel(txt + ":")) + widget.layout().addWidget(field) + self.add_widget(widget) + + def apply(self, value): + field = self.sender() + self.node.update({"config": {field.target: value}}) + + @staticmethod + def validate_argtypes(fields, view): + if type(view.target) is not list: return False + if len(view.target) != 6: return False + targets = [fields[target] for target in view.target] + targets = [(data.type == "real") and (data.list is None) for data in targets] + return all(targets) + + + +class AwTextField(QtWidgets.QLineEdit): + + value_updated = QtCore.Signal(str) + + def __init__(self, value): + super(AwTextField, self).__init__() + self.__value = value + self.setText(self.__value) + + def update_value(self, value): + if self.__value != value: + self.__value = value + self.value_updated.emit(value) + + def focusOutEvent(self, event): + self.update_value(self.text()) + super(AwTextField, self).focusOutEvent(event) + + + +class AwTextListField(QtWidgets.QPlainTextEdit): + + value_updated = QtCore.Signal(list) + + def __init__(self, value): + super(AwTextListField, self).__init__() + self.__value = [v for v in value if v] + self.setPlainText("\n".join(self.__value)) + + def update_value(self, value): + value = [v for v in value if v] + if self.__value != value: + self.__value = value + self.value_updated.emit(value) + + def focusOutEvent(self, event): + self.update_value(self.toPlainText().split("\n")) + super(AwTextListField, self).focusOutEvent(event) + + + +class AwBooleanField(QtWidgets.QCheckBox): + + value_updated = QtCore.Signal(bool) + + def __init__(self, value): + super(AwBooleanField, self).__init__() + self.__value = value + self.setText(str(value)) + self.setCheckState(QtCore.Qt.Checked if value is True else QtCore.Qt.Unchecked) + self.stateChanged.connect(self.update_event) + self.setStyleSheet("width: 20px; height: 20px;") + + def update_value(self, value): + if self.__value != value: + self.__value = value + self.value_updated.emit(value) + + def update_event(self, state): + value = True if state == QtCore.Qt.Checked else False; + self.setText(str(value)) + self.update_value(value) + + + +class AwIntegerField(QtWidgets.QLineEdit): + + value_updated = QtCore.Signal(int) + + def __init__(self, value): + super(AwIntegerField, self).__init__() + self.__value = value + self.setText(str(self.__value)) + + def update_value(self, value): + if self.__value != value: + self.__value = value + self.value_updated.emit(value) + + def to_int(self, value): + try: + return int(value) + except: + return None + + def focusOutEvent(self, event): + value = self.to_int(self.text()) + if value is not None: + self.update_value(value) + super(AwIntegerField, self).focusOutEvent(event) + + + +class AwRealField(QtWidgets.QLineEdit): + + value_updated = QtCore.Signal(float) + + def __init__(self, value): + super(AwRealField, self).__init__() + self.__value = value + self.setText(str(self.__value)) + + def update_value(self, value): + if self.__value != value: + self.__value = value + self.value_updated.emit(value) + + def to_real(self, value): + try: + return float(value) + except: + return None + + def focusOutEvent(self, event): + value = self.to_real(self.text()) + if value is not None: + self.update_value(value) + super(AwRealField, self).focusOutEvent(event) + + + +class AwFileBrowseButton(QtWidgets.QPushButton): + + def __init__(self, field, text = "Browse"): + super(AwFileBrowseButton, self).__init__(text) + self.__field = field + self.clicked.connect(self.browsed) + + def browsed(self): + filepath, filetype = QtWidgets.QFileDialog.getOpenFileName(self, "Select File", myutils.userhome()) + if filepath: + filepath = myutils.envpath(filepath) + self.__field.update_value(filepath) + + + +class AwFileListBrowseButton(QtWidgets.QPushButton): + + def __init__(self, field, text = "Browse"): + super(AwFileListBrowseButton, self).__init__(text) + self.__field = field + self.clicked.connect(self.browsed) + + def browsed(self): + filepaths, filetype = QtWidgets.QFileDialog.getOpenFileNames(self, "Select Files", myutils.userhome()) + if filepaths: + filepaths = [myutils.envpath(filepath) for filepath in filepaths] + self.__field.update_value(filepaths) diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/plugins/info.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/plugins/info.py new file mode 100644 index 00000000000..d5f1e3e3000 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/plugins/info.py @@ -0,0 +1,33 @@ +from python_qt_binding import QtCore, QtWidgets +from autoware_launcher.gui import widgets + + + +def plugin_widgets(): + return \ + { + "node" : AwNodeInfoEdit, + } + + + +class AwNodeInfoEdit(widgets.AwAbstructFrame): + + def __init__(self, guimgr, node, opts): + super(AwNodeInfoEdit, self).__init__(guimgr, node, opts) + self.node = node + self.opts = opts + + super(AwNodeInfoEdit, self).setup_widget() + self.edit = QtWidgets.QLineEdit() + self.edit.setText(self.node.get_config("info.title", "")) + self.edit.editingFinished.connect(self.edited) + self.add_widget(self.edit) + self.set_title("Node Title") + + def edited(self): + self.node.update({"config": {"info.title": self.edit.text()}}) + + @staticmethod + def tostring(node, opts): + return "{}: {}".format("Node Title", node.get_config("info.title")) \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/plugins/node.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/plugins/node.py new file mode 100644 index 00000000000..6d4366168a9 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/plugins/node.py @@ -0,0 +1,233 @@ +from logging import getLogger +logger = getLogger(__name__) + +from python_qt_binding import QtCore, QtWidgets +from autoware_launcher.gui import widgets + + + +def plugin_widgets(): + return \ + { + "panel" : AwDefaultNodePanel, + "frame" : AwDefaultNodeFrame, + } + + + +class AwDefaultNodePanel(widgets.AwAbstructPanel): + + def __init__(self, guimgr, node, view): + super(AwDefaultNodePanel, self).__init__(guimgr, node, view) + self.config = self.node.config().copy() + + def setup_widget(self): + super(AwDefaultNodePanel, self).setup_widget() + + # For Debug + self.debug1 = QtWidgets.QLabel(self.node.tostring()) + self.debug1.setVisible(False) + self.add_frame(self.debug1) + self.setFocusPolicy(QtCore.Qt.ClickFocus) + + # For Debug + self.debug2 = QtWidgets.QLabel(self.node.generate_launch()) + self.debug2.setVisible(False) + self.add_frame(self.debug2) + self.setFocusPolicy(QtCore.Qt.ClickFocus) + + + # data view + for view in self.node.plugin().panel().frames: + self.add_frame(self.guimgr.create_widget(self.node, view)) + + # node view + for rule in self.node.plugin().rules(): + if rule.unique: + if self.node.haschild(rule.name): + child_node = self.node.getchild(rule.name) + child_view = child_node.plugin().frame() + self.add_frame(self.guimgr.create_widget(child_node, child_view)) + else: + self.add_frame(AwNodeCreateButton(self.node, rule, "Create " + rule.name.capitalize())) + else: + rule_names = [name for name in self.node.childnames() if name.startswith(rule.name)] + for rule_name in rule_names: + child_node = self.node.getchild(rule_name) + child_view = child_node.plugin().frame() + self.add_frame(self.guimgr.create_widget(child_node, child_view)) + self.add_frame(AwNodeCreateButton(self.node, rule, "Create " + rule.name.capitalize())) + + # Debug + def keyPressEvent(self, event): + if event.key() == QtCore.Qt.Key_D: + self.debug1.setVisible(not self.debug1.isVisible()) + event.accept() + elif event.key() == QtCore.Qt.Key_F: + self.debug2.setVisible(not self.debug2.isVisible()) + event.accept() + else: + super(AwDefaultNodePanel, self).keyPressEvent(event) + + + +class AwDefaultNodeFrame(widgets.AwAbstructFrame): + + def __init__(self, guimgr, node, view): + super(AwDefaultNodeFrame, self).__init__(guimgr, node, view) + + super(AwDefaultNodeFrame, self).setup_widget() + self.set_title(self.node.name().capitalize()) + self.add_button(AwConfigButton(self.guimgr.client(), self.node.path())) + + description = self.node.get_config("exts.description") + if description: + description = description.capitalize() + else: + config = node.config() + description = [] + #for data in self.node.plugin().info(): + # description.append(self.guimgr.widget(data).tostring(self.node, data)) + #for data in self.node.plugin().args(): + # description.append(self.guimgr.widget(data).tostring(self.node, data)) + description = "\n".join(description) if description else "No Description" + + self.add_text_widget(description) + + +class AwConfigButton(QtWidgets.QPushButton): + + def __init__(self, client, lpath): + super(AwConfigButton, self).__init__("Config") + self.clicked.connect(lambda: client.select_config(lpath)) + + + +class AwNodeCreateButton(QtWidgets.QPushButton): + + def __init__(self, node, rule, text): + + super(AwNodeCreateButton, self).__init__(text) + self.node = node + self.rule = rule + self.clicked.connect(self.onclicked) + + def newname(self): + + if self.rule.unique: + return self.rule.name + else: + index = 0 + while self.node.haschild(self.rule.name + str(index)): + index = index + 1 + return self.rule.name + str(index) + + def onclicked(self): + + if len(self.rule.plugins) == 1: + self.node.addchild(self.newname(), self.rule.plugins[0]) + else: + self.show_select_window() + + def onselected(self): + + items = self.ui_pname.selectedItems() + if not items: + self.ui_error.setText("Node type is not selected") + return + + error = self.node.addchild(self.newname(), items[0].text()) + if error: + self.ui_error.setText(error) + return + + self.ui_error.setText("") + self.ui_window.close() + + def show_select_window(self): + + # window + window = QtWidgets.QMainWindow(self) + window.setCentralWidget(QtWidgets.QWidget()) + window.setAttribute(QtCore.Qt.WA_DeleteOnClose, True) + window.setWindowModality(QtCore.Qt.ApplicationModal) + window.setGeometry(self.window().geometry()) + + # widget + window.setWindowTitle("Create Node") + widget = window.centralWidget() + widget.setLayout(QtWidgets.QVBoxLayout()) + + # plugin select + pname_select = QtWidgets.QListWidget() + for pname in self.rule.plugins: + pname_select.addItem(pname) + widget.layout().addWidget(QtWidgets.QLabel("Node Type")) + widget.layout().addWidget(pname_select) + + # footer + error_label = QtWidgets.QLabel() + error_label.setSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) + cancel_button = QtWidgets.QPushButton("Cancel") + select_button = QtWidgets.QPushButton("Select") + cancel_button.clicked.connect(window.close) + select_button.clicked.connect(self.onselected) + footer = QtWidgets.QHBoxLayout() + footer.addWidget(error_label) + footer.addWidget(cancel_button) + footer.addWidget(select_button) + widget.layout().addLayout(footer) + + self.ui_window = window + self.ui_error = error_label + self.ui_pname = pname_select + window.show() + + + +#experimental +class AwPluginRemoveWindow(QtWidgets.QMainWindow): + + def __init__(self, guimgr, launch, parent): + super(AwPluginRemoveWindow, self).__init__(parent) + self.guimgr = guimgr + self.node = launch + + settings = QtCore.QSettings("Autoware", "AutowareLauncher") + if settings.contains("geometry"): + self.restoreGeometry(settings.value("geometry")) + + # select + self.nodelist = QtWidgets.QListWidget() + for child in self.node.children(): + self.nodelist.addItem(child.name()) + + # footer + cancel = QtWidgets.QPushButton("Cancel") + cancel.clicked.connect(self.close) + remove = QtWidgets.QPushButton("Remove") + remove.clicked.connect(self.remove_launch_node) + footer = QtWidgets.QHBoxLayout() + footer.addStretch() + footer.addWidget(cancel) + footer.addWidget(remove) + + # widget + layout = QtWidgets.QVBoxLayout() + layout.addWidget(self.nodelist) + layout.addLayout(footer) + widget = QtWidgets.QWidget() + widget.setLayout(layout) + self.setCentralWidget(widget) + self.setWindowTitle("Remove Launch Node") + + def remove_launch_node(self): + items = self.nodelist.selectedItems() + if len(items) != 1: + logger.error("node is not selected") + else: + error = self.node.remove_child(items[0].text()) + if error: + logger.error(error) + else: + self.close() \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/procmgr.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/procmgr.py new file mode 100644 index 00000000000..0e91b94b7b9 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/procmgr.py @@ -0,0 +1,92 @@ +from python_qt_binding import QtCore +from python_qt_binding import QtGui +from python_qt_binding import QtWidgets + +from ..core import myutils + + + +class AwProcessPanel(QtWidgets.QStackedWidget): + + def __init__(self, client): + super(AwProcessPanel, self).__init__() + self.__client = client + self.__items = {} + self.__server = None + + self.__dummy = QtWidgets.QLabel("This is node") + self.addWidget(self.__dummy) + + def profile_ui_cleared(self): + for key in self.__items.keys(): + self.__items.pop(key).deleteLater() + + def node_ui_updated(self, lnode): + pass + + def node_ui_created(self, lnode): + lpath = lnode.path() + if lnode.plugin().isleaf(): + item = AwProcessItem(lpath) + self.__items[lpath] = item + self.addWidget(item) + + #def config_removed(self, lpath): + + def config_selected(self, lpath): + item = self.__items.get(lpath, self.__dummy) + self.setCurrentWidget(item) + + def roslaunch(self, lpath, xtext): + xpath = myutils.package() + "/runner/" + lpath.replace("/", "-") + ".xml" + with open(xpath, mode="w") as fp: + fp.write(xtext) + self.__items[lpath].proc.start("roslaunch {}".format(xpath)) + + def terminate(self, lpath): + self.__items[lpath].proc.terminate() + + def register_server(self, server): + self.__server = server + + def runner_finished(self, lpath): + self.__server.runner_finished(lpath) + + + +class AwProcessItem(QtWidgets.QPlainTextEdit): + + def __init__(self, lpath): + super(AwProcessItem, self).__init__() + self.lpath = lpath + + #ToDo: setMaximumBlockCount + self.setReadOnly(True) + self.setLineWrapMode(QtWidgets.QPlainTextEdit.NoWrap) + + self.proc = QtCore.QProcess(self) + self.proc.finished.connect(self.proc_finished) + self.proc.readyReadStandardOutput.connect(self.proc_stdouted) + self.proc.readyReadStandardError.connect(self.proc_stderred) + + import re + self.bash_regex = re.compile("\033(\[.*?m|\].*?;)") + + def proc_finished(self): + self.parent()._AwProcessPanel__server.runner_finished(self.lpath) + + def proc_stdouted(self): + byte = self.proc.readAllStandardOutput() + text = QtCore.QTextStream(byte).readAll() + text = self.bash_regex.sub("", text) + self.moveCursor(QtGui.QTextCursor.End) + self.insertPlainText(text) + self.moveCursor(QtGui.QTextCursor.End) + + def proc_stderred(self): + byte = self.proc.readAllStandardError() + text = QtCore.QTextStream(byte).readAll() + text = self.bash_regex.sub("", text) + self.moveCursor(QtGui.QTextCursor.End) + self.insertPlainText(text) + self.moveCursor(QtGui.QTextCursor.End) diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/quickstart.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/quickstart.py new file mode 100644 index 00000000000..5c0d5f8d7b9 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/quickstart.py @@ -0,0 +1,83 @@ +from python_qt_binding import QtCore +from python_qt_binding import QtGui +from python_qt_binding import QtWidgets + +from ..core import myutils +from ..core import AwLaunchClientIF + + + +class AwQuickStartPanel(QtWidgets.QWidget): + + def __init__(self, guimgr): + super(AwQuickStartPanel, self).__init__() + self.guimgr = guimgr + self.frames = {"root/" + name: None for name in ["map", "vehicle", "sensing", "visualization"]} + self.awlogo = QtWidgets.QLabel() + + pixmap = QtGui.QPixmap(myutils.package("resources/autoware_logo.png")) + self.awlogo.setPixmap(pixmap) + self.awlogo.setAlignment(QtCore.Qt.AlignCenter) + self.awlogo.setSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Expanding) + + def profile_ui_cleared(self): + self.guimgr.panel_setup(self, self.awlogo) + + def node_ui_created(self, lnode): + if lnode.path() == "root": self.setup_widget(lnode) + + def node_ui_updated(self, lnode): + if lnode.path() == "root": self.setup_widget(lnode) + + def status_ui_updated(self, lpath, state): + frame = self.frames.get(lpath) + if frame: + if state == 0x00: frame.term_completed() + if state == 0x01: frame.exec_requested() + if state == 0x02: frame.term_requested() + + def setup_widget(self, node): + self.guimgr.panel_setup(self, self.awlogo) + for child in node.childnodes(): + if child.path() in self.frames: + frame = self.guimgr.create_widget(child, child.plugin().frame(), widget = AwLaunchFrame) + self.frames[child.path()] = frame + self.guimgr.panel_add_widget(self, frame) + + + +class AwLaunchFrame(QtWidgets.QWidget): + + def __init__(self, guimgr, node, opts): + super(AwLaunchFrame, self).__init__() + self.node = node + self.states = ["Launch", "Terminate"] + + guimgr.frame_setup(self) + + self.title.setText(node.name().capitalize()) + guimgr.frame_add_text_widget(self, node.get_config("info.title", "No Description")) + + self.button = QtWidgets.QPushButton(self.states[0]) + self.button.clicked.connect(self.onclicked) + guimgr.frame_add_button(self, self.button) + + def onclicked(self): + state_text = self.button.text() + if state_text == self.states[0]: + self.node.launch(True) + self.exec_requested() + if state_text == self.states[1]: + self.node.launch(False) + self.term_requested() + + def exec_requested(self): + self.button.setText(self.states[1]) + + def term_requested(self): + self.button.setEnabled(False) + + def term_completed(self): + self.button.setText(self.states[0]) + self.button.setEnabled(True) + diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/simulation/__init__.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/simulation/__init__.py new file mode 100644 index 00000000000..25fa6521fd2 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/simulation/__init__.py @@ -0,0 +1,3 @@ +from .rosbag import AwRosbagSimulatorWidget +from .lgsvl import AwLgsvlSimulatorWidget +from .gazebo import AwGazeboSimulatorWidget \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/simulation/gazebo.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/simulation/gazebo.py new file mode 100644 index 00000000000..9a693443d00 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/simulation/gazebo.py @@ -0,0 +1,10 @@ +from python_qt_binding import QtCore +from python_qt_binding import QtWidgets +from autoware_launcher.core import myutils + + + +class AwGazeboSimulatorWidget(QtWidgets.QWidget): + + def __init__(self, guimgr): + super(AwGazeboSimulatorWidget, self).__init__() \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/simulation/lgsvl.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/simulation/lgsvl.py new file mode 100644 index 00000000000..5a3409630e9 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/simulation/lgsvl.py @@ -0,0 +1,115 @@ +from logging import getLogger +logger = getLogger(__name__) + +import requests +import yaml +from python_qt_binding import QtCore +from python_qt_binding import QtNetwork +from python_qt_binding import QtGui +from python_qt_binding import QtWidgets +from autoware_launcher.core import myutils + + + +class AwLgsvlSimulatorWidget(QtWidgets.QWidget): + + def __init__(self, guimgr): + super(AwLgsvlSimulatorWidget, self).__init__() + self.process = QtCore.QProcess(self) + self.console = AwProcessViewer(self.process) + self.button = QtWidgets.QPushButton("Launch Simulator") + self.button.setCheckable(True) + self.button.toggled.connect(self.launch_lgsvm) + + self.server_addr = QtWidgets.QLineEdit() + self.server_port = QtWidgets.QLineEdit() + self.client_addr = QtWidgets.QLineEdit() + self.client_port = QtWidgets.QLineEdit() + + self.server_addr.setText("10.100.2.1") + self.server_port.setText("5000") + for host in QtNetwork.QNetworkInterface.allAddresses(): + if not host.isLoopback(): + if host.protocol() == QtNetwork.QAbstractSocket.IPv4Protocol: + self.client_addr.setText(host.toString()) + self.client_port.setText("9090") + + layout = QtWidgets.QGridLayout() + layout.addWidget(QtWidgets.QLabel("Server Address"), 0, 0) + layout.addWidget(QtWidgets.QLabel("Server Port"), 1, 0) + layout.addWidget(QtWidgets.QLabel("Client Address"), 2, 0) + layout.addWidget(QtWidgets.QLabel("Client Port"), 3, 0) + layout.addWidget(self.server_addr, 0, 1) + layout.addWidget(self.server_port, 1, 1) + layout.addWidget(self.client_addr, 2, 1) + layout.addWidget(self.client_port, 3, 1) + layout.addWidget(self.button, 4, 0, 1, 2) + layout.addWidget(self.console, 5, 0, 1, 2) + self.setLayout(layout) + + def launch_lgsvm(self, checked): + server_address = "http://{}:{}/simulator/".format(self.server_addr.text(), self.server_port.text()) + if checked: + self.process.start("roslaunch rosbridge_server rosbridge_websocket.launch") + with open(myutils.package("resources/lgsvl.yaml")) as fp: + param = yaml.safe_load(fp) + param["bin_type"] = "tier4-develop" + param["vehicles"][0]["address"] = self.client_addr.text() + param["vehicles"][0]["port"] = self.client_port.text() + responce = requests.post(server_address + "launch", json=param) + logger.debug(responce.status_code) + logger.debug(responce.json()) + self.instance = responce.json()["instance_id"] + else: + self.process.terminate() + responce = requests.post(server_address + "terminate", json={"instance_id": self.instance}) + logger.debug(responce.status_code) + logger.debug(responce.json()) + + + +class AwProcessViewer(QtWidgets.QPlainTextEdit): + + def __init__(self, process): + super(AwProcessViewer, self).__init__() + + self.setReadOnly(True) + self.setLineWrapMode(QtWidgets.QPlainTextEdit.NoWrap) + #self.setMaximumBlockCount(100) + self.moveCursor(QtGui.QTextCursor.End) + + self.process = process + self.process.finished.connect(self.process_finished) + self.process.readyReadStandardOutput.connect(self.process_stdouted) + self.process.readyReadStandardError.connect(self.process_stderred) + + import re + self.bash_regex = re.compile("(\x1b\[.*?m|\x1b\]2;|\x07)") + + def byte2text(self, byte): + #text = self.bash_regex.sub("", byte.data().decode('utf-8')) + text = QtCore.QTextStream(byte).readAll() + text = self.bash_regex.sub("", text) + #text = str(text).encode("string-escape").replace("\\n", "\n") + return text + + def process_finished(self): + pass + + def process_stdouted(self): + text = self.byte2text(self.process.readAllStandardOutput()) + self.insertPlainText(text) + self.moveCursor(QtGui.QTextCursor.End) + + def process_stderred(self): + text = self.byte2text(self.process.readAllStandardError()) + self.insertPlainText(text) + self.moveCursor(QtGui.QTextCursor.End) + + # Debug + def keyPressEvent(self, event): + if event.key() == QtCore.Qt.Key_C: + self.clear() + event.accept() + else: + super(AwProcessViewer, self).keyPressEvent(event) \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/simulation/rosbag.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/simulation/rosbag.py new file mode 100644 index 00000000000..10969aafdc9 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/simulation/rosbag.py @@ -0,0 +1,108 @@ +from python_qt_binding import QtCore +from python_qt_binding import QtWidgets +from autoware_launcher.core import myutils +from autoware_launcher.gui import widgets + + + +class AwRosbagSimulatorWidget(QtWidgets.QWidget): + + def __init__(self, guimgr): + super(AwRosbagSimulatorWidget, self).__init__() + self.rosbag_mode_proc = QtCore.QProcess(self) + self.rosbag_info_proc = QtCore.QProcess(self) + self.rosbag_play_proc = QtCore.QProcess(self) + + self.rosbag_file = widgets.AwFileSelect(self) + self.rosbag_info = QtWidgets.QPushButton("Info") + self.rosbag_text = QtWidgets.QLabel("No information") + self.rosbag_enable = QtWidgets.QCheckBox() + self.rosbag_label = QtWidgets.QLabel("Simulation Mode") + self.rosbag_play = QtWidgets.QPushButton("Play") + self.rosbag_stop = QtWidgets.QPushButton("Stop") + self.rosbag_pause = QtWidgets.QPushButton("Pause") + self.rosbag_state = QtWidgets.QLabel() + #self.rosbag_stime = QtWidgets.QLineEdit() + #start time + #repeat + #rate + + self.rosbag_enable.stateChanged.connect(self.simulation_mode_changed) + self.rosbag_info.clicked.connect(self.rosbag_info_requested) + self.rosbag_info_proc.finished.connect(self.rosbag_info_completed) + + self.rosbag_play.clicked.connect(self.rosbag_started) + self.rosbag_stop.clicked.connect(self.rosbag_stopped) + self.rosbag_play_proc.finished.connect(self.rosbag_finished) + self.rosbag_play_proc.readyReadStandardOutput.connect(self.rosbag_output) + + self.rosbag_pause.setCheckable(True) + self.rosbag_pause.toggled.connect(self.rosbag_paused) + + self.setStyleSheet("QCheckBox::indicator { width: 28px; height: 28px; }") + self.rosbag_label.setSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) + self.rosbag_text.setSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Expanding) + + layout = QtWidgets.QGridLayout() + layout.addWidget(self.rosbag_enable, 0, 0) + layout.addWidget(self.rosbag_label, 0, 1) + layout.addWidget(self.rosbag_play, 0, 2) + layout.addWidget(self.rosbag_stop, 0, 3) + layout.addWidget(self.rosbag_pause, 0, 4) + layout.addWidget(self.rosbag_state, 1, 0, 1, 5) + layout.addWidget(self.rosbag_file.path, 2, 0, 1, 3) + layout.addWidget(self.rosbag_file.button, 2, 3) + layout.addWidget(self.rosbag_info, 2, 4) + layout.addWidget(self.rosbag_text, 3, 0, 1, 5) + self.setLayout(layout) + self.simulation_mode_disabled() + + def simulation_mode_changed(self, state): + if state == QtCore.Qt.Checked: self.simulation_mode_enabled() + if state == QtCore.Qt.Unchecked: self.simulation_mode_disabled() + + def simulation_mode_enabled(self): + self.rosbag_mode_proc.start("rosparam set /use_sim_time true") + self.rosbag_stopped() + + def simulation_mode_disabled(self): + self.rosbag_mode_proc.start("rosparam set /use_sim_time false") + self.rosbag_stopped() + self.rosbag_play.setEnabled(False) + + def rosbag_info_requested(self): + self.rosbag_info_proc.start("rosbag info " + self.rosbag_file.path.text()) + + def rosbag_info_completed(self): + stdout = self.rosbag_info_proc.readAllStandardOutput().data().decode('utf-8') + stderr = self.rosbag_info_proc.readAllStandardError().data().decode('utf-8') + self.rosbag_text.setText(stdout + stderr) + + def rosbag_started(self): + xml = myutils.package("resources/rosbagplay.xml") + arg = self.rosbag_file.path.text() + self.rosbag_play_proc.start('roslaunch {} options:="{}" bagfile:={}'.format(xml, "--clock --start=0", arg)) + self.rosbag_play_proc.processId() + self.rosbag_play.setEnabled(False) + self.rosbag_stop.setEnabled(True) + self.rosbag_pause.setEnabled(True) + + def rosbag_stopped(self): + self.rosbag_play_proc.terminate() + self.rosbag_finished() + + def rosbag_finished(self): + self.rosbag_play.setEnabled(True) + self.rosbag_stop.setEnabled(False) + self.rosbag_pause.setEnabled(False) + self.rosbag_pause.setChecked(False) + + def rosbag_paused(self, checked): + self.rosbag_play_proc.write(" ") + + def rosbag_output(self): + #print self.rosbag_play_proc.readAllStandardOutput().data().decode('utf-8') + stdout = str(self.rosbag_play_proc.readAllStandardOutput()).split("\r") + if 2 <= len(stdout): + self.rosbag_state.setText(stdout[-2]) + diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/summary.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/summary.py new file mode 100644 index 00000000000..82654a5a141 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/summary.py @@ -0,0 +1,39 @@ +import os + +from python_qt_binding import QtCore +from python_qt_binding import QtGui +from python_qt_binding import QtWidgets + + + +class AwSummaryPanel(QtWidgets.QStackedWidget): + + def __init__(self, client): + super(AwSummaryPanel, self).__init__() + self.__client = client + self.__panels = {} + + def profile_ui_cleared(self): + for key in self.__panels.keys(): + self.__panels.pop(key).deleteLater() + + def node_ui_created(self, lnode): + panel = self.__client.guimgr().create_widget(lnode, lnode.plugin().panel()) + panel.setup_widget() + #self.__panels[lnode.path()] = panel + #self.addWidget(panel) + scroll = QtWidgets.QScrollArea() + scroll.setWidget(panel) + scroll.setWidgetResizable(True) + self.__panels[lnode.path()] = scroll + self.addWidget(scroll) + + def node_ui_updated(self, lnode): + self.__panels[lnode.path()].widget().setup_widget() + + #def config_removed(self, lpath): + + def config_selected(self, lpath): + self.setCurrentWidget(self.__panels[lpath]) + + diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/treeview.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/treeview.py new file mode 100644 index 00000000000..801cf298c4c --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/treeview.py @@ -0,0 +1,138 @@ +import os + +from python_qt_binding import QtCore +from python_qt_binding import QtGui +from python_qt_binding import QtWidgets + + + +class AwTreeViewPanel(QtWidgets.QTreeWidget): + + def __init__(self, client): + super(AwTreeViewPanel, self).__init__() + self.__client = client + self.__items = {} + self.__panels = [] + + self.setColumnCount(2) + self.setHeaderLabels(["Node", "Run Status"]) + self.header().setStretchLastSection(False) + self.header().setSectionResizeMode(0, QtWidgets.QHeaderView.Stretch) + self.header().setSectionResizeMode(1, QtWidgets.QHeaderView.ResizeToContents) + + #self.addTopLevelItem(self.construct(launch)) + #self.expandToDepth(0) + #self.itemChanged.connect(self.on_item_changed) + self.currentItemChanged.connect(self.item_selectd) + + def keyPressEvent(self, event): + if event.key() in [QtCore.Qt.Key_Up, QtCore.Qt.Key_Down, QtCore.Qt.Key_Left, QtCore.Qt.Key_Right]: + super(AwTreeViewPanel, self).keyPressEvent(event) + elif event.key() == QtCore.Qt.Key_R: + lpath = self.currentItem().lpath + self.__client.launch_node(lpath, True) + event.accept() + elif event.key() == QtCore.Qt.Key_T: + lpath = self.currentItem().lpath + self.__client.launch_node(lpath, False) + event.accept() + else: + event.ignore() + + def select_config(self, lpath): + self.setCurrentItem(self.__items[lpath]) + + def register_select_listener(self, panel): + self.__panels.append(panel) + + def status_ui_updated(self, lpath, state): + self.__items[lpath].status_updated(state) + + def profile_ui_cleared(self): + if self.__items: + self.config_removed("root") + + def node_ui_updated(self, lnode): + pass + + def node_ui_created(self, lnode): + lpath = lnode.path() + ppath, lname = os.path.split(lpath) + if ppath: + item = AwTreeViewItem(lpath) + self.__items[lpath] = item + self.__items[ppath].addChild(item) + else: + item = AwTreeViewItem(lpath) + self.__items[lpath] = item + self.addTopLevelItem(item) + + def config_removed(self, lpath): + ppath, lname = os.path.split(lpath) + item = self.__items[lpath] + if ppath: + parent = self.__items[ppath] + parent.takeChild(parent.indexOfChild(item)) + else: + self.takeTopLevelItem(self.indexOfTopLevelItem(item)) + + for key in self.__items.keys(): + if key.startswith(lpath): + self.__items.pop(key) + + def item_selectd(self, item, prev): + if item: + for panel in self.__panels: + panel.config_selected(item.lpath) + + + +class AwTreeViewItem(QtWidgets.QTreeWidgetItem): + + def __init__(self, lpath): + super(AwTreeViewItem, self).__init__() + self.lpath = lpath + + self.setText(0, os.path.basename(lpath)) + self.setText(1, "stop") + + def status_updated(self, state): + self.setText(1, "unknown") + if state == 0: self.setText(1, "stop") + if state == 1: self.setText(1, "running") + if state == 2: self.setText(1, "terminating") + + +class AwControlPanel(QtWidgets.QWidget): + + def __init__(self, client): + super(AwControlPanel, self).__init__() + self.__client = client + + self.__exec_button = QtWidgets.QPushButton("Exec") + self.__term_button = QtWidgets.QPushButton("Term") + self.__exec_button.clicked.connect(self.exec_config) + self.__term_button.clicked.connect(self.term_config) + + self.__lpath = QtWidgets.QLabel() + self.setLayout(QtWidgets.QVBoxLayout()) + + layout = QtWidgets.QHBoxLayout() + layout.addWidget(QtWidgets.QLabel("Path: ")) + layout.addWidget(self.__lpath) + self.__lpath.setSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) + self.layout().addLayout(layout) + + layout = QtWidgets.QHBoxLayout() + layout.addWidget(self.__exec_button) + layout.addWidget(self.__term_button) + self.layout().addLayout(layout) + + def exec_config(self): + self.__client.launch_node(self.__lpath.text(), True) + + def term_config(self): + self.__client.launch_node(self.__lpath.text(), False) + + def config_selected(self, lpath): + self.__lpath.setText(lpath) \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/widgets.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/widgets.py new file mode 100644 index 00000000000..9678065eda3 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/widgets.py @@ -0,0 +1,134 @@ +from python_qt_binding import QtCore +from python_qt_binding import QtWidgets + +from ..core import myutils + + +class AwAbstructPanel(QtWidgets.QWidget): + + def __init__(self, guimgr, node, view): + super(AwAbstructPanel, self).__init__() + self.guimgr = guimgr + self.node = node + self.view = view + + def setup_widget(self): + if self.layout() is None: + self.__setup_widget() + else: + self.__clear_widget() + + def __setup_widget(self): + + self.window().setWindowTitle(self.__class__.__name__) + + # Panel Footer + layout = QtWidgets.QHBoxLayout() + layout.setContentsMargins(2, 2, 2, 2) + layout.setSpacing(2) + layout.addStretch() + self.footer = QtWidgets.QWidget() + self.footer.setLayout(layout) + + # Panel Layout + layout = QtWidgets.QVBoxLayout() + layout.setContentsMargins(16, 16, 16, 16) + layout.setSpacing(16) + layout.addStretch() + layout.addWidget(self.footer) + self.setLayout(layout) + + def __clear_widget(self): + + # Panel Footer + layout = self.footer.layout() + while 1 < layout.count(): + layout.takeAt(layout.count() - 1).widget().deleteLater() + + # Panel Layout + layout = self.layout() + while 2 < layout.count(): + layout.takeAt(0).widget().deleteLater() + + def add_frame(self, frame): + index = self.layout().count() - 2 + self.layout().insertWidget(index, frame) + + def add_button(self, button): + self.footer.layout().addWidget(button) + + + +class AwAbstructFrame(QtWidgets.QWidget): + + def __init__(self, guimgr, node, view): + super(AwAbstructFrame, self).__init__() + self.guimgr = guimgr + self.node = node + self.view = view + + def setup_widget(self): + if self.layout() is None: + self.__setup_widget() + else: + self.__clear_widget() + + def __setup_widget(self): + + # Frame Header + self.title = QtWidgets.QLabel("No Title") + self.title.setSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) + layout = self.guimgr.create_frame_header_hlayout() + layout.addWidget(self.title) + self.header = QtWidgets.QWidget() + self.header.setObjectName("FrameHeader") + self.header.setLayout(layout) + + # Frame Layout + layout = self.guimgr.create_frame_entire_vlayout() + layout.addWidget(self.header) + self.setLayout(layout) + + def __clear_widget(self): + + # Frame Header + layout = self.header.layout() + while 1 < layout.count(): + layout.takeAt(layout.count() - 1).widget().deleteLater() + + # Frame Layout + layout = self.layout() + while 1 < layout.count(): + layout.takeAt(layout.count() - 1).widget().deleteLater() + + def set_title(self, title): + self.title.setText(title) + + def add_button(self, button): + self.header.layout().addWidget(button) + + def add_widget(self, widget): + widget.setObjectName("FrameWidget") + self.layout().addWidget(widget) + + def add_text_widget(self, text): + layout = self.guimgr.create_frame_header_hlayout() + layout.addWidget(QtWidgets.QLabel(text)) + widget = QtWidgets.QWidget() + widget.setLayout(layout) + self.add_widget(widget) + + + +class AwFileSelect(QtCore.QObject): + + def __init__(self, parent): + super(AwFileSelect, self).__init__(parent) + self.path = QtWidgets.QLineEdit() + self.button = QtWidgets.QPushButton("Browse") + self.button.clicked.connect(self.browse) + + def browse(self): + filepath, filetype = QtWidgets.QFileDialog.getOpenFileName(self.button, "Select File", myutils.userhome()) + if filepath: + self.path.setText(filepath) \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/window.py b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/window.py new file mode 100644 index 00000000000..55497d72d07 --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/src/autoware_launcher/gui/window.py @@ -0,0 +1,96 @@ +from python_qt_binding import QtCore +from python_qt_binding import QtWidgets + +from ..core import myutils + + + +class AwAbstructWindow(QtWidgets.QMainWindow): + + def __init__(self, parent): + super(AwAbstructWindow, self).__init__(parent) + + def load_geomerty(self): + settings = QtCore.QSettings("Autoware", "AutowareLauncher") + if settings.contains("geometry"): + self.restoreGeometry(settings.value("geometry")) + + def save_geometry(self): + settings = QtCore.QSettings("Autoware", "AutowareLauncher") + settings.setValue("geometry", self.saveGeometry()) + + + +class AwMainWindow(AwAbstructWindow): + + def __init__(self, client): + + super(AwMainWindow, self).__init__(None) + self.client = client + + self.load_geomerty() + self.setWindowTitle("Autoware Launcher") + + self.__init_menu() + + def closeEvent(self, event): + + self.save_geometry() + super(AwMainWindow, self).closeEvent(event) + + def __init_menu(self): + + self.filemenu = self.menuBar().addMenu("File") + self.viewmenu = self.menuBar().addMenu("View") + + load_action = QtWidgets.QAction("Load Profile", self) + load_action.setShortcut("Ctrl+L") + load_action.triggered.connect(self.load_profile) + + save_action = QtWidgets.QAction("Save Profile", self) + save_action.setShortcut("Ctrl+S") + save_action.triggered.connect(self.save_profile) + + save_as_action = QtWidgets.QAction("Save Profile As", self) + save_as_action.setShortcut("Ctrl+A") + save_as_action.triggered.connect(self.save_profile_as) + + export_action = QtWidgets.QAction("Export Profile", self) + export_action.setShortcut("Ctrl+E") + export_action.triggered.connect(self.export_profile) + + self.filemenu.addAction(load_action) + self.filemenu.addAction(save_action) + self.filemenu.addAction(save_as_action) + self.filemenu.addAction(export_action) + + def addViewMenu(self, text, func): + action = QtWidgets.QAction(text, self) + action.setCheckable(True) + action.toggled.connect(func) + self.viewmenu.addAction(action) + + def load_profile(self): + import os + filename, filetype = QtWidgets.QFileDialog.getOpenFileName(self, "Load Profile", myutils.profile(), "Launch Profile (*.launch)") + filename, filetype = os.path.splitext(filename) + if filename: + self.client.load_profile(filename) + + def save_profile(self): + pass + + def save_profile_as(self): + import os + filename, filetype = QtWidgets.QFileDialog.getSaveFileName(self, "Save Profile As", myutils.profile(), "Launch Profile (*.launch)") + filename, filetype = os.path.splitext(filename) + if filename: + if filetype != ".launch": + filename = filename + filetype + self.client.save_profile(filename) + + def export_profile(self): + import os + dirname = QtWidgets.QFileDialog.getExistingDirectory(self, "Export Profile", myutils.package("launch")) + if dirname: + self.client.export_profile(dirname) \ No newline at end of file diff --git a/ros/src/util/packages/autoware_launcher/tests/__init__.py b/ros/src/util/packages/autoware_launcher/tests/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/ros/src/util/packages/autoware_launcher/tests/test_plugins.py b/ros/src/util/packages/autoware_launcher/tests/test_plugins.py new file mode 100644 index 00000000000..b45014632dc --- /dev/null +++ b/ros/src/util/packages/autoware_launcher/tests/test_plugins.py @@ -0,0 +1,14 @@ +from nose.tools import ok_ +from autoware_launcher.core.plugin import AwPluginTree +from autoware_launcher.gui.guimgr import AwQtGuiManager + +def test_plugins(): + guimgr = AwQtGuiManager(None) + plugins = AwPluginTree() + for plugin_path in plugins.scan(""): + plugin = plugins.find(plugin_path) + fields = plugin.fields() + for frame in plugin.panel().frames: + print plugin.path() + " " + str(frame.target) + yield ok_, guimgr.widget(frame).validate_argtypes(fields, frame) + print diff --git a/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/CMakeLists.txt b/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/CMakeLists.txt new file mode 100644 index 00000000000..5d94da5871f --- /dev/null +++ b/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/CMakeLists.txt @@ -0,0 +1,41 @@ +cmake_minimum_required(VERSION 2.8.3) +project(autoware_launcher_rviz) + +find_package(catkin REQUIRED COMPONENTS rosconsole rviz autoware_build_flags) +find_package(Qt5 ${rviz_QT_VERSION} EXACT REQUIRED Core Widgets Network) +set(QT_LIBRARIES Qt5::Widgets Qt5::Network) +add_definitions(-DQT_NO_KEYWORDS) + +catkin_package( + CATKIN_DEPENDS rviz +) + +include_directories( + ${catkin_INCLUDE_DIRS} +) + +qt5_wrap_cpp(QT_HEADER_FILES + src/module_panel.hpp +) + +set(QT_SOURCE_FILES + src/module_panel.cpp +) + +add_library(${PROJECT_NAME} + ${QT_HEADER_FILES} + ${QT_SOURCE_FILES} +) + +target_link_libraries(${PROJECT_NAME} + ${catkin_LIBRARIES} + ${QT_LIBRARIES} +) + +install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +) + +install(DIRECTORY icons + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/icons +) diff --git a/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/icons/classes/ModulePanel.png b/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/icons/classes/ModulePanel.png new file mode 100644 index 00000000000..8ff9c809990 Binary files /dev/null and b/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/icons/classes/ModulePanel.png differ diff --git a/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/package.xml b/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/package.xml new file mode 100644 index 00000000000..7532a2c1070 --- /dev/null +++ b/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/package.xml @@ -0,0 +1,25 @@ + + + + autoware_launcher_rviz + 0.0.0 + The autoware_launcher_rviz package + Apache 2.0 + + Isamu Takagi + + catkin + autoware_build_flags + rosconsole + rviz + qtbase5-dev + rosconsole + rviz + libqt5-core + libqt5-widgets + + + + + + diff --git a/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/plugin_description.xml b/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/plugin_description.xml new file mode 100644 index 00000000000..d0a3f4994fe --- /dev/null +++ b/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/plugin_description.xml @@ -0,0 +1,7 @@ + + + + The panel to easy control the Autoware Launcher + + + diff --git a/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/src/module_panel.cpp b/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/src/module_panel.cpp new file mode 100644 index 00000000000..d6e497a933f --- /dev/null +++ b/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/src/module_panel.cpp @@ -0,0 +1,89 @@ +#include "module_panel.hpp" + +#include +#include +#include +#include +#include +#include +#include + +namespace { + +QPushButton* create_push_button(QString title) { + auto button = new QPushButton(title); + button->setEnabled(false); + button->setCheckable(true); + button->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); + return button; +} +} + +namespace autoware_launcher_rviz { + +ModulePanel::ModulePanel(QWidget* parent) : rviz::Panel(parent) { + QRect screen = QApplication::desktop()->screenGeometry(); + int font_size = std::min(screen.width(), screen.height()) / 50; + setStyleSheet( + QString("* {font-size: %1px; background-color: #FFFFFF;} QPushButton{color: #FFFFFF; background-color: #223A70;}") + .arg(font_size)); + + auto layout = new QGridLayout(); + setLayout(layout); + + std::string rootpath = "root/"; + std::vector nodetexts = {"Localization", "Detection", "Prediction", "Decision", "Mission", "Motion"}; + std::vector nodenames = {"localization", "detection", "prediction", "decision", "mission", "motion"}; + for (size_t i = 0; i < nodenames.size(); ++i) { + auto button = create_push_button(nodetexts[i]); + buttons[button] = rootpath + nodenames[i]; + layout->addWidget(button, i / 3, i % 3); + connect(button, &QPushButton::toggled, this, &ModulePanel::launch_button_toggled); + } + + socket = new QTcpSocket(this); + connect(socket, &QTcpSocket::connected, this, &ModulePanel::server_connected); + connect(socket, &QTcpSocket::disconnected, this, &ModulePanel::server_disconnected); + connect(socket, &QTcpSocket::readyRead, this, &ModulePanel::server_ready_read); + connect(socket, static_cast(&QTcpSocket::error), this, + &ModulePanel::server_error); + socket->connectToHost("localhost", 33136); +} + +void ModulePanel::paintEvent(QPaintEvent* event) { + QStyleOption option; + option.init(this); + QPainter painter(this); + style()->drawPrimitive(QStyle::PE_Widget, &option, &painter, this); +} + +void ModulePanel::launch_button_toggled(bool checked) { + auto button = static_cast(sender()); + QString json = R"({"command":"%1", "path":"%2"})"; + json = json.arg(checked ? "launch" : "terminate").arg(QString::fromStdString(buttons[button])); + socket->write(json.toUtf8().append('\0')); +} + +void ModulePanel::server_connected() { + for (const auto& pair : buttons) { + pair.first->setEnabled(true); + } +} + +void ModulePanel::server_disconnected() { + for (const auto& pair : buttons) { + pair.first->setEnabled(false); + } +} + +void ModulePanel::server_error() { + ROS_ERROR_STREAM(socket->errorString().toStdString()); +} + +void ModulePanel::server_ready_read() { + ROS_INFO_STREAM(socket->readAll().toStdString()); +} +} + +#include +PLUGINLIB_EXPORT_CLASS(autoware_launcher_rviz::ModulePanel, rviz::Panel) diff --git a/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/src/module_panel.hpp b/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/src/module_panel.hpp new file mode 100644 index 00000000000..224e0aaf3aa --- /dev/null +++ b/ros/src/util/packages/autoware_rviz_plugins/autoware_launcher_rviz/src/module_panel.hpp @@ -0,0 +1,36 @@ +#ifndef AUTOWARE_LAUNCHER_RVIZ_CONTROLLER_HPP +#define AUTOWARE_LAUNCHER_RVIZ_CONTROLLER_HPP + +#include +#include +#include +#include +#include + +namespace autoware_launcher_rviz { + +class ModulePanel : public rviz::Panel { + Q_OBJECT + + public: + ModulePanel(QWidget* parent = 0); + + protected: + void paintEvent(QPaintEvent* event) override; + + private Q_SLOTS: + + void launch_button_toggled(bool checked); + + void server_connected(); + void server_disconnected(); + void server_error(); + void server_ready_read(); + + private: + QTcpSocket* socket; + std::unordered_map buttons; +}; +} + +#endif diff --git a/ros/src/util/packages/autoware_rviz_plugins/rosbag_controller/src/core/recorder.cpp b/ros/src/util/packages/autoware_rviz_plugins/rosbag_controller/src/core/recorder.cpp index 16ab1ded90c..4202aca3bf5 100644 --- a/ros/src/util/packages/autoware_rviz_plugins/rosbag_controller/src/core/recorder.cpp +++ b/ros/src/util/packages/autoware_rviz_plugins/rosbag_controller/src/core/recorder.cpp @@ -1,4 +1,18 @@ /********************************************************************* +* Copyright 2015-2019 Autoware Foundation +* +* 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. +********************************************************************** * Software License Agreement (BSD License) * * Copyright (c) 2008, Willow Garage, Inc. @@ -30,7 +44,7 @@ * 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 "recorder.h" diff --git a/ros/src/util/packages/autoware_rviz_plugins/rosbag_controller/src/core/recorder.h b/ros/src/util/packages/autoware_rviz_plugins/rosbag_controller/src/core/recorder.h index ea719db9db8..49cbb4d6509 100644 --- a/ros/src/util/packages/autoware_rviz_plugins/rosbag_controller/src/core/recorder.h +++ b/ros/src/util/packages/autoware_rviz_plugins/rosbag_controller/src/core/recorder.h @@ -1,4 +1,18 @@ /********************************************************************* +* Copyright 2015-2019 Autoware Foundation +* +* 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. +********************************************************************** * Software License Agreement (BSD License) * * Copyright (c) 2008, Willow Garage, Inc. diff --git a/ros/src/util/packages/autoware_rviz_plugins/state_panel/CMakeLists.txt b/ros/src/util/packages/autoware_rviz_plugins/state_panel/CMakeLists.txt index 594bb7bdb3f..b054beded6b 100644 --- a/ros/src/util/packages/autoware_rviz_plugins/state_panel/CMakeLists.txt +++ b/ros/src/util/packages/autoware_rviz_plugins/state_panel/CMakeLists.txt @@ -1,7 +1,6 @@ cmake_minimum_required(VERSION 2.8.3) project(autoware_rviz_plugins) - find_package(autoware_build_flags REQUIRED) find_package(catkin REQUIRED COMPONENTS rviz @@ -55,7 +54,7 @@ set(CMAKE_AUTOMOC ON) set(SOURCE_FILES src/state_panel/state_panel.cpp src/sim_object/autoware_flag_tool.cpp - ) +) add_library(autoware_rviz_plugins ${SOURCE_FILES} ${UIC_FILES}) target_link_libraries(autoware_rviz_plugins ${QT_LIBRARIES} ${catkin_LIBRARIES} ${rviz_DEFAULT_PLUGIN_LIBRARIES}) @@ -74,3 +73,6 @@ install(DIRECTORY media/ install(DIRECTORY icons/ DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/icons) + +install(FILES plugin_description.xml + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) \ No newline at end of file diff --git a/ros/src/util/packages/autoware_rviz_plugins/state_panel/plugin_description.xml b/ros/src/util/packages/autoware_rviz_plugins/state_panel/plugin_description.xml index 90bffe169f6..12555db046b 100644 --- a/ros/src/util/packages/autoware_rviz_plugins/state_panel/plugin_description.xml +++ b/ros/src/util/packages/autoware_rviz_plugins/state_panel/plugin_description.xml @@ -1,19 +1,11 @@ - - - State Panel on rviz - - - - - - Tool for sim_obj flags on the ground plane in rviz. - + + State Panel on rviz + + + + Tool for sim_obj flags on the ground plane in rviz. diff --git a/ros/src/util/packages/data_preprocessor/CMakeLists.txt b/ros/src/util/packages/data_preprocessor/CMakeLists.txt index 7c3c34766e8..1cb6973b3fc 100644 --- a/ros/src/util/packages/data_preprocessor/CMakeLists.txt +++ b/ros/src/util/packages/data_preprocessor/CMakeLists.txt @@ -37,3 +37,8 @@ add_executable(get_Depth nodes/get_Depth/get_Depth.cpp) target_link_libraries(get_Depth ${catkin_LIBRARIES}) target_link_libraries(get_PCD ${catkin_LIBRARIES}) target_link_libraries(get_Image ${catkin_LIBRARIES}) + +install(TARGETS get_Image get_PCD get_Depth + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) \ No newline at end of file diff --git a/ros/src/util/packages/kitti_pkg/kitti_box_publisher/CMakeLists.txt b/ros/src/util/packages/kitti_pkg/kitti_box_publisher/CMakeLists.txt index 6b00e2a56ff..e1acb7f4951 100644 --- a/ros/src/util/packages/kitti_pkg/kitti_box_publisher/CMakeLists.txt +++ b/ros/src/util/packages/kitti_pkg/kitti_box_publisher/CMakeLists.txt @@ -23,4 +23,7 @@ catkin_package( include_directories( ${catkin_INCLUDE_DIRS} ${autoware_msgs_INCLUDE_DIRS} -) \ No newline at end of file +) + +catkin_install_python(PROGRAMS scripts/kitti_box_publisher.py + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) \ No newline at end of file diff --git a/ros/src/util/packages/kitti_pkg/kitti_launch/CMakeLists.txt b/ros/src/util/packages/kitti_pkg/kitti_launch/CMakeLists.txt index 2b4f9d260ac..ac578c4d577 100644 --- a/ros/src/util/packages/kitti_pkg/kitti_launch/CMakeLists.txt +++ b/ros/src/util/packages/kitti_pkg/kitti_launch/CMakeLists.txt @@ -6,3 +6,15 @@ find_package(catkin REQUIRED) catkin_package( CATKIN_DEPENDS kitti_box_publisher ) + +install(DIRECTORY launch + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) + +install(DIRECTORY launch/xml + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch/xml + PATTERN ".svn" EXCLUDE) + +install(DIRECTORY calib + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/calib + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/util/packages/kitti_pkg/kitti_player/CMakeLists.txt b/ros/src/util/packages/kitti_pkg/kitti_player/CMakeLists.txt index aa078f7cbb9..f58393e0229 100644 --- a/ros/src/util/packages/kitti_pkg/kitti_player/CMakeLists.txt +++ b/ros/src/util/packages/kitti_pkg/kitti_player/CMakeLists.txt @@ -42,3 +42,17 @@ target_link_libraries(kitti_player ${OpenCV_LIBS}) add_dependencies(kitti_player ${catkin_EXPORTED_TARGETS}) + +install(TARGETS kitti_player + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) + +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) + +install(DIRECTORY cfg/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/cfg + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/util/packages/log_tools/CMakeLists.txt b/ros/src/util/packages/log_tools/CMakeLists.txt index 6d1800ae9d0..301e2f41a18 100644 --- a/ros/src/util/packages/log_tools/CMakeLists.txt +++ b/ros/src/util/packages/log_tools/CMakeLists.txt @@ -9,3 +9,10 @@ find_package(catkin REQUIRED COMPONENTS ) catkin_package() + +catkin_install_python(PROGRAMS + scripts/autologger/client.py + scripts/autologger/common.py + scripts/autologger/recorder.py + scripts/autologger/server.py + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) \ No newline at end of file diff --git a/ros/src/util/packages/map_tf_generator/CMakeLists.txt b/ros/src/util/packages/map_tf_generator/CMakeLists.txt index 43c4a70194d..6568433e1ae 100644 --- a/ros/src/util/packages/map_tf_generator/CMakeLists.txt +++ b/ros/src/util/packages/map_tf_generator/CMakeLists.txt @@ -32,92 +32,25 @@ catkin_package( # DEPENDS system_lib ) -########### -## Build ## -########### -## Specify additional locations of header files -## Your package locations should be listed before other locations include_directories( ${catkin_INCLUDE_DIRS} ) -## Declare a C++ library -# add_library(${PROJECT_NAME} -# src/${PROJECT_NAME}/map_tf_generator.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( map_tf_generator nodes/map_tf_generator.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( map_tf_generator ${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_map_tf_generator.cpp) -# if(TARGET ${PROJECT_NAME}-test) -# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) -# endif() +install(TARGETS map_tf_generator + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) -## Add folders to be run by python nosetests -# catkin_add_nosetests(test) +install(DIRECTORY launch/ + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch + PATTERN ".svn" EXCLUDE) \ No newline at end of file diff --git a/ros/src/util/packages/map_tools/CMakeLists.txt b/ros/src/util/packages/map_tools/CMakeLists.txt index c7cf81a088a..53c5ec86d06 100644 --- a/ros/src/util/packages/map_tools/CMakeLists.txt +++ b/ros/src/util/packages/map_tools/CMakeLists.txt @@ -1,8 +1,6 @@ cmake_minimum_required(VERSION 2.8.3) project(map_tools) -#find_package(PCL REQUIRED) - find_package(autoware_build_flags REQUIRED) find_package(catkin REQUIRED COMPONENTS @@ -19,7 +17,6 @@ catkin_package( sensor_msgs pcl_ros pcl_conversions -# DEPENDS PCL ) SET(CMAKE_CXX_FLAGS "-O2 -g -Wall ${CMAKE_CXX_FLAGS}") diff --git a/ros/src/util/packages/marker_downsampler/CMakeLists.txt b/ros/src/util/packages/marker_downsampler/CMakeLists.txt index 0f485f4bec1..8a15d7df64b 100644 --- a/ros/src/util/packages/marker_downsampler/CMakeLists.txt +++ b/ros/src/util/packages/marker_downsampler/CMakeLists.txt @@ -31,4 +31,6 @@ catkin_package( include_directories( # include # ${catkin_INCLUDE_DIRS} -) \ No newline at end of file +) +catkin_install_python(PROGRAMS scripts/app.py + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) \ No newline at end of file diff --git a/ros/src/util/packages/pc2_downsampler/CMakeLists.txt b/ros/src/util/packages/pc2_downsampler/CMakeLists.txt index d8f40fbdc11..708828537de 100644 --- a/ros/src/util/packages/pc2_downsampler/CMakeLists.txt +++ b/ros/src/util/packages/pc2_downsampler/CMakeLists.txt @@ -31,4 +31,6 @@ catkin_package( include_directories( # include # ${catkin_INCLUDE_DIRS} -) \ No newline at end of file +) +catkin_install_python(PROGRAMS scripts/app.py + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) \ No newline at end of file diff --git a/ros/src/util/packages/runtime_manager/CMakeLists.txt b/ros/src/util/packages/runtime_manager/CMakeLists.txt index 6b2959064e2..666088d7a9f 100644 --- a/ros/src/util/packages/runtime_manager/CMakeLists.txt +++ b/ros/src/util/packages/runtime_manager/CMakeLists.txt @@ -2,83 +2,96 @@ cmake_minimum_required(VERSION 2.8.3) project(runtime_manager) find_package(catkin REQUIRED COMPONENTS - rospy + rospy autoware_msgs autoware_config_msgs tablet_socket_msgs std_msgs ) +catkin_package( + CATKIN_DEPENDS rospy autoware_msgs autoware_config_msgs tablet_socket_msgs std_msgs +) + catkin_install_python(PROGRAMS - scripts/ftrace.py - scripts/proc_manager.py - scripts/rtmgr.py - scripts/runtime_manager_dialog.py - scripts/test_pub.py - scripts/test_srv.py - DESTINATION share/${PROJECT_NAME}) + scripts/ftrace.py + scripts/proc_manager.py + scripts/rtmgr.py + scripts/runtime_manager_dialog.py + scripts/test_pub.py + scripts/test_srv.py + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) install(FILES - scripts/3dm_gx5_15.sh - scripts/add_perm.sh - scripts/adis16470.sh - scripts/avt_camera.launch - scripts/avt_vimba.sh - scripts/computing.yaml - scripts/data.yaml - scripts/empty.yaml - scripts/ex_mat_pub.launch - scripts/gazebo.sh - scripts/interface.yaml - scripts/main.yaml - scripts/map.yaml - scripts/mqtt_socket.launch - scripts/mti300.sh - scripts/points2image.launch - scripts/qs.yaml - scripts/rtmgr_icon.xpm - scripts/rtmgr.wxg - scripts/sensing.yaml - scripts/setup_tf.launch - scripts/setup_vehicle_info.launch - scripts/setup.yaml - scripts/simulation.yaml - scripts/state.yaml - scripts/status.yaml - scripts/synchronization.launch - scripts/tablet_socket.launch - scripts/topics.yaml - scripts/traffic_light.launch - scripts/uvc_camera.launch - scripts/vector_map_files.yaml - scripts/vehicle_socket.launch - scripts/vg440.sh - scripts/viewer.yaml - scripts/vscan.launch - DESTINATION share/${PROJECT_NAME}) + scripts/3dm_gx5_15.sh + scripts/add_perm.sh + scripts/adis16470.sh + scripts/avt_vimba.sh + scripts/gazebo.sh + scripts/mti300.sh + scripts/vg440.sh + + scripts/computing.yaml + scripts/data.yaml + scripts/empty.yaml + scripts/interface.yaml + scripts/main.yaml + scripts/map.yaml + scripts/qs.yaml + scripts/rtmgr_icon.xpm + scripts/rtmgr.wxg + scripts/sensing.yaml + scripts/setup.yaml + scripts/simulation.yaml + scripts/state.yaml + scripts/status.yaml + scripts/topics.yaml + scripts/vector_map_files.yaml + scripts/viewer.yaml + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) install(FILES - scripts/images/autoware_logo_1.png - scripts/images/autoware_logo_2.png - scripts/images/autoware_logo_2_white.png - scripts/images/axe.png - scripts/images/database.png - scripts/images/dec.png - scripts/images/inc.png - scripts/images/mobile.png - scripts/images/nagoya_university.png - scripts/images/tablet.png - scripts/images/vehicle.png - DESTINATION share/${PROJECT_NAME}/images) + scripts/images/autoware_logo_1.png + scripts/images/autoware_logo_2.png + scripts/images/autoware_logo_2_white.png + scripts/images/axe.png + scripts/images/database.png + scripts/images/dec.png + scripts/images/inc.png + scripts/images/mobile.png + scripts/images/nagoya_university.png + scripts/images/tablet.png + scripts/images/vehicle.png + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}/images + #DESTINATION share/${PROJECT_NAME}/images + ) install(FILES - scripts/launch_files/check.launch - scripts/launch_files/control.launch - scripts/launch_files/init.launch - scripts/launch_files/map.launch - scripts/launch_files/perception.launch - scripts/launch_files/planning.launch - scripts/launch_files/sensor.launch - scripts/launch_files/set.launch - DESTINATION share/${PROJECT_NAME}/launch_files) + scripts/launch_files/check.launch + scripts/launch_files/control.launch + scripts/launch_files/init.launch + scripts/launch_files/map.launch + scripts/launch_files/perception.launch + scripts/launch_files/planning.launch + scripts/launch_files/sensor.launch + scripts/launch_files/set.launch -catkin_package( - CATKIN_DEPENDS rospy std_msgs message_runtime -) + scripts/launch_files/velodyne_hdl64e_s2.launch + scripts/launch_files/velodyne_hdl64e_s3.launch + scripts/launch_files/velodyne_hdl32e.launch + scripts/launch_files/velodyne_vlp16.launch + scripts/launch_files/velodyne_vlp16_hires.launch + scripts/launch_files/velodyne_vlp32c.launch + scripts/vscan.launch + scripts/vehicle_socket.launch + scripts/uvc_camera.launch + scripts/traffic_light.launch + scripts/synchronization.launch + scripts/tablet_socket.launch + scripts/setup_tf.launch + scripts/setup_vehicle_info.launch + scripts/points2image.launch + scripts/mqtt_socket.launch + scripts/ex_mat_pub.launch + scripts/calibration_publisher.launch + scripts/avt_camera.launch + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch_files + #DESTINATION share/${PROJECT_NAME}/launch_files + ) diff --git a/ros/src/util/packages/runtime_manager/package.xml b/ros/src/util/packages/runtime_manager/package.xml index 1cf80827db7..c7cd5347b58 100644 --- a/ros/src/util/packages/runtime_manager/package.xml +++ b/ros/src/util/packages/runtime_manager/package.xml @@ -6,13 +6,19 @@ Masao KONDOH Apache 2 catkin + rospy std_msgs autoware_msgs - message_runtime + autoware_config_msgs + tablet_socket_msgs + rospy std_msgs + autoware_msgs + autoware_config_msgs tablet_socket_msgs + velodyne diff --git a/ros/src/util/packages/runtime_manager/scripts/computing.yaml b/ros/src/util/packages/runtime_manager/scripts/computing.yaml index 71283a01a63..61a12437e33 100755 --- a/ros/src/util/packages/runtime_manager/scripts/computing.yaml +++ b/ros/src/util/packages/runtime_manager/scripts/computing.yaml @@ -188,6 +188,11 @@ subs : flags : [nl ] sync : func : self.button_synchronization.GetValue() + - name : lidar_cnn_baidu_detect + desc : lidar_cnn_segmentation_baidu_detect. Requires Caffe framework + cmd : roslaunch lidar_apollo_cnn_seg_detect lidar_apollo_cnn_seg_detect.launch + param: lidar_cnn_baidu_params + - name : lidar_naive_l_shape_detect desc : lidar_naive_l_shape_detect desc sample cmd : roslaunch lidar_naive_l_shape_detect lidar_naive_l_shape_detect.launch @@ -554,11 +559,15 @@ subs : cmd : roslaunch waypoint_maker waypoint_loader.launch param: waypoint_loader gui : - dialog_width : 700 - dialog_height : 550 + dialog_width : 600 + dialog_height : 450 multi_lane_csv : + depend : load_csv + depend_bool : 'lambda v : v == 1' prop : 1 - replanning_mode : + realtime_tuning_mode: + depend : replanning_mode + depend_bool : 'lambda v : v == 1' flags : [ nl ] resample_mode : depend : replanning_mode @@ -567,6 +576,16 @@ subs : depend : replanning_mode depend_bool : 'lambda v : v == 1' flags : [ nl ] + replan_curve_mode : + depend : replanning_mode + depend_bool : 'lambda v : v == 1' + overwrite_vmax_mode : + depend : replanning_mode + depend_bool : 'lambda v : v == 1' + replan_endpoint_mode : + depend : replanning_mode + depend_bool : 'lambda v : v == 1' + flags : [ nl ] velocity_max : depend : replanning_mode depend_bool : 'lambda v : v == 1' @@ -599,16 +618,31 @@ subs : depend : replanning_mode depend_bool : 'lambda v : v == 1' flags : [ nl ] - dialog : MyDialogWaypointLoader + braking_distance : + depend : replanning_mode + depend_bool : 'lambda v : v == 1' + flags : [ nl ] + - name : waypoint_saver desc : waypoint_saver desc sample cmd : roslaunch waypoint_maker waypoint_saver.launch param: waypoint_saver gui : + input_type : + flags : [ nl ] save_filename : - prop : 1 + prop : 1 + flags : [ nl ] save_velocity : - flags : [ nl ] + depend : input_type + depend_bool : 'lambda v : v == 0' + interval : + depend : input_type + depend_bool : 'lambda v : v == 0' + flags : [ nl ] + lane_topic : + depend : input_type + depend_bool : 'lambda v : v == 1' - name : waypoint_clicker desc : waypoint_clicker desc sample cmd : rosrun waypoint_maker waypoint_clicker @@ -3493,6 +3527,20 @@ params : var_name : save_finename dash : '' delim : ':=' + - name : input_type + desc : input type + label : Input Type + kind : radio_box + choices : + - VehicleFootprint + - LaneArrayTopic + descs : + - save vehicle footprint as waypoints.csv + - save autoware_msgs/LaneArray topic as waypoints. + v : 0 + cmd_param : + dash : '' + delim : ':=' - name : save_velocity descs : When you save the velocity in each waypoints, Please check if /current_velocity is publishing label : Save /current_velocity @@ -3508,6 +3556,15 @@ params : cmd_param : dash : '' delim : ':=' + - name : lane_topic + desc : subscribed LaneArray topic name + label : lane topic + v : /lane_waypoints_array + kind : topic + topic_type : autoware_msgs/LaneArray + cmd_param : + dash : '' + delim : ':=' - name : waypoint_clicker vars : @@ -3527,9 +3584,17 @@ params : rosparam : /waypoint_clicker/output_file - name : waypoint_loader - topic : /config/waypoint_loader - msg : ConfigWaypointLoader + topic : /config/waypoint_replanner + msg : ConfigWaypointReplanner vars : + - name : load_csv + desc : launch waypoint_loader + label : load csv + kind : checkbox + v : true + cmd_param : + dash : '' + delim : ':=' - name : multi_lane_csv desc : driving_lane_csv desc sample label : 'multi_lane' @@ -3547,6 +3612,14 @@ params : cmd_param : dash : '' delim : ':=' + - name : realtime_tuning_mode + desc : Enable realtime tuning mode + label : realtime_tuning_mode + kind : checkbox + v : false + cmd_param : + dash : '' + delim : ':=' - name : resample_mode desc : Enable resampling mode label : resample mode @@ -3562,11 +3635,35 @@ params : cmd_param : dash : '' delim : ':=' + - name : replan_curve_mode + desc : Enable replan curve mode + label : replan curve mode + kind : checkbox + v : false + cmd_param : + dash : '' + delim : ':=' + - name : overwrite_vmax_mode + desc : Enavle overwrite velocity max mode + label : overwrite velocity max mode + kind : checkbox + v : false + cmd_param : + dash : '' + delim : ':=' + - name : replan_endpoint_mode + desc : Enable replan endpoint mode + label : replan endpoint mode + kind : checkbox + v : true + cmd_param : + dash : '' + delim : ':=' - name : velocity_max desc : All velocities are limited under Vmax [km/h] label : Velocity Max Limit - Vmax [km/h] - min : 10.0 - max : 60.0 + min : 0.1 + max : 100.0 v : 20.0 cmd_param : dash : '' @@ -3603,7 +3700,7 @@ params : label : Acceleration Limit - Accel limit [m/s^2] min : 0.0 max : 5.0 - v : 0.98 + v : 0.5 cmd_param : dash : '' delim : ':=' @@ -3612,7 +3709,7 @@ params : label : Deceleration Limit - Decel limit [m/s^2] min : 0.0 max : 5.0 - v : 0.98 + v : 0.3 cmd_param : dash : '' delim : ':=' @@ -3625,20 +3722,21 @@ params : cmd_param : dash : '' delim : ':=' - - name : end_point_offset - desc : Expanded end points (v = 0) for safe stopping - label : End Point Offset + - name : braking_distance + desc : braking distance (v = vmin) for safe stopping + label : Braking Distance min : 0 - max : 30 + max : 10 v : 5 cmd_param : dash : '' delim : ':=' - - name : disable_decision_maker - desc : if you not check this, you have to run a decisionmaker node. - label : 'disable_decision_maker' - kind : checkbox - v : true + - name : end_point_offset + desc : Expanded end points (v = 0) for safe stopping + label : End Point Offset + min : 0 + max : 2 + v : 1 cmd_param : dash : '' delim : ':=' @@ -5255,3 +5353,57 @@ params : cmd_param : dash : '' delim : ':=' + + - name : lidar_cnn_baidu_params + vars : + - name : points_src + desc : PointCloud topic to be fed to the network for detection + label : image_src + kind : topic + topic_type : sensor_msgs/PointCloud2 + v : /points_raw + cmd_param : + dash : '' + delim : ':=' + - name : score_threshold + desc : Detections with a confidence value larger than this value will be displayed. + label : Score Threshold + min : 0.0 + max : 1.0 + v : 0.7 + cmd_param : + dash : '' + delim : ':=' + - name : network_definition_file + desc : Configuration file defining the network + label : 'network_definition (cfg)' + kind : path + v : '' + cmd_param: + dash : '' + delim : ':=' + - name : pretrained_model_file + desc : Pre-trained model + label : 'pre_trained_model (weights)' + kind : path + v : '' + cmd_param: + dash : '' + delim : ':=' + - name : use_gpu + desc : Whether to use GPU to process the CNN + label : use_gpu + kind : checkbox + v : True + cmd_param : + dash : '' + delim : ':=' + - name : gpu_device_id + desc : gpu_device_id + label : gpu_device_id + min : 0 + max : 10 + v : 0 + cmd_param : + dash : '' + delim : ':=' \ No newline at end of file diff --git a/ros/src/util/packages/runtime_manager/scripts/gazebo.sh b/ros/src/util/packages/runtime_manager/scripts/gazebo.sh index 6f0408cc285..2e633c4f867 100755 --- a/ros/src/util/packages/runtime_manager/scripts/gazebo.sh +++ b/ros/src/util/packages/runtime_manager/scripts/gazebo.sh @@ -1,10 +1,6 @@ #!/bin/sh -roslaunch catvehicle catvehicle_skidpan.launch & -gzclient & -roslaunch point_cloud_converter point_cloud_converter.launch & -roslaunch laser_scan_converter laser_scan_converter.launch & -roslaunch twist_cmd_converter twist_cmd_converter.launch & +roslaunch vehicle_gazebo_simulation_launcher gazebo_launcher.launch gpu:=true & while :; do sleep 10; done diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_hdl32e.launch b/ros/src/util/packages/runtime_manager/scripts/launch_files/velodyne_hdl32e.launch similarity index 100% rename from ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_hdl32e.launch rename to ros/src/util/packages/runtime_manager/scripts/launch_files/velodyne_hdl32e.launch diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_hdl64e_s2.launch b/ros/src/util/packages/runtime_manager/scripts/launch_files/velodyne_hdl64e_s2.launch similarity index 100% rename from ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_hdl64e_s2.launch rename to ros/src/util/packages/runtime_manager/scripts/launch_files/velodyne_hdl64e_s2.launch diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_hdl64e_s3.launch b/ros/src/util/packages/runtime_manager/scripts/launch_files/velodyne_hdl64e_s3.launch similarity index 88% rename from ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_hdl64e_s3.launch rename to ros/src/util/packages/runtime_manager/scripts/launch_files/velodyne_hdl64e_s3.launch index 6d542d7b331..85a58e13002 100644 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_hdl64e_s3.launch +++ b/ros/src/util/packages/runtime_manager/scripts/launch_files/velodyne_hdl64e_s3.launch @@ -8,10 +8,10 @@ - + - + @@ -25,6 +25,6 @@ - +
diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_vlp16.launch b/ros/src/util/packages/runtime_manager/scripts/launch_files/velodyne_vlp16.launch similarity index 100% rename from ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_vlp16.launch rename to ros/src/util/packages/runtime_manager/scripts/launch_files/velodyne_vlp16.launch diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_vlp16_hires.launch b/ros/src/util/packages/runtime_manager/scripts/launch_files/velodyne_vlp16_hires.launch similarity index 100% rename from ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_vlp16_hires.launch rename to ros/src/util/packages/runtime_manager/scripts/launch_files/velodyne_vlp16_hires.launch diff --git a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_vlp32c.launch b/ros/src/util/packages/runtime_manager/scripts/launch_files/velodyne_vlp32c.launch similarity index 72% rename from ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_vlp32c.launch rename to ros/src/util/packages/runtime_manager/scripts/launch_files/velodyne_vlp32c.launch index 134c8dbbf2e..f65caa1a4b5 100644 --- a/ros/src/sensing/drivers/lidar/packages/velodyne/velodyne_pointcloud/launch/velodyne_vlp32c.launch +++ b/ros/src/util/packages/runtime_manager/scripts/launch_files/velodyne_vlp32c.launch @@ -35,19 +35,12 @@ - - - - - + + + + - - - - - - - - - +
+ diff --git a/ros/src/util/packages/runtime_manager/scripts/qs.yaml b/ros/src/util/packages/runtime_manager/scripts/qs.yaml index 46058db31d6..d0a000b4940 100644 --- a/ros/src/util/packages/runtime_manager/scripts/qs.yaml +++ b/ros/src/util/packages/runtime_manager/scripts/qs.yaml @@ -70,8 +70,7 @@ buttons : rviz_qs : desc : rviz_qs desc sample - #run : rosrun rviz rviz - run : sh -c '$(rospack find runtime_manager)/../../../.config/rviz/cmd.sh' + run : rosrun rviz rviz gui : flags : [ kill_children ] diff --git a/ros/src/util/packages/runtime_manager/scripts/rtmgr.py b/ros/src/util/packages/runtime_manager/scripts/rtmgr.py index 27f625a2029..a1c1ca1aeec 100755 --- a/ros/src/util/packages/runtime_manager/scripts/rtmgr.py +++ b/ros/src/util/packages/runtime_manager/scripts/rtmgr.py @@ -1351,56 +1351,3 @@ def OnLink(self, event): # wxGlade: MyDialogCarPedestrian. event.Skip() # end of class MyDialogCarPedestrian - -class MyDialogWaypointLoader(wx.Dialog): - def __init__(self, *args, **kwds): - # begin wxGlade: MyDialogWaypointLoader.__init__ - kwds["style"] = wx.CAPTION - wx.Dialog.__init__(self, *args, **kwds) - self.panel_v = wx.ScrolledWindow(self, wx.ID_ANY, style=wx.TAB_TRAVERSAL) - self.static_line_1 = wx.StaticLine(self, wx.ID_ANY) - self.button_3 = wx.Button(self, wx.ID_ANY, _("CSV OUTPUT")) - self.static_line_2 = wx.StaticLine(self, wx.ID_ANY) - self.button_1 = wx.Button(self, wx.ID_ANY, _("Close")) - - self.__set_properties() - self.__do_layout() - - self.Bind(wx.EVT_BUTTON, self.OnCsvOutput, self.button_3) - self.Bind(wx.EVT_BUTTON, self.OnOk, self.button_1) - # end wxGlade - - def __set_properties(self): - # begin wxGlade: MyDialogWaypointLoader.__set_properties - self.SetTitle(_("waypoint_loader")) - self.SetSize((600, 500)) - self.panel_v.SetScrollRate(10, 10) - # end wxGlade - - def __do_layout(self): - # begin wxGlade: MyDialogWaypointLoader.__do_layout - sizer_30 = wx.BoxSizer(wx.VERTICAL) - sizer_48 = wx.BoxSizer(wx.VERTICAL) - sizer_49 = wx.BoxSizer(wx.HORIZONTAL) - sizer_28_copy_1 = wx.BoxSizer(wx.HORIZONTAL) - sizer_30.Add(self.panel_v, 1, wx.EXPAND, 0) - sizer_30.Add(self.static_line_1, 0, wx.EXPAND, 0) - sizer_48.Add(sizer_28_copy_1, 0, wx.ALL | wx.EXPAND, 4) - sizer_48.Add(sizer_49, 0, wx.ALL | wx.EXPAND, 4) - sizer_48.Add(self.button_3, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALL, 4) - sizer_30.Add(sizer_48, 0, wx.EXPAND, 0) - sizer_30.Add(self.static_line_2, 0, wx.EXPAND, 0) - sizer_30.Add(self.button_1, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALL, 4) - self.SetSizer(sizer_30) - self.Layout() - # end wxGlade - - def OnCsvOutput(self, event): # wxGlade: MyDialogNdtMapping. - print "Event handler 'OnCsvOutput' not implemented!" - event.Skip() - - def OnOk(self, event): # wxGlade: MyDialogNdtMapping. - print "Event handler 'OnOk' not implemented!" - event.Skip() - -# end of class MyDialogNdtMapping \ No newline at end of file diff --git a/ros/src/util/packages/runtime_manager/scripts/runtime_manager_dialog.py b/ros/src/util/packages/runtime_manager/scripts/runtime_manager_dialog.py index a7bf8948141..5431991ac40 100755 --- a/ros/src/util/packages/runtime_manager/scripts/runtime_manager_dialog.py +++ b/ros/src/util/packages/runtime_manager/scripts/runtime_manager_dialog.py @@ -55,7 +55,7 @@ from autoware_config_msgs.msg import ConfigRandomFilter from autoware_config_msgs.msg import ConfigRingGroundFilter from autoware_config_msgs.msg import ConfigRayGroundFilter -from autoware_config_msgs.msg import ConfigWaypointLoader +from autoware_config_msgs.msg import ConfigWaypointReplanner from autoware_config_msgs.msg import ConfigWaypointFollower from autoware_config_msgs.msg import ConfigTwistFilter from autoware_config_msgs.msg import ConfigVelocitySet @@ -2717,32 +2717,6 @@ def OnOk(self, event): self.panel.detach_func() self.EndModal(0) -class MyDialogWaypointLoader(rtmgr.MyDialogWaypointLoader): - def __init__(self, *args, **kwds): - self.pdic = kwds.pop('pdic') - self.pdic_bak = self.pdic.copy() - self.gdic = kwds.pop('gdic') - self.prm = kwds.pop('prm') - rtmgr.MyDialogWaypointLoader.__init__(self, *args, **kwds) - set_size_gdic(self) - - parent = self.panel_v - frame = self.GetParent() - self.panel = ParamPanel(parent, frame=frame, pdic=self.pdic, gdic=self.gdic, prm=self.prm) - sizer_wrap((self.panel,), wx.VERTICAL, 1, wx.EXPAND, 0, parent) - - self.klass_msg = Bool - self.pub = rospy.Publisher('/config/waypoint_loader_output', self.klass_msg, queue_size=10) - - def OnCsvOutput(self, event): - msg = self.klass_msg() - msg.data = True - self.pub.publish(msg) - - def OnOk(self, event): - self.panel.detach_func() - self.EndModal(0) - class InfoBarLabel(wx.BoxSizer): def __init__(self, parent, btm_txt=None, lmt_bar_prg=90, bar_orient=wx.VERTICAL): wx.BoxSizer.__init__(self, orient=wx.VERTICAL) diff --git a/ros/src/util/packages/runtime_manager/scripts/sensing.yaml b/ros/src/util/packages/runtime_manager/scripts/sensing.yaml index 36ad92712c8..d2116e108e9 100644 --- a/ros/src/util/packages/runtime_manager/scripts/sensing.yaml +++ b/ros/src/util/packages/runtime_manager/scripts/sensing.yaml @@ -43,6 +43,12 @@ subs : probe: run : roslaunch autoware_pointgrey_drivers ladybug.launch param: ladybug_params + + - name : PointGrey Spinnaker + desc : PointGrey Spinnaker desc sample + probe: + run : roslaunch autoware_pointgrey_drivers spinnaker.launch + param: spinnaker_params - name : USB Generic desc : USB Generic desc sample @@ -140,7 +146,7 @@ subs : - name : Velodyne HDL-64E-S2 desc : Launches the driver for the selected Velodyne sensor and publishes the pointcloud in points_raw. To select a custom calibration file press the [config] button. probe: 'ifconfig eth0 | grep "192.168.1.105" > /dev/null' - run : roslaunch velodyne_pointcloud velodyne_hdl64e_s2.launch + run : roslaunch runtime_manager velodyne_hdl64e_s2.launch param: calibration_path gui : flags : [ SIGTERM, kill_children ] @@ -150,7 +156,7 @@ subs : - name : Velodyne HDL-64E-S3 desc : Launches the driver for the selected Velodyne sensor and publishes the pointcloud in points_raw. To select a custom calibration file press the [config] button. probe: 'ifconfig eth0 | grep "192.168.1.105" > /dev/null' - run : roslaunch velodyne_pointcloud velodyne_hdl64e_s3.launch + run : roslaunch runtime_manager velodyne_hdl64e_s3.launch param: calibration_path gui : flags : [ SIGTERM, kill_children ] @@ -160,7 +166,7 @@ subs : - name : Velodyne HDL-32E desc : Launches the driver for the selected Velodyne sensor and publishes the pointcloud in points_raw. To select a custom calibration file press the [config] button. probe: 'ping -c 1 -W 1 192.168.1.201 > /dev/null' - run : roslaunch velodyne_pointcloud velodyne_hdl32e.launch + run : roslaunch runtime_manager velodyne_hdl32e.launch param: calibration_path gui : flags : [ SIGTERM, kill_children ] @@ -170,7 +176,7 @@ subs : - name : Velodyne VLP-32C desc : Launches the driver for the selected Velodyne sensor and publishes the pointcloud in points_raw. To select a custom calibration file press the [config] button. probe: 'ping -c 1 -W 1 192.168.1.201 > /dev/null' - run : roslaunch velodyne_pointcloud velodyne_vlp32c.launch + run : roslaunch runtime_manager velodyne_vlp32c.launch param: calibration_path gui : flags : [ SIGTERM, kill_children ] @@ -180,7 +186,7 @@ subs : - name : Velodyne VLP-16 desc : Launches the driver for the selected Velodyne sensor and publishes the pointcloud in points_raw. To select a custom calibration file press the [config] button. probe: - run : roslaunch velodyne_pointcloud velodyne_vlp16.launch + run : roslaunch runtime_manager velodyne_vlp16.launch param: calibration_path gui : flags : [ SIGTERM, kill_children ] @@ -190,7 +196,7 @@ subs : - name : Velodyne VLP-16 Hi-Res desc : Launches the driver for the selected Velodyne sensor and publishes the pointcloud in points_raw. To select a custom calibration file press the [config] button. probe: - run : roslaunch velodyne_pointcloud velodyne_vlp16_hires.launch + run : roslaunch runtime_manager velodyne_vlp16_hires.launch param: calibration_path gui : flags : [ SIGTERM, kill_children ] @@ -225,11 +231,11 @@ subs : - name : Robosense RS32 desc : Launches the driver for the selected RoboSense LiDAR sensor and publishes the pointcloud in rslidar_points. - run : roslaunch rslidar_pointcloud cloud_nodelet_32.launch + run : roslaunch rslidar_pointcloud rs_cloud_nodelet_32.launch - name : Robosense RS16 desc : Launches the driver for the selected RoboSense LiDAR sensor and publishes the pointcloud in rslidar_points. - run : roslaunch rslidar_pointcloud cloud_nodelet_16.launch + run : roslaunch rslidar_pointcloud rs_cloud_nodelet_16.launch - name : Ouster OS1 desc : Launches the driver for the Ouster OS1 LiDAR and publishes the pointcloud as points_raw. @@ -1682,6 +1688,38 @@ params : desc : Camera Frame to register in TF (Default flir_adk) kind : str v : flir_adk + cmd_param : + dash : '' + delim : ':=' + - name : spinnaker_params + vars : + - name : fps + label : fps + desc : FPS Acquisition (Default 60) + min : 1 + max : 100 + v : 60 + cmd_param : + dash : '' + delim : ':=' + - name : width + label : width + desc : Image Width (Default 1440) + v : 1440 + cmd_param : + dash : '' + delim : ':=' + - name : height + label : height + desc : Image Height (Default 1080) + v : 1080 + cmd_param : + dash : '' + delim : ':=' + - name : dltl + label : dltl + desc : DeviceLinkThroughputLimit (Default 1568000) + v : 1568000 cmd_param : dash : '' delim : ':=' \ No newline at end of file diff --git a/ros/src/util/packages/runtime_manager/scripts/setup_vehicle_info.launch b/ros/src/util/packages/runtime_manager/scripts/setup_vehicle_info.launch index 948f6e1fe4f..75f7c2a59f6 100644 --- a/ros/src/util/packages/runtime_manager/scripts/setup_vehicle_info.launch +++ b/ros/src/util/packages/runtime_manager/scripts/setup_vehicle_info.launch @@ -1,6 +1,6 @@ - + diff --git a/ros/src/util/packages/sound_player/CMakeLists.txt b/ros/src/util/packages/sound_player/CMakeLists.txt index 132d4d5007f..3d7707dc8b5 100644 --- a/ros/src/util/packages/sound_player/CMakeLists.txt +++ b/ros/src/util/packages/sound_player/CMakeLists.txt @@ -11,3 +11,11 @@ find_package(sound_play REQUIRED) catkin_package( CATKIN_DEPENDS rospy std_msgs ) + +catkin_install_python(PROGRAMS scripts/sound_player.py + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + +install(FILES scripts/sound_player.yaml + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) + +#TODO INSTALL ALL THE WAVs, MODIFY SCRIPT \ No newline at end of file