diff --git a/src/main/java/seng302/gameServer/GameState.java b/src/main/java/seng302/gameServer/GameState.java index 8f7975fe..f5e2e2fd 100644 --- a/src/main/java/seng302/gameServer/GameState.java +++ b/src/main/java/seng302/gameServer/GameState.java @@ -238,7 +238,7 @@ public class GameState implements Runnable { if (System.currentTimeMillis() > startTime) { startSpawningTokens(); startUpdatingWind(); - GameState.setCurrentStage(GameStages.RACING); + GameState.currentStage = GameStages.RACING; } } if (currentStage == GameStages.RACING) { @@ -299,8 +299,8 @@ public class GameState implements Runnable { windSpeed += random.nextInt(500); } - GameState.setWindSpeed(Double.valueOf(windSpeed)); - GameState.setWindDirection(direction.doubleValue()); + GameState.windSpeed = Double.valueOf(windSpeed); + GameState.windDirection = direction.doubleValue(); } diff --git a/src/main/java/seng302/visualiser/GameClient.java b/src/main/java/seng302/visualiser/GameClient.java index 4d09e60f..91efab14 100644 --- a/src/main/java/seng302/visualiser/GameClient.java +++ b/src/main/java/seng302/visualiser/GameClient.java @@ -49,12 +49,6 @@ import seng302.visualiser.controllers.RaceViewController; import seng302.visualiser.controllers.ViewManager; import seng302.visualiser.controllers.dialogs.PopupDialogController; -import java.io.IOException; -import java.text.SimpleDateFormat; -import java.time.ZoneId; -import java.time.ZoneOffset; -import java.util.*; - /** * This class is a client side instance of a yacht racing game in JavaFX. The game is instantiated * with a JavaFX Pane to insert itself into. @@ -314,6 +308,7 @@ public class GameClient { formatAndSendChatMessage(raceView.readChatInput()); } }); + gameKeyBind.toggleTurningMode(); sendToggleTurningModePacket(); // notify the server about player's steering mode } } diff --git a/src/main/java/seng302/visualiser/GameView3D.java b/src/main/java/seng302/visualiser/GameView3D.java index 4e6b421d..177c481e 100644 --- a/src/main/java/seng302/visualiser/GameView3D.java +++ b/src/main/java/seng302/visualiser/GameView3D.java @@ -51,7 +51,7 @@ import seng302.visualiser.fxObjects.assets_3D.ModelType; * Collection of animated3D assets that displays a race. */ -public class GameView3D extends GameView{ +public class GameView3D extends GameView { private final double FOV = 60; private final double DEFAULT_CAMERA_X = 0; diff --git a/src/main/java/seng302/visualiser/MapPreview.java b/src/main/java/seng302/visualiser/MapPreview.java index a733967a..4c2c3a38 100644 --- a/src/main/java/seng302/visualiser/MapPreview.java +++ b/src/main/java/seng302/visualiser/MapPreview.java @@ -29,7 +29,7 @@ import seng302.visualiser.fxObjects.assets_2D.Marker2D; public class MapPreview extends GameView { private Polygon raceBorder = new CourseBoundary(); - private Map markerObjects; + protected Map markerObjects; public MapPreview(List marks, List course, List border) { this.compoundMarks = marks; diff --git a/src/main/java/seng302/visualiser/MiniMap.java b/src/main/java/seng302/visualiser/MiniMap.java new file mode 100644 index 00000000..8c9377dd --- /dev/null +++ b/src/main/java/seng302/visualiser/MiniMap.java @@ -0,0 +1,86 @@ +package seng302.visualiser; + +import java.util.HashMap; +import java.util.List; +import javafx.application.Platform; +import javafx.geometry.Point2D; +import javafx.scene.paint.Color; +import javafx.scene.shape.Polygon; +import javafx.scene.transform.Rotate; +import seng302.model.ClientYacht; +import seng302.model.Limit; +import seng302.model.mark.CompoundMark; +import seng302.model.mark.Corner; +import seng302.model.mark.Mark; +import seng302.utilities.Sounds; + +/** + * Class converts a map preview to a minimap by adding boats. + */ +public class MiniMap extends MapPreview { + + private HashMap boatIcons = new HashMap<>(); + private Polygon playerBoat; + private double playerRotation; + private List boats; + private ClientYacht player; + + public MiniMap (List marks, List course, List border, List boats, ClientYacht player) { + super(marks, course, border); + this.boats = boats; + this.player = player; + setBoats(boats); + player.addMarkRoundingListener(this::updateMarkArrows); + } + + public void setBoats(List yachts) { + for (ClientYacht yacht : yachts) { + Polygon boatIcon = new Polygon(0, -3.5, 3.5, 3.5, -3.5, 3.5); + boatIcon.setStroke(Color.BLACK); + boatIcon.setFill(Color.GRAY); + boatIcon.setFill(yacht.getColour()); + boatIcon.setFill(yacht.getColour()); + boatIcons.put(yacht, boatIcon); + boatIcon.getTransforms().add(new Rotate(0)); + yacht.addLocationListener((boat, lat, lon, heading, sailIn, velocity) -> { + Platform.runLater(() -> { + Polygon bi = boatIcons.get(boat); + Point2D p2d = scaledPoint.findScaledXY(lat, lon); + bi.setLayoutX(p2d.getX()); + bi.setLayoutY(p2d.getY()); + ((Rotate) bi.getTransforms().get(0)).setAngle(heading); + }); + }); + } + Platform.runLater(() -> { + gameObjects.getChildren().addAll(boatIcons.values()); + }); + } + + private void updateMarkArrows (ClientYacht yacht, int legNumber) { + CompoundMark compoundMark; + if (legNumber - 1 >= 0) { + Sounds.playMarkRoundingSound(); + compoundMark = course.get(legNumber-1); + for (Mark mark : compoundMark.getMarks()) { + markerObjects.get(mark).showNextExitArrow(); + } + } + CompoundMark nextMark = null; + if (legNumber < course.size() - 1) { + Sounds.playMarkRoundingSound(); + nextMark = course.get(legNumber); + for (Mark mark : nextMark.getMarks()) { + markerObjects.get(mark).showNextEnterArrow(); + } + } + if (legNumber - 2 >= 0) { + CompoundMark lastMark = course.get(Math.max(0, legNumber - 2)); + if (lastMark != nextMark) { + for (Mark mark : lastMark.getMarks()) { + markerObjects.get(mark).hideAllArrows(); + } + } + } + } +} diff --git a/src/main/java/seng302/visualiser/controllers/RaceViewController.java b/src/main/java/seng302/visualiser/controllers/RaceViewController.java index ea778aa9..745207d4 100644 --- a/src/main/java/seng302/visualiser/controllers/RaceViewController.java +++ b/src/main/java/seng302/visualiser/controllers/RaceViewController.java @@ -4,67 +4,38 @@ import com.jfoenix.controls.JFXButton; import com.jfoenix.controls.JFXDialog; import java.io.IOException; import java.util.ArrayList; -import java.util.List; import java.util.Map; import java.util.Timer; import java.util.TimerTask; -import java.util.concurrent.TimeUnit; import javafx.animation.RotateTransition; -import javafx.animation.Timeline; import javafx.application.Platform; import javafx.beans.property.ReadOnlyBooleanProperty; -import javafx.collections.FXCollections; -import javafx.collections.ListChangeListener; -import javafx.collections.ObservableList; import javafx.fxml.FXML; import javafx.fxml.FXMLLoader; -import javafx.geometry.Point2D; -import javafx.scene.Scene; import javafx.scene.SubScene; -import javafx.scene.chart.LineChart; -import javafx.scene.chart.NumberAxis; -import javafx.scene.chart.XYChart.Series; -import javafx.scene.control.Button; -import javafx.scene.control.CheckBox; -import javafx.scene.control.ComboBox; import javafx.scene.control.Label; -import javafx.scene.control.Slider; import javafx.scene.control.TextField; import javafx.scene.image.Image; import javafx.scene.image.ImageView; import javafx.scene.layout.AnchorPane; -import javafx.scene.layout.GridPane; import javafx.scene.layout.Pane; import javafx.scene.layout.StackPane; -import javafx.scene.layout.VBox; -import javafx.scene.paint.Color; import javafx.scene.paint.Paint; -import javafx.scene.shape.Line; -import javafx.scene.shape.Polyline; -import javafx.scene.text.Text; -import javafx.stage.Stage; -import javafx.stage.StageStyle; import javafx.util.Duration; import seng302.model.ClientYacht; import seng302.model.RaceState; -import seng302.model.mark.CompoundMark; -import seng302.model.mark.Mark; import seng302.model.stream.xml.parser.RaceXMLData; import seng302.model.token.TokenType; import seng302.utilities.Sounds; import seng302.visualiser.GameView3D; -import seng302.visualiser.controllers.annotations.ImportantAnnotationController; -import seng302.visualiser.controllers.annotations.ImportantAnnotationDelegate; -import seng302.visualiser.controllers.annotations.ImportantAnnotationsState; +import seng302.visualiser.MiniMap; import seng302.visualiser.controllers.dialogs.FinishDialogController; import seng302.visualiser.fxObjects.ChatHistory; -import seng302.visualiser.fxObjects.assets_2D.WindArrow; -import seng302.visualiser.fxObjects.assets_3D.BoatObject; /** * Controller class that manages the display of a race */ -public class RaceViewController extends Thread implements ImportantAnnotationDelegate { +public class RaceViewController extends Thread { private final int CHAT_LIMIT = 128; private static final Double ICON_BLINK_TIMEOUT_RATIO = 0.6; @@ -75,39 +46,17 @@ public class RaceViewController extends Thread implements ImportantAnnotationDel @FXML private ImageView loadingScreen; @FXML - private Pane basePane; - @FXML private JFXButton chatSend; @FXML private Pane chatHistoryHolder; @FXML private TextField chatInput; @FXML - private LineChart raceSparkLine; - @FXML - private NumberAxis sparklineYAxis; - @FXML - private VBox positionVbox; - @FXML - private CheckBox toggleFps; - @FXML private Label timerLabel; @FXML private StackPane contentStackPane; - - private GridPane contentGridPane; @FXML - private AnchorPane rvAnchorPane; - @FXML - private AnchorPane windArrowHolder; - @FXML - private Slider annotationSlider; - @FXML - private Button selectAnnotationBtn; - @FXML - private ComboBox yachtSelectionComboBox; - @FXML - private Text fpsDisplay; + private Pane miniMapPane; @FXML private ImageView windImageView; @FXML @@ -118,33 +67,24 @@ public class RaceViewController extends Thread implements ImportantAnnotationDel private Label positionLabel, boatSpeedLabel, boatHeadingLabel; @FXML private ImageView velocityIcon, handlingIcon, windWalkerIcon, bumperIcon, badRandomIcon; + @FXML + private JFXButton miniMapButton; - //Race Data - private Map participants; - private Map markers; - private RaceXMLData courseData; private GameView3D gameView; private RaceState raceState; - private ChatHistory chatHistory; - - private Timeline timerTimeline; - private Timer timer = new Timer(); - private List> sparkLineData = new ArrayList<>(); - private ImportantAnnotationsState importantAnnotations; - private Polyline windArrow = new WindArrow(Color.LIGHTGRAY); - private ObservableList selectionComboBoxList = FXCollections.observableArrayList(); + private Timer timer = new Timer(); private ClientYacht player; private JFXDialog finishScreenDialog; private FinishDialogController finishDialogController; - - //Icon stuff private Timer blinkingTimer = new Timer(); private ImageView iconToDisplay; - private Double lastWindDirection; + private MiniMap miniMap; public void initialize() { + miniMapPane.setVisible(false); + miniMapButton.setVisible(false); contentStackPane.setVisible(false); Image loadingImage = new Image("PP.png"); loadingScreen.setImage(loadingImage); @@ -204,7 +144,8 @@ public class RaceViewController extends Thread implements ImportantAnnotationDel public void showView(){ loadingScreenPane.setVisible(false); contentStackPane.setVisible(true); - + miniMapPane.setVisible(true); + miniMapButton.setVisible(true); Platform.runLater(new Runnable() { @Override public void run() { @@ -238,31 +179,36 @@ public class RaceViewController extends Thread implements ImportantAnnotationDel Map participants, RaceXMLData raceData, RaceState raceState, ClientYacht player) { - this.participants = participants; - this.courseData = raceData; - this.markers = raceData.getCompoundMarks(); this.raceState = raceState; this.player = player; - raceState.getPlayerPositions().addListener((ListChangeListener) c -> { - while (c.next()) { - if (c.wasPermutated()) { - updateOrder(raceState.getPlayerPositions()); - } - } - }); - player.addPowerUpListener(this::displayPowerUpIcon); player.addPowerDownListener(this::removeIcon); - updateOrder(raceState.getPlayerPositions()); gameView = new GameView3D(); + miniMap = new MiniMap( + new ArrayList<>(raceData.getCompoundMarks().values()), + raceData.getMarkSequence(), raceData.getCourseLimit(), + new ArrayList<>(participants.values()), player + ); + + miniMapButton.setOnMouseClicked((event) -> { + if (miniMapPane.visibleProperty().get()) { + miniMapPane.setVisible(false); + miniMapButton.setText("✓"); + } else { + miniMapPane.setVisible(true); + miniMapButton.setText("✕"); + } + }); + Platform.runLater(() -> { contentStackPane.getChildren().add(0, gameView.getAssets()); ((SubScene) gameView.getAssets()).widthProperty() .bind(ViewManager.getInstance().getStage().widthProperty()); ((SubScene) gameView.getAssets()).heightProperty() .bind(ViewManager.getInstance().getStage().heightProperty()); + miniMapPane.getChildren().add(miniMap.getAssets()); }); gameView.setBoats(new ArrayList<>(participants.values())); gameView.updateBorder(raceData.getCourseLimit()); @@ -350,45 +296,6 @@ public class RaceViewController extends Thread implements ImportantAnnotationDel } } - - /** - * The important annotations have been changed, update this view - * - * @param importantAnnotationsState The current state of the selected annotations - */ - public void importantAnnotationsChanged(ImportantAnnotationsState importantAnnotationsState) { - this.importantAnnotations = importantAnnotationsState; - setAnnotations((int) annotationSlider.getValue()); // Refresh the displayed annotations - } - - - /** - * Loads the "select annotations" view in a new window - */ - private void loadSelectAnnotationView() { - try { - FXMLLoader fxmlLoader = new FXMLLoader(); - Stage stage = new Stage(); - // Set controller - ImportantAnnotationController controller = new ImportantAnnotationController( - this, stage - ); - fxmlLoader.setController(controller); - // Load FXML and set CSS - fxmlLoader.setLocation( - getClass().getResource("/views/importantAnnotationSelectView.fxml") - ); - Scene scene = new Scene(fxmlLoader.load(), 469, 298); - scene.getStylesheets().add(getClass().getResource("/css/master.css").toString()); - stage.initStyle(StageStyle.UNDECORATED); - stage.setScene(scene); - stage.show(); - controller.loadState(importantAnnotations); - } catch (IOException e) { - e.printStackTrace(); - } - } - /** * Initialises a timer which updates elements of the RaceView such as wind direction, yacht * orderings etc.. which are dependent on the info from the stream parser constantly. @@ -406,35 +313,6 @@ public class RaceViewController extends Thread implements ImportantAnnotationDel }, 0, 1000); } - /** - * Iterates over all corners until ones SeqID matches with the yachts current leg number. - * Then it gets the compoundMarkID of that corner and uses it to fetch the appropriate mark - * Returns null if no next mark found. - * @param bg The BoatGroup to find the next mark of - * @return The next Mark or null if none found - */ - private Mark getNextMark(BoatObject bg) { - // TODO: 1/08/17 Move to GameView -// -// Integer legNumber = bg.getClientYacht().getLegNumber(); -// List markSequence = courseData.getMarkSequence(); -// -// if (legNumber == 0) { -// return null; -// } else if (legNumber == markSequence.size() - 1) { -// return null; -// } -// -// for (Corner corner : markSequence) { -// if (legNumber + 2 == corner.getSeqID()) { -// return courseData.getCompoundMarks().get(corner.getCompoundMarkID()); -// } -// } -// return null; - return null; - } - - /** * Updates the wind direction arrow and text as from info from the StreamParser * @param direction the from north angle of the wind. @@ -516,226 +394,6 @@ public class RaceViewController extends Thread implements ImportantAnnotationDel boatHeadingLabel.setText(String.format("Boat Heading:\n%.1f°", player.getHeading())); } - /** - * Updates the order of the yachts as from the StreamParser and sets them in the yacht order - * section - */ - private void updateOrder(ObservableList yachts) { -// List vboxEntries = new ArrayList<>(); -// -// for (int i = 0; i < yachts.size(); i++) { -//// System.out.println("yacht == null " + String.valueOf(yacht == null)); -// if (yachts.get(i).getBoatStatus() == BoatStatus.FINISHED -// .getCode()) { // 3 is finish status -// Text textToAdd = new Text(i + 1 + ". " + -// yachts.get(i).getShortName() + " (Finished)"); -// textToAdd.setFill(Paint.valueOf("#d3d3d3")); -// vboxEntries.add(textToAdd); -// -// } else { -// Text textToAdd = new Text(i + 1 + ". " + -// yachts.get(i).getShortName() + " "); -// textToAdd.setFill(Paint.valueOf("#d3d3d3")); -// textToAdd.setStyle(""); -// vboxEntries.add(textToAdd); -// } -// } -// Platform.runLater(() -> -// positionVbox.getChildren().setAll(vboxEntries) -// ); - } - - - private void updateLaylines(BoatObject bg) { - // TODO: 1/08/17 move to GameView -// -// Mark nextMark = getNextMark(bg); -// Boolean isUpwind = null; -// // Can only calc leg direction if there is a next mark and it is a gate mark -// if (nextMark != null) { -// if (nextMark instanceof GateMark) { -// if (bg.isUpwindLeg(gameViewController, nextMark)) { -// isUpwind = true; -// } else { -// isUpwind = false; -// } -// -// for(MarkObject mg : gameViewController.getMarkGroups()) { -// -// mg.removeLaylines(); -// -// if (mg.getMainMark().getId() == nextMark.getId()) { -// -// SingleMark singleMark1 = ((GateMark) nextMark).getSingleMark1(); -// SingleMark singleMark2 = ((GateMark) nextMark).getSingleMark2(); -// Point2D markPoint1 = gameViewController -// .findScaledXY(singleMark1.getLatitude(), singleMark1.getLongitude()); -// Point2D markPoint2 = gameViewController -// .findScaledXY(singleMark2.getLatitude(), singleMark2.getLongitude()); -// HashMap angleAndSpeed; -// if (isUpwind) { -// angleAndSpeed = PolarTable.getOptimalUpwindVMG(StreamParser.getWindSpeed()); -// } else { -// angleAndSpeed = PolarTable.getOptimalDownwindVMG(StreamParser.getWindSpeed()); -// } -// -// Double resultingAngle = angleAndSpeed.keySet().iterator().next(); -// -// -// Point2D yachtCurrentPos = new Point2D(bg.getBoatLayoutX(), bg.getBoatLayoutY()); -// Point2D gateMidPoint = markPoint1.midpoint(markPoint2); -// Integer lineFuncResult = GeoUtility.lineFunction(yachtCurrentPos, gateMidPoint, markPoint2); -// Line rightLayline = new Line(); -// Line leftLayline = new Line(); -// if (lineFuncResult == 1) { -// rightLayline = makeRightLayline(markPoint2, 180 - resultingAngle, StreamParser.getWindDirection()); -// leftLayline = makeLeftLayline(markPoint1, 180 - resultingAngle, StreamParser.getWindDirection()); -// } else if (lineFuncResult == -1) { -// rightLayline = makeRightLayline(markPoint1, 180 - resultingAngle, StreamParser.getWindDirection()); -// leftLayline = makeLeftLayline(markPoint2, 180 - resultingAngle, StreamParser.getWindDirection()); -// } -// -// leftLayline.setStrokeWidth(0.5); -// leftLayline.setStroke(bg.getBoat().getColour()); -// -// rightLayline.setStrokeWidth(0.5); -// rightLayline.setStroke(bg.getBoat().getColour()); -// -// bg.setLaylines(leftLayline, rightLayline); -// mg.addLaylines(leftLayline, rightLayline); -// -// } -// } -// } -// } - } - - - private Point2D getPointRotation(Point2D ref, Double distance, Double angle) { - Double newX = ref.getX() + (ref.getX() + distance - ref.getX()) * Math.cos(angle) - - (ref.getY() + distance - ref.getY()) * Math.sin(angle); - Double newY = ref.getY() + (ref.getX() + distance - ref.getX()) * Math.sin(angle) - + (ref.getY() + distance - ref.getY()) * Math.cos(angle); - - return new Point2D(newX, newY); - } - - - public Line makeLeftLayline(Point2D startPoint, Double layLineAngle, Double baseAngle) { - Point2D ep = getPointRotation(startPoint, 50.0, baseAngle + layLineAngle); - Line line = new Line(startPoint.getX(), startPoint.getY(), ep.getX(), ep.getY()); - return line; - - } - - - public Line makeRightLayline(Point2D startPoint, Double layLineAngle, Double baseAngle) { - - Point2D ep = getPointRotation(startPoint, 50.0, baseAngle - layLineAngle); - Line line = new Line(startPoint.getX(), startPoint.getY(), ep.getX(), ep.getY()); - return line; - - } - - - /** - * Initialised the combo box with any yachts currently in the race and adds the required listener - * for the combobox to take action upon selection - */ - private void initialiseBoatSelectionComboBox() { -// yachtSelectionComboBox.setItems( -// FXCollections.observableArrayList(participants.values()) -// ); -// //Null check is if the listener is fired but nothing selected -// yachtSelectionComboBox.valueProperty().addListener((obs, lastSelection, selectedBoat) -> { -// if (selectedBoat != null) { -// gameView.selectBoat(selectedBoat); -// } -// }); - - //TODO uncomment out -// selectionComboBoxList.setAll(participants.values()); -// yachtSelectionComboBox.setItems(selectionComboBoxList); -// yachtSelectionComboBox.valueProperty().addListener((obs, lastSelection, selectedBoat) -> { -// if (selectedBoat != null) { -// gameView.selectBoat(selectedBoat); -// } -// }); - } - - /** - * Display the list of yachts in the order they finished the race - */ - private void loadRaceResultView() { - FXMLLoader loader = new FXMLLoader(getClass().getResource("/views/FinishView.fxml")); - - try { - contentGridPane.getChildren().removeAll(); - contentGridPane.getChildren().clear(); - contentGridPane.getChildren().addAll((Pane) loader.load()); - - } catch (javafx.fxml.LoadException e) { - System.err.println(e.getCause().toString()); - } catch (IOException e) { - System.err.println(e.toString()); - } - } - - private String getMillisToFormattedTime(long milliseconds) { - return String.format("%02d:%02d:%02d", - TimeUnit.MILLISECONDS.toHours(milliseconds), - TimeUnit.MILLISECONDS.toMinutes(milliseconds) % 60, //Modulus 60 minutes per hour - TimeUnit.MILLISECONDS.toSeconds(milliseconds) % 60 //Modulus 60 seconds per minute - ); - } - - private void setAnnotations(Integer annotationLevel) { -// switch (annotationLevel) { -// // No Annotations -// case 0: -// gameView.setAnnotationVisibilities( -// false, false, false, false, false, false -// ); -// break; -// // Important Annotations -// case 1: -// gameView.setAnnotationVisibilities( -// importantAnnotations.getAnnotationState(Annotation.NAME), -// importantAnnotations.getAnnotationState(Annotation.SPEED), -// importantAnnotations.getAnnotationState(Annotation.ESTTIMETONEXTMARK), -// importantAnnotations.getAnnotationState(Annotation.LEGTIME), -// importantAnnotations.getAnnotationState(Annotation.TRACK), -// importantAnnotations.getAnnotationState(Annotation.WAKE) -// ); -// break; -// // All Annotations -// case 2: -// gameView.setAnnotationVisibilities( -// true, true, true, true, true, true -// ); -// break; -// } - } - - - /** - * Sets all the annotations of the selected yacht to be visible and all others to be hidden - * - * @param yacht The yacht for which we want to view all annotations - */ - private void setSelectedBoat(ClientYacht yacht) { -// for (BoatObject bg : gameViewController.getBoatGroups()) { -// //We need to iterate over all race groups to get the matching yacht group belonging to this yacht if we -// //are to toggle its annotations, there is no other backwards knowledge of a yacht to its yachtgroup. -// if (bg.getBoat().getHullID().equals(yacht.getHullID())) { -//// updateLaylines(bg); -// bg.setIsSelected(true); -//// selectedBoat = yacht; -// } else { -// bg.setIsSelected(false); -// } -// } - } public void updateTokens(RaceXMLData raceData) { gameView.updateTokens(raceData.getTokens()); diff --git a/src/main/java/seng302/visualiser/controllers/ViewManager.java b/src/main/java/seng302/visualiser/controllers/ViewManager.java index 1e3ab4ce..5152768c 100644 --- a/src/main/java/seng302/visualiser/controllers/ViewManager.java +++ b/src/main/java/seng302/visualiser/controllers/ViewManager.java @@ -404,7 +404,9 @@ public class ViewManager { .add(getClass().getResource("/css/dialogs/Snackbar.css").toExternalForm()); JFXSnackbar bar = new JFXSnackbar(decorator); - bar.enqueue(new JFXSnackbar.SnackbarEvent(msg)); + Platform.runLater(() -> { + bar.enqueue(new JFXSnackbar.SnackbarEvent(msg)); + }); } public Stage getStage() { diff --git a/src/main/java/seng302/visualiser/fxObjects/MarkArrowFactory.java b/src/main/java/seng302/visualiser/fxObjects/MarkArrowFactory.java index ccc307eb..a5d8175b 100644 --- a/src/main/java/seng302/visualiser/fxObjects/MarkArrowFactory.java +++ b/src/main/java/seng302/visualiser/fxObjects/MarkArrowFactory.java @@ -29,11 +29,11 @@ public class MarkArrowFactory { STARBOARD, } - public static final double MARK_ARROW_SEPARATION = 15; - public static final double ARROW_LENGTH = 75; - public static final double ARROW_HEAD_DEPTH = 10; - public static final double ARROW_HEAD_WIDTH = 6; - public static final double STROKE_WIDTH = 3; + public static final double MARK_ARROW_SEPARATION = 8; + public static final double ARROW_LENGTH = 20; + public static final double ARROW_HEAD_DEPTH = 5; + public static final double ARROW_HEAD_WIDTH = 3; + public static final double STROKE_WIDTH = 1; public static Model constructEntryArrow3D ( RoundingSide roundingSide, double angle, ModelType type) { @@ -106,7 +106,7 @@ public class MarkArrowFactory { Arc roundSection = new Arc( 0, 0, MARK_ARROW_SEPARATION, MARK_ARROW_SEPARATION, //Where to start drawing arc from - (roundingSide == RoundingSide.PORT ? 0 : angleOfEntry), + (roundingSide == RoundingSide.PORT ? 180 + angleOfEntry : angleOfEntry), //Which way to go around the mark. (clockwise vs anticlockwise) roundingSide == RoundingSide.PORT ? Math.abs(angleOfExit - angleOfEntry) : -Math.abs(angleOfEntry - angleOfExit) ); diff --git a/src/main/java/seng302/visualiser/fxObjects/assets_2D/Marker2D.java b/src/main/java/seng302/visualiser/fxObjects/assets_2D/Marker2D.java index 5f30c2e6..d45b1341 100644 --- a/src/main/java/seng302/visualiser/fxObjects/assets_2D/Marker2D.java +++ b/src/main/java/seng302/visualiser/fxObjects/assets_2D/Marker2D.java @@ -28,8 +28,7 @@ public class Marker2D extends Group { mark.setRadius(5); mark.setCenterX(0); mark.setCenterY(0); - Platform.runLater(() -> this.getChildren() - .addAll(mark, new Group())); //Empty group placeholder or arrows. + Platform.runLater(() -> this.getChildren().add(mark)); } /** @@ -82,13 +81,9 @@ public class Marker2D extends Group { private void showArrow(List arrowList, int arrowListIndex) { if (arrowListIndex < arrowList.size()) { - if (arrowListIndex == 1) { - ; - } - Platform.runLater(() -> { - this.getChildren().remove(1); - this.getChildren().add(arrowList.get(arrowListIndex)); - }); + Platform.runLater(() -> + this.getChildren().setAll(mark, arrowList.get(arrowListIndex)) + ); } } diff --git a/src/main/java/seng302/visualiser/fxObjects/assets_3D/BoatModel.java b/src/main/java/seng302/visualiser/fxObjects/assets_3D/BoatModel.java index e056b14d..27cc923d 100644 --- a/src/main/java/seng302/visualiser/fxObjects/assets_3D/BoatModel.java +++ b/src/main/java/seng302/visualiser/fxObjects/assets_3D/BoatModel.java @@ -60,7 +60,9 @@ public class BoatModel extends Model { */ public void changeColour(Color newColour) { changeColourChild(HULL_INDEX, newColour); - changeColourChild(MAST_INDEX, newColour); + if (meshType != BoatMeshType.PARROT) { + changeColourChild(MAST_INDEX, newColour); + } } private void changeColourChild(int index, Color newColour) { diff --git a/src/main/resources/meshes/boatSTLs/parrot_sail.stl b/src/main/resources/meshes/boatSTLs/parrot_sail.stl index 929a050f..efe88eee 100644 Binary files a/src/main/resources/meshes/boatSTLs/parrot_sail.stl and b/src/main/resources/meshes/boatSTLs/parrot_sail.stl differ diff --git a/src/main/resources/meshes/mark_area.dae b/src/main/resources/meshes/mark_area.dae index cdab9021..48f072a5 100644 --- a/src/main/resources/meshes/mark_area.dae +++ b/src/main/resources/meshes/mark_area.dae @@ -3,10 +3,10 @@ Blender User - Blender 2.78.0 commit date:2017-02-24, commit time:14:33, hash:e92f235283 + Blender 2.78.0 commit date:2016-09-26, commit time:12:42, hash:4bb1e22 - 2017-09-11T01:59:12 - 2017-09-11T01:59:12 + 2017-09-28T10:11:09 + 2017-09-28T10:11:09 Z_UP @@ -52,7 +52,7 @@ 0.64 0.1138082 0 1 - 9.70731e-4 9.70731e-4 9.70731e-4 1 + 4.85366e-4 4.85366e-4 4.85366e-4 1 50 @@ -106,7 +106,7 @@ - 0.2229081 9.226238 0.0419262 0.8986169 9.123887 0.0419262 -2.868184 9.455139 0.0419262 -2.164442 9.631382 0.0419262 3.736657 8.438632 0.0419262 4.321767 8.085489 0.0419262 -6.268181 7.6378 0.0419262 -5.685454 8.069944 0.0419262 6.681546 6.36632 0.0419262 7.086975 5.816144 0.0419262 -8.713906 4.657678 0.0419262 -8.340909 5.279924 0.0419262 8.60923 3.324795 0.0419262 8.773255 2.661348 0.0419262 -9.833014 0.9684678 0.0419262 -9.726534 1.686088 0.0419262 9.226237 -0.2229008 0.0419262 9.123886 -0.8986153 0.0419262 -9.455139 -2.868183 0.0419262 -9.631382 -2.16444 0.0419262 8.438631 -3.736662 0.0419262 8.085483 -4.321773 0.0419262 -7.6378 -6.268181 0.0419262 -8.069944 -5.685453 0.0419262 6.366316 -6.68155 0.0419262 5.81614 -7.086979 0.0419262 -4.657677 -8.713907 0.0419262 -5.279924 -8.340909 0.0419262 3.324789 -8.609231 0.0419262 2.661342 -8.773257 0.0419262 -0.9684644 -9.833014 0.0419262 -1.686085 -9.726534 0.0419262 -0.222907 -9.226237 0.0419262 -0.8986214 -9.123885 0.0419262 2.868188 -9.455138 0.0419262 2.164446 -9.631382 0.0419262 -3.736668 -8.438628 0.0419262 -4.321778 -8.08548 0.0419262 6.268185 -7.637797 0.0419262 5.685459 -8.069939 0.0419262 -6.681554 -6.366312 0.0419262 -7.086983 -5.816135 0.0419262 8.713909 -4.657672 0.0419262 8.340912 -5.279919 0.0419262 -8.609233 -3.324784 0.0419262 -8.773259 -2.661337 0.0419262 9.833014 -0.9684582 0.0419262 9.726535 -1.686079 0.0419262 -9.226237 0.2229108 0.0419262 -9.123885 0.8986247 0.0419262 9.455136 2.868195 0.0419262 9.631381 2.164452 0.0419262 -8.438628 3.736669 0.0419262 -8.085479 4.321779 0.0419262 7.637792 6.26819 0.0419262 8.069935 5.685464 0.0419262 -6.366312 6.681554 0.0419262 -5.816136 7.086983 0.0419262 4.657666 8.713912 0.0419262 5.279914 8.340916 0.0419262 -3.324786 8.609234 0.0419262 -2.661338 8.773259 0.0419262 0.9684599 9.833018 0.0419262 1.686074 9.726536 0.0419262 0.243861 9.868581 0.0419262 -2.018576 9.00547 0.0419262 4.001829 9.024065 0.0419262 -5.311164 7.547492 0.0419262 7.150568 6.805712 0.0419262 -7.795176 4.940478 0.0419262 9.2107 3.551252 0.0419262 -9.092445 1.581323 0.0419262 9.86858 -0.2438534 0.0419262 -9.00547 -2.018574 0.0419262 9.024062 -4.001835 0.0419262 -7.547492 -5.311163 0.0419262 6.805707 -7.150573 0.0419262 -4.940478 -7.795175 0.0419262 3.551247 -9.2107 0.0419262 -1.58132 -9.092445 0.0419262 -0.2438598 -9.86858 0.0419262 2.018579 -9.005469 0.0419262 -4.001841 -9.02406 0.0419262 5.311169 -7.547488 0.0419262 -7.150577 -6.805703 0.0419262 7.795179 -4.940473 0.0419262 -9.210701 -3.551241 0.0419262 9.092446 -1.581314 0.0419262 -9.86858 0.2438636 0.0419262 9.005465 2.018586 0.0419262 -9.02406 4.001842 0.0419262 7.547485 5.311173 0.0419262 -6.805703 7.150577 0.0419262 4.940468 7.795183 0.0419262 -3.551242 9.210701 0.0419262 1.58131 9.092448 0.0419262 6.64644 -6.86647 0.0419262 8.031196 -5.179137 0.0419262 -9.401826 1.711501 0.0419262 -9.55507 0.1555917 0.0419262 8.768197 -3.800307 0.0419262 -9.341118 -2.016701 0.0419262 9.401828 -1.711492 0.0419262 -8.887275 -3.512818 0.0419262 9.555071 -0.1555815 0.0419262 -7.858308 -5.43788 0.0419262 9.341115 2.016713 0.0419262 -6.866474 -6.646435 0.0419262 8.887271 3.51283 0.0419262 -5.179142 -8.031192 0.0419262 7.858302 5.437891 0.0419262 -3.800313 -8.768195 0.0419262 0.1555896 9.555071 0.0419262 -2.016703 9.341118 0.0419262 6.866465 6.646443 0.0419262 -1.711498 -9.401826 0.0419262 -3.51282 8.887276 0.0419262 5.179132 8.031202 0.0419262 -0.1555879 -9.555069 0.0419262 -5.437881 7.858308 0.0419262 3.800302 8.768198 0.0419262 2.016707 -9.341116 0.0419262 -6.646435 6.866474 0.0419262 1.711487 9.401829 0.0419262 3.512824 -8.887273 0.0419262 -8.031192 5.179142 0.0419262 5.437886 -7.858306 0.0419262 -8.768193 3.800314 0.0419262 6.042163 -7.362388 0.0419262 -8.399691 4.489728 0.0419262 0.9335383 9.478449 0.0419262 2.764765 -9.114195 0.0419262 -6.042158 7.362391 0.0419262 4.489717 8.399701 0.0419262 -0.9335429 -9.478448 0.0419262 -2.764761 9.114197 0.0419262 7.362383 6.042167 0.0419262 -4.489727 -8.399692 0.0419262 9.114193 2.764771 0.0419262 -7.362391 -6.042158 0.0419262 9.478449 -0.9335367 0.0419262 -9.114197 -2.76476 0.0419262 8.399697 -4.489722 0.0419262 -9.478448 0.9335463 0.0419262 0.2229081 9.226238 0.1237342 0.8986169 9.123887 0.1237342 -2.868184 9.455139 0.1237342 -2.164442 9.631382 0.1237342 3.736657 8.438632 0.1237342 4.321767 8.085489 0.1237342 -6.268181 7.6378 0.1237342 -5.685454 8.069944 0.1237342 6.681546 6.36632 0.1237342 7.086975 5.816144 0.1237342 -8.713906 4.657678 0.1237342 -8.340909 5.279924 0.1237342 8.60923 3.324795 0.1237342 8.773255 2.661348 0.1237342 -9.833014 0.9684678 0.1237342 -9.726534 1.686088 0.1237342 9.226237 -0.2229008 0.1237342 9.123886 -0.8986153 0.1237342 -9.455139 -2.868183 0.1237342 -9.631382 -2.16444 0.1237342 8.438631 -3.736662 0.1237342 8.085483 -4.321773 0.1237342 -7.6378 -6.268181 0.1237342 -8.069944 -5.685453 0.1237342 6.366316 -6.68155 0.1237342 5.81614 -7.086979 0.1237342 -4.657677 -8.713907 0.1237342 -5.279924 -8.340909 0.1237342 3.324789 -8.609231 0.1237342 2.661342 -8.773257 0.1237342 -0.9684644 -9.833014 0.1237342 -1.686085 -9.726534 0.1237342 -0.222907 -9.226237 0.1237342 -0.8986214 -9.123885 0.1237342 2.868188 -9.455138 0.1237342 2.164446 -9.631382 0.1237342 -3.736668 -8.438628 0.1237342 -4.321778 -8.08548 0.1237342 6.268185 -7.637797 0.1237342 5.685459 -8.069939 0.1237342 -6.681554 -6.366312 0.1237342 -7.086983 -5.816135 0.1237342 8.713909 -4.657672 0.1237342 8.340912 -5.279919 0.1237342 -8.609233 -3.324784 0.1237342 -8.773259 -2.661337 0.1237342 9.833014 -0.9684582 0.1237342 9.726535 -1.686079 0.1237342 -9.226237 0.2229108 0.1237342 -9.123885 0.8986247 0.1237342 9.455136 2.868195 0.1237342 9.631381 2.164452 0.1237342 -8.438628 3.736669 0.1237342 -8.085479 4.321779 0.1237342 7.637792 6.26819 0.1237342 8.069935 5.685464 0.1237342 -6.366312 6.681554 0.1237342 -5.816136 7.086983 0.1237342 4.657666 8.713912 0.1237342 5.279914 8.340916 0.1237342 -3.324786 8.609234 0.1237342 -2.661338 8.773259 0.1237342 0.9684599 9.833018 0.1237342 1.686074 9.726536 0.1237342 0.243861 9.868581 0.1237342 -2.018576 9.00547 0.1237342 4.001829 9.024065 0.1237342 -5.311164 7.547492 0.1237342 7.150568 6.805712 0.1237342 -7.795176 4.940478 0.1237342 9.2107 3.551252 0.1237342 -9.092445 1.581323 0.1237342 9.86858 -0.2438534 0.1237342 -9.00547 -2.018574 0.1237342 9.024062 -4.001835 0.1237342 -7.547492 -5.311163 0.1237342 6.805707 -7.150573 0.1237342 -4.940478 -7.795175 0.1237342 3.551247 -9.2107 0.1237342 -1.58132 -9.092445 0.1237342 -0.2438598 -9.86858 0.1237342 2.018579 -9.005469 0.1237342 -4.001841 -9.02406 0.1237342 5.311169 -7.547488 0.1237342 -7.150577 -6.805703 0.1237342 7.795179 -4.940473 0.1237342 -9.210701 -3.551241 0.1237342 9.092446 -1.581314 0.1237342 -9.86858 0.2438636 0.1237342 9.005465 2.018586 0.1237342 -9.02406 4.001842 0.1237342 7.547485 5.311173 0.1237342 -6.805703 7.150577 0.1237342 4.940468 7.795183 0.1237342 -3.551242 9.210701 0.1237342 1.58131 9.092448 0.1237342 6.64644 -6.86647 0.1237342 8.031196 -5.179137 0.1237342 -9.401826 1.711501 0.1237342 -9.55507 0.1555917 0.1237342 8.768197 -3.800307 0.1237342 -9.341118 -2.016701 0.1237342 9.401828 -1.711492 0.1237342 -8.887275 -3.512818 0.1237342 9.555071 -0.1555815 0.1237342 -7.858308 -5.43788 0.1237342 9.341115 2.016713 0.1237342 -6.866474 -6.646435 0.1237342 8.887271 3.51283 0.1237342 -5.179142 -8.031192 0.1237342 7.858302 5.437891 0.1237342 -3.800313 -8.768195 0.1237342 0.1555896 9.555071 0.1237342 -2.016703 9.341118 0.1237342 6.866465 6.646443 0.1237342 -1.711498 -9.401826 0.1237342 -3.51282 8.887276 0.1237342 5.179132 8.031202 0.1237342 -0.1555879 -9.555069 0.1237342 -5.437881 7.858308 0.1237342 3.800302 8.768198 0.1237342 2.016707 -9.341116 0.1237342 -6.646435 6.866474 0.1237342 1.711487 9.401829 0.1237342 3.512824 -8.887273 0.1237342 -8.031192 5.179142 0.1237342 5.437886 -7.858306 0.1237342 -8.768193 3.800314 0.1237342 6.042163 -7.362388 0.1237342 -8.399691 4.489728 0.1237342 0.9335383 9.478449 0.1237342 2.764765 -9.114195 0.1237342 -6.042158 7.362391 0.1237342 4.489717 8.399701 0.1237342 -0.9335429 -9.478448 0.1237342 -2.764761 9.114197 0.1237342 7.362383 6.042167 0.1237342 -4.489727 -8.399692 0.1237342 9.114193 2.764771 0.1237342 -7.362391 -6.042158 0.1237342 9.478449 -0.9335367 0.1237342 -9.114197 -2.76476 0.1237342 8.399697 -4.489722 0.1237342 -9.478448 0.9335463 0.1237342 + 0.2229081 9.226239 0.0419262 0.8986169 9.123888 0.0419262 -2.868184 9.45514 0.0419262 -2.164442 9.631382 0.0419262 3.736657 8.438632 0.0419262 4.321767 8.08549 0.0419262 -6.268181 7.6378 0.0419262 -5.685454 8.069945 0.0419262 6.681546 6.36632 0.0419262 7.086975 5.816144 0.0419262 -8.713907 4.657678 0.0419262 -8.340909 5.279924 0.0419262 8.60923 3.324795 0.0419262 8.773256 2.661348 0.0419262 -9.833014 0.9684678 0.0419262 -9.726534 1.686088 0.0419262 9.226238 -0.2229008 0.0419262 9.123887 -0.8986153 0.0419262 -9.45514 -2.868183 0.0419262 -9.631382 -2.16444 0.0419262 8.438632 -3.736662 0.0419262 8.085483 -4.321773 0.0419262 -7.6378 -6.268181 0.0419262 -8.069945 -5.685453 0.0419262 6.366316 -6.68155 0.0419262 5.81614 -7.086979 0.0419262 -4.657677 -8.713908 0.0419262 -5.279924 -8.340909 0.0419262 3.324789 -8.609231 0.0419262 2.661342 -8.773258 0.0419262 -0.9684644 -9.833014 0.0419262 -1.686085 -9.726534 0.0419262 -0.222907 -9.226238 0.0419262 -0.8986214 -9.123886 0.0419262 2.868188 -9.455139 0.0419262 2.164446 -9.631382 0.0419262 -3.736668 -8.438629 0.0419262 -4.321778 -8.08548 0.0419262 6.268185 -7.637797 0.0419262 5.685459 -8.069939 0.0419262 -6.681554 -6.366312 0.0419262 -7.086983 -5.816135 0.0419262 8.71391 -4.657672 0.0419262 8.340912 -5.279919 0.0419262 -8.609233 -3.324784 0.0419262 -8.77326 -2.661337 0.0419262 9.833014 -0.9684582 0.0419262 9.726535 -1.686079 0.0419262 -9.226238 0.2229108 0.0419262 -9.123886 0.8986247 0.0419262 9.455137 2.868195 0.0419262 9.631381 2.164452 0.0419262 -8.438629 3.736669 0.0419262 -8.085479 4.321779 0.0419262 7.637792 6.26819 0.0419262 8.069935 5.685464 0.0419262 -6.366312 6.681554 0.0419262 -5.816136 7.086983 0.0419262 4.657666 8.713912 0.0419262 5.279914 8.340916 0.0419262 -3.324786 8.609234 0.0419262 -2.661338 8.77326 0.0419262 0.9684599 9.833019 0.0419262 1.686074 9.726536 0.0419262 0.243861 9.868581 0.0419262 -2.018576 9.005471 0.0419262 4.001829 9.024065 0.0419262 -5.311164 7.547492 0.0419262 7.150568 6.805712 0.0419262 -7.795176 4.940478 0.0419262 9.2107 3.551252 0.0419262 -9.092446 1.581323 0.0419262 9.86858 -0.2438534 0.0419262 -9.005471 -2.018574 0.0419262 9.024063 -4.001835 0.0419262 -7.547492 -5.311163 0.0419262 6.805707 -7.150573 0.0419262 -4.940478 -7.795175 0.0419262 3.551247 -9.2107 0.0419262 -1.58132 -9.092446 0.0419262 -0.2438598 -9.86858 0.0419262 2.018579 -9.00547 0.0419262 -4.001841 -9.024061 0.0419262 5.311169 -7.547488 0.0419262 -7.150577 -6.805703 0.0419262 7.795179 -4.940473 0.0419262 -9.210701 -3.551241 0.0419262 9.092447 -1.581314 0.0419262 -9.86858 0.2438636 0.0419262 9.005465 2.018586 0.0419262 -9.024061 4.001842 0.0419262 7.547485 5.311173 0.0419262 -6.805703 7.150577 0.0419262 4.940468 7.795183 0.0419262 -3.551242 9.210701 0.0419262 1.58131 9.092449 0.0419262 6.64644 -6.86647 0.0419262 8.031196 -5.179137 0.0419262 -9.401826 1.711501 0.0419262 -9.55507 0.1555917 0.0419262 8.768198 -3.800307 0.0419262 -9.341118 -2.016701 0.0419262 9.401828 -1.711492 0.0419262 -8.887275 -3.512818 0.0419262 9.555071 -0.1555815 0.0419262 -7.858308 -5.43788 0.0419262 9.341115 2.016713 0.0419262 -6.866474 -6.646435 0.0419262 8.887271 3.51283 0.0419262 -5.179142 -8.031192 0.0419262 7.858302 5.437891 0.0419262 -3.800313 -8.768196 0.0419262 0.1555896 9.555071 0.0419262 -2.016703 9.341118 0.0419262 6.866465 6.646443 0.0419262 -1.711498 -9.401826 0.0419262 -3.51282 8.887276 0.0419262 5.179132 8.031203 0.0419262 -0.1555879 -9.555069 0.0419262 -5.437881 7.858308 0.0419262 3.800302 8.768198 0.0419262 2.016707 -9.341116 0.0419262 -6.646435 6.866474 0.0419262 1.711487 9.401829 0.0419262 3.512824 -8.887273 0.0419262 -8.031192 5.179142 0.0419262 5.437886 -7.858306 0.0419262 -8.768194 3.800314 0.0419262 6.042163 -7.362388 0.0419262 -8.399691 4.489728 0.0419262 0.9335383 9.478449 0.0419262 2.764765 -9.114195 0.0419262 -6.042158 7.362391 0.0419262 4.489717 8.399702 0.0419262 -0.9335429 -9.478448 0.0419262 -2.764761 9.114197 0.0419262 7.362383 6.042167 0.0419262 -4.489727 -8.399692 0.0419262 9.114193 2.764771 0.0419262 -7.362391 -6.042158 0.0419262 9.478449 -0.9335367 0.0419262 -9.114197 -2.76476 0.0419262 8.399698 -4.489722 0.0419262 -9.478448 0.9335463 0.0419262 0.2229081 9.226239 0.1237342 0.8986169 9.123888 0.1237342 -2.868184 9.45514 0.1237342 -2.164442 9.631382 0.1237342 3.736657 8.438632 0.1237342 4.321767 8.08549 0.1237342 -6.268181 7.6378 0.1237342 -5.685454 8.069945 0.1237342 6.681546 6.36632 0.1237342 7.086975 5.816144 0.1237342 -8.713907 4.657678 0.1237342 -8.340909 5.279924 0.1237342 8.60923 3.324795 0.1237342 8.773256 2.661348 0.1237342 -9.833014 0.9684678 0.1237342 -9.726534 1.686088 0.1237342 9.226238 -0.2229008 0.1237342 9.123887 -0.8986153 0.1237342 -9.45514 -2.868183 0.1237342 -9.631382 -2.16444 0.1237342 8.438632 -3.736662 0.1237342 8.085483 -4.321773 0.1237342 -7.6378 -6.268181 0.1237342 -8.069945 -5.685453 0.1237342 6.366316 -6.68155 0.1237342 5.81614 -7.086979 0.1237342 -4.657677 -8.713908 0.1237342 -5.279924 -8.340909 0.1237342 3.324789 -8.609231 0.1237342 2.661342 -8.773258 0.1237342 -0.9684644 -9.833014 0.1237342 -1.686085 -9.726534 0.1237342 -0.222907 -9.226238 0.1237342 -0.8986214 -9.123886 0.1237342 2.868188 -9.455139 0.1237342 2.164446 -9.631382 0.1237342 -3.736668 -8.438629 0.1237342 -4.321778 -8.08548 0.1237342 6.268185 -7.637797 0.1237342 5.685459 -8.069939 0.1237342 -6.681554 -6.366312 0.1237342 -7.086983 -5.816135 0.1237342 8.71391 -4.657672 0.1237342 8.340912 -5.279919 0.1237342 -8.609233 -3.324784 0.1237342 -8.77326 -2.661337 0.1237342 9.833014 -0.9684582 0.1237342 9.726535 -1.686079 0.1237342 -9.226238 0.2229108 0.1237342 -9.123886 0.8986247 0.1237342 9.455137 2.868195 0.1237342 9.631381 2.164452 0.1237342 -8.438629 3.736669 0.1237342 -8.085479 4.321779 0.1237342 7.637792 6.26819 0.1237342 8.069935 5.685464 0.1237342 -6.366312 6.681554 0.1237342 -5.816136 7.086983 0.1237342 4.657666 8.713912 0.1237342 5.279914 8.340916 0.1237342 -3.324786 8.609234 0.1237342 -2.661338 8.77326 0.1237342 0.9684599 9.833019 0.1237342 1.686074 9.726536 0.1237342 0.243861 9.868581 0.1237342 -2.018576 9.005471 0.1237342 4.001829 9.024065 0.1237342 -5.311164 7.547492 0.1237342 7.150568 6.805712 0.1237342 -7.795176 4.940478 0.1237342 9.2107 3.551252 0.1237342 -9.092446 1.581323 0.1237342 9.86858 -0.2438534 0.1237342 -9.005471 -2.018574 0.1237342 9.024063 -4.001835 0.1237342 -7.547492 -5.311163 0.1237342 6.805707 -7.150573 0.1237342 -4.940478 -7.795175 0.1237342 3.551247 -9.2107 0.1237342 -1.58132 -9.092446 0.1237342 -0.2438598 -9.86858 0.1237342 2.018579 -9.00547 0.1237342 -4.001841 -9.024061 0.1237342 5.311169 -7.547488 0.1237342 -7.150577 -6.805703 0.1237342 7.795179 -4.940473 0.1237342 -9.210701 -3.551241 0.1237342 9.092447 -1.581314 0.1237342 -9.86858 0.2438636 0.1237342 9.005465 2.018586 0.1237342 -9.024061 4.001842 0.1237342 7.547485 5.311173 0.1237342 -6.805703 7.150577 0.1237342 4.940468 7.795183 0.1237342 -3.551242 9.210701 0.1237342 1.58131 9.092449 0.1237342 6.64644 -6.86647 0.1237342 8.031196 -5.179137 0.1237342 -9.401826 1.711501 0.1237342 -9.55507 0.1555917 0.1237342 8.768198 -3.800307 0.1237342 -9.341118 -2.016701 0.1237342 9.401828 -1.711492 0.1237342 -8.887275 -3.512818 0.1237342 9.555071 -0.1555815 0.1237342 -7.858308 -5.43788 0.1237342 9.341115 2.016713 0.1237342 -6.866474 -6.646435 0.1237342 8.887271 3.51283 0.1237342 -5.179142 -8.031192 0.1237342 7.858302 5.437891 0.1237342 -3.800313 -8.768196 0.1237342 0.1555896 9.555071 0.1237342 -2.016703 9.341118 0.1237342 6.866465 6.646443 0.1237342 -1.711498 -9.401826 0.1237342 -3.51282 8.887276 0.1237342 5.179132 8.031203 0.1237342 -0.1555879 -9.555069 0.1237342 -5.437881 7.858308 0.1237342 3.800302 8.768198 0.1237342 2.016707 -9.341116 0.1237342 -6.646435 6.866474 0.1237342 1.711487 9.401829 0.1237342 3.512824 -8.887273 0.1237342 -8.031192 5.179142 0.1237342 5.437886 -7.858306 0.1237342 -8.768194 3.800314 0.1237342 6.042163 -7.362388 0.1237342 -8.399691 4.489728 0.1237342 0.9335383 9.478449 0.1237342 2.764765 -9.114195 0.1237342 -6.042158 7.362391 0.1237342 4.489717 8.399702 0.1237342 -0.9335429 -9.478448 0.1237342 -2.764761 9.114197 0.1237342 7.362383 6.042167 0.1237342 -4.489727 -8.399692 0.1237342 9.114193 2.764771 0.1237342 -7.362391 -6.042158 0.1237342 9.478449 -0.9335367 0.1237342 -9.114197 -2.76476 0.1237342 8.399698 -4.489722 0.1237342 -9.478448 0.9335463 0.1237342 @@ -116,9 +116,9 @@ - 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.9818589 -0.1896133 0 0.2400057 -0.9707715 0 -0.8050309 -0.5932329 0 -0.04902118 -0.9987978 0 0.8032317 0.5956668 0 -0.905297 0.4247792 0 0.67383 -0.7388865 0 0.3094326 0.9509214 0 -0.9989414 0.04600191 0 0.8283565 0.5602014 0 0.9625736 -0.2710208 0 0.3878356 0.9217287 0 -0.8561466 0.5167332 0 0.9969513 0.07802641 0 0.7855889 -0.6187489 0 -0.5602023 0.8283559 0 0.9217292 -0.3878343 0 0.3369329 -0.9415287 0 0.5956672 -0.8032314 0 -0.387834 -0.9217293 0 -0.9415287 -0.3369328 0 -0.5509202 -0.834558 0 0.9891704 -0.1467715 0 -0.7031555 0.7110362 0 -0.005580186 -0.9999845 0 -0.3775237 0.926 0 0.6715904 -0.7409227 0 0.7110381 0.7031536 0 0.2429354 -0.9700425 0 0.9052973 -0.4247787 0 -0.2400041 0.9707719 0 0.339778 -0.9405058 0 -0.7601249 0.6497772 0 -0.5141389 -0.8577071 0 -0.9707716 -0.2400052 0 0.9987977 -0.04902362 0 0.4247804 0.9052965 0 0.9999845 -0.005577504 0 0.005580186 0.9999845 0 0.1896141 0.9818587 0 -0.9259992 -0.3775256 0 -0.9040071 0.4275173 0 -0.7388886 -0.6738277 0 -0.8345566 0.5509222 0 -0.9405069 -0.3397748 0 -0.9891705 0.1467714 0 -0.5956659 0.8032323 0 -0.981859 0.1896128 0 -0.7409219 -0.6715912 0 -0.4890027 0.8722823 0 0.04600238 0.9989414 0 -0.7855856 0.6187531 0 0.9700422 0.2429367 0 0.9930177 0.1179663 0 0.8912037 0.4536035 0 -0.9217299 0.3878324 0 -0.8722858 -0.4889964 0 0.988722 -0.1497626 0 0.4275164 0.9040077 0 -0.3397773 0.940506 0 0.7031511 -0.7110405 0 0.2710232 0.9625729 0 0.8050302 0.5932339 0 -0.3369323 0.941529 0 -0.8032317 -0.5956668 0 0.9509224 -0.3094295 0 -0.8283555 -0.5602028 0 -0.9969514 -0.07802551 0 0.6187509 0.7855873 0 -0.1896149 -0.9818586 0 -0.2429367 0.9700422 0 0.6497756 0.7601262 0 0.9415283 0.336934 0 -0.30943 -0.9509223 0 -0.6187526 -0.7855859 0 0.7409232 0.6715898 0 0.0490247 0.9987976 0 -0.1497641 -0.9887219 0 0.7388869 0.6738296 0 -0.1179692 0.9930173 0 -0.6715915 0.7409217 0 0.5141403 0.8577061 0 -0.891202 -0.4536066 0 -0.2710232 -0.9625729 0 -0.950921 0.3094341 0 0.5602042 -0.8283546 0 0.9405061 0.3397771 0 -0.2005602 0.9796815 0 0.9796816 0.2005594 0 0.1179668 -0.9930176 0 -0.6497828 -0.76012 0 -0.711041 -0.7031506 0 -0.9999845 0.00557965 0 0.1467719 0.9891704 0 -0.07802546 0.9969514 0 0.9707716 0.2400053 0 -0.1467757 -0.9891698 0 0.07802587 -0.9969514 0 0.2005607 -0.9796814 0 -0.8577075 0.514138 0 -0.9796811 -0.2005618 0 -0.9887217 0.1497648 0 0.7601204 -0.6497824 0 0.8577053 -0.5141418 0 0.9260015 0.3775199 0 0.4890037 -0.8722817 0 -0.4536027 0.891204 0 -0.9930175 -0.1179679 0 -0.9987977 0.04902356 0 -0.9700418 -0.2429386 0 -0.0460034 -0.9989413 0 -0.673828 0.7388883 0 0.149764 0.9887218 0 0.5932339 -0.8050302 0 0.8345571 -0.5509215 0 0.8561471 -0.5167323 0 0.9989413 -0.04600405 0 0.5167297 0.8561486 0 0.8722839 0.4889999 0 0.5509232 0.8345561 0 0.3775228 -0.9260003 0 0.4536058 -0.8912025 0 -0.9625734 0.2710214 0 -0.5167337 -0.8561462 0 -0.4247806 -0.9052963 0 -0.5932338 0.8050303 0 -0.427516 -0.9040079 0 0.9040069 -0.4275178 0 0.9818584 -0.1896154 0 0.2400056 -0.9707715 0 -0.805031 -0.5932329 0 -0.04902118 -0.9987978 0 0.8032317 0.5956668 0 -0.9052971 0.4247792 0 0.6738293 -0.738887 0 0.3094313 0.9509219 0 -0.9989412 0.0460062 0 0.3878325 0.9217299 0 -0.8561456 0.5167347 0 0.9969515 0.07802528 0 0.7855889 -0.6187489 0 -0.5602002 0.8283573 0 0.9217287 -0.3878352 0 0.3369327 -0.9415287 0 -0.387834 -0.9217292 0 -0.9415287 -0.3369328 0 -0.5509203 -0.834558 0 0.9891704 -0.1467715 0 -0.7031533 0.7110383 0 -0.005580186 -0.9999845 0 -0.3775237 0.926 0 0.6715894 -0.7409236 0 0.7110404 0.7031512 0 0.2429356 -0.9700425 0 0.9052964 -0.4247804 0 -0.2400042 0.9707719 0 0.3397782 -0.9405056 0 -0.5141385 -0.8577073 0 0.9987975 -0.04902559 0 0.4247808 0.9052962 0 0.9999845 -0.005577504 0 0.005580127 0.9999845 0 0.1896142 0.9818587 0 -0.9260008 -0.3775219 0 -0.904008 0.4275157 0 -0.7388876 -0.6738288 0 -0.8345547 0.5509253 0 -0.9405055 -0.3397786 0 -0.9891707 0.1467694 0 -0.5956665 0.803232 0 -0.9818586 0.1896148 0 -0.7409219 -0.6715912 0 -0.4890027 0.8722823 0 0.04600244 0.9989414 0 -0.7855846 0.6187545 0 0.9700426 0.2429348 0 0.9930174 0.1179685 0 0.8912042 0.4536024 0 -0.9217299 0.3878324 0 -0.872284 -0.4889999 0 0.988722 -0.1497626 0 0.4275163 0.9040077 0 -0.3397771 0.940506 0 0.7031522 -0.7110393 0 0.2710221 0.9625732 0 0.8050302 0.5932339 0 -0.3369325 0.9415288 0 -0.8032317 -0.5956667 0 0.9509224 -0.3094295 0 -0.9969513 -0.07802665 0 -0.1896141 -0.9818587 0 -0.2429369 0.9700422 0 0.6497777 0.7601243 0 0.9415296 0.3369305 0 -0.30943 -0.9509223 0 -0.6187527 -0.7855859 0 0.7409233 0.6715897 0 -0.1497641 -0.9887218 0 -0.1179703 0.9930172 0 -0.6715914 0.7409217 0 0.5141404 0.8577061 0 -0.8912029 -0.4536049 0 -0.2710232 -0.9625729 0 -0.9509217 0.309432 0 0.5602043 -0.8283545 0 0.9405068 0.3397752 0 -0.2005619 0.9796811 0 0.9796816 0.2005595 0 0.1179658 -0.9930177 0 -0.6497828 -0.7601199 0 -0.711041 -0.7031505 0 -0.9999845 0.005580723 0 0.1467719 0.9891704 0 -0.07802551 0.9969514 0 0.9707721 0.2400032 0 -0.1467757 -0.9891699 0 0.07802551 -0.9969514 0 0.2005615 -0.9796811 0 -0.8577068 0.5141394 0 -0.9796811 -0.2005618 0 -0.988722 0.1497628 0 0.857707 -0.5141388 0 0.9260015 0.3775199 0 0.4890018 -0.8722829 0 -0.4536028 0.891204 0 -0.9930172 -0.11797 0 -0.9987975 0.04902553 0 -0.9700422 -0.2429367 0 -0.04600346 -0.9989413 0 -0.6738286 0.7388878 0 0.149764 0.9887219 0 0.5932329 -0.8050309 0 0.834559 -0.5509185 0 0.8561472 -0.5167323 0 0.9989414 -0.04600191 0 0.5167292 0.8561488 0 0.872282 0.4890033 0 0.5509232 0.8345561 0 0.3775228 -0.9260003 0 0.453604 -0.8912034 0 -0.9625733 0.2710215 0 -0.5167333 -0.8561465 0 -0.4247807 -0.9052963 0 -0.5932334 0.8050306 0 -0.4275155 -0.904008 0 0.9040078 -0.4275162 0 + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.9818589 -0.1896133 0 0.240007 -0.9707713 0 -0.8050309 -0.5932329 0 -0.04901987 -0.9987979 0 0.8032317 0.5956668 0 -0.905297 0.4247792 0 0.6738289 -0.7388874 0 0.3094313 0.9509218 0 -0.9989413 0.04600405 0 0.8283565 0.5602014 0 0.9625736 -0.2710208 0 0.3878356 0.9217287 0 -0.8561456 0.5167348 0 0.9969513 0.07802641 0 0.7855889 -0.6187489 0 -0.5602023 0.8283559 0 0.9217287 -0.3878353 0 0.336934 -0.9415283 0 0.5956676 -0.8032311 0 -0.387834 -0.9217293 0 -0.9415294 -0.336931 0 -0.5509202 -0.834558 0 0.9891705 -0.1467715 0 -0.7031569 0.7110348 0 -0.005580186 -0.9999845 0 -0.3775237 0.926 0 0.6715907 -0.7409224 0 0.7110388 0.7031528 0 0.2429342 -0.9700428 0 0.9052973 -0.4247787 0 -0.2400054 0.9707716 0 0.339778 -0.9405058 0 -0.7601249 0.6497772 0 -0.5141389 -0.8577071 0 -0.9707711 -0.2400072 0 0.9987977 -0.04902362 0 0.4247816 0.9052959 0 0.9999845 -0.005577504 0 0.005580186 0.9999845 0 0.1896141 0.9818587 0 -0.9259992 -0.3775256 0 -0.9040088 0.4275141 0 -0.7388886 -0.6738277 0 -0.8345566 0.5509222 0 -0.9405055 -0.3397786 0 -0.9891705 0.1467714 0 -0.5956659 0.8032323 0 -0.9818586 0.1896148 0 -0.7409222 -0.6715909 0 -0.4890027 0.8722823 0 0.04600238 0.9989414 0 -0.7855856 0.6187531 0 0.9700432 0.2429329 0 0.9930177 0.1179663 0 0.8912042 0.4536026 0 -0.9217295 0.3878335 0 -0.8722858 -0.4889964 0 0.9887217 -0.1497647 0 0.4275164 0.9040077 0 -0.3397773 0.940506 0 0.7031511 -0.7110405 0 0.2710232 0.9625729 0 0.8050305 0.5932336 0 -0.3369334 0.9415285 0 -0.8032317 -0.5956668 0 0.9509224 -0.3094295 0 -0.8283555 -0.5602028 0 -0.9969514 -0.07802551 0 0.6187509 0.7855873 0 -0.1896141 -0.9818587 0 -0.2429354 0.9700425 0 0.6497766 0.7601252 0 0.9415283 0.336934 0 -0.30943 -0.9509223 0 -0.6187548 -0.7855842 0 0.7409222 0.6715909 0 0.0490247 0.9987976 0 -0.1497641 -0.9887219 0 0.7388869 0.6738296 0 -0.1179692 0.9930173 0 -0.6715915 0.7409217 0 0.5141413 0.8577057 0 -0.891202 -0.4536066 0 -0.2710232 -0.9625729 0 -0.9509207 0.309435 0 0.5602042 -0.8283546 0 0.9405074 0.3397732 0 -0.2005618 0.9796811 0 0.9796815 0.20056 0 0.1179658 -0.9930177 0 -0.6497845 -0.7601185 0 -0.711041 -0.7031506 0 -0.9999845 0.00557971 0 0.1467719 0.9891704 0 -0.07802546 0.9969514 0 0.9707711 0.2400074 0 -0.146777 -0.9891696 0 0.07802587 -0.9969514 0 0.2005624 -0.979681 0 -0.8577058 0.514141 0 -0.979681 -0.2005624 0 -0.9887217 0.1497648 0 0.7601204 -0.6497824 0 0.8577062 -0.5141403 0 0.9260015 0.3775199 0 0.4890048 -0.8722811 0 -0.4536027 0.891204 0 -0.9930175 -0.1179679 0 -0.9987977 0.04902356 0 -0.9700422 -0.2429367 0 -0.0460034 -0.9989413 0 -0.673828 0.7388883 0 0.149764 0.9887218 0 0.5932334 -0.8050307 0 0.8345566 -0.5509222 0 0.8561471 -0.5167323 0 0.9989414 -0.04600191 0 0.5167286 0.8561492 0 0.8722839 0.4889999 0 0.5509232 0.8345561 0 0.3775228 -0.9260003 0 0.4536058 -0.8912025 0 -0.9625734 0.2710214 0 -0.5167348 -0.8561455 0 -0.4247806 -0.9052963 0 -0.5932338 0.8050303 0 -0.427516 -0.9040079 0 0.9040077 -0.4275162 0 0.9818584 -0.1896154 0 0.2400069 -0.9707712 0 -0.805031 -0.5932329 0 -0.04901987 -0.9987978 0 0.8032317 0.5956668 0 -0.9052971 0.4247792 0 0.6738299 -0.7388866 0 0.30943 0.9509223 0 -0.9989414 0.04600191 0 0.387834 0.9217292 0 -0.8561447 0.5167363 0 0.9969515 0.07802528 0 0.7855889 -0.6187489 0 -0.5602002 0.8283573 0 0.9217283 -0.3878362 0 0.336934 -0.9415284 0 0.5956676 -0.8032311 0 -0.3878372 -0.921728 0 -0.9415287 -0.3369328 0 -0.5509203 -0.834558 0 0.9891704 -0.1467715 0 -0.7031548 0.7110369 0 -0.005580186 -0.9999845 0 -0.3775237 0.926 0 0.6715897 -0.7409232 0 0.711041 0.7031505 0 0.2429344 -0.9700427 0 0.9052964 -0.4247804 0 -0.2400055 0.9707716 0 0.3397782 -0.9405056 0 -0.5141385 -0.8577073 0 -0.9707716 -0.2400052 0 0.9987975 -0.04902559 0 0.424782 0.9052957 0 0.005580127 0.9999845 0 0.189615 0.9818585 0 -0.9260008 -0.3775219 0 -0.9040072 0.4275173 0 -0.7388876 -0.6738288 0 -0.8345547 0.5509253 0 -0.9405062 -0.3397767 0 -0.9891707 0.1467694 0 -0.5956665 0.803232 0 -0.981859 0.1896128 0 -0.7409223 -0.6715908 0 -0.4890027 0.8722823 0 0.04600238 0.9989414 0 -0.7855846 0.6187545 0 0.9700426 0.2429348 0 0.9930174 0.1179685 0 0.8912032 0.4536042 0 -0.9217299 0.3878325 0 -0.872284 -0.4889999 0 0.988722 -0.1497626 0 0.4275163 0.9040077 0 -0.3397771 0.940506 0 0.7031522 -0.7110393 0 0.2710221 0.9625732 0 -0.3369338 0.9415284 0 -0.8032317 -0.5956667 0 0.9509224 -0.3094295 0 -0.9969513 -0.07802665 0 -0.1896148 -0.9818586 0 -0.2429357 0.9700424 0 0.6497777 0.7601243 0 -0.30943 -0.9509223 0 -0.6187527 -0.7855859 0 0.7409233 0.6715897 0 -0.1497641 -0.9887218 0 -0.1179703 0.9930172 0 -0.6715914 0.7409217 0 -0.8912029 -0.4536049 0 -0.2710232 -0.9625729 0 -0.9509214 0.3094329 0 0.5602043 -0.8283545 0 0.9405061 0.3397771 0 -0.2005619 0.9796811 0 0.9796815 0.20056 0 -0.711041 -0.7031505 0 -0.9999845 0.005580782 0 0.1467719 0.9891704 0 -0.07802551 0.9969514 0 0.9707721 0.2400032 0 -0.146777 -0.9891697 0 0.07802551 -0.9969514 0 0.2005615 -0.9796811 0 -0.8577068 0.5141394 0 -0.979681 -0.2005624 0 0.7601182 -0.6497849 0 0.8577053 -0.5141418 0 0.9260007 0.3775218 0 0.489003 -0.8722822 0 -0.4536028 0.891204 0 -0.9930172 -0.11797 0 -0.9987975 0.04902553 0 -0.9700422 -0.2429367 0 -0.04600346 -0.9989413 0 -0.6738286 0.7388878 0 0.149764 0.9887219 0 0.5932339 -0.8050302 0 0.8345587 -0.5509192 0 0.8561453 -0.5167354 0 0.9989413 -0.04600405 0 0.5167282 0.8561495 0 0.872282 0.4890033 0 0.5509232 0.8345561 0 0.3775228 -0.9260003 0 0.453604 -0.8912034 0 -0.9625733 0.2710215 0 -0.5167344 -0.8561459 0 -0.4247807 -0.9052963 0 -0.5932334 0.8050306 0 -0.4275155 -0.904008 0 0.904007 -0.4275178 0 - + @@ -126,7 +126,7 @@ - 0.8333331 0.2284705 0.6670259 0.2202934 0.6847816 0.2895487 0.4999998 0.380784 0.4962728 0.4565812 0.6418427 0.4561411 0.1666665 0.6854107 0.1703934 0.6096133 0.02482336 0.6100537 0.6575096 0.6247733 0.5037266 0.6096135 0.4999997 0.6854107 0.3491982 0.6096133 0.3336923 0.6772334 0.4999997 0.6854107 0.4999998 0.8377238 0.4962729 0.9135212 0.6418428 0.9130808 0.8333334 0.3807836 0.8370602 0.3049864 0.6914901 0.3054268 0.4999997 0.6854107 0.3336923 0.6772334 0.3514479 0.7464888 0.009156286 0.1367942 0.1629393 0.1519541 0.1666665 0.07615667 0.1666666 0.5330973 0.1629397 0.6088947 0.3085097 0.6084543 0.1666667 0.2284705 0.1703937 0.1526729 0.0248236 0.1531133 0.3174679 0.1519544 0.3329738 0.08433431 0.1666665 0.07615667 0.1666665 0.07615667 0.3329738 0.08433431 0.3152182 0.01507902 0.4999995 0.533097 0.5037266 0.4572998 0.3581564 0.4577399 0.9908405 0.4724596 0.8370586 0.4572998 0.8333316 0.533097 0.1666665 0.8377238 0.1703934 0.7619265 0.0248233 0.7623672 0.6825311 0.4573 0.6670255 0.5249196 0.8333316 0.533097 0.1666666 0.3807838 0.1629394 0.4565812 0.3085094 0.4561413 0.8333316 0.533097 0.6670255 0.5249196 0.6847811 0.5941753 0.4999998 0.07615667 0.5037268 3.5928e-4 0.3581568 7.99473e-4 0.9908428 0.0155183 0.8370597 3.5928e-4 0.8333329 0.07615667 0.8333331 0.2284705 0.8296062 0.3042677 0.9751763 0.3038272 0.6825312 3.59483e-4 0.6670258 0.06797969 0.8333329 0.07615667 0.4999997 0.6854107 0.4962725 0.761208 0.6418426 0.7607679 0.8333329 0.07615667 0.6670258 0.06797969 0.6847816 0.1372352 0.1666665 0.07615667 0.1703937 3.5928e-4 0.0248236 7.9927e-4 0.3424896 0.2891077 0.4962726 0.3042675 0.4999997 0.2284702 0.8333316 0.533097 0.8296046 0.6088943 0.9751736 0.6084539 0.6508013 0.3042676 0.666307 0.2366476 0.4999997 0.2284702 0.8333329 0.07615667 0.8296064 0.1519539 0.9751762 0.151513 0.4999997 0.2284702 0.5037266 0.1526729 0.3581568 0.153113 0.4999997 0.2284702 0.666307 0.2366476 0.6485514 0.167392 0.6825315 0.1526731 0.6670259 0.2202934 0.8333331 0.2284705 0.9908432 0.1678324 0.83706 0.1526732 0.8333331 0.2284705 0.4999998 0.07615667 0.6663073 0.08433413 0.6485515 0.0150786 0.6508013 0.1519539 0.6663073 0.08433413 0.4999998 0.07615667 0.3424896 0.136794 0.4962729 0.1519536 0.4999998 0.07615667 0.1666666 0.3807838 3.5928e-4 0.3726064 0.01811486 0.4418617 0.01586496 0.3049864 3.5928e-4 0.3726064 0.1666666 0.3807838 0.3241766 0.3201467 0.1703937 0.3049865 0.1666666 0.3807838 0.1666665 0.8377238 0.3329738 0.8459008 0.3152181 0.7766456 0.3174682 0.9135208 0.3329738 0.8459008 0.1666665 0.8377238 0.009156525 0.8983618 0.1629398 0.9135212 0.1666665 0.8377238 0.4999995 0.533097 0.6663069 0.5412747 0.6485512 0.4720189 0.6508011 0.6088945 0.6663069 0.5412747 0.4999995 0.533097 0.3424895 0.5937348 0.4962726 0.6088946 0.4999995 0.533097 0.1666667 0.2284705 0.332974 0.236648 0.3152183 0.1673923 0.3174682 0.3042678 0.332974 0.236648 0.1666667 0.2284705 0.009156405 0.2891078 0.1629396 0.3042678 0.1666667 0.2284705 0.1666666 0.5330973 3.5928e-4 0.5249199 0.0181148 0.5941755 0.01586484 0.4572998 3.5928e-4 0.5249199 0.1666666 0.5330973 0.3241766 0.4724598 0.1703935 0.4573 0.1666666 0.5330973 0.8333334 0.3807836 0.9996408 0.3889608 0.9818849 0.3197051 0.9841349 0.4565806 0.9996408 0.3889608 0.8333334 0.3807836 0.6758232 0.4414213 0.8296065 0.4565806 0.8333334 0.3807836 0.4999998 0.8377238 0.3336925 0.8295468 0.3514482 0.8988022 0.3491983 0.7619265 0.3336925 0.8295468 0.4999998 0.8377238 0.6575098 0.7770863 0.5037268 0.7619268 0.4999998 0.8377238 0.1666665 0.6854107 0.3329739 0.693588 0.3152182 0.6243325 0.3174681 0.7612078 0.3329739 0.693588 0.1666665 0.6854107 0.009156525 0.7460486 0.1629395 0.761208 0.1666665 0.6854107 0.4999998 0.380784 0.3336926 0.3726064 0.3514482 0.4418621 0.3491984 0.3049864 0.3336926 0.3726064 0.4999998 0.380784 0.6575098 0.3201462 0.5037268 0.3049868 0.4999998 0.380784 0.8333331 0.2284705 0.6847816 0.2895487 0.8296062 0.3042677 0.4999998 0.380784 0.6418427 0.4561411 0.666307 0.3889614 0.1666665 0.6854107 0.02482336 0.6100537 3.5928e-4 0.6772335 0.6575096 0.6247733 0.4999997 0.6854107 0.6663068 0.6935883 0.3491982 0.6096133 0.4999997 0.6854107 0.5037266 0.6096135 0.4999998 0.8377238 0.6418428 0.9130808 0.6663071 0.8459012 0.8333334 0.3807836 0.6914901 0.3054268 0.6670259 0.3726064 0.4999997 0.6854107 0.3514479 0.7464888 0.4962725 0.761208 0.009156286 0.1367942 0.1666665 0.07615667 3.5928e-4 0.06797891 0.1666666 0.5330973 0.3085097 0.6084543 0.3329737 0.5412747 0.1666667 0.2284705 0.0248236 0.1531133 3.5928e-4 0.2202929 0.3174679 0.1519544 0.1666665 0.07615667 0.1629393 0.1519541 0.1666665 0.07615667 0.3152182 0.01507902 0.1703937 3.5928e-4 0.4999995 0.533097 0.3581564 0.4577399 0.3336923 0.5249196 0.9908405 0.4724596 0.8333316 0.533097 0.9996377 0.5412743 0.1666665 0.8377238 0.0248233 0.7623672 3.5928e-4 0.8295466 0.6825311 0.4573 0.8333316 0.533097 0.8370586 0.4572998 0.1666666 0.3807838 0.3085094 0.4561413 0.3329738 0.3889614 0.8333316 0.533097 0.6847811 0.5941753 0.8296046 0.6088943 0.4999998 0.07615667 0.3581568 7.99473e-4 0.3336923 0.06797909 0.9908428 0.0155183 0.8333329 0.07615667 0.9996401 0.08433347 0.8333331 0.2284705 0.9751763 0.3038272 0.9996405 0.2366473 0.6825312 3.59483e-4 0.8333329 0.07615667 0.8370597 3.5928e-4 0.4999997 0.6854107 0.6418426 0.7607679 0.6663068 0.6935883 0.8333329 0.07615667 0.6847816 0.1372352 0.8296064 0.1519539 0.1666665 0.07615667 0.0248236 7.9927e-4 3.5928e-4 0.06797891 0.3424896 0.2891077 0.4999997 0.2284702 0.3336923 0.2202927 0.8333316 0.533097 0.9751736 0.6084539 0.9996377 0.5412743 0.6508013 0.3042676 0.4999997 0.2284702 0.4962726 0.3042675 0.8333329 0.07615667 0.9751762 0.151513 0.9996401 0.08433347 0.4999997 0.2284702 0.3581568 0.153113 0.3336923 0.2202927 0.4999997 0.2284702 0.6485514 0.167392 0.5037266 0.1526729 0.6825315 0.1526731 0.8333331 0.2284705 0.83706 0.1526732 0.9908432 0.1678324 0.8333331 0.2284705 0.9996405 0.2366473 0.4999998 0.07615667 0.6485515 0.0150786 0.5037268 3.5928e-4 0.6508013 0.1519539 0.4999998 0.07615667 0.4962729 0.1519536 0.3424896 0.136794 0.4999998 0.07615667 0.3336923 0.06797909 0.1666666 0.3807838 0.01811486 0.4418617 0.1629394 0.4565812 0.01586496 0.3049864 0.1666666 0.3807838 0.1703937 0.3049865 0.3241766 0.3201467 0.1666666 0.3807838 0.3329738 0.3889614 0.1666665 0.8377238 0.3152181 0.7766456 0.1703934 0.7619265 0.3174682 0.9135208 0.1666665 0.8377238 0.1629398 0.9135212 0.009156525 0.8983618 0.1666665 0.8377238 3.5928e-4 0.8295466 0.4999995 0.533097 0.6485512 0.4720189 0.5037266 0.4572998 0.6508011 0.6088945 0.4999995 0.533097 0.4962726 0.6088946 0.3424895 0.5937348 0.4999995 0.533097 0.3336923 0.5249196 0.1666667 0.2284705 0.3152183 0.1673923 0.1703937 0.1526729 0.3174682 0.3042678 0.1666667 0.2284705 0.1629396 0.3042678 0.009156405 0.2891078 0.1666667 0.2284705 3.5928e-4 0.2202929 0.1666666 0.5330973 0.0181148 0.5941755 0.1629397 0.6088947 0.01586484 0.4572998 0.1666666 0.5330973 0.1703935 0.4573 0.3241766 0.4724598 0.1666666 0.5330973 0.3329737 0.5412747 0.8333334 0.3807836 0.9818849 0.3197051 0.8370602 0.3049864 0.9841349 0.4565806 0.8333334 0.3807836 0.8296065 0.4565806 0.6758232 0.4414213 0.8333334 0.3807836 0.6670259 0.3726064 0.4999998 0.8377238 0.3514482 0.8988022 0.4962729 0.9135212 0.3491983 0.7619265 0.4999998 0.8377238 0.5037268 0.7619268 0.6575098 0.7770863 0.4999998 0.8377238 0.6663071 0.8459012 0.1666665 0.6854107 0.3152182 0.6243325 0.1703934 0.6096133 0.3174681 0.7612078 0.1666665 0.6854107 0.1629395 0.761208 0.009156525 0.7460486 0.1666665 0.6854107 3.5928e-4 0.6772335 0.4999998 0.380784 0.3514482 0.4418621 0.4962728 0.4565812 0.3491984 0.3049864 0.4999998 0.380784 0.5037268 0.3049868 0.6575098 0.3201462 0.4999998 0.380784 0.666307 0.3889614 0.8333331 0.2284705 0.6670259 0.2202934 0.6847816 0.2895487 0.4999998 0.380784 0.4962728 0.4565812 0.6418427 0.4561411 0.1666665 0.6854107 0.1703934 0.6096133 0.02482336 0.6100537 0.6575096 0.6247733 0.5037266 0.6096135 0.4999997 0.6854107 0.3491982 0.6096133 0.3336923 0.6772334 0.4999997 0.6854107 0.4999998 0.8377238 0.4962729 0.9135212 0.6418428 0.9130808 0.8333334 0.3807836 0.8370602 0.3049864 0.6914901 0.3054268 0.4999997 0.6854107 0.3336923 0.6772334 0.3514479 0.7464888 0.009156286 0.1367942 0.1629393 0.1519541 0.1666665 0.07615667 0.1666666 0.5330973 0.1629397 0.6088947 0.3085097 0.6084543 0.1666667 0.2284705 0.1703937 0.1526729 0.0248236 0.1531133 0.3174679 0.1519544 0.3329738 0.08433431 0.1666665 0.07615667 0.1666665 0.07615667 0.3329738 0.08433431 0.3152182 0.01507902 0.4999995 0.533097 0.5037266 0.4572998 0.3581564 0.4577399 0.9908405 0.4724596 0.8370586 0.4572998 0.8333316 0.533097 0.1666665 0.8377238 0.1703934 0.7619265 0.0248233 0.7623672 0.6825311 0.4573 0.6670255 0.5249196 0.8333316 0.533097 0.1666666 0.3807838 0.1629394 0.4565812 0.3085094 0.4561413 0.8333316 0.533097 0.6670255 0.5249196 0.6847811 0.5941753 0.4999998 0.07615667 0.5037268 3.5928e-4 0.3581568 7.99473e-4 0.9908428 0.0155183 0.8370597 3.5928e-4 0.8333329 0.07615667 0.8333331 0.2284705 0.8296062 0.3042677 0.9751763 0.3038272 0.6825312 3.59483e-4 0.6670258 0.06797969 0.8333329 0.07615667 0.4999997 0.6854107 0.4962725 0.761208 0.6418426 0.7607679 0.8333329 0.07615667 0.6670258 0.06797969 0.6847816 0.1372352 0.1666665 0.07615667 0.1703937 3.5928e-4 0.0248236 7.9927e-4 0.3424896 0.2891077 0.4962726 0.3042675 0.4999997 0.2284702 0.8333316 0.533097 0.8296046 0.6088943 0.9751736 0.6084539 0.6508013 0.3042676 0.666307 0.2366476 0.4999997 0.2284702 0.8333329 0.07615667 0.8296064 0.1519539 0.9751762 0.151513 0.4999997 0.2284702 0.5037266 0.1526729 0.3581568 0.153113 0.4999997 0.2284702 0.666307 0.2366476 0.6485514 0.167392 0.6825315 0.1526731 0.6670259 0.2202934 0.8333331 0.2284705 0.9908432 0.1678324 0.83706 0.1526732 0.8333331 0.2284705 0.4999998 0.07615667 0.6663073 0.08433413 0.6485515 0.0150786 0.6508013 0.1519539 0.6663073 0.08433413 0.4999998 0.07615667 0.3424896 0.136794 0.4962729 0.1519536 0.4999998 0.07615667 0.1666666 0.3807838 3.5928e-4 0.3726064 0.01811486 0.4418617 0.01586496 0.3049864 3.5928e-4 0.3726064 0.1666666 0.3807838 0.3241766 0.3201467 0.1703937 0.3049865 0.1666666 0.3807838 0.1666665 0.8377238 0.3329738 0.8459008 0.3152181 0.7766456 0.3174682 0.9135208 0.3329738 0.8459008 0.1666665 0.8377238 0.009156525 0.8983618 0.1629398 0.9135212 0.1666665 0.8377238 0.4999995 0.533097 0.6663069 0.5412747 0.6485512 0.4720189 0.6508011 0.6088945 0.6663069 0.5412747 0.4999995 0.533097 0.3424895 0.5937348 0.4962726 0.6088946 0.4999995 0.533097 0.1666667 0.2284705 0.332974 0.236648 0.3152183 0.1673923 0.3174682 0.3042678 0.332974 0.236648 0.1666667 0.2284705 0.009156405 0.2891078 0.1629396 0.3042678 0.1666667 0.2284705 0.1666666 0.5330973 3.5928e-4 0.5249199 0.0181148 0.5941755 0.01586484 0.4572998 3.5928e-4 0.5249199 0.1666666 0.5330973 0.3241766 0.4724598 0.1703935 0.4573 0.1666666 0.5330973 0.8333334 0.3807836 0.9996408 0.3889608 0.9818849 0.3197051 0.9841349 0.4565806 0.9996408 0.3889608 0.8333334 0.3807836 0.6758232 0.4414213 0.8296065 0.4565806 0.8333334 0.3807836 0.4999998 0.8377238 0.3336925 0.8295468 0.3514482 0.8988022 0.3491983 0.7619265 0.3336925 0.8295468 0.4999998 0.8377238 0.6575098 0.7770863 0.5037268 0.7619268 0.4999998 0.8377238 0.1666665 0.6854107 0.3329739 0.693588 0.3152182 0.6243325 0.3174681 0.7612078 0.3329739 0.693588 0.1666665 0.6854107 0.009156525 0.7460486 0.1629395 0.761208 0.1666665 0.6854107 0.4999998 0.380784 0.3336926 0.3726064 0.3514482 0.4418621 0.3491984 0.3049864 0.3336926 0.3726064 0.4999998 0.380784 0.6575098 0.3201462 0.5037268 0.3049868 0.4999998 0.380784 0.8333331 0.2284705 0.6847816 0.2895487 0.8296062 0.3042677 0.4999998 0.380784 0.6418427 0.4561411 0.666307 0.3889614 0.1666665 0.6854107 0.02482336 0.6100537 3.5928e-4 0.6772335 0.6575096 0.6247733 0.4999997 0.6854107 0.6663068 0.6935883 0.3491982 0.6096133 0.4999997 0.6854107 0.5037266 0.6096135 0.4999998 0.8377238 0.6418428 0.9130808 0.6663071 0.8459012 0.8333334 0.3807836 0.6914901 0.3054268 0.6670259 0.3726064 0.4999997 0.6854107 0.3514479 0.7464888 0.4962725 0.761208 0.009156286 0.1367942 0.1666665 0.07615667 3.5928e-4 0.06797891 0.1666666 0.5330973 0.3085097 0.6084543 0.3329737 0.5412747 0.1666667 0.2284705 0.0248236 0.1531133 3.5928e-4 0.2202929 0.3174679 0.1519544 0.1666665 0.07615667 0.1629393 0.1519541 0.1666665 0.07615667 0.3152182 0.01507902 0.1703937 3.5928e-4 0.4999995 0.533097 0.3581564 0.4577399 0.3336923 0.5249196 0.9908405 0.4724596 0.8333316 0.533097 0.9996377 0.5412743 0.1666665 0.8377238 0.0248233 0.7623672 3.5928e-4 0.8295466 0.6825311 0.4573 0.8333316 0.533097 0.8370586 0.4572998 0.1666666 0.3807838 0.3085094 0.4561413 0.3329738 0.3889614 0.8333316 0.533097 0.6847811 0.5941753 0.8296046 0.6088943 0.4999998 0.07615667 0.3581568 7.99473e-4 0.3336923 0.06797909 0.9908428 0.0155183 0.8333329 0.07615667 0.9996401 0.08433347 0.8333331 0.2284705 0.9751763 0.3038272 0.9996405 0.2366473 0.6825312 3.59483e-4 0.8333329 0.07615667 0.8370597 3.5928e-4 0.4999997 0.6854107 0.6418426 0.7607679 0.6663068 0.6935883 0.8333329 0.07615667 0.6847816 0.1372352 0.8296064 0.1519539 0.1666665 0.07615667 0.0248236 7.9927e-4 3.5928e-4 0.06797891 0.3424896 0.2891077 0.4999997 0.2284702 0.3336923 0.2202927 0.8333316 0.533097 0.9751736 0.6084539 0.9996377 0.5412743 0.6508013 0.3042676 0.4999997 0.2284702 0.4962726 0.3042675 0.8333329 0.07615667 0.9751762 0.151513 0.9996401 0.08433347 0.4999997 0.2284702 0.3581568 0.153113 0.3336923 0.2202927 0.4999997 0.2284702 0.6485514 0.167392 0.5037266 0.1526729 0.6825315 0.1526731 0.8333331 0.2284705 0.83706 0.1526732 0.9908432 0.1678324 0.8333331 0.2284705 0.9996405 0.2366473 0.4999998 0.07615667 0.6485515 0.0150786 0.5037268 3.5928e-4 0.6508013 0.1519539 0.4999998 0.07615667 0.4962729 0.1519536 0.3424896 0.136794 0.4999998 0.07615667 0.3336923 0.06797909 0.1666666 0.3807838 0.01811486 0.4418617 0.1629394 0.4565812 0.01586496 0.3049864 0.1666666 0.3807838 0.1703937 0.3049865 0.3241766 0.3201467 0.1666666 0.3807838 0.3329738 0.3889614 0.1666665 0.8377238 0.3152181 0.7766456 0.1703934 0.7619265 0.3174682 0.9135208 0.1666665 0.8377238 0.1629398 0.9135212 0.009156525 0.8983618 0.1666665 0.8377238 3.5928e-4 0.8295466 0.4999995 0.533097 0.6485512 0.4720189 0.5037266 0.4572998 0.6508011 0.6088945 0.4999995 0.533097 0.4962726 0.6088946 0.3424895 0.5937348 0.4999995 0.533097 0.3336923 0.5249196 0.1666667 0.2284705 0.3152183 0.1673923 0.1703937 0.1526729 0.3174682 0.3042678 0.1666667 0.2284705 0.1629396 0.3042678 0.009156405 0.2891078 0.1666667 0.2284705 3.5928e-4 0.2202929 0.1666666 0.5330973 0.0181148 0.5941755 0.1629397 0.6088947 0.01586484 0.4572998 0.1666666 0.5330973 0.1703935 0.4573 0.3241766 0.4724598 0.1666666 0.5330973 0.3329737 0.5412747 0.8333334 0.3807836 0.9818849 0.3197051 0.8370602 0.3049864 0.9841349 0.4565806 0.8333334 0.3807836 0.8296065 0.4565806 0.6758232 0.4414213 0.8333334 0.3807836 0.6670259 0.3726064 0.4999998 0.8377238 0.3514482 0.8988022 0.4962729 0.9135212 0.3491983 0.7619265 0.4999998 0.8377238 0.5037268 0.7619268 0.6575098 0.7770863 0.4999998 0.8377238 0.6663071 0.8459012 0.1666665 0.6854107 0.3152182 0.6243325 0.1703934 0.6096133 0.3174681 0.7612078 0.1666665 0.6854107 0.1629395 0.761208 0.009156525 0.7460486 0.1666665 0.6854107 3.5928e-4 0.6772335 0.4999998 0.380784 0.3514482 0.4418621 0.4962728 0.4565812 0.3491984 0.3049864 0.4999998 0.380784 0.5037268 0.3049868 0.6575098 0.3201462 0.4999998 0.380784 0.666307 0.3889614 0.6670259 0.2202934 0.6847816 0.2895487 0.6847816 0.2895487 0.3152182 0.01507902 0.1703937 3.5928e-4 0.1703937 3.5928e-4 0.0181148 0.5941755 0.1629397 0.6088947 0.1629397 0.6088947 0.8370586 0.4572998 0.6825311 0.4573 0.6825311 0.4573 0.3241766 0.4724598 0.1703935 0.4573 0.1703935 0.4573 0.8296064 0.1519539 0.9751762 0.151513 0.9751762 0.151513 0.5037266 0.1526729 0.3581568 0.153113 0.3581568 0.153113 3.5928e-4 0.6772335 0.009156525 0.7460486 0.009156525 0.7460486 0.4962728 0.4565812 0.6418427 0.4561411 0.6418427 0.4561411 3.5928e-4 0.3726064 0.01811486 0.4418617 0.01811486 0.4418617 0.6825311 0.4573 0.6670255 0.5249196 0.6670255 0.5249196 0.6914901 0.3054268 0.6670259 0.3726064 0.6670259 0.3726064 0.6847816 0.1372352 0.8296064 0.1519539 0.8296064 0.1519539 0.3336923 0.06797909 0.3424896 0.136794 0.3424896 0.136794 0.6825315 0.1526731 0.6670259 0.2202934 0.6670259 0.2202934 0.3336925 0.8295468 0.3514482 0.8988022 0.3514482 0.8988022 0.3581568 7.99473e-4 0.3336923 0.06797909 0.3336923 0.06797909 0.1703937 0.3049865 0.01586496 0.3049864 0.01586496 0.3049864 0.6575096 0.6247733 0.5037266 0.6096135 0.5037266 0.6096135 0.6418427 0.4561411 0.666307 0.3889614 0.666307 0.3889614 0.1629396 0.3042678 0.3174682 0.3042678 0.3174682 0.3042678 0.666307 0.2366476 0.6485514 0.167392 0.6485514 0.167392 0.6575098 0.3201462 0.5037268 0.3049868 0.5037268 0.3049868 0.9751763 0.3038272 0.9996405 0.2366473 0.9996405 0.2366473 0.6418428 0.9130808 0.6663071 0.8459012 0.6663071 0.8459012 0.0248233 0.7623672 3.5928e-4 0.8295466 3.5928e-4 0.8295466 0.5037266 0.6096135 0.3491982 0.6096133 0.3491982 0.6096133 0.02482336 0.6100537 3.5928e-4 0.6772335 3.5928e-4 0.6772335 0.3241766 0.3201467 0.1703937 0.3049865 0.1703937 0.3049865 0.1703934 0.6096133 0.02482336 0.6100537 0.02482336 0.6100537 0.01811486 0.4418617 0.1629394 0.4565812 0.1629394 0.4565812 0.1703937 3.5928e-4 0.0248236 7.9927e-4 0.0248236 7.9927e-4 3.5928e-4 0.8295466 0.009156525 0.8983618 0.009156525 0.8983618 0.9908432 0.1678324 0.83706 0.1526732 0.83706 0.1526732 0.3514482 0.8988022 0.4962729 0.9135212 0.4962729 0.9135212 0.5037268 0.3049868 0.3491984 0.3049864 0.3491984 0.3049864 0.8296062 0.3042677 0.9751763 0.3038272 0.9751763 0.3038272 0.0248236 7.9927e-4 3.5928e-4 0.06797891 3.5928e-4 0.06797891 0.0248236 0.1531133 3.5928e-4 0.2202929 3.5928e-4 0.2202929 0.6670258 0.06797969 0.6847816 0.1372352 0.6847816 0.1372352 0.6418426 0.7607679 0.6663068 0.6935883 0.6663068 0.6935883 0.1629395 0.761208 0.3174681 0.7612078 0.3174681 0.7612078 0.1629397 0.6088947 0.3085097 0.6084543 0.3085097 0.6084543 3.5928e-4 0.5249199 0.0181148 0.5941755 0.0181148 0.5941755 0.4962729 0.9135212 0.6418428 0.9130808 0.6418428 0.9130808 0.6758232 0.4414213 0.8296065 0.4565806 0.8296065 0.4565806 0.3424896 0.2891077 0.4962726 0.3042675 0.4962726 0.3042675 0.6663069 0.5412747 0.6485512 0.4720189 0.6485512 0.4720189 0.1629398 0.9135212 0.3174682 0.9135208 0.3174682 0.9135208 0.01586484 0.4572998 3.5928e-4 0.5249199 3.5928e-4 0.5249199 0.8296046 0.6088943 0.9751736 0.6084539 0.9751736 0.6084539 0.6508011 0.6088945 0.6663069 0.5412747 0.6663069 0.5412747 0.6575098 0.7770863 0.5037268 0.7619268 0.5037268 0.7619268 0.01586496 0.3049864 3.5928e-4 0.3726064 3.5928e-4 0.3726064 3.5928e-4 0.06797891 0.009156286 0.1367942 0.009156286 0.1367942 0.9751736 0.6084539 0.9996377 0.5412743 0.9996377 0.5412743 0.6508013 0.3042676 0.666307 0.2366476 0.666307 0.2366476 0.9818849 0.3197051 0.8370602 0.3049864 0.8370602 0.3049864 0.4962726 0.6088946 0.6508011 0.6088945 0.6508011 0.6088945 0.1629394 0.4565812 0.3085094 0.4561413 0.3085094 0.4561413 0.3581564 0.4577399 0.3336923 0.5249196 0.3336923 0.5249196 0.3491984 0.3049864 0.3336926 0.3726064 0.3336926 0.3726064 0.3152181 0.7766456 0.1703934 0.7619265 0.1703934 0.7619265 0.1629393 0.1519541 0.3174679 0.1519544 0.3174679 0.1519544 0.009156525 0.8983618 0.1629398 0.9135212 0.1629398 0.9135212 0.3336923 0.5249196 0.3424895 0.5937348 0.3424895 0.5937348 0.3329738 0.08433431 0.3152182 0.01507902 0.3152182 0.01507902 0.9996377 0.5412743 0.9908405 0.4724596 0.9908405 0.4724596 0.6825312 3.59483e-4 0.6670258 0.06797969 0.6670258 0.06797969 0.3329739 0.693588 0.3152182 0.6243325 0.3152182 0.6243325 0.009156286 0.1367942 0.1629393 0.1519541 0.1629393 0.1519541 0.3336923 0.2202927 0.3424896 0.2891077 0.3424896 0.2891077 0.5037268 0.7619268 0.3491983 0.7619265 0.3491983 0.7619265 0.9996401 0.08433347 0.9908428 0.0155183 0.9908428 0.0155183 0.3174681 0.7612078 0.3329739 0.693588 0.3329739 0.693588 0.1703935 0.4573 0.01586484 0.4572998 0.01586484 0.4572998 0.4962729 0.1519536 0.6508013 0.1519539 0.6508013 0.1519539 0.6485515 0.0150786 0.5037268 3.5928e-4 0.5037268 3.5928e-4 0.1703934 0.7619265 0.0248233 0.7623672 0.0248233 0.7623672 0.3491983 0.7619265 0.3336925 0.8295468 0.3336925 0.8295468 0.4962726 0.3042675 0.6508013 0.3042676 0.6508013 0.3042676 0.3424895 0.5937348 0.4962726 0.6088946 0.4962726 0.6088946 0.3329738 0.3889614 0.3241766 0.3201467 0.3241766 0.3201467 0.9841349 0.4565806 0.9996408 0.3889608 0.9996408 0.3889608 0.9996405 0.2366473 0.9908432 0.1678324 0.9908432 0.1678324 0.332974 0.236648 0.3152183 0.1673923 0.3152183 0.1673923 0.1703937 0.1526729 0.0248236 0.1531133 0.0248236 0.1531133 0.3336926 0.3726064 0.3514482 0.4418621 0.3514482 0.4418621 0.6670255 0.5249196 0.6847811 0.5941753 0.6847811 0.5941753 0.3174682 0.3042678 0.332974 0.236648 0.332974 0.236648 0.6663068 0.6935883 0.6575096 0.6247733 0.6575096 0.6247733 0.9751762 0.151513 0.9996401 0.08433347 0.9996401 0.08433347 0.3085094 0.4561413 0.3329738 0.3889614 0.3329738 0.3889614 0.3424896 0.136794 0.4962729 0.1519536 0.4962729 0.1519536 0.6670259 0.3726064 0.6758232 0.4414213 0.6758232 0.4414213 0.3152183 0.1673923 0.1703937 0.1526729 0.1703937 0.1526729 0.9908405 0.4724596 0.8370586 0.4572998 0.8370586 0.4572998 0.666307 0.3889614 0.6575098 0.3201462 0.6575098 0.3201462 0.9996408 0.3889608 0.9818849 0.3197051 0.9818849 0.3197051 0.009156525 0.7460486 0.1629395 0.761208 0.1629395 0.761208 0.6663073 0.08433413 0.6485515 0.0150786 0.6485515 0.0150786 0.3514482 0.4418621 0.4962728 0.4565812 0.4962728 0.4565812 0.3329737 0.5412747 0.3241766 0.4724598 0.3241766 0.4724598 0.9908428 0.0155183 0.8370597 3.5928e-4 0.8370597 3.5928e-4 0.3581568 0.153113 0.3336923 0.2202927 0.3336923 0.2202927 0.3174682 0.9135208 0.3329738 0.8459008 0.3329738 0.8459008 3.5928e-4 0.2202929 0.009156405 0.2891078 0.009156405 0.2891078 0.3174679 0.1519544 0.3329738 0.08433431 0.3329738 0.08433431 0.8296065 0.4565806 0.9841349 0.4565806 0.9841349 0.4565806 0.009156405 0.2891078 0.1629396 0.3042678 0.1629396 0.3042678 0.5037268 3.5928e-4 0.3581568 7.99473e-4 0.3581568 7.99473e-4 0.4962725 0.761208 0.6418426 0.7607679 0.6418426 0.7607679 0.6847811 0.5941753 0.8296046 0.6088943 0.8296046 0.6088943 0.6485514 0.167392 0.5037266 0.1526729 0.5037266 0.1526729 0.3329738 0.8459008 0.3152181 0.7766456 0.3152181 0.7766456 0.3152182 0.6243325 0.1703934 0.6096133 0.1703934 0.6096133 0.8370602 0.3049864 0.6914901 0.3054268 0.6914901 0.3054268 0.6847816 0.2895487 0.8296062 0.3042677 0.8296062 0.3042677 0.3491982 0.6096133 0.3336923 0.6772334 0.3336923 0.6772334 0.3336923 0.6772334 0.3514479 0.7464888 0.3514479 0.7464888 0.3085097 0.6084543 0.3329737 0.5412747 0.3329737 0.5412747 0.6663071 0.8459012 0.6575098 0.7770863 0.6575098 0.7770863 0.6508013 0.1519539 0.6663073 0.08433413 0.6663073 0.08433413 0.6485512 0.4720189 0.5037266 0.4572998 0.5037266 0.4572998 0.5037266 0.4572998 0.3581564 0.4577399 0.3581564 0.4577399 0.3514479 0.7464888 0.4962725 0.761208 0.4962725 0.761208 0.83706 0.1526732 0.6825315 0.1526731 0.6825315 0.1526731 0.8370597 3.5928e-4 0.6825312 3.59483e-4 0.6825312 3.59483e-4 0.6670259 0.2202934 0.6670259 0.2202934 0.6847816 0.2895487 0.3152182 0.01507902 0.3152182 0.01507902 0.1703937 3.5928e-4 0.0181148 0.5941755 0.0181148 0.5941755 0.1629397 0.6088947 0.8370586 0.4572998 0.8370586 0.4572998 0.6825311 0.4573 0.3241766 0.4724598 0.3241766 0.4724598 0.1703935 0.4573 0.8296064 0.1519539 0.8296064 0.1519539 0.9751762 0.151513 0.5037266 0.1526729 0.5037266 0.1526729 0.3581568 0.153113 3.5928e-4 0.6772335 3.5928e-4 0.6772335 0.009156525 0.7460486 0.4962728 0.4565812 0.4962728 0.4565812 0.6418427 0.4561411 3.5928e-4 0.3726064 3.5928e-4 0.3726064 0.01811486 0.4418617 0.6825311 0.4573 0.6825311 0.4573 0.6670255 0.5249196 0.6914901 0.3054268 0.6914901 0.3054268 0.6670259 0.3726064 0.6847816 0.1372352 0.6847816 0.1372352 0.8296064 0.1519539 0.3336923 0.06797909 0.3336923 0.06797909 0.3424896 0.136794 0.6825315 0.1526731 0.6825315 0.1526731 0.6670259 0.2202934 0.3336925 0.8295468 0.3336925 0.8295468 0.3514482 0.8988022 0.3581568 7.99473e-4 0.3581568 7.99473e-4 0.3336923 0.06797909 0.1703937 0.3049865 0.1703937 0.3049865 0.01586496 0.3049864 0.6575096 0.6247733 0.6575096 0.6247733 0.5037266 0.6096135 0.6418427 0.4561411 0.6418427 0.4561411 0.666307 0.3889614 0.1629396 0.3042678 0.1629396 0.3042678 0.3174682 0.3042678 0.666307 0.2366476 0.666307 0.2366476 0.6485514 0.167392 0.6575098 0.3201462 0.6575098 0.3201462 0.5037268 0.3049868 0.9751763 0.3038272 0.9751763 0.3038272 0.9996405 0.2366473 0.6418428 0.9130808 0.6418428 0.9130808 0.6663071 0.8459012 0.0248233 0.7623672 0.0248233 0.7623672 3.5928e-4 0.8295466 0.5037266 0.6096135 0.5037266 0.6096135 0.3491982 0.6096133 0.02482336 0.6100537 0.02482336 0.6100537 3.5928e-4 0.6772335 0.3241766 0.3201467 0.3241766 0.3201467 0.1703937 0.3049865 0.1703934 0.6096133 0.1703934 0.6096133 0.02482336 0.6100537 0.01811486 0.4418617 0.01811486 0.4418617 0.1629394 0.4565812 0.1703937 3.5928e-4 0.1703937 3.5928e-4 0.0248236 7.9927e-4 3.5928e-4 0.8295466 3.5928e-4 0.8295466 0.009156525 0.8983618 0.9908432 0.1678324 0.9908432 0.1678324 0.83706 0.1526732 0.3514482 0.8988022 0.3514482 0.8988022 0.4962729 0.9135212 0.5037268 0.3049868 0.5037268 0.3049868 0.3491984 0.3049864 0.8296062 0.3042677 0.8296062 0.3042677 0.9751763 0.3038272 0.0248236 7.9927e-4 0.0248236 7.9927e-4 3.5928e-4 0.06797891 0.0248236 0.1531133 0.0248236 0.1531133 3.5928e-4 0.2202929 0.6670258 0.06797969 0.6670258 0.06797969 0.6847816 0.1372352 0.6418426 0.7607679 0.6418426 0.7607679 0.6663068 0.6935883 0.1629395 0.761208 0.1629395 0.761208 0.3174681 0.7612078 0.1629397 0.6088947 0.1629397 0.6088947 0.3085097 0.6084543 3.5928e-4 0.5249199 3.5928e-4 0.5249199 0.0181148 0.5941755 0.4962729 0.9135212 0.4962729 0.9135212 0.6418428 0.9130808 0.6758232 0.4414213 0.6758232 0.4414213 0.8296065 0.4565806 0.3424896 0.2891077 0.3424896 0.2891077 0.4962726 0.3042675 0.6663069 0.5412747 0.6663069 0.5412747 0.6485512 0.4720189 0.1629398 0.9135212 0.1629398 0.9135212 0.3174682 0.9135208 0.01586484 0.4572998 0.01586484 0.4572998 3.5928e-4 0.5249199 0.8296046 0.6088943 0.8296046 0.6088943 0.9751736 0.6084539 0.6508011 0.6088945 0.6508011 0.6088945 0.6663069 0.5412747 0.6575098 0.7770863 0.6575098 0.7770863 0.5037268 0.7619268 0.01586496 0.3049864 0.01586496 0.3049864 3.5928e-4 0.3726064 3.5928e-4 0.06797891 3.5928e-4 0.06797891 0.009156286 0.1367942 0.9751736 0.6084539 0.9751736 0.6084539 0.9996377 0.5412743 0.6508013 0.3042676 0.6508013 0.3042676 0.666307 0.2366476 0.9818849 0.3197051 0.9818849 0.3197051 0.8370602 0.3049864 0.4962726 0.6088946 0.4962726 0.6088946 0.6508011 0.6088945 0.1629394 0.4565812 0.1629394 0.4565812 0.3085094 0.4561413 0.3581564 0.4577399 0.3581564 0.4577399 0.3336923 0.5249196 0.3491984 0.3049864 0.3491984 0.3049864 0.3336926 0.3726064 0.3152181 0.7766456 0.3152181 0.7766456 0.1703934 0.7619265 0.1629393 0.1519541 0.1629393 0.1519541 0.3174679 0.1519544 0.009156525 0.8983618 0.009156525 0.8983618 0.1629398 0.9135212 0.3336923 0.5249196 0.3336923 0.5249196 0.3424895 0.5937348 0.3329738 0.08433431 0.3329738 0.08433431 0.3152182 0.01507902 0.9996377 0.5412743 0.9996377 0.5412743 0.9908405 0.4724596 0.6825312 3.59483e-4 0.6825312 3.59483e-4 0.6670258 0.06797969 0.3329739 0.693588 0.3329739 0.693588 0.3152182 0.6243325 0.009156286 0.1367942 0.009156286 0.1367942 0.1629393 0.1519541 0.3336923 0.2202927 0.3336923 0.2202927 0.3424896 0.2891077 0.5037268 0.7619268 0.5037268 0.7619268 0.3491983 0.7619265 0.9996401 0.08433347 0.9996401 0.08433347 0.9908428 0.0155183 0.3174681 0.7612078 0.3174681 0.7612078 0.3329739 0.693588 0.1703935 0.4573 0.1703935 0.4573 0.01586484 0.4572998 0.4962729 0.1519536 0.4962729 0.1519536 0.6508013 0.1519539 0.6485515 0.0150786 0.6485515 0.0150786 0.5037268 3.5928e-4 0.1703934 0.7619265 0.1703934 0.7619265 0.0248233 0.7623672 0.3491983 0.7619265 0.3491983 0.7619265 0.3336925 0.8295468 0.4962726 0.3042675 0.4962726 0.3042675 0.6508013 0.3042676 0.3424895 0.5937348 0.3424895 0.5937348 0.4962726 0.6088946 0.3329738 0.3889614 0.3329738 0.3889614 0.3241766 0.3201467 0.9841349 0.4565806 0.9841349 0.4565806 0.9996408 0.3889608 0.9996405 0.2366473 0.9996405 0.2366473 0.9908432 0.1678324 0.332974 0.236648 0.332974 0.236648 0.3152183 0.1673923 0.1703937 0.1526729 0.1703937 0.1526729 0.0248236 0.1531133 0.3336926 0.3726064 0.3336926 0.3726064 0.3514482 0.4418621 0.6670255 0.5249196 0.6670255 0.5249196 0.6847811 0.5941753 0.3174682 0.3042678 0.3174682 0.3042678 0.332974 0.236648 0.6663068 0.6935883 0.6663068 0.6935883 0.6575096 0.6247733 0.9751762 0.151513 0.9751762 0.151513 0.9996401 0.08433347 0.3085094 0.4561413 0.3085094 0.4561413 0.3329738 0.3889614 0.3424896 0.136794 0.3424896 0.136794 0.4962729 0.1519536 0.6670259 0.3726064 0.6670259 0.3726064 0.6758232 0.4414213 0.3152183 0.1673923 0.3152183 0.1673923 0.1703937 0.1526729 0.9908405 0.4724596 0.9908405 0.4724596 0.8370586 0.4572998 0.666307 0.3889614 0.666307 0.3889614 0.6575098 0.3201462 0.9996408 0.3889608 0.9996408 0.3889608 0.9818849 0.3197051 0.009156525 0.7460486 0.009156525 0.7460486 0.1629395 0.761208 0.6663073 0.08433413 0.6663073 0.08433413 0.6485515 0.0150786 0.3514482 0.4418621 0.3514482 0.4418621 0.4962728 0.4565812 0.3329737 0.5412747 0.3329737 0.5412747 0.3241766 0.4724598 0.9908428 0.0155183 0.9908428 0.0155183 0.8370597 3.5928e-4 0.3581568 0.153113 0.3581568 0.153113 0.3336923 0.2202927 0.3174682 0.9135208 0.3174682 0.9135208 0.3329738 0.8459008 3.5928e-4 0.2202929 3.5928e-4 0.2202929 0.009156405 0.2891078 0.3174679 0.1519544 0.3174679 0.1519544 0.3329738 0.08433431 0.8296065 0.4565806 0.8296065 0.4565806 0.9841349 0.4565806 0.009156405 0.2891078 0.009156405 0.2891078 0.1629396 0.3042678 0.5037268 3.5928e-4 0.5037268 3.5928e-4 0.3581568 7.99473e-4 0.4962725 0.761208 0.4962725 0.761208 0.6418426 0.7607679 0.6847811 0.5941753 0.6847811 0.5941753 0.8296046 0.6088943 0.6485514 0.167392 0.6485514 0.167392 0.5037266 0.1526729 0.3329738 0.8459008 0.3329738 0.8459008 0.3152181 0.7766456 0.3152182 0.6243325 0.3152182 0.6243325 0.1703934 0.6096133 0.8370602 0.3049864 0.8370602 0.3049864 0.6914901 0.3054268 0.6847816 0.2895487 0.6847816 0.2895487 0.8296062 0.3042677 0.3491982 0.6096133 0.3491982 0.6096133 0.3336923 0.6772334 0.3336923 0.6772334 0.3336923 0.6772334 0.3514479 0.7464888 0.3085097 0.6084543 0.3085097 0.6084543 0.3329737 0.5412747 0.6663071 0.8459012 0.6663071 0.8459012 0.6575098 0.7770863 0.6508013 0.1519539 0.6508013 0.1519539 0.6663073 0.08433413 0.6485512 0.4720189 0.6485512 0.4720189 0.5037266 0.4572998 0.5037266 0.4572998 0.5037266 0.4572998 0.3581564 0.4577399 0.3514479 0.7464888 0.3514479 0.7464888 0.4962725 0.761208 0.83706 0.1526732 0.83706 0.1526732 0.6825315 0.1526731 0.8370597 3.5928e-4 0.8370597 3.5928e-4 0.6825312 3.59483e-4 + 0.8333331 0.2284705 0.6670259 0.2202934 0.6847816 0.2895487 0.4999998 0.380784 0.4962728 0.4565812 0.6418427 0.4561411 0.1666665 0.6854107 0.1703934 0.6096133 0.0248233 0.6100537 0.6575096 0.6247733 0.5037266 0.6096135 0.4999997 0.6854107 0.3491982 0.6096133 0.3336923 0.6772334 0.4999997 0.6854107 0.4999998 0.8377238 0.4962729 0.9135212 0.6418428 0.9130808 0.8333334 0.3807836 0.8370602 0.3049864 0.6914901 0.3054268 0.4999997 0.6854107 0.3336923 0.6772334 0.3514479 0.7464888 0.009156286 0.1367942 0.1629393 0.1519541 0.1666665 0.07615667 0.1666666 0.5330973 0.1629397 0.6088947 0.3085097 0.6084543 0.1666667 0.2284705 0.1703937 0.1526729 0.0248236 0.1531133 0.3174679 0.1519544 0.3329738 0.08433431 0.1666665 0.07615667 0.1666665 0.07615667 0.3329738 0.08433431 0.3152182 0.01507902 0.4999995 0.533097 0.5037266 0.4572998 0.3581564 0.4577399 0.9908405 0.4724596 0.8370586 0.4572998 0.8333316 0.533097 0.1666665 0.8377238 0.1703934 0.7619265 0.02482324 0.7623672 0.6825311 0.4573 0.6670255 0.5249196 0.8333316 0.533097 0.1666666 0.3807838 0.1629394 0.4565812 0.3085094 0.4561413 0.8333316 0.533097 0.6670255 0.5249196 0.6847811 0.5941753 0.4999998 0.07615667 0.5037268 3.5928e-4 0.3581568 7.99473e-4 0.9908428 0.01551824 0.8370597 3.5928e-4 0.8333329 0.07615667 0.8333331 0.2284705 0.8296062 0.3042677 0.9751763 0.3038272 0.6825312 3.59483e-4 0.6670258 0.06797969 0.8333329 0.07615667 0.4999997 0.6854107 0.4962725 0.761208 0.6418426 0.7607679 0.8333329 0.07615667 0.6670258 0.06797969 0.6847816 0.1372352 0.1666665 0.07615667 0.1703937 3.5928e-4 0.0248236 7.9927e-4 0.3424896 0.2891077 0.4962726 0.3042675 0.4999997 0.2284702 0.8333316 0.533097 0.8296046 0.6088943 0.9751736 0.6084539 0.6508013 0.3042676 0.666307 0.2366476 0.4999997 0.2284702 0.8333329 0.07615667 0.8296064 0.1519539 0.9751762 0.151513 0.4999997 0.2284702 0.5037266 0.1526729 0.3581568 0.153113 0.4999997 0.2284702 0.666307 0.2366476 0.6485514 0.167392 0.6825315 0.1526731 0.6670259 0.2202934 0.8333331 0.2284705 0.9908432 0.1678324 0.83706 0.1526732 0.8333331 0.2284705 0.4999998 0.07615667 0.6663073 0.08433413 0.6485515 0.0150786 0.6508013 0.1519539 0.6663073 0.08433413 0.4999998 0.07615667 0.3424896 0.136794 0.4962729 0.1519536 0.4999998 0.07615667 0.1666666 0.3807838 3.5928e-4 0.3726064 0.01811486 0.4418617 0.0158649 0.3049864 3.5928e-4 0.3726064 0.1666666 0.3807838 0.3241766 0.3201467 0.1703937 0.3049865 0.1666666 0.3807838 0.1666665 0.8377238 0.3329738 0.8459008 0.3152181 0.7766456 0.3174682 0.9135208 0.3329738 0.8459008 0.1666665 0.8377238 0.009156525 0.8983618 0.1629398 0.9135212 0.1666665 0.8377238 0.4999995 0.533097 0.6663069 0.5412747 0.6485512 0.4720189 0.6508011 0.6088945 0.6663069 0.5412747 0.4999995 0.533097 0.3424895 0.5937348 0.4962726 0.6088946 0.4999995 0.533097 0.1666667 0.2284705 0.332974 0.236648 0.3152183 0.1673923 0.3174682 0.3042678 0.332974 0.236648 0.1666667 0.2284705 0.009156405 0.2891078 0.1629396 0.3042678 0.1666667 0.2284705 0.1666666 0.5330973 3.5928e-4 0.5249199 0.0181148 0.5941755 0.01586478 0.4572998 3.5928e-4 0.5249199 0.1666666 0.5330973 0.3241766 0.4724598 0.1703935 0.4573 0.1666666 0.5330973 0.8333334 0.3807836 0.9996408 0.3889608 0.9818849 0.3197051 0.9841349 0.4565806 0.9996408 0.3889608 0.8333334 0.3807836 0.6758232 0.4414213 0.8296065 0.4565806 0.8333334 0.3807836 0.4999998 0.8377238 0.3336925 0.8295468 0.3514482 0.8988022 0.3491983 0.7619265 0.3336925 0.8295468 0.4999998 0.8377238 0.6575098 0.7770863 0.5037268 0.7619268 0.4999998 0.8377238 0.1666665 0.6854107 0.3329739 0.693588 0.3152182 0.6243325 0.3174681 0.7612078 0.3329739 0.693588 0.1666665 0.6854107 0.009156525 0.7460486 0.1629395 0.761208 0.1666665 0.6854107 0.4999998 0.380784 0.3336926 0.3726064 0.3514482 0.4418621 0.3491984 0.3049864 0.3336926 0.3726064 0.4999998 0.380784 0.6575098 0.3201462 0.5037268 0.3049868 0.4999998 0.380784 0.8333331 0.2284705 0.6847816 0.2895487 0.8296062 0.3042677 0.4999998 0.380784 0.6418427 0.4561411 0.666307 0.3889614 0.1666665 0.6854107 0.0248233 0.6100537 3.5928e-4 0.6772335 0.6575096 0.6247733 0.4999997 0.6854107 0.6663068 0.6935883 0.3491982 0.6096133 0.4999997 0.6854107 0.5037266 0.6096135 0.4999998 0.8377238 0.6418428 0.9130808 0.6663071 0.8459012 0.8333334 0.3807836 0.6914901 0.3054268 0.6670259 0.3726064 0.4999997 0.6854107 0.3514479 0.7464888 0.4962725 0.761208 0.009156286 0.1367942 0.1666665 0.07615667 3.5928e-4 0.06797891 0.1666666 0.5330973 0.3085097 0.6084543 0.3329737 0.5412747 0.1666667 0.2284705 0.0248236 0.1531133 3.5928e-4 0.2202929 0.3174679 0.1519544 0.1666665 0.07615667 0.1629393 0.1519541 0.1666665 0.07615667 0.3152182 0.01507902 0.1703937 3.5928e-4 0.4999995 0.533097 0.3581564 0.4577399 0.3336923 0.5249196 0.9908405 0.4724596 0.8333316 0.533097 0.9996377 0.5412743 0.1666665 0.8377238 0.02482324 0.7623672 3.5928e-4 0.8295466 0.6825311 0.4573 0.8333316 0.533097 0.8370586 0.4572998 0.1666666 0.3807838 0.3085094 0.4561413 0.3329738 0.3889614 0.8333316 0.533097 0.6847811 0.5941753 0.8296046 0.6088943 0.4999998 0.07615667 0.3581568 7.99473e-4 0.3336923 0.06797909 0.9908428 0.01551824 0.8333329 0.07615667 0.9996401 0.08433347 0.8333331 0.2284705 0.9751763 0.3038272 0.9996405 0.2366473 0.6825312 3.59483e-4 0.8333329 0.07615667 0.8370597 3.5928e-4 0.4999997 0.6854107 0.6418426 0.7607679 0.6663068 0.6935883 0.8333329 0.07615667 0.6847816 0.1372352 0.8296064 0.1519539 0.1666665 0.07615667 0.0248236 7.9927e-4 3.5928e-4 0.06797891 0.3424896 0.2891077 0.4999997 0.2284702 0.3336923 0.2202927 0.8333316 0.533097 0.9751736 0.6084539 0.9996377 0.5412743 0.6508013 0.3042676 0.4999997 0.2284702 0.4962726 0.3042675 0.8333329 0.07615667 0.9751762 0.151513 0.9996401 0.08433347 0.4999997 0.2284702 0.3581568 0.153113 0.3336923 0.2202927 0.4999997 0.2284702 0.6485514 0.167392 0.5037266 0.1526729 0.6825315 0.1526731 0.8333331 0.2284705 0.83706 0.1526732 0.9908432 0.1678324 0.8333331 0.2284705 0.9996405 0.2366473 0.4999998 0.07615667 0.6485515 0.0150786 0.5037268 3.5928e-4 0.6508013 0.1519539 0.4999998 0.07615667 0.4962729 0.1519536 0.3424896 0.136794 0.4999998 0.07615667 0.3336923 0.06797909 0.1666666 0.3807838 0.01811486 0.4418617 0.1629394 0.4565812 0.0158649 0.3049864 0.1666666 0.3807838 0.1703937 0.3049865 0.3241766 0.3201467 0.1666666 0.3807838 0.3329738 0.3889614 0.1666665 0.8377238 0.3152181 0.7766456 0.1703934 0.7619265 0.3174682 0.9135208 0.1666665 0.8377238 0.1629398 0.9135212 0.009156525 0.8983618 0.1666665 0.8377238 3.5928e-4 0.8295466 0.4999995 0.533097 0.6485512 0.4720189 0.5037266 0.4572998 0.6508011 0.6088945 0.4999995 0.533097 0.4962726 0.6088946 0.3424895 0.5937348 0.4999995 0.533097 0.3336923 0.5249196 0.1666667 0.2284705 0.3152183 0.1673923 0.1703937 0.1526729 0.3174682 0.3042678 0.1666667 0.2284705 0.1629396 0.3042678 0.009156405 0.2891078 0.1666667 0.2284705 3.5928e-4 0.2202929 0.1666666 0.5330973 0.0181148 0.5941755 0.1629397 0.6088947 0.01586478 0.4572998 0.1666666 0.5330973 0.1703935 0.4573 0.3241766 0.4724598 0.1666666 0.5330973 0.3329737 0.5412747 0.8333334 0.3807836 0.9818849 0.3197051 0.8370602 0.3049864 0.9841349 0.4565806 0.8333334 0.3807836 0.8296065 0.4565806 0.6758232 0.4414213 0.8333334 0.3807836 0.6670259 0.3726064 0.4999998 0.8377238 0.3514482 0.8988022 0.4962729 0.9135212 0.3491983 0.7619265 0.4999998 0.8377238 0.5037268 0.7619268 0.6575098 0.7770863 0.4999998 0.8377238 0.6663071 0.8459012 0.1666665 0.6854107 0.3152182 0.6243325 0.1703934 0.6096133 0.3174681 0.7612078 0.1666665 0.6854107 0.1629395 0.761208 0.009156525 0.7460486 0.1666665 0.6854107 3.5928e-4 0.6772335 0.4999998 0.380784 0.3514482 0.4418621 0.4962728 0.4565812 0.3491984 0.3049864 0.4999998 0.380784 0.5037268 0.3049868 0.6575098 0.3201462 0.4999998 0.380784 0.666307 0.3889614 0.8333331 0.2284705 0.6670259 0.2202934 0.6847816 0.2895487 0.4999998 0.380784 0.4962728 0.4565812 0.6418427 0.4561411 0.1666665 0.6854107 0.1703934 0.6096133 0.0248233 0.6100537 0.6575096 0.6247733 0.5037266 0.6096135 0.4999997 0.6854107 0.3491982 0.6096133 0.3336923 0.6772334 0.4999997 0.6854107 0.4999998 0.8377238 0.4962729 0.9135212 0.6418428 0.9130808 0.8333334 0.3807836 0.8370602 0.3049864 0.6914901 0.3054268 0.4999997 0.6854107 0.3336923 0.6772334 0.3514479 0.7464888 0.009156286 0.1367942 0.1629393 0.1519541 0.1666665 0.07615667 0.1666666 0.5330973 0.1629397 0.6088947 0.3085097 0.6084543 0.1666667 0.2284705 0.1703937 0.1526729 0.0248236 0.1531133 0.3174679 0.1519544 0.3329738 0.08433431 0.1666665 0.07615667 0.1666665 0.07615667 0.3329738 0.08433431 0.3152182 0.01507902 0.4999995 0.533097 0.5037266 0.4572998 0.3581564 0.4577399 0.9908405 0.4724596 0.8370586 0.4572998 0.8333316 0.533097 0.1666665 0.8377238 0.1703934 0.7619265 0.02482324 0.7623672 0.6825311 0.4573 0.6670255 0.5249196 0.8333316 0.533097 0.1666666 0.3807838 0.1629394 0.4565812 0.3085094 0.4561413 0.8333316 0.533097 0.6670255 0.5249196 0.6847811 0.5941753 0.4999998 0.07615667 0.5037268 3.5928e-4 0.3581568 7.99473e-4 0.9908428 0.01551824 0.8370597 3.5928e-4 0.8333329 0.07615667 0.8333331 0.2284705 0.8296062 0.3042677 0.9751763 0.3038272 0.6825312 3.59483e-4 0.6670258 0.06797969 0.8333329 0.07615667 0.4999997 0.6854107 0.4962725 0.761208 0.6418426 0.7607679 0.8333329 0.07615667 0.6670258 0.06797969 0.6847816 0.1372352 0.1666665 0.07615667 0.1703937 3.5928e-4 0.0248236 7.9927e-4 0.3424896 0.2891077 0.4962726 0.3042675 0.4999997 0.2284702 0.8333316 0.533097 0.8296046 0.6088943 0.9751736 0.6084539 0.6508013 0.3042676 0.666307 0.2366476 0.4999997 0.2284702 0.8333329 0.07615667 0.8296064 0.1519539 0.9751762 0.151513 0.4999997 0.2284702 0.5037266 0.1526729 0.3581568 0.153113 0.4999997 0.2284702 0.666307 0.2366476 0.6485514 0.167392 0.6825315 0.1526731 0.6670259 0.2202934 0.8333331 0.2284705 0.9908432 0.1678324 0.83706 0.1526732 0.8333331 0.2284705 0.4999998 0.07615667 0.6663073 0.08433413 0.6485515 0.0150786 0.6508013 0.1519539 0.6663073 0.08433413 0.4999998 0.07615667 0.3424896 0.136794 0.4962729 0.1519536 0.4999998 0.07615667 0.1666666 0.3807838 3.5928e-4 0.3726064 0.01811486 0.4418617 0.0158649 0.3049864 3.5928e-4 0.3726064 0.1666666 0.3807838 0.3241766 0.3201467 0.1703937 0.3049865 0.1666666 0.3807838 0.1666665 0.8377238 0.3329738 0.8459008 0.3152181 0.7766456 0.3174682 0.9135208 0.3329738 0.8459008 0.1666665 0.8377238 0.009156525 0.8983618 0.1629398 0.9135212 0.1666665 0.8377238 0.4999995 0.533097 0.6663069 0.5412747 0.6485512 0.4720189 0.6508011 0.6088945 0.6663069 0.5412747 0.4999995 0.533097 0.3424895 0.5937348 0.4962726 0.6088946 0.4999995 0.533097 0.1666667 0.2284705 0.332974 0.236648 0.3152183 0.1673923 0.3174682 0.3042678 0.332974 0.236648 0.1666667 0.2284705 0.009156405 0.2891078 0.1629396 0.3042678 0.1666667 0.2284705 0.1666666 0.5330973 3.5928e-4 0.5249199 0.0181148 0.5941755 0.01586478 0.4572998 3.5928e-4 0.5249199 0.1666666 0.5330973 0.3241766 0.4724598 0.1703935 0.4573 0.1666666 0.5330973 0.8333334 0.3807836 0.9996408 0.3889608 0.9818849 0.3197051 0.9841349 0.4565806 0.9996408 0.3889608 0.8333334 0.3807836 0.6758232 0.4414213 0.8296065 0.4565806 0.8333334 0.3807836 0.4999998 0.8377238 0.3336925 0.8295468 0.3514482 0.8988022 0.3491983 0.7619265 0.3336925 0.8295468 0.4999998 0.8377238 0.6575098 0.7770863 0.5037268 0.7619268 0.4999998 0.8377238 0.1666665 0.6854107 0.3329739 0.693588 0.3152182 0.6243325 0.3174681 0.7612078 0.3329739 0.693588 0.1666665 0.6854107 0.009156525 0.7460486 0.1629395 0.761208 0.1666665 0.6854107 0.4999998 0.380784 0.3336926 0.3726064 0.3514482 0.4418621 0.3491984 0.3049864 0.3336926 0.3726064 0.4999998 0.380784 0.6575098 0.3201462 0.5037268 0.3049868 0.4999998 0.380784 0.8333331 0.2284705 0.6847816 0.2895487 0.8296062 0.3042677 0.4999998 0.380784 0.6418427 0.4561411 0.666307 0.3889614 0.1666665 0.6854107 0.0248233 0.6100537 3.5928e-4 0.6772335 0.6575096 0.6247733 0.4999997 0.6854107 0.6663068 0.6935883 0.3491982 0.6096133 0.4999997 0.6854107 0.5037266 0.6096135 0.4999998 0.8377238 0.6418428 0.9130808 0.6663071 0.8459012 0.8333334 0.3807836 0.6914901 0.3054268 0.6670259 0.3726064 0.4999997 0.6854107 0.3514479 0.7464888 0.4962725 0.761208 0.009156286 0.1367942 0.1666665 0.07615667 3.5928e-4 0.06797891 0.1666666 0.5330973 0.3085097 0.6084543 0.3329737 0.5412747 0.1666667 0.2284705 0.0248236 0.1531133 3.5928e-4 0.2202929 0.3174679 0.1519544 0.1666665 0.07615667 0.1629393 0.1519541 0.1666665 0.07615667 0.3152182 0.01507902 0.1703937 3.5928e-4 0.4999995 0.533097 0.3581564 0.4577399 0.3336923 0.5249196 0.9908405 0.4724596 0.8333316 0.533097 0.9996377 0.5412743 0.1666665 0.8377238 0.02482324 0.7623672 3.5928e-4 0.8295466 0.6825311 0.4573 0.8333316 0.533097 0.8370586 0.4572998 0.1666666 0.3807838 0.3085094 0.4561413 0.3329738 0.3889614 0.8333316 0.533097 0.6847811 0.5941753 0.8296046 0.6088943 0.4999998 0.07615667 0.3581568 7.99473e-4 0.3336923 0.06797909 0.9908428 0.01551824 0.8333329 0.07615667 0.9996401 0.08433347 0.8333331 0.2284705 0.9751763 0.3038272 0.9996405 0.2366473 0.6825312 3.59483e-4 0.8333329 0.07615667 0.8370597 3.5928e-4 0.4999997 0.6854107 0.6418426 0.7607679 0.6663068 0.6935883 0.8333329 0.07615667 0.6847816 0.1372352 0.8296064 0.1519539 0.1666665 0.07615667 0.0248236 7.9927e-4 3.5928e-4 0.06797891 0.3424896 0.2891077 0.4999997 0.2284702 0.3336923 0.2202927 0.8333316 0.533097 0.9751736 0.6084539 0.9996377 0.5412743 0.6508013 0.3042676 0.4999997 0.2284702 0.4962726 0.3042675 0.8333329 0.07615667 0.9751762 0.151513 0.9996401 0.08433347 0.4999997 0.2284702 0.3581568 0.153113 0.3336923 0.2202927 0.4999997 0.2284702 0.6485514 0.167392 0.5037266 0.1526729 0.6825315 0.1526731 0.8333331 0.2284705 0.83706 0.1526732 0.9908432 0.1678324 0.8333331 0.2284705 0.9996405 0.2366473 0.4999998 0.07615667 0.6485515 0.0150786 0.5037268 3.5928e-4 0.6508013 0.1519539 0.4999998 0.07615667 0.4962729 0.1519536 0.3424896 0.136794 0.4999998 0.07615667 0.3336923 0.06797909 0.1666666 0.3807838 0.01811486 0.4418617 0.1629394 0.4565812 0.0158649 0.3049864 0.1666666 0.3807838 0.1703937 0.3049865 0.3241766 0.3201467 0.1666666 0.3807838 0.3329738 0.3889614 0.1666665 0.8377238 0.3152181 0.7766456 0.1703934 0.7619265 0.3174682 0.9135208 0.1666665 0.8377238 0.1629398 0.9135212 0.009156525 0.8983618 0.1666665 0.8377238 3.5928e-4 0.8295466 0.4999995 0.533097 0.6485512 0.4720189 0.5037266 0.4572998 0.6508011 0.6088945 0.4999995 0.533097 0.4962726 0.6088946 0.3424895 0.5937348 0.4999995 0.533097 0.3336923 0.5249196 0.1666667 0.2284705 0.3152183 0.1673923 0.1703937 0.1526729 0.3174682 0.3042678 0.1666667 0.2284705 0.1629396 0.3042678 0.009156405 0.2891078 0.1666667 0.2284705 3.5928e-4 0.2202929 0.1666666 0.5330973 0.0181148 0.5941755 0.1629397 0.6088947 0.01586478 0.4572998 0.1666666 0.5330973 0.1703935 0.4573 0.3241766 0.4724598 0.1666666 0.5330973 0.3329737 0.5412747 0.8333334 0.3807836 0.9818849 0.3197051 0.8370602 0.3049864 0.9841349 0.4565806 0.8333334 0.3807836 0.8296065 0.4565806 0.6758232 0.4414213 0.8333334 0.3807836 0.6670259 0.3726064 0.4999998 0.8377238 0.3514482 0.8988022 0.4962729 0.9135212 0.3491983 0.7619265 0.4999998 0.8377238 0.5037268 0.7619268 0.6575098 0.7770863 0.4999998 0.8377238 0.6663071 0.8459012 0.1666665 0.6854107 0.3152182 0.6243325 0.1703934 0.6096133 0.3174681 0.7612078 0.1666665 0.6854107 0.1629395 0.761208 0.009156525 0.7460486 0.1666665 0.6854107 3.5928e-4 0.6772335 0.4999998 0.380784 0.3514482 0.4418621 0.4962728 0.4565812 0.3491984 0.3049864 0.4999998 0.380784 0.5037268 0.3049868 0.6575098 0.3201462 0.4999998 0.380784 0.666307 0.3889614 0.6670259 0.2202934 0.6847816 0.2895487 0.6847816 0.2895487 0.3152182 0.01507902 0.1703937 3.5928e-4 0.1703937 3.5928e-4 0.0181148 0.5941755 0.1629397 0.6088947 0.1629397 0.6088947 0.8370586 0.4572998 0.6825311 0.4573 0.6825311 0.4573 0.3241766 0.4724598 0.1703935 0.4573 0.1703935 0.4573 0.8296064 0.1519539 0.9751762 0.151513 0.9751762 0.151513 0.5037266 0.1526729 0.3581568 0.153113 0.3581568 0.153113 3.5928e-4 0.6772335 0.009156525 0.7460486 0.009156525 0.7460486 0.4962728 0.4565812 0.6418427 0.4561411 0.6418427 0.4561411 3.5928e-4 0.3726064 0.01811486 0.4418617 0.01811486 0.4418617 0.6825311 0.4573 0.6670255 0.5249196 0.6670255 0.5249196 0.6914901 0.3054268 0.6670259 0.3726064 0.6670259 0.3726064 0.6847816 0.1372352 0.8296064 0.1519539 0.8296064 0.1519539 0.3336923 0.06797909 0.3424896 0.136794 0.3424896 0.136794 0.6825315 0.1526731 0.6670259 0.2202934 0.6670259 0.2202934 0.3336925 0.8295468 0.3514482 0.8988022 0.3514482 0.8988022 0.3581568 7.99473e-4 0.3336923 0.06797909 0.3336923 0.06797909 0.1703937 0.3049865 0.0158649 0.3049864 0.0158649 0.3049864 0.6575096 0.6247733 0.5037266 0.6096135 0.5037266 0.6096135 0.6418427 0.4561411 0.666307 0.3889614 0.666307 0.3889614 0.1629396 0.3042678 0.3174682 0.3042678 0.3174682 0.3042678 0.666307 0.2366476 0.6485514 0.167392 0.6485514 0.167392 0.6575098 0.3201462 0.5037268 0.3049868 0.5037268 0.3049868 0.9751763 0.3038272 0.9996405 0.2366473 0.9996405 0.2366473 0.6418428 0.9130808 0.6663071 0.8459012 0.6663071 0.8459012 0.02482324 0.7623672 3.5928e-4 0.8295466 3.5928e-4 0.8295466 0.5037266 0.6096135 0.3491982 0.6096133 0.3491982 0.6096133 0.0248233 0.6100537 3.5928e-4 0.6772335 3.5928e-4 0.6772335 0.3241766 0.3201467 0.1703937 0.3049865 0.1703937 0.3049865 0.1703934 0.6096133 0.0248233 0.6100537 0.0248233 0.6100537 0.01811486 0.4418617 0.1629394 0.4565812 0.1629394 0.4565812 0.1703937 3.5928e-4 0.0248236 7.9927e-4 0.0248236 7.9927e-4 3.5928e-4 0.8295466 0.009156525 0.8983618 0.009156525 0.8983618 0.9908432 0.1678324 0.83706 0.1526732 0.83706 0.1526732 0.3514482 0.8988022 0.4962729 0.9135212 0.4962729 0.9135212 0.5037268 0.3049868 0.3491984 0.3049864 0.3491984 0.3049864 0.8296062 0.3042677 0.9751763 0.3038272 0.9751763 0.3038272 0.0248236 7.9927e-4 3.5928e-4 0.06797891 3.5928e-4 0.06797891 0.0248236 0.1531133 3.5928e-4 0.2202929 3.5928e-4 0.2202929 0.6670258 0.06797969 0.6847816 0.1372352 0.6847816 0.1372352 0.6418426 0.7607679 0.6663068 0.6935883 0.6663068 0.6935883 0.1629395 0.761208 0.3174681 0.7612078 0.3174681 0.7612078 0.1629397 0.6088947 0.3085097 0.6084543 0.3085097 0.6084543 3.5928e-4 0.5249199 0.0181148 0.5941755 0.0181148 0.5941755 0.4962729 0.9135212 0.6418428 0.9130808 0.6418428 0.9130808 0.6758232 0.4414213 0.8296065 0.4565806 0.8296065 0.4565806 0.3424896 0.2891077 0.4962726 0.3042675 0.4962726 0.3042675 0.6663069 0.5412747 0.6485512 0.4720189 0.6485512 0.4720189 0.1629398 0.9135212 0.3174682 0.9135208 0.3174682 0.9135208 0.01586478 0.4572998 3.5928e-4 0.5249199 3.5928e-4 0.5249199 0.8296046 0.6088943 0.9751736 0.6084539 0.9751736 0.6084539 0.6508011 0.6088945 0.6663069 0.5412747 0.6663069 0.5412747 0.6575098 0.7770863 0.5037268 0.7619268 0.5037268 0.7619268 0.0158649 0.3049864 3.5928e-4 0.3726064 3.5928e-4 0.3726064 3.5928e-4 0.06797891 0.009156286 0.1367942 0.009156286 0.1367942 0.9751736 0.6084539 0.9996377 0.5412743 0.9996377 0.5412743 0.6508013 0.3042676 0.666307 0.2366476 0.666307 0.2366476 0.9818849 0.3197051 0.8370602 0.3049864 0.8370602 0.3049864 0.4962726 0.6088946 0.6508011 0.6088945 0.6508011 0.6088945 0.1629394 0.4565812 0.3085094 0.4561413 0.3085094 0.4561413 0.3581564 0.4577399 0.3336923 0.5249196 0.3336923 0.5249196 0.3491984 0.3049864 0.3336926 0.3726064 0.3336926 0.3726064 0.3152181 0.7766456 0.1703934 0.7619265 0.1703934 0.7619265 0.1629393 0.1519541 0.3174679 0.1519544 0.3174679 0.1519544 0.009156525 0.8983618 0.1629398 0.9135212 0.1629398 0.9135212 0.3336923 0.5249196 0.3424895 0.5937348 0.3424895 0.5937348 0.3329738 0.08433431 0.3152182 0.01507902 0.3152182 0.01507902 0.9996377 0.5412743 0.9908405 0.4724596 0.9908405 0.4724596 0.6825312 3.59483e-4 0.6670258 0.06797969 0.6670258 0.06797969 0.3329739 0.693588 0.3152182 0.6243325 0.3152182 0.6243325 0.009156286 0.1367942 0.1629393 0.1519541 0.1629393 0.1519541 0.3336923 0.2202927 0.3424896 0.2891077 0.3424896 0.2891077 0.5037268 0.7619268 0.3491983 0.7619265 0.3491983 0.7619265 0.9996401 0.08433347 0.9908428 0.01551824 0.9908428 0.01551824 0.3174681 0.7612078 0.3329739 0.693588 0.3329739 0.693588 0.1703935 0.4573 0.01586478 0.4572998 0.01586478 0.4572998 0.4962729 0.1519536 0.6508013 0.1519539 0.6508013 0.1519539 0.6485515 0.0150786 0.5037268 3.5928e-4 0.5037268 3.5928e-4 0.1703934 0.7619265 0.02482324 0.7623672 0.02482324 0.7623672 0.3491983 0.7619265 0.3336925 0.8295468 0.3336925 0.8295468 0.4962726 0.3042675 0.6508013 0.3042676 0.6508013 0.3042676 0.3424895 0.5937348 0.4962726 0.6088946 0.4962726 0.6088946 0.3329738 0.3889614 0.3241766 0.3201467 0.3241766 0.3201467 0.9841349 0.4565806 0.9996408 0.3889608 0.9996408 0.3889608 0.9996405 0.2366473 0.9908432 0.1678324 0.9908432 0.1678324 0.332974 0.236648 0.3152183 0.1673923 0.3152183 0.1673923 0.1703937 0.1526729 0.0248236 0.1531133 0.0248236 0.1531133 0.3336926 0.3726064 0.3514482 0.4418621 0.3514482 0.4418621 0.6670255 0.5249196 0.6847811 0.5941753 0.6847811 0.5941753 0.3174682 0.3042678 0.332974 0.236648 0.332974 0.236648 0.6663068 0.6935883 0.6575096 0.6247733 0.6575096 0.6247733 0.9751762 0.151513 0.9996401 0.08433347 0.9996401 0.08433347 0.3085094 0.4561413 0.3329738 0.3889614 0.3329738 0.3889614 0.3424896 0.136794 0.4962729 0.1519536 0.4962729 0.1519536 0.6670259 0.3726064 0.6758232 0.4414213 0.6758232 0.4414213 0.3152183 0.1673923 0.1703937 0.1526729 0.1703937 0.1526729 0.9908405 0.4724596 0.8370586 0.4572998 0.8370586 0.4572998 0.666307 0.3889614 0.6575098 0.3201462 0.6575098 0.3201462 0.9996408 0.3889608 0.9818849 0.3197051 0.9818849 0.3197051 0.009156525 0.7460486 0.1629395 0.761208 0.1629395 0.761208 0.6663073 0.08433413 0.6485515 0.0150786 0.6485515 0.0150786 0.3514482 0.4418621 0.4962728 0.4565812 0.4962728 0.4565812 0.3329737 0.5412747 0.3241766 0.4724598 0.3241766 0.4724598 0.9908428 0.01551824 0.8370597 3.5928e-4 0.8370597 3.5928e-4 0.3581568 0.153113 0.3336923 0.2202927 0.3336923 0.2202927 0.3174682 0.9135208 0.3329738 0.8459008 0.3329738 0.8459008 3.5928e-4 0.2202929 0.009156405 0.2891078 0.009156405 0.2891078 0.3174679 0.1519544 0.3329738 0.08433431 0.3329738 0.08433431 0.8296065 0.4565806 0.9841349 0.4565806 0.9841349 0.4565806 0.009156405 0.2891078 0.1629396 0.3042678 0.1629396 0.3042678 0.5037268 3.5928e-4 0.3581568 7.99473e-4 0.3581568 7.99473e-4 0.4962725 0.761208 0.6418426 0.7607679 0.6418426 0.7607679 0.6847811 0.5941753 0.8296046 0.6088943 0.8296046 0.6088943 0.6485514 0.167392 0.5037266 0.1526729 0.5037266 0.1526729 0.3329738 0.8459008 0.3152181 0.7766456 0.3152181 0.7766456 0.3152182 0.6243325 0.1703934 0.6096133 0.1703934 0.6096133 0.8370602 0.3049864 0.6914901 0.3054268 0.6914901 0.3054268 0.6847816 0.2895487 0.8296062 0.3042677 0.8296062 0.3042677 0.3491982 0.6096133 0.3336923 0.6772334 0.3336923 0.6772334 0.3336923 0.6772334 0.3514479 0.7464888 0.3514479 0.7464888 0.3085097 0.6084543 0.3329737 0.5412747 0.3329737 0.5412747 0.6663071 0.8459012 0.6575098 0.7770863 0.6575098 0.7770863 0.6508013 0.1519539 0.6663073 0.08433413 0.6663073 0.08433413 0.6485512 0.4720189 0.5037266 0.4572998 0.5037266 0.4572998 0.5037266 0.4572998 0.3581564 0.4577399 0.3581564 0.4577399 0.3514479 0.7464888 0.4962725 0.761208 0.4962725 0.761208 0.83706 0.1526732 0.6825315 0.1526731 0.6825315 0.1526731 0.8370597 3.5928e-4 0.6825312 3.59483e-4 0.6825312 3.59483e-4 0.6670259 0.2202934 0.6670259 0.2202934 0.6847816 0.2895487 0.3152182 0.01507902 0.3152182 0.01507902 0.1703937 3.5928e-4 0.0181148 0.5941755 0.0181148 0.5941755 0.1629397 0.6088947 0.8370586 0.4572998 0.8370586 0.4572998 0.6825311 0.4573 0.3241766 0.4724598 0.3241766 0.4724598 0.1703935 0.4573 0.8296064 0.1519539 0.8296064 0.1519539 0.9751762 0.151513 0.5037266 0.1526729 0.5037266 0.1526729 0.3581568 0.153113 3.5928e-4 0.6772335 3.5928e-4 0.6772335 0.009156525 0.7460486 0.4962728 0.4565812 0.4962728 0.4565812 0.6418427 0.4561411 3.5928e-4 0.3726064 3.5928e-4 0.3726064 0.01811486 0.4418617 0.6825311 0.4573 0.6825311 0.4573 0.6670255 0.5249196 0.6914901 0.3054268 0.6914901 0.3054268 0.6670259 0.3726064 0.6847816 0.1372352 0.6847816 0.1372352 0.8296064 0.1519539 0.3336923 0.06797909 0.3336923 0.06797909 0.3424896 0.136794 0.6825315 0.1526731 0.6825315 0.1526731 0.6670259 0.2202934 0.3336925 0.8295468 0.3336925 0.8295468 0.3514482 0.8988022 0.3581568 7.99473e-4 0.3581568 7.99473e-4 0.3336923 0.06797909 0.1703937 0.3049865 0.1703937 0.3049865 0.0158649 0.3049864 0.6575096 0.6247733 0.6575096 0.6247733 0.5037266 0.6096135 0.6418427 0.4561411 0.6418427 0.4561411 0.666307 0.3889614 0.1629396 0.3042678 0.1629396 0.3042678 0.3174682 0.3042678 0.666307 0.2366476 0.666307 0.2366476 0.6485514 0.167392 0.6575098 0.3201462 0.6575098 0.3201462 0.5037268 0.3049868 0.9751763 0.3038272 0.9751763 0.3038272 0.9996405 0.2366473 0.6418428 0.9130808 0.6418428 0.9130808 0.6663071 0.8459012 0.02482324 0.7623672 0.02482324 0.7623672 3.5928e-4 0.8295466 0.5037266 0.6096135 0.5037266 0.6096135 0.3491982 0.6096133 0.0248233 0.6100537 0.0248233 0.6100537 3.5928e-4 0.6772335 0.3241766 0.3201467 0.3241766 0.3201467 0.1703937 0.3049865 0.1703934 0.6096133 0.1703934 0.6096133 0.0248233 0.6100537 0.01811486 0.4418617 0.01811486 0.4418617 0.1629394 0.4565812 0.1703937 3.5928e-4 0.1703937 3.5928e-4 0.0248236 7.9927e-4 3.5928e-4 0.8295466 3.5928e-4 0.8295466 0.009156525 0.8983618 0.9908432 0.1678324 0.9908432 0.1678324 0.83706 0.1526732 0.3514482 0.8988022 0.3514482 0.8988022 0.4962729 0.9135212 0.5037268 0.3049868 0.5037268 0.3049868 0.3491984 0.3049864 0.8296062 0.3042677 0.8296062 0.3042677 0.9751763 0.3038272 0.0248236 7.9927e-4 0.0248236 7.9927e-4 3.5928e-4 0.06797891 0.0248236 0.1531133 0.0248236 0.1531133 3.5928e-4 0.2202929 0.6670258 0.06797969 0.6670258 0.06797969 0.6847816 0.1372352 0.6418426 0.7607679 0.6418426 0.7607679 0.6663068 0.6935883 0.1629395 0.761208 0.1629395 0.761208 0.3174681 0.7612078 0.1629397 0.6088947 0.1629397 0.6088947 0.3085097 0.6084543 3.5928e-4 0.5249199 3.5928e-4 0.5249199 0.0181148 0.5941755 0.4962729 0.9135212 0.4962729 0.9135212 0.6418428 0.9130808 0.6758232 0.4414213 0.6758232 0.4414213 0.8296065 0.4565806 0.3424896 0.2891077 0.3424896 0.2891077 0.4962726 0.3042675 0.6663069 0.5412747 0.6663069 0.5412747 0.6485512 0.4720189 0.1629398 0.9135212 0.1629398 0.9135212 0.3174682 0.9135208 0.01586478 0.4572998 0.01586478 0.4572998 3.5928e-4 0.5249199 0.8296046 0.6088943 0.8296046 0.6088943 0.9751736 0.6084539 0.6508011 0.6088945 0.6508011 0.6088945 0.6663069 0.5412747 0.6575098 0.7770863 0.6575098 0.7770863 0.5037268 0.7619268 0.0158649 0.3049864 0.0158649 0.3049864 3.5928e-4 0.3726064 3.5928e-4 0.06797891 3.5928e-4 0.06797891 0.009156286 0.1367942 0.9751736 0.6084539 0.9751736 0.6084539 0.9996377 0.5412743 0.6508013 0.3042676 0.6508013 0.3042676 0.666307 0.2366476 0.9818849 0.3197051 0.9818849 0.3197051 0.8370602 0.3049864 0.4962726 0.6088946 0.4962726 0.6088946 0.6508011 0.6088945 0.1629394 0.4565812 0.1629394 0.4565812 0.3085094 0.4561413 0.3581564 0.4577399 0.3581564 0.4577399 0.3336923 0.5249196 0.3491984 0.3049864 0.3491984 0.3049864 0.3336926 0.3726064 0.3152181 0.7766456 0.3152181 0.7766456 0.1703934 0.7619265 0.1629393 0.1519541 0.1629393 0.1519541 0.3174679 0.1519544 0.009156525 0.8983618 0.009156525 0.8983618 0.1629398 0.9135212 0.3336923 0.5249196 0.3336923 0.5249196 0.3424895 0.5937348 0.3329738 0.08433431 0.3329738 0.08433431 0.3152182 0.01507902 0.9996377 0.5412743 0.9996377 0.5412743 0.9908405 0.4724596 0.6825312 3.59483e-4 0.6825312 3.59483e-4 0.6670258 0.06797969 0.3329739 0.693588 0.3329739 0.693588 0.3152182 0.6243325 0.009156286 0.1367942 0.009156286 0.1367942 0.1629393 0.1519541 0.3336923 0.2202927 0.3336923 0.2202927 0.3424896 0.2891077 0.5037268 0.7619268 0.5037268 0.7619268 0.3491983 0.7619265 0.9996401 0.08433347 0.9996401 0.08433347 0.9908428 0.01551824 0.3174681 0.7612078 0.3174681 0.7612078 0.3329739 0.693588 0.1703935 0.4573 0.1703935 0.4573 0.01586478 0.4572998 0.4962729 0.1519536 0.4962729 0.1519536 0.6508013 0.1519539 0.6485515 0.0150786 0.6485515 0.0150786 0.5037268 3.5928e-4 0.1703934 0.7619265 0.1703934 0.7619265 0.02482324 0.7623672 0.3491983 0.7619265 0.3491983 0.7619265 0.3336925 0.8295468 0.4962726 0.3042675 0.4962726 0.3042675 0.6508013 0.3042676 0.3424895 0.5937348 0.3424895 0.5937348 0.4962726 0.6088946 0.3329738 0.3889614 0.3329738 0.3889614 0.3241766 0.3201467 0.9841349 0.4565806 0.9841349 0.4565806 0.9996408 0.3889608 0.9996405 0.2366473 0.9996405 0.2366473 0.9908432 0.1678324 0.332974 0.236648 0.332974 0.236648 0.3152183 0.1673923 0.1703937 0.1526729 0.1703937 0.1526729 0.0248236 0.1531133 0.3336926 0.3726064 0.3336926 0.3726064 0.3514482 0.4418621 0.6670255 0.5249196 0.6670255 0.5249196 0.6847811 0.5941753 0.3174682 0.3042678 0.3174682 0.3042678 0.332974 0.236648 0.6663068 0.6935883 0.6663068 0.6935883 0.6575096 0.6247733 0.9751762 0.151513 0.9751762 0.151513 0.9996401 0.08433347 0.3085094 0.4561413 0.3085094 0.4561413 0.3329738 0.3889614 0.3424896 0.136794 0.3424896 0.136794 0.4962729 0.1519536 0.6670259 0.3726064 0.6670259 0.3726064 0.6758232 0.4414213 0.3152183 0.1673923 0.3152183 0.1673923 0.1703937 0.1526729 0.9908405 0.4724596 0.9908405 0.4724596 0.8370586 0.4572998 0.666307 0.3889614 0.666307 0.3889614 0.6575098 0.3201462 0.9996408 0.3889608 0.9996408 0.3889608 0.9818849 0.3197051 0.009156525 0.7460486 0.009156525 0.7460486 0.1629395 0.761208 0.6663073 0.08433413 0.6663073 0.08433413 0.6485515 0.0150786 0.3514482 0.4418621 0.3514482 0.4418621 0.4962728 0.4565812 0.3329737 0.5412747 0.3329737 0.5412747 0.3241766 0.4724598 0.9908428 0.01551824 0.9908428 0.01551824 0.8370597 3.5928e-4 0.3581568 0.153113 0.3581568 0.153113 0.3336923 0.2202927 0.3174682 0.9135208 0.3174682 0.9135208 0.3329738 0.8459008 3.5928e-4 0.2202929 3.5928e-4 0.2202929 0.009156405 0.2891078 0.3174679 0.1519544 0.3174679 0.1519544 0.3329738 0.08433431 0.8296065 0.4565806 0.8296065 0.4565806 0.9841349 0.4565806 0.009156405 0.2891078 0.009156405 0.2891078 0.1629396 0.3042678 0.5037268 3.5928e-4 0.5037268 3.5928e-4 0.3581568 7.99473e-4 0.4962725 0.761208 0.4962725 0.761208 0.6418426 0.7607679 0.6847811 0.5941753 0.6847811 0.5941753 0.8296046 0.6088943 0.6485514 0.167392 0.6485514 0.167392 0.5037266 0.1526729 0.3329738 0.8459008 0.3329738 0.8459008 0.3152181 0.7766456 0.3152182 0.6243325 0.3152182 0.6243325 0.1703934 0.6096133 0.8370602 0.3049864 0.8370602 0.3049864 0.6914901 0.3054268 0.6847816 0.2895487 0.6847816 0.2895487 0.8296062 0.3042677 0.3491982 0.6096133 0.3491982 0.6096133 0.3336923 0.6772334 0.3336923 0.6772334 0.3336923 0.6772334 0.3514479 0.7464888 0.3085097 0.6084543 0.3085097 0.6084543 0.3329737 0.5412747 0.6663071 0.8459012 0.6663071 0.8459012 0.6575098 0.7770863 0.6508013 0.1519539 0.6508013 0.1519539 0.6663073 0.08433413 0.6485512 0.4720189 0.6485512 0.4720189 0.5037266 0.4572998 0.5037266 0.4572998 0.5037266 0.4572998 0.3581564 0.4577399 0.3514479 0.7464888 0.3514479 0.7464888 0.4962725 0.761208 0.83706 0.1526732 0.83706 0.1526732 0.6825315 0.1526731 0.8370597 3.5928e-4 0.8370597 3.5928e-4 0.6825312 3.59483e-4 @@ -142,7 +142,7 @@ 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 -

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

+

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

@@ -151,7 +151,7 @@ - 0.6 0 0 0 0 0.6 0 0 0 0 0.6 0 0 0 0 1 + 0.8636544 0 0 0 0 0.8636544 0 0 0 0 0.8636544 0 0 0 0 1 diff --git a/src/main/resources/views/RaceView.fxml b/src/main/resources/views/RaceView.fxml index bd92bb94..2c72fcb8 100644 --- a/src/main/resources/views/RaceView.fxml +++ b/src/main/resources/views/RaceView.fxml @@ -1,7 +1,5 @@ - - @@ -294,13 +292,26 @@ + + + + + + + + + + + + + - - + + diff --git a/src/main/resources/views/dialogs/TokenInfoDialog.fxml b/src/main/resources/views/dialogs/TokenInfoDialog.fxml new file mode 100644 index 00000000..e6bbab45 --- /dev/null +++ b/src/main/resources/views/dialogs/TokenInfoDialog.fxml @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +